/* ===========================
   CLROUT — Dark Modern Theme
   Black & Blue
=========================== */

:root {
  --bg-primary: #080c10;
  --bg-secondary: #0e1420;
  --bg-card: #111827;
  --bg-card-hover: #1a2236;

  --blue-main: #4a9cb5;
  --blue-light: #6ab8cf;
  --blue-bright: #8ec6d5;
  --blue-glow: rgba(74, 156, 181, 0.3);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border: rgba(255, 255, 255, 0.07);
  --border-blue: rgba(74, 156, 181, 0.4);

  --radius: 12px;
  --radius-lg: 20px;

  --font: 'Inter', system-ui, sans-serif;

  --nav-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   UTILITIES
=========================== */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
}

/* ===========================
   BUTTONS
=========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-main);
  color: #fff;
  box-shadow: 0 0 24px var(--blue-glow);
}

.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 0 36px rgba(74, 156, 181, 0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--blue-light);
  color: var(--blue-bright);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.btn-full-mobile {
  display: block;
  text-align: center;
}

/* ===========================
   NAV
=========================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 12, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  text-decoration: none;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-img--sm {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.nav-social:hover {
  color: var(--blue-bright);
  background: rgba(74, 156, 181, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
  color: var(--blue-bright);
}

.mobile-menu a:hover {
  color: var(--text-primary);
}

.mobile-menu.open {
  display: flex;
}

/* ===========================
   HERO
=========================== */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 12, 16, 0.97) 0%,
    rgba(8, 12, 16, 0.93) 38%,
    rgba(8, 12, 16, 0.55) 60%,
    rgba(8, 12, 16, 0.15) 100%
  );
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 48px 60px;
}

.hero-card {
  max-width: 520px;
  width: 100%;
}

.hero-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 28px;
}

.hero-trust-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-trust-item::before {
  content: '';
}

.hero-quote {
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--blue-main);
  background: rgba(74, 156, 181, 0.07);
  border-radius: 0 8px 8px 0;
}

.hero-quote,
.hero-quote p {
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-quote cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-bright);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ===========================
   SOCIAL PROOF
=========================== */

.proof {
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.proof-about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.about-col .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-col p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.proof-col .proof-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.proof-card {
  background: #1a2235;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.proof-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-3px);
}

.proof-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.proof-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.proof-photo-wrap:first-child {
  border-right: 2px solid var(--bg-primary);
}

.proof-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.proof-card:hover .proof-photo-wrap img {
  transform: scale(1.03);
}

.proof-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}

.proof-label--after {
  background: rgba(74, 156, 181, 0.55);
  color: #fff;
}

.proof-body {
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.proof-quote {
  font-size: 17px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.proof-customer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.01em;
}

.proof-location::before {
  content: '·';
  margin-right: 6px;
  color: var(--text-muted);
}

.proof-location {
  color: var(--blue-bright);
  font-weight: 600;
}

/* ===========================
   GUARANTEE
=========================== */

.guarantee {
  background: var(--bg-primary);
  padding: 64px 0;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: 0 0 40px var(--blue-glow);
}

.guarantee-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(74, 156, 181, 0.12);
  border: 1.5px solid var(--border-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
}

.guarantee-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.guarantee-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===========================
   PACKAGES
=========================== */

.packages {
  background: var(--bg-primary);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.package-card--featured {
  border-color: var(--blue-main);
  background: var(--bg-card-hover);
  box-shadow: 0 0 32px var(--blue-glow);
}

.package-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-main);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.package-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  text-transform: uppercase;
}

.package-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.package-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.package-cta {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-bright);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}

.package-cta:hover {
  color: var(--text-primary);
}

.packages-footer {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.packages-footer a {
  color: var(--blue-bright);
  text-decoration: none;
  font-weight: 600;
}

.packages-footer a:hover {
  color: var(--text-primary);
}

/* ===========================
   HOW IT WORKS
=========================== */

.how-it-works {
  background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(74, 156, 181, 0.12);
  border: 2px solid var(--blue-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 24px var(--blue-glow);
}

.step-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  flex-shrink: 0;
  width: 64px;
  height: 2px;
  background: linear-gradient(to right, var(--blue-main), rgba(29, 108, 240, 0.3));
  margin-top: 32px;
  align-self: flex-start;
}

/* ===========================
   ABOUT
=========================== */

.about {
  background: var(--bg-primary);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 2px dashed var(--border-blue);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue-main);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(29, 108, 240, 0.5);
}

.about-badge-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.about-badge-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.about-text .section-title {
  text-align: left;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-checklist {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(29, 108, 240, 0.15);
  border: 1px solid var(--border-blue);
  border-radius: 50%;
  color: var(--blue-bright);
  font-size: 13px;
  flex-shrink: 0;
}

/* ===========================
   CONTACT
=========================== */

.contact {
  background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-text .section-title {
  text-align: left;
}

.contact-text p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-info-item a,
.contact-info-item span {
  font-size: 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--blue-bright);
}

/* ===========================
   FORM
=========================== */

.quote-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-main);
  box-shadow: 0 0 0 3px rgba(29, 108, 240, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.label-optional {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.upload-zone {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: 8px;
  background: var(--bg-secondary);
  padding: 28px 20px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--blue-main);
  background: rgba(74, 156, 181, 0.06);
}

.upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.upload-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  color: var(--blue-bright);
}

.upload-text {
  font-size: 15px;
  color: var(--text-secondary);
}

.upload-link {
  color: var(--blue-bright);
  font-weight: 600;
}

.upload-hint {
  font-size: 12px;
  color: var(--text-muted);
}

.upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}

.upload-previews:empty {
  display: none;
}

.upload-thumb {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-blue);
  flex-shrink: 0;
}

.upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.upload-thumb-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  background: rgba(0, 0, 0, 0.75);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.upload-thumb-remove:hover {
  background: rgba(239, 68, 68, 0.85);
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  background: rgba(29, 108, 240, 0.1);
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: var(--blue-bright);
  font-weight: 600;
  font-size: 15px;
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: #f87171;
  font-size: 14px;
}

/* ===========================
   FOOTER
=========================== */

.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-text {
  font-size: 20px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--blue-bright);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
}

.footer-bottom span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===========================
   SERVICE AREA
=========================== */

.area {
  background: var(--bg-secondary);
}

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.area-text .section-title {
  text-align: left;
}

.area-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.area-tags span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.2s;
}

.area-tags span:last-child {
  color: var(--blue-bright);
  border-color: var(--border-blue);
  background: rgba(74, 156, 181, 0.08);
}

.area-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

#area-map {
  height: 420px;
  width: 100%;
  border-radius: var(--radius-lg);
}

.leaflet-popup-content-wrapper {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.leaflet-popup-tip {
  background: var(--bg-card);
}

.leaflet-popup-content {
  margin: 10px 14px;
  font-family: var(--font);
  font-size: 13px;
}

.map-tooltip {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: 6px;
  color: var(--blue-bright);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  white-space: nowrap;
}

.map-tooltip::before {
  border-top-color: var(--border-blue);
}

@media (max-width: 900px) {
  .area-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #area-map {
    height: 320px;
  }
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 900px) {
  .proof-about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-badge {
    right: 0;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step {
    max-width: 400px;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue-main), rgba(29, 108, 240, 0.3));
    margin: 0;
    align-self: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    height: auto;
    min-height: var(--nav-height);
  }

  .nav-inner {
    height: var(--nav-height);
  }

  .hero-layout {
    padding: calc(var(--nav-height) + 32px) 24px 48px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 28px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
    margin-top: 20px;
  }
}

/* ===========================
   SOCIAL LINKS
=========================== */

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.social-link:hover {
  color: var(--text-primary);
  border-color: var(--border-blue);
  background: rgba(74, 156, 181, 0.08);
}

.social-link--ig:hover {
  border-color: rgba(225, 48, 108, 0.4);
  color: #f472b6;
  background: rgba(225, 48, 108, 0.08);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-socials a:hover {
  color: var(--blue-bright);
  border-color: var(--border-blue);
  background: rgba(74, 156, 181, 0.08);
}

/* ===========================
   RESULTS / GALLERY
=========================== */

.results {
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Featured combined image */
.result-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.result-featured img {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}

.result-featured-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(8, 12, 16, 0.92), transparent);
}

.result-featured-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.result-badge-before,
.result-badge-after {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.result-badge-before {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.result-badge-after {
  background: rgba(74, 156, 181, 0.15);
  border: 1px solid var(--border-blue);
  color: var(--blue-bright);
}

/* Grid of cards */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}


/* Shared badge (overlay) */
.result-state-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 6px;
  background: rgba(200, 40, 40, 0.85);
  border: none;
  color: #fff;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.result-state-badge--after {
  background: rgba(29, 100, 140, 0.85);
  color: #fff;
}

/* Interactive flip card */
.result-flip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s;
}

.result-flip:hover {
  border-color: var(--border-blue);
}

.result-flip-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}

.flip-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.flip-img.active {
  opacity: 1;
}

.result-flip-footer {
  padding: 14px 20px;
}

.result-flip-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.result-flip-btn {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--blue-main);
  border: none;
  width: 100%;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.01em;
}

.result-flip-btn:hover {
  background: var(--blue-light);
}

.result-flip-btn--after {
  background: rgba(74, 156, 181, 0.15);
  color: var(--blue-bright);
  border-top: 1px solid var(--border-blue);
}

.result-flip-btn--after:hover {
  background: rgba(74, 156, 181, 0.25);
}

.flip-btn-icon {
  font-size: 18px;
  line-height: 1;
}

/* Static cards */
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.result-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-3px);
}

.result-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.result-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.result-card:hover .result-card-img-wrap img {
  transform: scale(1.04);
}

.result-card-footer {
  padding: 14px 18px;
}

.result-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* CTA row */
.results-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.results-cta p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Gallery responsive */
@media (max-width: 640px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-featured img {
    max-height: 240px;
  }
}
