:root {
  --navy: #0b1f3a;
  --navy-2: #102a4c;
  --navy-deep: #061525;
  --gold: #c9a227;
  --gold-2: #e8c547;
  --gold-soft: #f4e4b0;
  --copper: #d4762c;
  --green: #1a6b4a;
  --whatsapp: #25d366;
  --call: #0d6efd;
  --cream: #f6f3ec;
  --paper: #fffdf8;
  --line: rgba(11, 31, 58, 0.1);
  --text: #1c2430;
  --muted: #5a6570;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.12);
  --radius: 18px;
  --header-h: 82px;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --num: "Roboto", "Lato", "Courier New", monospace;
}

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

html {
  scroll-behavior: smooth;
  width: 100% !important;
  max-width: none !important;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  width: 100% !important;
  max-width: none !important;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

#site-header,
main,
#site-footer,
.site-header,
.hero,
.page-hero,
.site-footer {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}

#float-buttons {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1300;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font-family: inherit; }

.num,
.phone-num,
.price,
.stat-value,
.calc-result .value,
.lead-table td.num {
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.container {
  width: min(1180px, calc(100% - 40px));
  max-width: 100%;
  margin: 0 auto;
}

.section { padding: 92px 0; }

.section.alt { background: var(--paper); }

.section-kicker {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 680px;
}

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.75);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-call { background: var(--copper); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero .btn-row {
  width: 100%;
  max-width: 520px;
  justify-content: center;
}
.hero .btn-row .btn-gold { flex: 1 1 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
}

.site-header .nav-wrap {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; min-width: 0; }

.brand-name {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  line-height: 1.2;
}

.brand-tag {
  font-size: 11px;
  color: var(--gold-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a,
.nav-drop > span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav a:hover,
.nav-drop:hover > span { background: rgba(255,255,255,0.1); color: var(--gold-2); }

.nav a.active { color: var(--gold-2); }
.nav-drop.current > span { color: var(--gold-2); }

.nav-drop { position: relative; }
.nav-drop > span { cursor: pointer; }

.nav-drop .caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
  z-index: 20;
}

.nav-drop:hover .dropdown,
.nav-drop:focus-within .dropdown,
.nav-drop.open .dropdown { display: block; }

.dropdown a {
  color: var(--navy) !important;
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.dropdown a:hover { background: var(--cream); color: var(--gold) !important; }

.header-cta { display: flex; gap: 8px; }

.header-cta .btn { padding: 10px 16px; font-size: 13px; }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-cta { display: none; }

.site-header.scrolled,
.site-header.solid {
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(11, 31, 58, 0.08);
}

.site-header.scrolled .brand-name,
.site-header.solid .brand-name,
.site-header.scrolled .nav a,
.site-header.solid .nav a,
.site-header.scrolled .nav-drop > span,
.site-header.solid .nav-drop > span {
  color: var(--navy);
}

.site-header.scrolled .brand-tag,
.site-header.solid .brand-tag { color: var(--gold); }

.site-header.scrolled .hamburger span,
.site-header.solid .hamburger span { background: var(--navy); }

.site-header.scrolled .btn-outline,
.site-header.solid .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 37, 0.45);
  z-index: 998;
}

.menu-overlay.show { display: block; }

/* Hero */
.hero {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 37, 0.55) 0%, rgba(6, 21, 37, 0.42) 40%, rgba(6, 21, 37, 0.78) 100%),
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.22), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 20px 80px;
  box-sizing: border-box;
}

.hero-content h1 {
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.08;
  max-width: 920px;
  font-weight: 800;
}

.hero-content .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 28px);
  color: var(--gold-2);
  margin: 16px 0 10px;
}

.hero-content p {
  max-width: 640px;
  color: rgba(255,255,255,0.86);
  margin-bottom: 28px;
  font-size: 18px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 560px;
}

.hero-pills span {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-nav {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-nav button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

.hero-nav button.active { background: var(--gold); width: 28px; border-radius: 8px; }

.spark-layer, .spark-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-2);
  border-radius: 50%;
  animation: rise 7s linear infinite;
  opacity: 0.8;
  box-shadow: 0 0 10px var(--gold-2);
}

@keyframes rise {
  0% { transform: translateY(20px) scale(0.4); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-110vh) scale(1); opacity: 0; }
}

.page-hero {
  width: 100%;
  max-width: 100%;
  min-height: 42vh;
  margin-top: calc(var(--header-h) * -1);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,21,37,0.62), rgba(6,21,37,0.72));
}

.page-hero .inner { position: relative; z-index: 1; padding: 140px 20px 70px; }

.page-hero h1 { font-size: clamp(30px, 5vw, 52px); }

/* Cards / grids */
.grid-3, .grid-4, .grid-2 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(11,31,58,0.16); }

.card-media {
  background: #0b1f3a;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.card-body { padding: 22px; }

.card-body h3 { color: var(--navy); margin-bottom: 8px; font-size: 20px; }

.card-body p { color: var(--muted); font-size: 15px; }

.icon-badge {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  font-size: 24px;
  margin-bottom: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.stat {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  right: -20px; top: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,162,39,0.18);
}

.stat-value { font-size: 32px; font-weight: 800; color: var(--gold-2); }
.stat small { color: rgba(255,255,255,0.7); }

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-step {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
}

.process-step .n {
  font-family: var(--num);
  color: var(--gold);
  font-size: 28px;
  font-weight: 800;
}

/* Forms */
.form-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
}

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

.form-grid .full { grid-column: 1 / -1; }

label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--navy); font-size: 14px; }

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 15px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.15);
}

textarea { min-height: 120px; resize: vertical; }

.note { font-size: 13px; color: var(--muted); margin-top: 8px; }

.success-msg, .error-msg {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-weight: 600;
}
.success-msg.show { display: block; background: #e8f8ef; color: var(--green); }
.error-msg.show { display: block; background: #fde8e8; color: #b42318; }

/* Calculator */
.calc-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.calc-results { display: grid; gap: 12px; }
.calc-result {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 18px 20px;
}
.calc-result span { color: rgba(255,255,255,0.7); font-size: 13px; }
.calc-result .value { font-size: 28px; font-weight: 800; color: var(--gold-2); display: block; }

.estimate-flag {
  display: inline-block;
  background: #fff4d6;
  color: #7a5b00;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
}

/* Timeline visual */
.timeline {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 10px;
}

.timeline-item {
  min-width: 160px;
  flex: 1;
  text-align: center;
  position: relative;
  padding: 10px;
}

.timeline-item .dot {
  width: 54px; height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  display: grid; place-items: center;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.site-footer h4 { color: #fff; margin-bottom: 14px; }
.site-footer a { display: block; padding: 4px 0; color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-bottom a { color: var(--gold-2); display: inline; }

/* Floating buttons */
.float-dock {
  position: relative;
  z-index: 1300;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: stretch;
  gap: 8px;
  width: 100%;
}

.float-group {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.float-fab {
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px 0 14px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  font-weight: 700;
  font-size: 14px;
}

.float-fab svg { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }
.float-fab.call { background: #1f6feb; }
.float-fab.wa { background: #25d366; }
.float-fab .fab-label { font-family: var(--font); }

.float-panel {
  display: none;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.float-group.open .float-panel { display: flex; }

.float-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.18);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.float-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.float-link.call svg { fill: #1f6feb; }
.float-link.wa svg { fill: #25d366; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 37, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 26px;
  cursor: pointer;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: none;
}

.reveal.in {
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35), transparent 70%);
  transform: translateX(-100%);
  animation: shine 4s ease infinite;
}

@keyframes shine {
  60%, 100% { transform: translateX(100%); }
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.cta-band h3 { font-size: 30px; max-width: 520px; }

.check-list { list-style: none; display: grid; gap: 10px; }
.check-list li { padding-left: 28px; position: relative; }
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow);
}

.map-wrap iframe { width: 100%; height: 340px; border: 0; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 24px;
  object-fit: contain;
  background: #0b1f3a;
  cursor: zoom-in;
}

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.badge {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.value-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.review {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.stars::before { content: "\2605\2605\2605\2605\2605"; }

.table-wrap { overflow-x: auto; }
table.plain {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
table.plain th, table.plain td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
table.plain th { background: var(--navy); color: #fff; }

.dash-login, .dash-app { max-width: 480px; margin: 40px auto; }
.dash-app { max-width: 1100px; }

.lead-table { width: 100%; font-size: 14px; }
.lead-table img.thumb { width: 64px; height: 48px; object-fit: contain; background: #eee; cursor: zoom-in; }

.status {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}
.status.new { background: #fff4d6; color: #7a5b00; }
.status.contacted { background: #e7f0ff; color: #1f6feb; }
.status.won { background: #e8f8ef; color: var(--green); }

@media (max-width: 1024px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .site-header .nav-wrap { width: calc(100% - 20px); max-width: 100%; }
  .brand-name { white-space: normal; font-size: 13px; }
  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    background: #fff;
    padding: 90px 18px 24px;
    z-index: 999;
    overflow-y: auto;
    box-shadow: var(--shadow);
  }
  .nav.mobile-open a,
  .nav.mobile-open .nav-drop > span {
    color: var(--navy);
    width: 100%;
  }
  .nav.mobile-open .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    min-width: 0;
    padding: 0 0 0 10px;
  }
  .nav.mobile-open .nav-drop.open .dropdown { display: block; }
  .nav.mobile-open .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }
  .header-cta.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 1001;
  }
  .grid-4, .stats, .values { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .process, .footer-grid, .calc-box, .split { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 110px 16px 96px; }
  .hero .btn-row { width: 100%; justify-content: center; }
  .hero-pills { flex-direction: column; align-items: center; max-width: 100%; }
  .hero-pills span { width: min(260px, 100%); text-align: center; }
  body { padding-bottom: 92px; }
}

@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4, .stats, .values { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 28px; }
  .header-cta { display: none; }
  .section { padding: 64px 0; }
  .timeline { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 24px); }
  main { padding-bottom: 24px; }
  .brand-name { font-size: 11px; }
}
