/* ============================================================
   ReUpRx — light, blue-forward UI
   Airy white + sky sections, big rounded cards, soft gradients,
   a floating navy "pill" nav, and a connected-network hero.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --cyan:   #2bc0d2;
  --blue:   #0098d0;
  --royal:  #0a6fd0;
  --navy:   #102040;
  --navy-2: #0b1834;
  --ink:    #0e1b33;   /* headings */
  --body:   #46536e;   /* body text */
  --muted:  #73819b;
  --subtle: #9aa7bd;

  --sky:    #eaf6fc;   /* light section bg */
  --sky-2:  #dbeef9;
  --sky-3:  #f3f9fd;
  --line:   #e2eaf1;
  --line-2: #d3e0ea;
  --white:  #ffffff;

  --grad:        linear-gradient(120deg, #2bc0d2 0%, #0098d0 52%, #0a6fd0 100%);
  --grad-soft:   linear-gradient(135deg, #2bc0d2 0%, #0a6fd0 100%);
  --grad-navy:   linear-gradient(160deg, #15264c 0%, #0b1834 70%, #0a1430 100%);

  --shadow-sm: 0 2px 8px rgba(16,32,64,0.05);
  --shadow:    0 16px 40px -22px rgba(16,32,64,0.30);
  --shadow-lg: 0 30px 70px -34px rgba(10,111,208,0.45);
  --shadow-blue: 0 18px 44px -18px rgba(10,111,208,0.55);

  --r-sm: 14px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --maxw: 1180px;
  --maxw-wide: 1240px;
  --gut: clamp(20px, 4vw, 36px);
  --section-pad: clamp(64px, 8vw, 120px);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration:.001ms!important; transition-duration:.001ms!important; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--sky);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--royal); text-decoration: none; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

h1,h2,h3,h4 { font-family: var(--font-display); color: var(--ink); margin: 0; font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; }
p { margin: 0; }
p + p { margin-top: 1em; }

/* ---- Layout --------------------------------------------------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); position: relative; }
.container--wide { max-width: var(--maxw-wide); }
.container--text { max-width: 820px; }
.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); position: relative; }
.section--tight { padding-top: clamp(40px,5vw,64px); padding-bottom: clamp(40px,5vw,64px); }
.center { text-align: center; }

/* backgrounds */
.bg-sky { background: var(--sky); }
.bg-sky-soft { background: linear-gradient(180deg, var(--sky-3), #fff); }
.bg-white { background: #fff; }
.bg-navy { background: var(--grad-navy); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }

/* ---- Type helpers --------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--blue);
  background: var(--sky); border: 1px solid var(--line);
  padding: 7px 15px 7px 13px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--grad); }
.bg-navy .eyebrow { color: #bfe8f6; background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }

.display { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.0; letter-spacing: -0.035em; color: var(--ink); text-wrap: balance; }
h2.title { font-weight: 800; font-size: clamp(2rem, 3.8vw, 3.2rem); letter-spacing: -0.03em; color: var(--ink); text-wrap: balance; }
.bg-navy h2.title, .display.on-navy { color: #fff; }
.lede { font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.6; color: var(--body); }
.bg-navy .lede { color: rgba(255,255,255,0.72); }
.muted { color: var(--muted); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.head { max-width: 680px; }
.head .eyebrow { margin-bottom: 18px; }
.head h2 { margin-bottom: 16px; }
.head p { font-size: clamp(1.05rem,1.4vw,1.2rem); color: var(--body); }
.head--center { margin: 0 auto; text-align: center; }
.head--center .eyebrow { margin-left: auto; margin-right: auto; }
.bg-navy .head p { color: rgba(255,255,255,0.7); }

/* ---- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 26px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn .ico { width: 18px; height: 18px; }
.btn-sm { height: 44px; padding: 0 18px; font-size: 0.9rem; }
.btn-primary { color: #fff; background: var(--grad); background-size: 150% 150%; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); background-position: 100% 50%; box-shadow: 0 22px 50px -16px rgba(10,111,208,0.65); }
.btn-white { color: var(--navy); background: #fff; box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { color: var(--ink); background: #fff; border-color: var(--line-2); }
.btn-outline:hover { transform: translateY(-2px); border-color: var(--blue); color: var(--royal); }
.btn-ghost-navy { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.btn-ghost-navy:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

.arrow-link { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 700; font-size: 0.92rem; color: var(--royal); text-decoration: none; transition: gap .25s var(--ease); }
.arrow-link .circle { width: 30px; height: 30px; border-radius: 999px; background: var(--sky); display: inline-flex; align-items: center; justify-content: center; transition: background .2s var(--ease), transform .25s var(--ease); }
.arrow-link .circle .ico { width: 15px; height: 15px; color: var(--royal); }
.arrow-link:hover { gap: 12px; }
.arrow-link:hover .circle { background: var(--grad); }
.arrow-link:hover .circle .ico { color: #fff; }
.arrow-link--light { color: #fff; }
.arrow-link--light .circle { background: rgba(255,255,255,0.14); }
.arrow-link--light .circle .ico { color: #fff; }
.arrow-link--light:hover .circle { background: #fff; }
.arrow-link--light:hover .circle .ico { color: var(--royal); }

.actions { display: flex; gap: 13px; flex-wrap: wrap; }

/* ---- Nav (floating frosted-glass pill) ------------------------ */
.nav { position: sticky; top: 0; z-index: 100; padding: 15px var(--gut) 0; background: transparent; }
.nav__inner {
  position: relative;
  max-width: var(--maxw-wide); margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  padding: 9px 9px 9px 24px;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border-radius: 999px;
  box-shadow: 0 12px 34px -14px rgba(16,32,64,0.22), inset 0 1px 0 rgba(255,255,255,0.65);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
/* subtle brand-gradient ring around the pill */
.nav__inner::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(120deg, rgba(43,192,210,0.55), rgba(255,255,255,0.15) 45%, rgba(10,111,208,0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.7;
}
.nav.scrolled .nav__inner {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 16px 40px -14px rgba(16,32,64,0.3), inset 0 1px 0 rgba(255,255,255,0.75);
}
.nav__logo { flex-shrink: 0; display: flex; align-items: center; }
.nav__logo img { height: 34px; display: block; }
.nav__links { display: flex; gap: 2px; flex: 1; align-items: center; justify-content: center; }
.nav__link { position: relative; font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; color: var(--body); text-decoration: none; padding: 9px 16px; border-radius: 999px; white-space: nowrap; transition: color .2s var(--ease), background .2s var(--ease); }
.nav__link:hover { color: var(--ink); background: rgba(16,32,64,0.05); }
.nav__link.active { color: var(--royal); background: var(--sky); }
.nav__cta { flex-shrink: 0; }
.nav__toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 0; border-radius: 999px; background: rgba(16,32,64,0.05); cursor: pointer; flex-shrink: 0; }
.nav__toggle .ico { width: 22px; height: 22px; color: var(--ink); }
@media (max-width: 960px) {
  .nav__links, .nav__inner > .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__logo { flex: 1; }
}
.mobile-menu {
  position: fixed; inset: 88px var(--gut) auto; z-index: 99;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 14px; display: flex; flex-direction: column; gap: 2px;
  transform: translateY(-12px) scale(0.98); opacity: 0; visibility: hidden;
  transform-origin: top center;
  box-shadow: var(--shadow-lg);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.mobile-menu.open { opacity: 1; transform: none; visibility: visible; }
.mobile-menu a { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--ink); text-decoration: none; padding: 14px 16px; border-radius: var(--r-sm); }
.mobile-menu a:hover { background: var(--sky); color: var(--royal); }
.mobile-menu .btn { margin-top: 10px; }

/* ---- Hero ----------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--sky) 0%, #fff 78%); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.5; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(32px,5vw,64px); align-items: center; padding-top: clamp(40px,6vw,76px); padding-bottom: clamp(56px,7vw,96px); }
@media (max-width: 940px) { .hero__inner { grid-template-columns: 1fr; gap: 44px; } }
.hero h1 { margin: 22px 0 22px; }
.hero p.lede { max-width: 500px; margin-bottom: 30px; }
.hero .actions { margin-bottom: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 9px 22px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.hero__trust .ico { width: 17px; height: 17px; color: var(--blue); }

/* ---- Network hero visual -------------------------------------- */
.netviz { position: relative; aspect-ratio: 1/1; max-width: 520px; margin-left: auto; }
.netviz__lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.netviz__hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 42%; aspect-ratio: 1/1; border-radius: var(--r-lg);
  background: var(--grad); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #fff; text-align: center; padding: 12px;
}
.netviz__hub img { height: clamp(34px, 7vw, 52px); width: auto; }
.netviz__hub span { font-family: var(--font-display); font-weight: 700; font-size: clamp(0.72rem, 1.4vw, 0.95rem); letter-spacing: 0.02em; }
.node {
  position: absolute; z-index: 2; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-sm); box-shadow: var(--shadow); padding: 11px 14px;
  display: flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; color: var(--ink); white-space: nowrap;
  animation: float 6s var(--ease) infinite alternate;
}
.node .ico { width: 17px; height: 17px; color: var(--blue); }
.node.n1 { top: 4%; left: 8%; animation-delay: 0s; }
.node.n2 { top: 2%; right: 4%; animation-delay: -1.4s; }
.node.n3 { bottom: 14%; left: 0%; animation-delay: -2.6s; }
.node.n4 { bottom: 4%; right: 6%; animation-delay: -3.8s; }
.node.n5 { top: 46%; right: -2%; animation-delay: -4.6s; }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-9px); } }
@media (max-width: 480px) { .node { font-size: 0.74rem; padding: 9px 11px; } }

/* ---- Stats ---------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; row-gap: 36px; } }
.stat { text-align: center; padding: 0 18px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
@media (max-width: 760px) { .stat:nth-child(odd) { border-left: 0; } }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,4.2vw,3.4rem); line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.stat__num .grad-text { display: inline; }
.stat__label { font-size: 0.92rem; color: var(--muted); margin-top: 12px; }
.stat__note { display: block; font-size: 0.76rem; color: var(--subtle); margin-top: 4px; }

/* ---- "Who we serve" icon tiles -------------------------------- */
.serve { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 14px; }
.serve__item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.serve__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.serve__ic { width: 42px; height: 42px; border-radius: 12px; background: var(--sky); color: var(--royal); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.serve__ic .ico { width: 21px; height: 21px; }
.serve__name { font-family: var(--font-body); font-weight: 600; font-size: 0.96rem; color: var(--ink); line-height: 1.25; }

/* ---- Cards ---------------------------------------------------- */
.grid { display: grid; gap: clamp(18px,2.2vw,26px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }

.card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px,3vw,34px); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card h3 { font-size: clamp(1.25rem,1.7vw,1.55rem); margin-bottom: 10px; }
.card p { color: var(--body); font-size: 1rem; }
.card--soft { background: var(--sky-3); border-color: transparent; }

/* capability cards (richer, animated) */
.caps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(18px,2.2vw,26px); }
.cap { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,3vw,38px); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.cap::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.cap:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cap:hover::before { transform: scaleX(1); }
.cap__num { position: absolute; top: 8px; right: 22px; font-family: var(--font-display); font-weight: 800; font-size: 3.6rem; line-height: 1; color: var(--sky-2); z-index: 0; pointer-events: none; }
.cap > * { position: relative; z-index: 1; }
.cap h3 { font-size: clamp(1.25rem,1.7vw,1.5rem); margin-bottom: 12px; }
.cap p { color: var(--body); font-size: 1rem; }
.cap__chips { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.cap__note { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 0.8rem; font-weight: 700; color: var(--royal); background: var(--sky); border: 1px solid var(--line); padding: 8px 13px; border-radius: 999px; }
.cap__note .ico { width: 14px; height: 14px; }
/* inline icon + chip header, and equal-height cards with link pinned to bottom */
.cap__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.cap__head .iconbox { margin-bottom: 0; }
.caps--products .cap { display: flex; flex-direction: column; }
.caps--products .cap .arrow-link { margin-top: auto; padding-top: 20px; }

.iconbox { width: 54px; height: 54px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: var(--sky); color: var(--royal); margin-bottom: 18px; }
.iconbox .ico { width: 26px; height: 26px; }
.iconbox--grad { background: var(--grad); color: #fff; box-shadow: var(--shadow-blue); }

/* big gradient feature cards (dark section) */
.feature {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--grad); color: #fff; padding: clamp(28px,3.4vw,44px);
  display: flex; flex-direction: column; min-height: 300px;
  box-shadow: var(--shadow-lg);
}
.feature.alt { background: linear-gradient(150deg, #16bacf 0%, #0a87c9 55%, #0b3f9c 100%); }
.feature::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.feature__eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.82); margin-bottom: 14px; position: relative; z-index: 1; }
.feature h3 { color: #fff; font-size: clamp(1.5rem,2.2vw,2rem); margin-bottom: 14px; position: relative; z-index: 1; }
.feature p { color: rgba(255,255,255,0.86); position: relative; z-index: 1; margin-bottom: 20px; }
.feature .chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; position: relative; z-index: 1; }
.feature .chip { background: rgba(255,255,255,0.16); color: #fff; font-weight: 600; font-size: 0.74rem; padding: 6px 13px; border-radius: 999px; }
.feature .arrow-link { margin-top: auto; }

/* chips (light) */
.chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; padding: 6px 13px; border-radius: 999px; background: var(--sky); color: var(--royal); }
.chip--plain { background: #f1f4f8; color: var(--body); }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }

.callout { background: var(--sky-3); border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: var(--r-sm); padding: 14px 16px; font-size: 0.96rem; color: var(--body); }
.callout strong { color: var(--ink); font-weight: 700; }

/* ---- Split media rows ----------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.split--reverse .split__media { order: -1; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } .split--reverse .split__media { order: 0; } }
.split h2 { margin-bottom: 18px; }

.media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--sky); }
.media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media--tall img { aspect-ratio: 4/5; }
.media__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.media__play button { width: 76px; height: 76px; border-radius: 999px; border: 0; background: rgba(255,255,255,0.9); color: var(--royal); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-lg); transition: transform .2s var(--ease); }
.media__play button:hover { transform: scale(1.06); }
.media__play .ico { width: 28px; height: 28px; margin-left: 3px; }
.media__badge { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,0.94); border-radius: 999px; padding: 8px 14px; font-size: 0.8rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }

/* check list */
.checks { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; color: var(--body); }
.checks .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 999px; background: var(--grad); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.checks .tick .ico { width: 15px; height: 15px; }
.checks strong { color: var(--ink); font-weight: 700; }
.bg-navy .checks li { color: rgba(255,255,255,0.82); }
.bg-navy .checks strong { color: #fff; }

/* steps */
.step__num { width: 42px; height: 42px; border-radius: 999px; background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: var(--shadow-blue); }

/* ---- Pricing figure (leverage) -------------------------------- */
.leverage { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: clamp(24px,3vw,32px); }
.leverage__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 22px; }
.leverage__head .ttl { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.bar-row { margin-bottom: 18px; }
.bar-row__labels { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; font-size: 0.86rem; color: var(--muted); }
.bar-row__labels .v { font-weight: 700; color: var(--ink); }
.bar-track { height: 14px; background: var(--sky-2); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; width: 0; border-radius: 999px; transition: width 1.3s var(--ease); }
.bar-fill--full { background: #c2d2df; }
.bar-fill--brand { background: var(--grad); }
.leverage.in .bar-fill--full { width: 100%; }
.leverage.in .bar-fill--brand { width: 58%; }
.leverage__foot { display: flex; gap: 10px; align-items: flex-start; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.92rem; color: var(--body); }
.leverage__foot .ico { width: 18px; height: 18px; color: #16a879; flex-shrink: 0; margin-top: 2px; }

/* ---- FAQ ------------------------------------------------------ */
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 12px; overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.faq__item.open { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: 0; cursor: pointer; padding: 22px 24px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem,1.5vw,1.25rem); color: var(--ink); }
.faq__q .ico { width: 22px; height: 22px; color: var(--royal); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq__item.open .faq__q .ico { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a-inner { padding: 0 24px 24px; color: var(--body); max-width: 760px; }

/* ---- Forms ---------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(26px,3.4vw,42px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.field label .opt { color: var(--subtle); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: var(--sky-3);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--subtle); }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,152,208,0.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* checkbox grid (solutions of interest) */
.checkgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
@media (max-width: 560px) { .checkgrid { grid-template-columns: 1fr 1fr; } }
.checkitem { position: relative; }
.checkitem input { position: absolute; opacity: 0; pointer-events: none; }
.checkitem label { display: flex; align-items: center; gap: 9px; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--r-sm); cursor: pointer; font-size: 0.9rem; font-weight: 600; color: var(--body); background: #fff; transition: all .15s var(--ease); margin: 0; }
.checkitem .box { width: 18px; height: 18px; border-radius: 6px; border: 1.5px solid var(--line-2); flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.checkitem .box .ico { width: 12px; height: 12px; color: #fff; opacity: 0; }
.checkitem input:checked + label { border-color: var(--blue); background: var(--sky); color: var(--ink); }
.checkitem input:checked + label .box { background: var(--grad); border-color: transparent; }
.checkitem input:checked + label .box .ico { opacity: 1; }
.checkitem input:focus-visible + label { box-shadow: 0 0 0 3px rgba(0,152,208,0.2); }

/* coverage mini card */
.minicard { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--grad); color: #fff; padding: clamp(22px,3vw,30px); box-shadow: var(--shadow-lg); }
.minicard__eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.minicard h3 { color: #fff; font-size: 1.3rem; margin: 8px 0 18px; }
.minicard__panel { background: #fff; border-radius: var(--r); padding: 16px; }
.minicard__row { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
.minicard__row .ico { width: 16px; height: 16px; color: var(--royal); }
.minicard__row span { height: 8px; border-radius: 999px; background: var(--sky-2); flex: 1; }
.minicard__row:first-child span { background: var(--navy); max-width: 70%; }
.minicard__row2 { display: flex; align-items: center; gap: 10px; padding: 11px 4px; font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.minicard__row2 + .minicard__row2 { border-top: 1px solid var(--line); }
.minicard__row2 .ico { width: 16px; height: 16px; color: var(--royal); flex-shrink: 0; }

/* ---- Footer (navy) -------------------------------------------- */
.footer { background: var(--grad-navy); color: #fff; }
.footer__main { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,6vw,84px) var(--gut) clamp(36px,4vw,48px); display: flex; flex-wrap: wrap; gap: 44px; justify-content: space-between; }
.footer__brand { flex: 1 1 290px; max-width: 360px; }
.footer__brand img { height: 28px; margin-bottom: 20px; }
.footer__brand p { font-size: 0.96rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); transition: all .2s var(--ease); }
.footer__social a:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-2px); }
.footer__social .ico { width: 18px; height: 18px; }
.footer__col { min-width: 150px; }
.footer__col-title { font-family: var(--font-body); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: #7fd3e6; margin-bottom: 16px; }
.footer__col-links { display: flex; flex-direction: column; gap: 12px; }
.footer__col-links a { font-size: 0.95rem; color: rgba(255,255,255,0.68); text-decoration: none; transition: color .2s var(--ease); }
.footer__col-links a:hover { color: #fff; }
.footer__legal { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__legal-inner { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gut); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer__legal-inner span { font-size: 0.76rem; color: rgba(255,255,255,0.4); }
.footer__legal-inner .fine { max-width: 640px; text-align: right; }
@media (max-width: 640px) { .footer__legal-inner .fine { text-align: left; } }

/* ---- Reveal --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
