/* ============================================================
   Subh-e-Noor Solutions — design system
   Palette derived from the name: "the first light of dawn".
   Deep indigo night, warm amber horizon, cool teal signal.
   ============================================================ */

:root {
  /* colour */
  /* ---- surfaces: deep blue-slate, never flat black ---- */
  --bg:        #151A24;   /* page background  */
  --surface:   #1E2430;   /* cards, panels    */
  --surface-2: #2A3140;   /* hover / raised   */
  --line:      #333B4C;   /* borders          */
  --line-2:    #465065;   /* stronger borders */

  /* ---- brand ---- */
  --accent:    #22C8E8;   /* cyan  — 8.7:1 on --bg */
  --accent-2:  #3D74E8;   /* blue  — gradients, fills */
  --accent-br: #5FD9F2;   /* lighter cyan for small highlights */
  --signal:    #22C8E8;
  --signal-dim:#2F6E80;
  --alert:     #FF7183;

  /* ---- text ---- */
  --text:      #F0F3F8;   /* 15.4:1 */
  --dim:       #B4BECD;   /*  9.3:1 */
  --dimmer:    #8A94A6;   /*  5.7:1 — safe for small mono labels */

  /* type */
  --display: "Rubik", system-ui, -apple-system, sans-serif;
  --body:    "Rubik", system-ui, -apple-system, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "Courier New", monospace;

  /* spacing / shape */
  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --r-s: 8px;
  --r-m: 14px;
  --r-l: 22px;

  --edge: 1px solid var(--line);
  --shadow-lift: 0 22px 52px -26px rgba(0, 0, 0, .62);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.68;
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--display); font-weight: 600; line-height: 1.08; letter-spacing: -.025em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--accent); color: #0A1420; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- layout primitives ---------- */
.wrap { width: min(1220px, 100% - (var(--gut) * 2)); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - (var(--gut) * 2)); margin-inline: auto; }

.band { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.band-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.band-line { border-top: var(--edge); }

/* ---------- eyebrow / section headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--signal);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 2px;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
}

.h-xl { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
.h-lg { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
.h-sm { font-size: 1.2rem; letter-spacing: -.015em; }

.lede { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--dim); max-width: 62ch; }

.glow { color: var(--accent); }
.gradient-text {
  background: linear-gradient(96deg, var(--accent-br) 0%, var(--accent) 45%, var(--accent-2) 115%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.5rem; border-radius: 100px;
  font-family: var(--body); font-weight: 600; font-size: .96rem;
  letter-spacing: -.005em; white-space: nowrap;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              background .28s var(--ease), border-color .28s var(--ease);
}
.btn svg { width: 16px; height: 16px; transition: transform .28s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(96deg, var(--accent-2) 0%, var(--accent) 100%);
  color: #0A1420;
  box-shadow: 0 10px 30px -12px rgba(61, 116, 232, .45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(61, 116, 232, .6); }

.btn-ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); transform: translateY(-2px); }

.btn-sm { padding: .58rem 1.1rem; font-size: .875rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(21, 26, 36, .82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-head.is-stuck { border-bottom-color: var(--line); background: rgba(21, 26, 36, .95); }

.head-inner { display: flex; align-items: center; gap: 1.5rem; height: 74px; }

.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { width: 36px; height: 27px; }
.brand-name {
  font-family: var(--display); font-weight: 700; font-size: 1.06rem;
  letter-spacing: -.03em; line-height: 1.1;
}
.brand-name span { display: block; font-family: var(--mono); font-size: .585rem; font-weight: 400;
  letter-spacing: .16em; color: var(--accent); text-transform: uppercase; margin-top: 3px; }
@media (max-width: 460px) { .brand-name span { display: none; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: .25rem; }
.nav a {
  position: relative; padding: .5rem .72rem; border-radius: var(--r-s);
  font-size: .93rem; font-weight: 450; color: var(--dim);
  transition: color .22s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a.is-here { color: var(--text); }
.nav a.is-here::after {
  content: ""; position: absolute; left: .72rem; right: .72rem; bottom: .18rem;
  height: 2px; border-radius: 2px; background: var(--accent);
}

.head-cta { flex-shrink: 0; }
@media (min-width: 981px) { .nav .btn { display: none; } }

.burger {
  display: none; width: 42px; height: 42px; border-radius: var(--r-s);
  border: 1px solid var(--line); align-items: center; justify-content: center;
  flex-direction: column; gap: 4px; margin-left: auto;
}
.burger i { display: block; width: 17px; height: 1.8px; background: var(--text); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger.is-open i:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.burger.is-open i:nth-child(2) { opacity: 0; }
.burger.is-open i:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

@media (max-width: 980px) {
  .burger { display: flex; }
  .head-cta { display: none; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0;
    align-items: stretch; background: var(--surface);
    border-bottom: var(--edge); padding: .6rem var(--gut) 1.6rem;
    transform: translateY(-130%); transition: transform .42s var(--ease);
    max-height: calc(100dvh - 74px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .9rem .2rem; font-size: 1.05rem; border-bottom: 1px solid rgba(51,59,76,.75); }
  .nav a.is-here::after { display: none; }
  .nav a.is-here { color: var(--accent); }
  .nav .btn { margin-top: 1.1rem; justify-content: center; border-bottom: 0; }
}

/* ============================================================
   HERO — the dawn horizon
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(4.5rem, 8vw, 7rem); }

.hero-sky {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 118%, rgba(43,94,209,.13) 0%, rgba(34,200,232,.11) 36%, transparent 68%),
    radial-gradient(70% 55% at 82% 6%, rgba(34,200,232,.12) 0%, transparent 72%);
  animation: skyBreath 13s ease-in-out infinite;
}
@keyframes skyBreath {
  0%, 100% { opacity: .82; transform: translateY(0) scale(1); }
  50%      { opacity: 1;   transform: translateY(-12px) scale(1.035); }
}

/* faint grid, like a routing chart */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(70,80,101,.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(70,80,101,.5) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 78% 68% at 50% 40%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 78% 68% at 50% 40%, #000 25%, transparent 78%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 1000px) { .hero-inner { grid-template-columns: 1fr; } }

.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.35rem); font-weight: 600; }
.hero h1 em { font-style: normal; }
.hero .lede { margin-top: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.9rem; margin-top: 2.8rem;
  padding-top: 1.7rem; border-top: var(--edge);
}
.hero-meta div strong {
  display: block; font-family: var(--display); font-size: 1.65rem; font-weight: 600;
  color: var(--text); letter-spacing: -.03em;
}
.hero-meta div span {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--dimmer);
}

/* ============================================================
   SIGNATURE — the live route monitor
   ============================================================ */
.monitor {
  background: linear-gradient(168deg, var(--surface) 0%, #191F2A 100%);
  border: var(--edge); border-radius: var(--r-l);
  box-shadow: var(--shadow-lift);
  overflow: hidden; position: relative;
}
.monitor::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-br), transparent);
  animation: scanline 4.6s linear infinite; opacity: .75;
}
@keyframes scanline {
  0%   { top: 0;    opacity: 0; }
  12%  { opacity: .8; }
  88%  { opacity: .8; }
  100% { top: 100%; opacity: 0; }
}

.monitor-bar {
  display: flex; align-items: center; gap: .7rem;
  padding: .9rem 1.15rem; border-bottom: var(--edge);
  background: rgba(42, 49, 64, .55);
}
.monitor-bar h2, .monitor-bar .mb-title {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .19em; text-transform: uppercase; color: var(--dim);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--signal);
  box-shadow: 0 0 0 0 rgba(34, 200, 232, .5); animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(34,200,232,.45); }
  70%  { box-shadow: 0 0 0 11px rgba(34,200,232,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,200,232,0); }
}
.monitor-clock { margin-left: auto; font-family: var(--mono); font-size: .72rem; color: var(--dim); }

.monitor-head, .route-row {
  display: grid; grid-template-columns: 62px 1fr 104px 74px 20px;
  gap: .55rem; align-items: center;
  padding: .62rem 1.15rem;
  font-family: var(--mono); font-size: .8rem;
}
.monitor-head {
  font-size: .63rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dimmer); border-bottom: var(--edge);
}
.route-row { border-bottom: 1px solid rgba(51, 59, 76, .7); }
.route-row:last-child { border-bottom: 0; }
.route-row .pfx { color: var(--accent); font-weight: 500; }
.route-row .cov { color: var(--text); font-family: var(--body); font-size: .93rem; font-weight: 450; }
.route-row .kind { color: var(--signal); font-size: .74rem; text-align: right; }
.route-row .num  { color: var(--dim);    font-size: .74rem; text-align: right; }
.route-row .bar { height: 15px; width: 4px; border-radius: 2px; background: var(--signal-dim); justify-self: end; }
.route-row .bar[data-load="hi"] { background: var(--signal); box-shadow: 0 0 9px var(--signal); }
.route-row .bar[data-load="mid"] { background: var(--accent); }

.route-row.is-fresh { animation: rowFlash .85s var(--ease); }
@keyframes rowFlash {
  0%   { background: rgba(34, 200, 232, .18); }
  100% { background: transparent; }
}

.monitor-foot {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  padding: .85rem 1.15rem; border-top: var(--edge);
  font-family: var(--mono); font-size: .7rem; color: var(--dimmer);
  background: rgba(42, 49, 64, .38);
}
.monitor-foot b { color: var(--signal); font-weight: 500; }

/* ============================================================
   SIP handshake ladder
   ============================================================ */
.ladder-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 940px) { .ladder-wrap { grid-template-columns: 1fr; } }

.ladder {
  background: var(--surface); border: var(--edge); border-radius: var(--r-l);
  padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-lift);
}
.ladder-ends {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 1.4rem;
}
.ladder-ends b { color: var(--text); font-weight: 500; }

.hop { position: relative; padding: .55rem 0; }
.hop-line { display: flex; align-items: center; gap: .7rem; }
.hop-code {
  font-family: var(--mono); font-size: .78rem; color: var(--accent);
  min-width: 64px; font-variant-numeric: tabular-nums;
}
.hop-arrow { flex: 1; height: 1px; background: var(--line-2); position: relative; }
.hop-arrow::after {
  content: ""; position: absolute; top: -3.5px; width: 8px; height: 8px;
  border-top: 1.6px solid var(--signal); border-right: 1.6px solid var(--signal);
}
.hop.to-right .hop-arrow::after { right: 0; transform: rotate(45deg); }
.hop.to-left .hop-arrow::after { left: 0; transform: rotate(-135deg); }
.hop-label { font-family: var(--mono); font-size: .74rem; color: var(--dim); min-width: 118px; }
.hop.to-left .hop-label { text-align: right; order: -1; }

.hop { opacity: 0; transform: translateY(9px); }
.in-view .hop { animation: hopIn .55s var(--ease) forwards; }
.in-view .hop:nth-child(1) { animation-delay: .05s; }
.in-view .hop:nth-child(2) { animation-delay: .28s; }
.in-view .hop:nth-child(3) { animation-delay: .51s; }
.in-view .hop:nth-child(4) { animation-delay: .74s; }
.in-view .hop:nth-child(5) { animation-delay: .97s; }
.in-view .hop:nth-child(6) { animation-delay: 1.2s; }
@keyframes hopIn { to { opacity: 1; transform: translateY(0); } }

.ladder-note {
  margin-top: 1.5rem; padding-top: 1.1rem; border-top: var(--edge);
  font-family: var(--mono); font-size: .72rem; color: var(--dimmer); line-height: 1.7;
}

/* ============================================================
   CARDS
   ============================================================ */
.grid { display: grid; gap: 1.15rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative; overflow: hidden;
  background: var(--surface); border: var(--edge); border-radius: var(--r-m);
  padding: clamp(1.4rem, 2.4vw, 2rem);
  transition: transform .38s var(--ease), border-color .38s var(--ease), background .38s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: -1px -1px auto -1px; height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-br), var(--accent-2));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--surface-2); }
.card:hover::before { transform: scaleX(1); }

.card h3 { margin-bottom: .6rem; font-size: 1.22rem; }
.card p { color: var(--dim); font-size: .97rem; }

.card-tag {
  display: inline-block; font-family: var(--mono); font-size: .66rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: .9rem;
}

.card-glyph { width: 46px; height: 46px; margin-bottom: 1.1rem; }
.card-glyph [data-spin]   { transform-box: view-box; transform-origin: 22px 22px; animation: slowSpin 16s linear infinite; }
.card-glyph [data-pulse]  { animation: glyphPulse 2.6s ease-in-out infinite; }
.card-glyph [data-pulse="2"] { animation-delay: .5s; }
.card-glyph [data-pulse="3"] { animation-delay: 1s; }
.card-glyph [data-wave] { transform-box: fill-box; transform-origin: center bottom; animation: waveBar 1.4s ease-in-out infinite; }
.card-glyph [data-wave="2"] { animation-delay: .18s; }
.card-glyph [data-wave="3"] { animation-delay: .36s; }
.card-glyph [data-wave="4"] { animation-delay: .54s; }
.card-glyph [data-wave="5"] { animation-delay: .72s; }
@keyframes slowSpin  { to { transform: rotate(360deg); } }
@keyframes glyphPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes waveBar   { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

/* feature list inside cards */
.ticks { margin-top: 1.1rem; display: grid; gap: .5rem; }
.ticks li {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .92rem; color: var(--dim);
}
.ticks li::before {
  content: ""; flex-shrink: 0; margin-top: .55em;
  width: 6px; height: 6px; border-radius: 1px; background: var(--signal);
}

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: var(--edge); border-radius: var(--r-m); overflow: hidden; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--surface); padding: clamp(1.4rem, 3vw, 2.2rem); text-align: center; }
.stat b {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 2.9rem); letter-spacing: -.04em;
  background: linear-gradient(100deg, var(--accent-br), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat span {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--dimmer);
}

/* ============================================================
   INNER PAGE BANNER
   ============================================================ */
.page-head { position: relative; overflow: hidden; padding-block: clamp(3.2rem, 6vw, 5.2rem) clamp(2.4rem, 4vw, 3.6rem); border-bottom: var(--edge); }
.page-head .hero-sky { animation-duration: 17s; }
.page-head-inner { position: relative; z-index: 1; }
.crumb { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dimmer); margin-bottom: .9rem; }
.crumb a:hover { color: var(--signal); }

/* ============================================================
   PROSE
   ============================================================ */
.prose p { color: var(--dim); }
.prose h3 { margin: 2.2rem 0 .8rem; font-size: 1.35rem; color: var(--text); }
.prose h3:first-child { margin-top: 0; }

/* split content rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-wide { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 900px) { .split, .split-wide { grid-template-columns: 1fr; } }

/* ============================================================
   RATES TABLE
   ============================================================ */
.rates-panel { border: var(--edge); border-radius: var(--r-m); overflow: hidden; background: var(--surface); }
.rates-tabs { display: flex; gap: .3rem; padding: .7rem; border-bottom: var(--edge); flex-wrap: wrap; background: rgba(42,49,64,.48); }
.rates-tabs button {
  padding: .48rem 1rem; border-radius: 100px; font-family: var(--mono);
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--dim);
  border: 1px solid transparent; transition: all .25s var(--ease);
}
.rates-tabs button:hover { color: var(--text); }
.rates-tabs button.is-on { background: var(--accent); color: #0A1420; font-weight: 600; }

.rate-row {
  display: grid; grid-template-columns: 54px 1fr 110px 96px; gap: .8rem; align-items: center;
  padding: .95rem 1.15rem; border-bottom: 1px solid rgba(51,59,76,.75);
  font-family: var(--mono); font-size: .85rem;
}
.rate-row:last-child { border-bottom: 0; }
.rate-row .pfx { color: var(--accent); }
.rate-row .country { font-family: var(--body); font-size: 1rem; color: var(--text); font-weight: 450; }
.rate-row .type { color: var(--dimmer); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; text-align: right; }
.rate-row .act a { color: var(--signal); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.rate-row .act a:hover { text-decoration: underline; }
@media (max-width: 660px) {
  .rate-row { grid-template-columns: 46px 1fr auto; }
  .rate-row .type { display: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-tabs { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 2rem; }
.faq-tabs button {
  padding: .5rem 1.15rem; border-radius: 100px; border: 1px solid var(--line);
  font-family: var(--mono); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dim); transition: all .25s var(--ease);
}
.faq-tabs button:hover { border-color: var(--line-2); color: var(--text); }
.faq-tabs button.is-on { background: var(--accent); border-color: var(--accent); color: #0A1420; font-weight: 600; }

.faq-item { border-bottom: var(--edge); }
.faq-q {
  width: 100%; display: flex; align-items: flex-start; gap: 1rem; text-align: left;
  padding: 1.35rem 0; font-family: var(--display); font-size: 1.1rem; font-weight: 500;
  letter-spacing: -.015em; transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-sign {
  flex-shrink: 0; margin-left: auto; width: 22px; height: 22px; position: relative; margin-top: 3px;
}
.faq-sign::before, .faq-sign::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 1.6px;
  background: var(--accent); border-radius: 2px; transition: transform .32s var(--ease);
}
.faq-sign::after { transform: rotate(90deg); }
.faq-item.is-open .faq-sign::after { transform: rotate(0deg); }

.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { color: var(--dim); font-size: .99rem; padding-right: 2.5rem; }
.faq-a > div > :last-child { padding-bottom: 1.5rem; }
@media (max-width: 600px) { .faq-a p { padding-right: 0; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.quote {
  background: var(--surface); border: var(--edge); border-radius: var(--r-m);
  padding: clamp(1.5rem, 3vw, 2.1rem); position: relative;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.quote:hover { border-color: var(--line-2); transform: translateY(-4px); }
.quote p { color: var(--dim); font-size: 1rem; }
.quote-mark { font-family: var(--display); font-size: 3.4rem; line-height: .6; color: var(--line-2); margin-bottom: .6rem; }
.quote-by { margin-top: 1.4rem; padding-top: 1.1rem; border-top: var(--edge); }
.quote-by b { display: block; font-family: var(--body); font-weight: 600; font-size: .96rem; color: var(--text); }
.quote-by span { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dimmer); }

.placeholder-note {
  border: 1px dashed var(--line-2); border-radius: var(--r-m);
  padding: 1.3rem 1.5rem; background: rgba(34, 200, 232, .07);
  font-family: var(--mono); font-size: .82rem; color: var(--accent); line-height: 1.7;
}

/* ============================================================
   FORM
   ============================================================ */
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-family: var(--mono); font-size: .7rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--dim); margin-bottom: .5rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem 1rem; border-radius: var(--r-s);
  background: var(--bg); border: 1px solid var(--line); color: var(--text);
  font-family: var(--body); font-size: 1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34, 200, 232, .18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--dimmer); }
.form-note { font-family: var(--mono); font-size: .72rem; color: var(--dimmer); margin-top: 1rem; line-height: 1.7; }

.contact-line {
  display: flex; align-items: center; gap: 1rem; padding: 1.15rem 0; border-bottom: var(--edge);
}
.contact-line:last-child { border-bottom: 0; }
.contact-line .ic {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: var(--r-s);
  border: var(--edge); display: grid; place-items: center; color: var(--accent);
}
.contact-line .ic svg { width: 17px; height: 17px; }
.contact-line small {
  display: block; font-family: var(--mono); font-size: .66rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--dimmer); margin-bottom: .18rem;
}
.contact-line a, .contact-line b { font-weight: 500; font-size: 1rem; }
.contact-line a:hover { color: var(--accent); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-top: var(--edge); border-bottom: var(--edge); }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 140% at 50% 130%, rgba(61,116,232,.18), transparent 62%);
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: space-between; }
.cta-inner h2 { max-width: 18ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.4rem; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-grid h4 {
  font-family: var(--mono); font-size: .68rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dimmer); margin-bottom: 1.1rem;
}
.foot-grid li { margin-bottom: .6rem; }
.foot-grid a { color: var(--dim); font-size: .95rem; transition: color .22s var(--ease); }
.foot-grid a:hover { color: var(--accent); }
.foot-blurb { color: var(--dim); font-size: .95rem; margin-top: 1rem; max-width: 34ch; }

.foot-base {
  margin-top: 3rem; padding-top: 1.6rem; border-top: var(--edge);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-family: var(--mono); font-size: .74rem; color: var(--dimmer);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }
.reveal[data-d="4"] { transition-delay: .36s; }
.reveal[data-d="5"] { transition-delay: .45s; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hop { opacity: 1; transform: none; }
  .monitor::after { display: none; }
}

/* ============================================================
   HERO SHOWCASE — multi-slide
   ============================================================ */
.showcase { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3.5rem, 6vw, 5.5rem); }
.showcase-track { display: grid; }
.sc-slide {
  grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), visibility .7s;
  position: relative; z-index: 1;
}
.sc-slide.is-on { opacity: 1; visibility: visible; transform: none; }

.sc-inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 1000px) { .sc-inner { grid-template-columns: 1fr; } }

.sc-slide h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 600; }
.sc-slide .lede { margin-top: 1.35rem; }

.sc-nav { position: absolute; z-index: 4; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2);
  background: rgba(17, 24, 56, .8); backdrop-filter: blur(8px);
  display: grid; place-items: center; color: var(--text);
  transition: border-color .25s var(--ease), background .25s var(--ease); }
.sc-nav:hover { border-color: var(--accent); color: var(--accent); }
.sc-nav svg { width: 17px; height: 17px; }
.sc-prev { left: max(.6rem, calc((100vw - 1220px) / 2 - 3.4rem)); }
.sc-next { right: max(.6rem, calc((100vw - 1220px) / 2 - 3.4rem)); }
@media (max-width: 1360px) { .sc-nav { display: none; } }

.sc-dots { position: relative; z-index: 4; display: flex; gap: .5rem; justify-content: center; margin-top: 2.4rem; }
.sc-dots button { width: 34px; height: 4px; border-radius: 3px; background: var(--line-2); transition: background .3s var(--ease), width .3s var(--ease); }
.sc-dots button.is-on { background: var(--accent); width: 54px; }

/* ============================================================
   MEDIA FRAME — artwork now, photo/video later
   ============================================================ */
.media {
  position: relative; border-radius: var(--r-l); overflow: hidden;
  border: var(--edge); background: linear-gradient(165deg, var(--surface), #191F2A);
  box-shadow: var(--shadow-lift);
}
.media > img, .media > video { width: 100%; height: auto; display: block; }
.media-4x3 { aspect-ratio: 4 / 3; }
.media-16x9 { aspect-ratio: 16 / 9; }
.media-4x3 > img, .media-16x9 > img,
.media-4x3 > video, .media-16x9 > video { width: 100%; height: 100%; object-fit: cover; }
.media-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .7rem 1rem;
  background: linear-gradient(to top, rgba(21,26,36,.95), transparent);
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim);
}
.media-bare { border: 0; background: none; box-shadow: none; border-radius: 0; }

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.has-drop { position: relative; }
.has-drop > a::after {
  content: ""; display: inline-block; margin-left: .38rem; vertical-align: middle;
  width: 5px; height: 5px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.drop {
  position: absolute; top: calc(100% + 2px); left: 0; min-width: 210px;
  background: var(--surface); border: var(--edge); border-radius: var(--r-m);
  padding: .4rem; box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: none; }
.drop a { display: block; padding: .6rem .8rem; border-radius: var(--r-s); font-size: .92rem; }
.drop a:hover { background: var(--surface-2); color: var(--accent); }
.drop a::after { display: none; }

@media (max-width: 980px) {
  .has-drop > a::after { display: none; }
  .drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: none; border: 0; box-shadow: none; padding: 0 0 .4rem 1rem;
  }
  .drop a { padding: .7rem .2rem; font-size: .95rem; color: var(--dimmer); border-bottom: 1px solid rgba(51,59,76,.6); }
}

/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
.tcar { position: relative; }
.tcar-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr);
  gap: 1.15rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: .4rem;
}
.tcar-track::-webkit-scrollbar { display: none; }
.tcar-track > * { scroll-snap-align: start; }
@media (min-width: 981px) { .tcar-track { grid-auto-columns: minmax(0, calc(33.333% - .78rem)); } }
@media (max-width: 980px) and (min-width: 621px) { .tcar-track { grid-auto-columns: minmax(0, calc(50% - .6rem)); } }
@media (max-width: 620px) { .tcar-track { grid-auto-columns: minmax(0, 88%); } }

.tcar-ctrl { display: flex; gap: .5rem; justify-content: flex-end; margin-bottom: 1.2rem; }
.tcar-ctrl button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--dim);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.tcar-ctrl button:hover { border-color: var(--accent); color: var(--accent); }
.tcar-ctrl svg { width: 16px; height: 16px; }

.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(140deg, var(--accent-2), var(--accent));
  color: #0A1420; font-family: var(--display); font-weight: 700; font-size: 1rem;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-by { display: flex; align-items: center; gap: .85rem; }
.quote-by > div { min-width: 0; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 85;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; color: #06301A;
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, .5);
  transition: transform .28s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; }
@media (max-width: 600px) { .wa-float { right: 14px; bottom: 14px; width: 50px; height: 50px; } }

/* ============================================================
   FOOTER EXTRAS
   ============================================================ */
.socials { display: flex; gap: .55rem; margin-top: 1.2rem; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; border: var(--edge);
  display: grid; place-items: center; color: var(--dim);
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.socials svg { width: 15px; height: 15px; }

.foot-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .8rem; color: var(--dim); font-size: .95rem; }
.foot-contact svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: .32em; color: var(--accent); }

/* ============================================================
   MISC
   ============================================================ */
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.pill {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: 100px; border: var(--edge); color: var(--dim);
}
.center { text-align: center; }
.center .eyebrow, .center .lede { margin-inline: auto; }
.center .lede { max-width: 58ch; }

/* decorative artwork behind inner page titles */
.head-art {
  position: absolute; right: 0; bottom: 0; width: min(760px, 62%);
  height: auto; opacity: .5; pointer-events: none; z-index: 0;
  mask-image: linear-gradient(to left, #000 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 100%);
}
@media (max-width: 820px) { .head-art { opacity: .3; width: 100%; } }

/* ============================================================
   COVERAGE CHECKER — the fastest path from question to quote
   ============================================================ */
.checker { max-width: 780px; margin-inline: auto; }

.checker-box { position: relative; }
.checker-box input {
  width: 100%; padding: 1.15rem 3.4rem 1.15rem 3.2rem;
  font-family: var(--body); font-size: 1.08rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 100px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.checker-box input::placeholder { color: var(--dimmer); }
.checker-box input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(34, 200, 232, .18);
}
.checker-ic {
  position: absolute; left: 1.2rem; top: 50%; transform: translateY(-50%);
  width: 19px; height: 19px; color: var(--dimmer); pointer-events: none;
}
.checker-clear {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; display: none;
  place-items: center; color: var(--dim); background: var(--surface-2);
}
.checker-clear.show { display: grid; }
.checker-clear:hover { color: var(--text); }
.checker-clear svg { width: 13px; height: 13px; }

.checker-hint {
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  margin-top: .9rem; font-family: var(--mono); font-size: .72rem; color: var(--dimmer);
}
.checker-hint button {
  font-family: var(--mono); font-size: .72rem; color: var(--accent);
  padding: .25rem .7rem; border: 1px solid var(--line); border-radius: 100px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.checker-hint button:hover { border-color: var(--accent); background: rgba(34,200,232,.10); }

.checker-out { margin-top: 1.4rem; }
.checker-count {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dimmer); margin-bottom: .7rem;
}

.cov {
  display: grid; grid-template-columns: 64px 1fr auto; gap: .9rem; align-items: center;
  padding: .95rem 1.15rem; border: var(--edge); border-radius: var(--r-m);
  background: var(--surface); margin-bottom: .55rem;
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.cov:hover { border-color: var(--line-2); transform: translateX(3px); }
.cov-pfx { font-family: var(--mono); font-size: .92rem; color: var(--accent); }
.cov-name { font-weight: 500; font-size: 1.02rem; }
.cov-meta { font-family: var(--mono); font-size: .7rem; color: var(--dimmer); margin-top: .18rem; }
.cov-tags { display: flex; gap: .35rem; flex-wrap: wrap; justify-content: flex-end; }
.cov-tag {
  font-family: var(--mono); font-size: .63rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .6rem; border-radius: 100px; border: 1px solid var(--line-2); color: var(--dim);
}
.cov-tag.on { border-color: var(--accent); color: var(--accent); }
.cov-ask {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: #FFFFFF; background: var(--accent); padding: .4rem .85rem; border-radius: 100px;
  white-space: nowrap; transition: opacity .2s var(--ease);
}
.cov-ask:hover { opacity: .85; }
@media (max-width: 700px) {
  .cov { grid-template-columns: 54px 1fr; }
  .cov-tags { grid-column: 1 / -1; justify-content: flex-start; }
  .cov-ask { grid-column: 1 / -1; text-align: center; }
}

.checker-none {
  padding: 1.5rem; border: 1px dashed var(--line-2); border-radius: var(--r-m);
  text-align: center; color: var(--dim);
}
.checker-none b { color: var(--text); display: block; margin-bottom: .4rem; font-size: 1.05rem; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.mobile-bar { display: none; }
@media (max-width: 780px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: rgba(21, 26, 36, .95);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: var(--edge); padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; gap: .22rem;
    padding: .65rem .3rem .6rem; font-family: var(--mono); font-size: .62rem;
    letter-spacing: .1em; text-transform: uppercase; color: var(--dim);
  }
  .mobile-bar a svg { width: 19px; height: 19px; }
  .mobile-bar a.primary { color: var(--accent); }
  .mobile-bar a.wa { color: #25D366; }
  .mobile-bar a + a { border-left: var(--edge); }
  body { padding-bottom: 62px; }
  .wa-float { bottom: 74px; }
}

/* ============================================================
   SKIP LINK + BACK TO TOP
   ============================================================ */
.skip {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  z-index: 200; padding: .7rem 1.3rem; border-radius: 0 0 var(--r-m) var(--r-m);
  background: var(--accent); color: #0A1420; font-weight: 600;
  transition: top .22s var(--ease);
}
.skip:focus { top: 0; }

.to-top {
  position: fixed; right: 18px; bottom: 82px; z-index: 84;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-2); background: rgba(30, 36, 48, .93);
  backdrop-filter: blur(8px); display: grid; place-items: center; color: var(--dim);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s, border-color .25s var(--ease), color .25s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { border-color: var(--accent); color: var(--accent); }
.to-top svg { width: 16px; height: 16px; }
@media (max-width: 780px) { .to-top { bottom: 132px; } }

/* ============================================================
   PPC LANDING PAGES — no nav, one job
   ============================================================ */
.lp-head { border-bottom: var(--edge); }
.lp-head .wrap { display: flex; align-items: center; gap: 1rem; height: 68px; }
.lp-head .brand { margin-right: auto; }
.lp-trust {
  display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2rem;
  padding-top: 1.6rem; border-top: var(--edge);
}
.lp-trust div { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; color: var(--dim); }
.lp-trust svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: .22em; }

.lp-form {
  background: var(--surface); border: var(--edge); border-radius: var(--r-l);
  padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-lift);
}
.lp-form h2 { font-size: 1.35rem; margin-bottom: .4rem; }
.lp-form .form-note { margin-top: .9rem; }

.form-ok {
  padding: 1.2rem 1.4rem; border-radius: var(--r-m);
  border: 1px solid var(--accent); background: rgba(34,200,232,.11);
  color: var(--text); font-size: .98rem;
}
.form-ok b { display: block; margin-bottom: .3rem; }
.field-err { border-color: var(--alert) !important; }
.err-msg { color: var(--alert); font-size: .82rem; margin-top: .35rem; display: none; }
.err-msg.show { display: block; }
