:root {
  --bg: #090314;
  --bg-soft: #10071d;
  --panel: rgba(21, 11, 40, 0.78);
  --panel-strong: #160b2a;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(191, 141, 255, 0.25);
  --text: #f7f3ff;
  --muted: #aca4b9;
  --muted-2: #756d83;
  --purple: #a855f7;
  --purple-light: #cf9cff;
  --purple-dark: #7131d5;
  --blue: #4ea8ff;
  --green: #27d17f;
  --amber: #f4b740;
  --pink: #f778ba;
  --danger: #ff6f86;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --font: "Inter", "Noto Sans Devanagari", system-ui, sans-serif;
  --font-hi: "Noto Sans Devanagari", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(87, 34, 155, 0.14), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
svg { display: block; }
.hidden { display: none !important; }

.ambient {
  position: fixed;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .14;
}
.ambient-one { top: 24%; left: -300px; background: #7a35f0; }
.ambient-two { right: -320px; top: 55%; background: #4935ff; }

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(9, 3, 20, .76);
  backdrop-filter: blur(22px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}
.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(103, 38, 179, .25)); }
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong { font-size: 22px; letter-spacing: -.65px; }
.brand small { color: var(--muted-2); font-family: var(--font-hi); font-size: 9px; letter-spacing: .6px; }
.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: .95;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.15px;
}
.brand-wordmark span:first-child {
  color: #fff;
  text-shadow: 0 2px 18px rgba(255, 255, 255, .12);
}
.brand-wordmark span:last-child {
  position: relative;
  background: linear-gradient(105deg, #E7C5FF 0%, #B86EFF 46%, #FFD078 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 13px rgba(154, 75, 229, .25));
}
.brand-wordmark span:last-child::after {
  position: absolute;
  top: -3px;
  right: -7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFD47F;
  box-shadow: 0 0 9px #FFB34D;
  content: "";
}
.brand .brand-wordmark + small {
  margin-top: 4px;
  color: #B0A4B6;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .65px;
}
.desktop-nav { display: flex; align-items: center; gap: 35px; }
.desktop-nav a {
  color: var(--muted);
  font-family: var(--font-hi);
  font-size: 13px;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: #fff; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-hi);
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button svg { width: 17px; height: 17px; }
.button:hover { transform: translateY(-2px); }
.button-primary {
  border-color: rgba(228, 197, 255, .32);
  background:
    radial-gradient(circle at 50% 120%, rgba(255,255,255,.25), transparent 46%),
    linear-gradient(135deg, #ad62f6, #7532de);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 12px 35px rgba(123,50,220,.28);
}
.button-primary:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 16px 45px rgba(123,50,220,.4); }
.button-secondary {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.button-secondary:hover { border-color: rgba(199,147,255,.36); background: rgba(160,89,239,.1); }
.button-ghost { padding-inline: 12px; background: transparent; color: #ddd6e7; }
.login-trigger.is-logged-in {
  border-color: rgba(255, 130, 151, .2);
  background: rgba(255, 100, 128, .065);
  color: #ffc0cb;
}
.login-trigger.is-logged-in:hover {
  border-color: rgba(255, 130, 151, .38);
  background: rgba(255, 100, 128, .11);
}
.button-large { min-height: 53px; padding-inline: 25px; font-size: 14px; }
.button-full { width: 100%; }
.menu-button {
  display: none;
  width: 43px;
  height: 43px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 900px;
  padding-top: 84px;
  text-align: center;
}
.hero-grid, .cta-grid {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(1180px, 100vw);
  height: 540px;
  transform: translateX(-50%);
  overflow: hidden;
  opacity: .52;
  mask-image: linear-gradient(to bottom, black 15%, transparent 90%);
}
.hero-grid::before, .cta-grid::before {
  position: absolute;
  inset: -80px -25%;
  content: "";
  transform: perspective(470px) rotateX(57deg);
  transform-origin: 50% 0;
  background-image:
    linear-gradient(rgba(183,125,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183,125,255,.18) 1px, transparent 1px);
  background-size: 74px 50px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(180,124,255,.2);
  border-radius: 999px;
  background: rgba(133,70,209,.08);
  color: #cfc6d9;
  font-family: var(--font-hi);
  font-size: 11px;
  letter-spacing: .15px;
}
.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8cffbd;
  box-shadow: 0 0 12px #46e893;
}
.pulse-dot::before {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(88,239,155,.55);
  border-radius: 50%;
  content: "";
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { transform: scale(.75); opacity: .7; } 50% { transform: scale(1.3); opacity: 0; } }
.hero h1 {
  max-width: 980px;
  margin: 27px auto 17px;
  font-family: var(--font-hi);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -4.4px;
  line-height: 1.05;
}
.hero h1 span, .section-heading h2 span, .privacy-copy h2 span, .coverage-content h2 span, .cta-card h2 span {
  background: linear-gradient(90deg, #f6e9ff 10%, #c995ff 52%, #8c54e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--font-hi);
  font-size: 16px;
  line-height: 1.8;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.whatsapp-inline {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  margin: 20px auto 0;
  color: #ded7e8;
  text-align: left;
}
.whatsapp-inline > svg { width: 16px; color: var(--muted-2); }
.whatsapp-inline span:nth-child(2) { display: flex; flex-direction: column; font-size: 12px; font-weight: 600; }
.whatsapp-inline small { color: var(--muted-2); font-family: var(--font-hi); font-size: 10px; font-weight: 500; }
.whatsapp-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(60, 223, 130, .22);
  border-radius: 50%;
  background: rgba(35, 196, 104, .09);
  color: #59e69a;
}
.whatsapp-icon svg { width: 17px; }
.hero-product { position: relative; margin: 70px auto 0; perspective: 1200px; }
.product-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  width: 80%;
  height: 330px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(177,91,255,.75), rgba(99,36,185,.22) 35%, transparent 70%);
  filter: blur(28px);
}
.product-window {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(205,163,255,.25);
  border-radius: 23px 23px 12px 12px;
  background: rgba(14, 7, 28, .87);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 45px 100px rgba(0,0,0,.6);
  text-align: left;
}
.product-window::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(255,255,255,.045), transparent 25%, transparent 70%, rgba(171,112,255,.035));
}
.window-topbar {
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 21px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.window-brand { display: flex; align-items: center; gap: 10px; color: #e4deed; font-size: 12px; font-weight: 600; }
.mini-logo {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(206,169,255,.24);
  border-radius: 8px;
  background: linear-gradient(145deg, #9c56e7, #5925a5);
  font-size: 12px;
  font-weight: 800;
}
.window-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(70,219,139,.16);
  border-radius: 999px;
  background: rgba(40,201,115,.06);
  color: #a6bcb0;
  font-size: 10px;
}
.window-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.window-body { display: grid; grid-template-columns: 190px 1fr; min-height: 370px; }
.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 25px 16px;
  border-right: 1px solid var(--line);
}
.mock-sidebar span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 9px;
  color: #716b7c;
  font-size: 11px;
}
.mock-sidebar svg { width: 15px; }
.mock-sidebar .active { background: rgba(160,93,231,.11); color: #d0b7ef; }
.mock-content { padding: 28px; }
.mock-heading { display: flex; align-items: flex-start; justify-content: space-between; }
.mock-heading div { display: flex; flex-direction: column; gap: 6px; }
.mock-heading small { color: #746d80; font-size: 9px; text-transform: uppercase; letter-spacing: 1.2px; }
.mock-heading strong { font-family: var(--font-hi); font-size: 18px; }
.live-chip { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: #978fa3; font-size: 9px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 23px; }
.metric-row article {
  position: relative;
  min-height: 105px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
}
.metric-icon { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 8px; }
.metric-icon svg { width: 13px; }
.metric-icon.purple { color: #cb9cff; background: rgba(174,97,246,.12); }
.metric-icon.blue { color: #79baff; background: rgba(78,168,255,.12); }
.metric-icon.green { color: #61e5a0; background: rgba(39,209,127,.12); }
.metric-row small { display: block; margin-top: 9px; color: #70697c; font-size: 8px; }
.metric-row strong { display: block; margin-top: 3px; font-size: 18px; }
.metric-row em { position: absolute; right: 12px; bottom: 14px; color: #66dca0; font-size: 8px; font-style: normal; }
.matching-panel { margin-top: 15px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.018); }
.panel-title { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.panel-title strong { font-size: 10px; }
.panel-title span { color: #8e72b5; font-size: 8px; }
.match-row { display: grid; grid-template-columns: 30px 1fr 70px 55px; align-items: center; gap: 9px; padding: 9px 16px; border-bottom: 1px solid rgba(255,255,255,.045); }
.match-row:last-child { border-bottom: 0; }
.avatar { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; font-size: 8px; font-weight: 700; }
.avatar-one { background: #3d245f; color: #cf9fff; }
.avatar-two { background: #173b4f; color: #78c9f5; }
.avatar-three { background: #47321d; color: #f5bd75; }
.match-row > span:nth-child(2) { display: flex; flex-direction: column; }
.match-row strong { font-family: var(--font-hi); font-size: 9px; }
.match-row small { color: #696271; font-size: 7px; }
.status { width: fit-content; padding: 4px 7px; border-radius: 999px; font-size: 7px; }
.status.success { background: rgba(39,209,127,.08); color: #5ad795; }
.status.pending { background: rgba(244,183,64,.08); color: #ddb15a; }
.budget { color: #afa8b8; font-size: 8px; text-align: right; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 26px auto 0;
  padding: 20px 10px;
  border-bottom: 1px solid var(--line);
}
.trust-strip span { display: flex; align-items: center; justify-content: center; gap: 8px; color: #716a7c; font-family: var(--font-hi); font-size: 10px; }
.trust-strip svg { width: 15px; color: #9b6cd3; }

.services, .process, .privacy-section, .coverage, .faq { padding-top: 150px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 52px; }
.section-heading > div { max-width: 650px; }
.section-label {
  display: block;
  margin-bottom: 14px;
  color: #a77bd8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.section-heading h2, .privacy-copy h2, .coverage-content h2, .cta-card h2 {
  margin: 0;
  font-family: var(--font-hi);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -2.8px;
  line-height: 1.12;
}
.section-heading > p {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--muted);
  font-family: var(--font-hi);
  font-size: 14px;
  line-height: 1.75;
}
.category-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.category-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.category-card::after {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(143,76,220,.08);
  filter: blur(40px);
  content: "";
}
.category-card.featured { border-color: rgba(169,109,243,.22); background: linear-gradient(145deg, rgba(146,72,232,.09), rgba(255,255,255,.012)); }
.category-card.wide { grid-column: 1 / -1; }
.category-card-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; }
.category-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; }
.category-icon svg { width: 21px; }
.category-icon.violet { background: rgba(168,85,247,.1); color: #c28cf5; }
.category-icon.blue { background: rgba(78,168,255,.1); color: #82c2ff; }
.category-icon.amber { background: rgba(244,183,64,.1); color: #efbe5d; }
.category-icon.green { background: rgba(39,209,127,.1); color: #5de39f; }
.category-icon.pink { background: rgba(247,120,186,.1); color: #f691c6; }
.category-card-head small { color: #6e6678; font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.category-card-head h3 { margin: 3px 0 0; font-family: var(--font-hi); font-size: 17px; }
.count { color: #51495c; font-size: 27px; font-weight: 600; }
.category-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 25px; }
.category-list.four-column { grid-template-columns: repeat(4, 1fr); }
.category-trigger {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  color: #918999;
  cursor: pointer;
  font-family: var(--font-hi);
  font-size: 11px;
  text-align: left;
  transition: all .2s ease;
}
.category-trigger:hover { border-color: rgba(186,127,255,.3); background: rgba(158,86,239,.08); color: #e3d7f1; transform: translateY(-1px); }

.section-heading.centered { display: block; max-width: 710px; margin-inline: auto; text-align: center; }
.section-heading.centered p { max-width: 650px; margin: 18px auto 0; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-grid::before { position: absolute; top: 51px; right: 18%; left: 18%; border-top: 1px dashed rgba(182,120,251,.2); content: ""; }
.process-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.03), rgba(255,255,255,.008));
}
.step-number { position: absolute; top: 26px; right: 25px; color: #403849; font-size: 28px; font-weight: 700; }
.process-icon {
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  border: 1px solid rgba(192,137,255,.19);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(170,91,244,.18), rgba(82,32,138,.07));
  color: #ca95ff;
  box-shadow: 0 15px 35px rgba(90,31,150,.18);
}
.process-icon svg { width: 23px; }
.process-card h3 { margin: 28px 0 10px; font-family: var(--font-hi); font-size: 20px; }
.process-card p { margin: 0; color: #8c8495; font-family: var(--font-hi); font-size: 13px; line-height: 1.75; }
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b887ea;
  cursor: pointer;
  font-family: var(--font-hi);
  font-size: 11px;
  font-weight: 600;
}
.text-button svg { width: 14px; transition: transform .2s ease; }
.text-button:hover svg { transform: translateX(3px); }

.privacy-panel, .coverage-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 50%, rgba(117,48,210,.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.privacy-copy, .coverage-content { padding: 65px; }
.privacy-copy p, .coverage-content p {
  max-width: 490px;
  margin: 20px 0 0;
  color: var(--muted);
  font-family: var(--font-hi);
  font-size: 14px;
  line-height: 1.8;
}
.privacy-points { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.privacy-points span { display: flex; align-items: center; gap: 10px; color: #b7afc0; font-size: 12px; }
.privacy-points svg { width: 16px; color: var(--green); }
.privacy-visual { position: relative; display: grid; min-height: 500px; place-items: center; }
.shield-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  border: 1px solid rgba(205,154,255,.42);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(180,93,255,.34), rgba(61,23,107,.42));
  color: #e2b9ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 0 70px rgba(165,79,243,.34);
  transform: rotate(8deg);
}
.shield-core svg { width: 46px; height: 46px; transform: rotate(-8deg); }
.orbit { position: absolute; border: 1px solid rgba(182,121,247,.13); border-radius: 50%; }
.orbit-one { width: 300px; height: 300px; }
.orbit-two { width: 420px; height: 420px; border-style: dashed; animation: spin 30s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(19,9,35,.78);
  box-shadow: 0 14px 35px rgba(0,0,0,.32);
  color: #bdb3c8;
  font-size: 10px;
  backdrop-filter: blur(12px);
}
.floating-chip svg { width: 15px; color: #b77cf2; }
.chip-worker { top: 23%; left: 14%; }
.chip-admin { top: 16%; right: 5%; border-color: rgba(82,221,147,.17); }
.chip-admin svg { color: #62de9c; }
.chip-customer { right: 9%; bottom: 20%; }

.coverage-card { background: radial-gradient(circle at 80% 50%, rgba(106,43,190,.18), transparent 35%), linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); }
.coverage-content .button { margin-top: 30px; }
.coverage-stats { display: flex; gap: 38px; margin-top: 30px; }
.coverage-stats div { display: flex; flex-direction: column; }
.coverage-stats strong { font-size: 27px; }
.coverage-stats small { margin-top: 3px; color: #756d80; font-family: var(--font-hi); font-size: 9px; }
.mp-map { position: relative; min-height: 500px; padding: 35px; }
.mp-map svg { width: 100%; height: 100%; overflow: visible; }
.map-shape { fill: url(#mapFill); stroke: rgba(202,155,255,.72); stroke-width: 2; filter: url(#mapGlow); }
.map-lines path { fill: none; stroke: rgba(208,174,244,.13); stroke-width: 1; }
.map-points circle { fill: #d5a8ff; stroke: rgba(194,129,255,.25); stroke-width: 9; }
.map-labels text { fill: #a69caf; font-family: var(--font); font-size: 11px; }
.map-badge {
  position: absolute;
  right: 15%;
  bottom: 15%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(45,222,128,.17);
  border-radius: 999px;
  background: rgba(12,9,21,.75);
  color: #9faba5;
  font-family: var(--font-hi);
  font-size: 9px;
  backdrop-filter: blur(10px);
}
.map-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 25px 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-hi);
  font-size: 16px;
  text-align: left;
}
.faq-item button svg { width: 19px; color: #806a98; transition: transform .3s ease; }
.faq-item.open button svg { transform: rotate(45deg); color: #c48df7; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { overflow: hidden; max-width: 850px; margin: 0; color: var(--muted); font-family: var(--font-hi); font-size: 13px; line-height: 1.75; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding: 0 5px 25px; }

.final-cta { padding-top: 150px; }
.cta-card {
  position: relative;
  overflow: hidden;
  padding: 90px 30px;
  border: 1px solid rgba(187,124,255,.19);
  border-radius: 30px;
  background: radial-gradient(circle at 50% 110%, rgba(156,72,234,.34), transparent 45%), rgba(255,255,255,.015);
  text-align: center;
}
.cta-card .cta-grid { height: 390px; opacity: .32; }
.cta-card p { max-width: 620px; margin: 20px auto 0; color: var(--muted); font-family: var(--font-hi); font-size: 14px; line-height: 1.75; }
.site-footer { padding-top: 100px; }
.footer-main { display: grid; grid-template-columns: 1.6fr .8fr .7fr 1fr; gap: 50px; padding: 55px 0; border-top: 1px solid var(--line); }
.footer-main > div:first-child p { max-width: 320px; margin: 20px 0 0; color: #746c7f; font-family: var(--font-hi); font-size: 11px; line-height: 1.7; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-links strong, .footer-contact strong { margin-bottom: 5px; font-size: 11px; }
.footer-links a, .footer-links button, .footer-contact a, .footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #77707f;
  cursor: pointer;
  font-family: var(--font-hi);
  font-size: 10px;
}
.footer-links a:hover, .footer-links button:hover, .footer-contact a:hover { color: #c6b5d8; }
.footer-contact svg { width: 14px; color: #9663cd; }
.footer-contact small { color: #544d5c; font-family: var(--font-hi); font-size: 9px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0 35px; border-top: 1px solid var(--line); color: #554e5e; font-size: 9px; }
.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 22px;
  display: flex;
  height: 48px;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid rgba(116,244,167,.25);
  border-radius: 999px;
  background: #1b9f5a;
  box-shadow: 0 15px 40px rgba(17,139,75,.35);
  font-size: 11px;
  font-weight: 700;
}
.floating-whatsapp svg { width: 19px; }

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 22px;
  place-items: center;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s;
}
.modal.active { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2,0,7,.78); backdrop-filter: blur(12px); }
.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 38px;
  border: 1px solid rgba(213,169,255,.18);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(28,15,49,.98), rgba(11,5,21,.98));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}
.modal.active .modal-card { transform: translateY(0) scale(1); }
.modal-form { width: min(100%, 880px); }
.modal-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  cursor: pointer;
}
.modal-close svg { width: 17px; }
.modal-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 30px; color: #968b9f; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.modal-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border: 1px solid rgba(194,128,255,.21);
  border-radius: 17px;
  background: rgba(154,72,229,.1);
  color: #c98eff;
}
.modal-icon svg { width: 24px; }
.otp-step .modal-icon { margin-bottom: 23px; }
.modal-card h2 { margin: 0; font-family: var(--font-hi); font-size: 26px; letter-spacing: -1px; }
.modal-card p { margin: 10px 0 24px; color: #8b8294; font-family: var(--font-hi); font-size: 12px; line-height: 1.7; }
.field-label, .form-field > span { display: block; margin: 0 0 8px; color: #aca2b6; font-family: var(--font-hi); font-size: 10px; font-weight: 600; }
.phone-input, .money-input {
  display: flex;
  min-height: 49px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}
.phone-input:focus-within, .money-input:focus-within { border-color: rgba(190,123,255,.5); box-shadow: 0 0 0 3px rgba(151,76,226,.08); }
.phone-input > span, .phone-input > b, .money-input > span { padding: 0 13px; border-right: 1px solid var(--line); color: #b7adc0; font-size: 12px; font-weight: 600; }
.phone-input input, .money-input input { min-width: 0; border: 0 !important; background: transparent !important; box-shadow: none !important; }
.phone-input input,
.money-input input {
  width: 100%;
  min-height: 100%;
  padding: 0 16px;
  outline: none;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #d69cff;
  font-family: "Inter", var(--font-hi);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: .7px;
}
.phone-input input::placeholder,
.money-input input::placeholder {
  color: #776c82 !important;
  -webkit-text-fill-color: #776c82 !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 1;
}
.phone-input input:-webkit-autofill,
.phone-input input:-webkit-autofill:hover,
.phone-input input:-webkit-autofill:focus,
.money-input input:-webkit-autofill,
.money-input input:-webkit-autofill:hover,
.money-input input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  caret-color: #d69cff;
  box-shadow: 0 0 0 1000px #160c25 inset !important;
  transition: background-color 9999s ease-out 0s;
}
.otp-step > .phone-input { margin-bottom: 15px; }
.form-note { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: #6e6578; font-family: var(--font-hi); font-size: 9px; }
.form-note svg { width: 14px; color: #7cae91; }
.otp-inputs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin: 10px 0 17px; }
.otp-inputs input { width: 100%; height: 52px; border: 1px solid var(--line); border-radius: 11px; outline: none; background: rgba(255,255,255,.03); color: #fff; font-size: 18px; font-weight: 700; text-align: center; }
.otp-inputs input:focus { border-color: #a663eb; box-shadow: 0 0 0 3px rgba(151,76,226,.09); }
.link-button { display: block; margin: 14px auto 0; border: 0; background: transparent; color: #9d71cc; cursor: pointer; font-size: 10px; }
.form-header { display: flex; align-items: flex-start; gap: 17px; padding: 4px 50px 25px 0; border-bottom: 1px solid var(--line); }
.form-header .modal-icon { flex: 0 0 auto; }
.form-header .section-label { margin-bottom: 5px; }
.form-header p { margin: 6px 0 0; }
form { padding-top: 25px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.form-field { display: block; }
.form-field.full { grid-column: 1 / -1; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: rgba(255,255,255,.025);
  color: #eae5ef;
  font-family: var(--font-hi);
  font-size: 11px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 80px; padding-block: 13px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(190,123,255,.5); box-shadow: 0 0 0 3px rgba(151,76,226,.08); }
.form-field input[readonly] { color: #756c7f; cursor: not-allowed; }
.form-field select { color-scheme: dark; }
.form-field ::placeholder { color: #5d5566; }
.service-fieldset { margin: 24px 0; padding: 0; border: 0; }
.service-fieldset legend { margin-bottom: 12px; color: #aca2b6; font-family: var(--font-hi); font-size: 10px; font-weight: 600; }
.service-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.service-option { position: relative; }
.service-option input { position: absolute; opacity: 0; pointer-events: none; }
.service-option span {
  display: flex;
  min-height: 41px;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.018);
  color: #817987;
  cursor: pointer;
  font-family: var(--font-hi);
  font-size: 9px;
  text-align: center;
  transition: all .2s ease;
}
.service-option input:checked + span { border-color: rgba(190,124,255,.5); background: rgba(160,83,233,.13); color: #d9b9f6; box-shadow: inset 0 0 0 1px rgba(192,127,255,.08); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: #766e80; cursor: pointer; font-family: var(--font-hi); font-size: 9px; line-height: 1.6; }
.consent input { margin-top: 2px; accent-color: #9d50e8; }
.form-submit { min-height: 51px; }

.success-dialog {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 20px;
  place-items: center;
  background: rgba(2,0,7,.8);
  opacity: 0;
  backdrop-filter: blur(12px);
  transition: all .25s ease;
}
.success-dialog.active { visibility: visible; opacity: 1; }
.success-card {
  width: min(100%, 420px);
  padding: 40px;
  border: 1px solid rgba(98,225,157,.2);
  border-radius: 25px;
  background: linear-gradient(155deg, #151027, #0b0714);
  box-shadow: var(--shadow);
  text-align: center;
}
.success-check { display: grid; width: 65px; height: 65px; margin: 0 auto 22px; place-items: center; border-radius: 50%; background: rgba(39,209,127,.12); color: #5fe09d; box-shadow: 0 0 35px rgba(39,209,127,.15); }
.success-check svg { width: 28px; }
.success-card h2 { margin: 0; font-family: var(--font-hi); font-size: 23px; }
.success-card p { color: #8d8597; font-family: var(--font-hi); font-size: 11px; line-height: 1.7; }
.success-card strong { display: block; width: fit-content; margin: 20px auto; padding: 10px 14px; border: 1px dashed rgba(192,130,255,.25); border-radius: 9px; color: #c696f3; letter-spacing: 1px; }
.toast {
  position: fixed;
  z-index: 150;
  left: 50%;
  bottom: 25px;
  display: flex;
  visibility: hidden;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid rgba(97,226,157,.18);
  border-radius: 999px;
  background: rgba(14,24,20,.94);
  color: #b8d9c7;
  box-shadow: 0 15px 45px rgba(0,0,0,.4);
  font-family: var(--font-hi);
  font-size: 10px;
  opacity: 0;
  transform: translate(-50%, 15px);
  transition: all .25s ease;
}
.toast.show { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.toast svg { width: 16px; color: var(--green); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 24px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: grid; }
  .mobile-menu {
    position: fixed;
    z-index: 49;
    top: 76px;
    right: 16px;
    left: 16px;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15,7,27,.97);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition: all .2s ease;
  }
  .mobile-menu.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .mobile-menu a { padding: 12px; color: #afa7b8; font-family: var(--font-hi); font-size: 13px; }
  .mobile-menu .button { margin-top: 7px; }
  .window-body { grid-template-columns: 145px 1fr; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-row article:last-child { display: none; }
  .process-card { padding: 24px; }
  .privacy-copy, .coverage-content { padding: 45px; }
  .service-options { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section-shell { width: min(100% - 28px, 600px); }
  .site-header { min-height: 68px; padding-inline: 14px; }
  .site-header .brand strong { font-size: 16px; }
  .site-header .brand small { display: none; }
  .site-header .brand-mark { width: 36px; height: 36px; }
  .header-actions .button-ghost { min-width: 78px; padding-inline: 11px; font-size: 14px; }
  .header-actions .button-ghost svg { width: 16px; }
  .mobile-menu { top: 68px; }
  .hero { min-height: auto; padding-top: 62px; }
  .hero h1 { margin-top: 22px; font-size: clamp(42px, 12vw, 58px); letter-spacing: -3px; }
  .hero-copy { font-size: 13px; line-height: 1.75; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .whatsapp-inline { margin-top: 18px; }
  .hero-product { margin-top: 55px; }
  .product-window { min-height: 400px; border-radius: 18px 18px 8px 8px; }
  .window-topbar { height: 50px; padding-inline: 14px; }
  .window-status { display: none; }
  .window-body { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .mock-content { padding: 20px 14px; }
  .mock-heading strong { font-size: 15px; }
  .metric-row { gap: 8px; }
  .metric-row article { padding: 12px; }
  .match-row { grid-template-columns: 27px 1fr 52px; padding-inline: 11px; }
  .match-row .status { display: none; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 13px; }
  .trust-strip span { justify-content: flex-start; font-size: 9px; text-align: left; }
  .services, .process, .privacy-section, .coverage, .faq, .final-cta { padding-top: 100px; }
  .section-heading { display: block; margin-bottom: 32px; }
  .section-heading h2, .privacy-copy h2, .coverage-content h2, .cta-card h2 { font-size: 38px; letter-spacing: -2px; }
  .section-heading > p { margin-top: 17px; font-size: 12px; }
  .category-groups, .process-grid, .privacy-panel, .coverage-card { grid-template-columns: 1fr; }
  .category-card.wide { grid-column: auto; }
  .category-card { padding: 20px; }
  .category-list.four-column { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .process-card { min-height: auto; }
  .privacy-copy, .coverage-content { padding: 38px 25px; }
  .privacy-visual { min-height: 360px; }
  .orbit-one { width: 220px; height: 220px; }
  .orbit-two { width: 310px; height: 310px; }
  .shield-core { width: 85px; height: 85px; }
  .chip-worker { left: 4%; }
  .chip-admin { right: 1%; }
  .chip-customer { right: 2%; }
  .coverage-content { order: 1; }
  .mp-map { order: 0; min-height: 340px; padding: 8px 20px 0; }
  .coverage-stats { gap: 25px; }
  .faq-item > button { font-size: 14px; }
  .cta-card { padding: 65px 22px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-main > div:first-child, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 48px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .modal { padding: 10px; }
  .modal-card { max-height: calc(100vh - 20px); padding: 28px 20px; border-radius: 21px; }
  .modal-form { padding-top: 30px; }
  .form-header { padding-right: 25px; }
  .form-header .modal-icon { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .service-options { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Readability pass: keep the premium density without sacrificing legibility. */
.brand small { font-size: 11px; color: #93899f; }
.desktop-nav a { font-size: 16px; color: #c7becf; }
.button { font-size: 16px; }
.eyebrow { font-size: 13px; }
.hero-copy { font-size: 20px; color: #c5bccd; }
.whatsapp-inline span:nth-child(2) { font-size: 14px; }
.whatsapp-inline small { font-size: 12px; color: #93899f; }
.window-brand { font-size: 14px; }
.window-status { font-size: 12px; }
.mock-sidebar span { font-size: 14px; color: #a69dac; }
.mock-heading small { font-size: 11px; color: #91879b; }
.mock-heading strong { font-size: 21px; }
.live-chip { font-size: 11px; }
.metric-row small { font-size: 12px; color: #aaa1b3; }
.metric-row strong { font-size: 21px; }
.metric-row em { font-size: 10px; }
.panel-title strong { font-size: 13px; }
.panel-title span { font-size: 11px; }
.avatar { font-size: 10px; }
.match-row strong { font-size: 13px; }
.match-row small { font-size: 11px; color: #a198aa; }
.status { font-size: 11px; }
.budget { font-size: 12px; }
.trust-strip span { font-size: 14px; color: #aaa1b3; }
.section-label { font-size: 12px; }
.section-heading > p,
.privacy-copy p,
.coverage-content p,
.cta-card p { font-size: 18px; color: #c0b7c8; }
.category-card-head small { font-size: 11px; color: #91879b; }
.category-card-head h3 { font-size: 20px; }
.category-trigger { font-size: 15px; color: #b9b0c1; }
.process-card p { font-size: 17px; color: #b9b0c1; }
.text-button { font-size: 15px; }
.privacy-points span { font-size: 15px; }
.floating-chip { font-size: 12px; }
.coverage-stats small { font-size: 12px; color: #958b9f; }
.map-labels text { font-size: 13px; }
.map-badge { font-size: 11px; }
.faq-item > button { font-size: 18px; }
.faq-answer p { font-size: 17px; color: #b9b0c1; }
.footer-main > div:first-child p { font-size: 16px; color: #aaa1b3; }
.footer-links strong,
.footer-contact strong { font-size: 16px; }
.footer-links a,
.footer-links button,
.footer-contact a,
.footer-contact span { font-size: 15px; color: #aaa1b3; }
.footer-contact small { font-size: 14px; color: #948a9e; }
.footer-bottom { font-size: 13px; color: #948a9e; }
.floating-whatsapp { font-size: 13px; }
.modal-brand { font-size: 12px; }
.modal-card p { font-size: 14px; color: #a69dac; }
.field-label,
.form-field > span,
.service-fieldset legend { font-size: 14px; }
.phone-input > span,
.phone-input > b,
.money-input > span { font-size: 14px; }
.form-field input,
.form-field select,
.form-field textarea { font-size: 16px; }
.form-note,
.link-button { font-size: 12px; }
.service-option span { font-size: 14px; }
.consent { font-size: 14px; color: #aaa1b3; }
.success-card p { font-size: 14px; }
.toast { font-size: 12px; }

#loginModal .modal-card { width: min(100%, 560px); }
#loginModal .modal-card h2 { font-size: 34px; }
#loginModal .modal-card p { font-size: 17px; }
#loginModal .field-label { margin-bottom: 11px; font-size: 16px; }
#loginModal .phone-input {
  min-height: 64px;
  border-width: 1.5px;
  border-color: rgba(193, 125, 255, .32);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
}
#loginModal .phone-input > span {
  align-self: stretch;
  display: flex;
  min-width: 75px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #ded3e8;
  font-size: 19px;
}
#loginModal .phone-input input {
  min-height: 62px;
  font-size: 22px;
  letter-spacing: 1.4px;
}
#loginModal .phone-input input::placeholder { font-size: 17px; }
#loginModal .button-full { min-height: 58px; font-size: 18px; }
#loginModal .form-note { font-size: 14px; }
#loginModal .otp-inputs { gap: 10px; }
#loginModal .otp-inputs input {
  height: 62px;
  border-color: rgba(193, 125, 255, .25);
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  -webkit-text-fill-color: #fff;
  caret-color: #d69cff;
  font-size: 24px;
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto; padding-inline: 12px; }
  .site-header .brand { gap: 8px; min-width: 0; }
  .site-header .brand strong { font-size: 18px; white-space: nowrap; }
  .site-header .brand-wordmark { gap: 4px; font-size: 20px; letter-spacing: -.8px; }
  .site-header .brand .brand-wordmark + small { display: none; }
  .site-header .brand-mark { width: 44px; height: 44px; }
  .header-actions { gap: 6px; }
  .header-actions .button-ghost {
    min-width: 78px;
    min-height: 42px;
    gap: 6px;
    padding: 0 11px;
    border: 1px solid rgba(194, 137, 255, .22);
    background: rgba(151, 76, 226, .08);
    font-size: 14px;
  }
  .header-actions .button-ghost svg { width: 16px; }
  .menu-button { width: 44px; height: 44px; }
  .button { font-size: 15px; }
  .hero-copy { font-size: 17px; }
  .trust-strip span { font-size: 13px; }
  .section-heading > p,
  .privacy-copy p,
  .coverage-content p,
  .cta-card p { font-size: 16px; }
  .category-trigger { font-size: 14px; }
  .process-card p { font-size: 16px; }
  .faq-item > button { font-size: 17px; }
  .faq-answer p { font-size: 16px; }
  .footer-main > div:first-child p { font-size: 17px; line-height: 1.8; }
  .footer-links strong,
  .footer-contact strong { font-size: 17px; }
  .footer-links a,
  .footer-links button,
  .footer-contact a,
  .footer-contact span { font-size: 16px; }
  .footer-contact small { font-size: 15px; }
  .footer-bottom { font-size: 14px; line-height: 1.7; }
  #loginModal .modal-card {
    width: 100%;
    padding: 30px 24px;
  }
  #loginModal .modal-card h2 { font-size: 31px; line-height: 1.25; }
  #loginModal .modal-card p { font-size: 16px; }
  #loginModal .field-label { font-size: 16px; }
  #loginModal .phone-input { min-height: 66px; }
  #loginModal .phone-input input {
    min-height: 64px;
    padding-inline: 14px;
    font-size: 23px;
  }
  #loginModal .phone-input > span { min-width: 68px; padding-inline: 14px; font-size: 19px; }
  #loginModal .otp-inputs { gap: 7px; }
  #loginModal .otp-inputs input { height: 58px; font-size: 23px; }
  #loginModal .form-note { font-size: 13px; line-height: 1.5; }
}

@media (max-width: 360px) {
  .site-header { padding-inline: 9px; }
  .site-header .brand strong { font-size: 16px; }
  .site-header .brand-wordmark { gap: 3px; font-size: 17px; }
  .site-header .brand-mark { width: 40px; height: 40px; }
  .header-actions .button-ghost { min-width: 70px; padding-inline: 8px; font-size: 13px; }
  .menu-button { width: 41px; height: 41px; }
}
