/* ============================================================
   Hostline — Glassmorphism redesign
   Brand: cobalt blue, light airy aurora, frosted glass overlays
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700;800&family=Geist:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ---- Design tokens ---- */
:root {
  /* brand */
  --brand: #2f59d6;            /* Hostline cobalt */
  --brand-rgb: 47, 89, 214;
  --brand-bright: #3b74ff;
  --brand-deep: 24, 39, 86;    /* deep navy (rgba base) used for text/glass */
  --ink: #1b1e27;              /* headline near-black */
  --muted: #5e6470;            /* secondary gray text */

  /* surfaces */
  --page: #e9edf3;             /* light cool-gray page */
  --card-radius: 3rem;

  /* typography */
  --font: 'Hanken Grotesk', ui-sans-serif, system-ui, sans-serif;

  /* aurora colors (hero bg) */
  --au-1: #cdddfb;
  --au-2: #eaf1fe;
  --au-3: #bcd0f7;
  --au-4: #f4f7fd;
  --au-base: #dfe8f8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* deep-navy helper text */
.t-deep   { color: rgba(var(--brand-deep), 0.92); }
.t-deep80 { color: rgba(var(--brand-deep), 0.80); }
.t-deep70 { color: rgba(var(--brand-deep), 0.70); }
.t-deep60 { color: rgba(var(--brand-deep), 0.60); }
.t-muted  { color: var(--muted); }

/* ============================================================
   PAGE SHELL
   ============================================================ */
.page { width: 100%; background: var(--page); }

/* ============================================================
   HERO
   ============================================================ */
.hero-wrap {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--page);
}
@media (min-width: 768px) { .hero-wrap { padding: 1.25rem; } }

.hero-card {
  position: relative;
  width: 100%;
  max-width: 1536px;
  height: calc(100svh - 1.5rem);
  min-height: 620px;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--au-base);
  box-shadow: 0 40px 90px -50px rgba(var(--brand-deep), 0.45);
}
@media (min-width: 768px) { .hero-card { border-radius: var(--card-radius); height: calc(100svh - 2.5rem); } }

/* ---- Aurora background (light mode) ---- */
.aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--au-base); }
.aurora::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(42% 50% at 18% 22%, var(--au-1) 0%, transparent 60%),
    radial-gradient(46% 55% at 82% 18%, var(--au-3) 0%, transparent 62%),
    radial-gradient(55% 60% at 75% 88%, var(--au-1) 0%, transparent 60%),
    radial-gradient(50% 55% at 25% 85%, var(--au-4) 0%, transparent 62%),
    radial-gradient(60% 70% at 50% 50%, var(--au-2) 0%, transparent 70%);
  filter: saturate(1.05);
  animation: auroraDrift 26s ease-in-out infinite alternate;
}
.aurora .blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.7;
  mix-blend-mode: normal;
}
.aurora .b1 { width: 46vw; height: 46vw; left: -8%; top: -12%; background: radial-gradient(circle, rgba(var(--brand-rgb), 0.28), transparent 65%); animation: floatA 18s ease-in-out infinite alternate; }
.aurora .b2 { width: 40vw; height: 40vw; right: -6%; top: 6%;  background: radial-gradient(circle, rgba(91,150,255,0.30), transparent 65%); animation: floatB 22s ease-in-out infinite alternate; }
.aurora .b3 { width: 50vw; height: 50vw; right: 4%; bottom: -18%; background: radial-gradient(circle, rgba(var(--brand-rgb), 0.22), transparent 66%); animation: floatA 24s ease-in-out infinite alternate; }
.aurora .grain { position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(rgba(var(--brand-deep),1) 0.5px, transparent 0.5px);
  background-size: 4px 4px; }

@keyframes auroraDrift { 0% { transform: translate3d(0,0,0) scale(1);} 100% { transform: translate3d(2%, -2%, 0) scale(1.08);} }
@keyframes floatA { 0% { transform: translate(0,0);} 100% { transform: translate(6%, 8%);} }
@keyframes floatB { 0% { transform: translate(0,0);} 100% { transform: translate(-7%, 6%);} }

/* ---- Deep (dark) hero variant ---- */
.hero-card.deep { background: #0b1430; }
.hero-card.deep .aurora { background: radial-gradient(120% 120% at 70% 10%, #16245a 0%, #0b1430 55%, #070d22 100%); }
.hero-card.deep .aurora::before {
  background:
    radial-gradient(40% 50% at 18% 20%, rgba(var(--brand-rgb),0.55) 0%, transparent 60%),
    radial-gradient(46% 55% at 84% 16%, rgba(59,116,255,0.45) 0%, transparent 62%),
    radial-gradient(58% 62% at 78% 92%, rgba(var(--brand-rgb),0.40) 0%, transparent 62%);
  opacity: 0.9;
}
.hero-card.deep .b1, .hero-card.deep .b2, .hero-card.deep .b3 { opacity: 0.5; }

.hero-inner { position: relative; z-index: 10; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem; width: 100%; position: relative; z-index: 20;
}
@media (min-width: 768px) { .nav { padding: 1.6rem 2.5rem; } }

.nav-group { display: flex; align-items: center; gap: 0.5rem; flex: 1; }
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; gap: 0.75rem; }

.nav-menu { display: none; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 980px) { .nav-menu { display: flex; } }
.nav-menu li {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.92rem; font-weight: 500; color: rgba(var(--brand-deep), 0.9);
  cursor: pointer; transition: opacity 0.2s; position: relative;
  white-space: nowrap;
}
.nav-menu li:hover { opacity: 0.62; }
.nav-menu li svg { width: 15px; height: 15px; transition: transform 0.2s; }
.nav-menu li:hover svg { transform: translateY(1px); }

.deep .nav-menu li { color: rgba(255,255,255,0.86); }

/* center logo */
.nav-logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 25; display: flex; align-items: center; gap: 0.6rem; }
.logo-mark { width: 34px; height: 34px; }
.logo-word { font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; color: rgba(var(--brand-deep), 0.95); }
.deep .logo-word { color: #fff; }

/* lang switch */
.lang { display: flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; font-weight: 600; user-select: none; }
.lang button {
  background: none; border: none; cursor: pointer; padding: 0.15rem 0.1rem;
  color: rgba(var(--brand-deep), 0.45); font-weight: 600; font-size: 0.85rem; transition: color 0.2s;
}
.lang button.active { color: rgba(var(--brand-deep), 0.95); }
.lang .sep { color: rgba(var(--brand-deep), 0.3); }
.deep .lang button { color: rgba(255,255,255,0.5); }
.deep .lang button.active { color: #fff; }
.deep .lang .sep { color: rgba(255,255,255,0.35); }

/* pill button (account / CTA) */
.btn-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(var(--brand-deep), 0.9); color: #fff;
  border: none; cursor: pointer;
  border-radius: 999px; padding: 0.5rem 1.2rem 0.5rem 0.55rem;
  font-size: 0.88rem; font-weight: 500;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px -12px rgba(var(--brand-deep), 0.7);
}
.btn-pill:hover { background: rgba(var(--brand-deep), 1); transform: translateY(-1px); }
.btn-pill:active { transform: scale(0.98); }
.btn-pill .ic { background: rgba(255,255,255,0.2); padding: 0.35rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.btn-pill .ic svg { width: 17px; height: 17px; color: #fff; }
.btn-pill.brand { background: var(--brand); box-shadow: 0 14px 30px -12px rgba(var(--brand-rgb), 0.8); }
.btn-pill.brand:hover { background: var(--brand-bright); }

/* mobile logo (left, when center hidden) */
.nav-logo-m { display: flex; }
@media (min-width: 980px) { .nav-logo-m { display: none; } }

/* ============================================================
   HERO TEXT
   ============================================================ */
.hero-text { width: 100%; display: flex; flex-direction: column; align-items: center; padding: 1.5rem 1.5rem 0; text-align: center; max-width: 60rem; }
@media (min-width: 768px) { .hero-text { padding-top: 2.2rem; } }

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5); width: fit-content; margin: 0 auto 0.9rem;
  box-shadow: 0 8px 20px -12px rgba(var(--brand-deep), 0.4);
}
.badge svg { width: 16px; height: 16px; color: var(--brand); }
.badge span { font-size: 0.875rem; font-weight: 600; color: rgba(var(--brand-deep), 0.9); white-space: nowrap; }
.deep .badge { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }
.deep .badge span { color: #fff; }
.deep .badge svg { color: #9cc0ff; }

.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700; line-height: 1.06; letter-spacing: -0.035em;
  margin: 0 0 1.1rem; color: var(--ink);
}
.hero-h1 .accent { color: var(--brand); }
.hero-h1 .soft { color: var(--muted); }
.deep .hero-h1 { color: #fff; }
.deep .hero-h1 .soft { color: rgba(255,255,255,0.6); }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.55;
  color: var(--muted); max-width: 36rem; margin: 0 auto; font-weight: 400;
}
.deep .hero-sub { color: rgba(255,255,255,0.72); }

/* hero actions */
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.6rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.85rem 1.6rem; font-size: 0.98rem; font-weight: 600;
  cursor: pointer; border: 1px solid transparent; transition: transform 0.18s, background 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 18px 36px -16px rgba(var(--brand-rgb), 0.85); }
.btn-primary:hover { background: var(--brand-bright); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.55); color: rgba(var(--brand-deep), 0.92); border-color: rgba(255,255,255,0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.85); transform: translateY(-2px); }
.deep .btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.deep .btn-ghost:hover { background: rgba(255,255,255,0.18); }

/* hero feature chips */
.hero-feats { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; justify-content: center; margin-top: 1.7rem; }
.feat { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: rgba(var(--brand-deep), 0.78); }
.feat svg { width: 18px; height: 18px; color: var(--brand); }
.deep .feat { color: rgba(255,255,255,0.8); }
.deep .feat svg { color: #9cc0ff; }

/* ============================================================
   BOTTOM-LEFT GLASS STAT CARD
   ============================================================ */
.stat-card {
  position: absolute; bottom: 7rem; right: 1rem; left: auto;
  padding: 1.1rem; border-radius: 1.5rem;
  background: rgba(255,255,255,0.34); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.45);
  display: flex; flex-direction: column; gap: 0.7rem; min-width: 165px; width: fit-content; z-index: 15;
  box-shadow: 0 24px 50px -30px rgba(var(--brand-deep), 0.5);
}
@media (min-width: 768px) { .stat-card { left: 1.6rem; right: auto; bottom: 1.6rem; padding: 1.25rem; } }
@media (min-width: 1024px) { .stat-card { left: 2.5rem; bottom: 2.5rem; padding: 1.4rem; border-radius: 2.2rem; min-width: 190px; } }
.stat-num { font-size: clamp(1.7rem, 2.4vw, 2rem); font-weight: 700; letter-spacing: -0.02em; color: rgba(var(--brand-deep), 0.95); line-height: 1; }
.stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(var(--brand-deep), 0.6); }
.stat-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
  background: #fff; border: none; cursor: pointer; border-radius: 999px;
  padding: 0.4rem 1.1rem 0.4rem 0.35rem; transition: transform 0.18s, background 0.2s;
}
.stat-btn:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.stat-btn .ic { background: rgba(var(--brand-rgb), 0.12); padding: 0.3rem; border-radius: 999px; display: flex; }
.stat-btn .ic svg { width: 15px; height: 15px; color: var(--brand); }
.stat-btn span { font-size: 0.85rem; font-weight: 600; color: rgba(var(--brand-deep), 0.92); }
.deep .stat-card { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.deep .stat-num { color: #fff; }
.deep .stat-label { color: rgba(255,255,255,0.6); }

/* ============================================================
   BOTTOM-RIGHT CORNER (faux cut-out)
   ============================================================ */
.corner {
  position: absolute; bottom: 0; right: 0; z-index: 15;
  padding: 0.75rem 0.75rem 0.75rem 2rem; padding-top: 1.25rem;
  background: var(--page); border-top-left-radius: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
@media (min-width: 640px) { .corner { padding: 1rem 1rem 1rem 2.5rem; padding-top: 1.5rem; border-top-left-radius: 2rem; gap: 1rem; } }
@media (min-width: 768px) { .corner { padding: 1.5rem 1.5rem 1.5rem 3.5rem; padding-top: 2rem; border-top-left-radius: 3.5rem; gap: 1.5rem; } }
.corner-mask { position: absolute; pointer-events: none; }
.corner-mask svg { display: block; width: 100%; height: 100%; }
.corner-mask.top { top: -1.5rem; right: 0; width: 1.5rem; height: 1.5rem; }
.corner-mask.left { bottom: 0; left: -1.5rem; width: 1.5rem; height: 1.5rem; }
@media (min-width: 640px) { .corner-mask.top { top: -2rem; width: 2rem; height: 2rem; } .corner-mask.left { left: -2rem; width: 2rem; height: 2rem; } }
@media (min-width: 768px) { .corner-mask.top { top: -3.5rem; width: 3.5rem; height: 3.5rem; } .corner-mask.left { left: -3.5rem; width: 3.5rem; height: 3.5rem; } }
.corner-icon {
  background: rgba(var(--brand-rgb), 0.07); width: 2.5rem; height: 2.5rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; border: 1px solid rgba(var(--brand-rgb), 0.14); flex-shrink: 0;
}
@media (min-width: 768px) { .corner-icon { width: 3.5rem; height: 3.5rem; } }
.corner-icon svg { width: 20px; height: 20px; color: var(--brand); }
.corner-title { font-size: 1rem; font-weight: 600; color: rgba(var(--brand-deep), 0.95); }
@media (min-width: 768px) { .corner-title { font-size: 1.25rem; } }
.corner-link { display: flex; align-items: center; gap: 0.25rem; color: rgba(var(--brand-deep), 0.6); cursor: pointer; transition: color 0.2s; }
.corner-link:hover { color: rgba(var(--brand-deep), 0.9); }
.corner-link span { font-size: 0.78rem; font-weight: 500; }
@media (min-width: 768px) { .corner-link span { font-size: 0.92rem; } }
.corner-link svg { width: 15px; height: 15px; }

/* ============================================================
   ENTRANCE ANIMATIONS
   Transform-only: content always visible, headless/frozen captures
   show shifted but readable content; real browsers get a slide-up.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .anim   { animation: riseIn 0.65s cubic-bezier(0.16,1,0.3,1) both; }
  .anim.d1 { animation-delay: 0.08s; }
  .anim.d2 { animation-delay: 0.18s; }
  .anim.d3 { animation-delay: 0.28s; }
  .anim.d4 { animation-delay: 0.38s; }
  .anim-l { animation: riseIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.18s both; }
  .anim-r { animation: riseIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.28s both; }
  @keyframes riseIn { from { transform: translateY(18px); } to { transform: none; } }
}
/* Clear any stuck transform after animations complete */
.anims-finished .anim,
.anims-finished .anim-l,
.anims-finished .anim-r { transform: none !important; animation: none !important; }

/* scroll reveal — transform-only so content is NEVER hidden even if a
   headless/throttled iframe freezes the transition clock (capture/PDF safe). */
.reveal { opacity: 1; transform: translateY(22px); transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { transform: none; }

/* Hero dashboard panels — shown only on wide screens, pinned away from both widgets */
.hero-dashboard {
  position: absolute;
  display: none;
  bottom: 6rem;
  left: calc(50% - 300px);
  width: 600px;
  z-index: 15;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
@media (min-width: 1100px) {
  .hero-dashboard { display: grid; }
  .hero-feats { display: none; }
  /* vertically center text in the space above the dashboard panels */
  .hero-inner { justify-content: center; padding-bottom: 18rem; }
  .hero-text { padding-top: 0; }
  .hero-actions { margin-bottom: 0.2rem; }
}
.glass-card.pricing-highlight {
  border-color: rgba(var(--brand-rgb), 0.4);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 30px 60px -30px rgba(var(--brand-rgb), 0.45), 0 0 0 1.5px rgba(var(--brand-rgb), 0.25);
}

/* ============================================================
   CONTINUATION SECTIONS
   ============================================================ */
.section { width: 100%; max-width: 1536px; margin: 0 auto; padding: 5rem 1.5rem; }
@media (min-width: 768px) { .section { padding: 7rem 2.5rem; } }

.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); margin-bottom: 1rem; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; }
.sec-title { font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.06; color: var(--ink); margin: 0; text-wrap: balance; }
.sec-title .soft { color: var(--muted); }
.sec-lead { font-size: 1.1rem; color: var(--muted); line-height: 1.6; max-width: 40rem; margin: 1.1rem 0 0; }

.sec-head { display: flex; flex-direction: column; gap: 0; margin-bottom: 3rem; }
@media (min-width: 900px) { .sec-head.row { flex-direction: row; align-items: flex-end; justify-content: space-between; } .sec-head.row .sec-lead { margin-top: 0; max-width: 26rem; } }

/* glass feature cards grid */
.grid { display: grid; gap: 1.1rem; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 680px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.glass-card {
  position: relative; border-radius: 1.6rem; padding: 1.8rem;
  background: rgba(255,255,255,0.55); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.7); overflow: hidden;
  box-shadow: 0 30px 60px -45px rgba(var(--brand-deep), 0.5);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.3s;
}
.glass-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -40px rgba(var(--brand-deep), 0.55); border-color: rgba(var(--brand-rgb), 0.3); }
.glass-card .ic-tile { width: 3rem; height: 3rem; border-radius: 0.95rem; display: flex; align-items: center; justify-content: center; background: rgba(var(--brand-rgb), 0.1); color: var(--brand); margin-bottom: 1.2rem; }
.glass-card .ic-tile svg { width: 24px; height: 24px; }
.glass-card h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 0.5rem; color: rgba(var(--brand-deep), 0.95); }
.glass-card p { font-size: 0.96rem; line-height: 1.55; color: var(--muted); margin: 0; }
.glass-card .glow { position: absolute; top: -40%; right: -30%; width: 70%; height: 90%; background: radial-gradient(circle, rgba(var(--brand-rgb), 0.14), transparent 65%); pointer-events: none; }

/* services — bigger cards with image-ish header */
.svc-card { display: flex; flex-direction: column; min-height: 340px; padding: 0; }
.svc-card .svc-top { padding: 1.8rem 1.8rem 0; flex: 1; }
.svc-card .price { margin-top: auto; padding: 1.4rem 1.8rem; border-top: 1px solid rgba(var(--brand-deep), 0.08); display: flex; align-items: center; justify-content: space-between; }
.svc-card .price .amount { font-size: 1.35rem; font-weight: 700; color: rgba(var(--brand-deep), 0.95); }
.svc-card .price .amount small { font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.svc-card .price .go { width: 2.4rem; height: 2.4rem; border-radius: 999px; background: var(--brand); display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; }
.svc-card:hover .price .go { transform: translateX(2px) translateY(-2px); background: var(--brand-bright); }
.svc-card .price .go svg { width: 18px; height: 18px; color: #fff; }
.svc-specs { list-style: none; margin: 1.2rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.svc-specs li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; color: rgba(var(--brand-deep), 0.78); }
.svc-specs li svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }

/* stat band */
.stat-band { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(var(--brand-deep), 0.08); border-radius: 2rem; overflow: hidden; border: 1px solid rgba(var(--brand-deep), 0.08); }
@media (min-width: 800px) { .stat-band { grid-template-columns: repeat(4, 1fr); } }
.stat-band .cell { background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 2.4rem 1.6rem; text-align: center; }
.stat-band .big { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; color: var(--brand); line-height: 1; }
.stat-band .cap { margin-top: 0.6rem; font-size: 0.9rem; color: var(--muted); font-weight: 500; }

/* showcase row (image-slot) */
.showcase { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .showcase { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.showcase image-slot, .showcase .shot { width: 100%; height: 380px; border-radius: 1.8rem; box-shadow: 0 40px 80px -50px rgba(var(--brand-deep), 0.6); }
.showcase .badges { position: relative; }
.float-badge {
  position: absolute; display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7); border-radius: 999px; padding: 0.55rem 1.05rem;
  font-size: 0.86rem; font-weight: 600; color: rgba(var(--brand-deep), 0.9);
  box-shadow: 0 16px 32px -20px rgba(var(--brand-deep), 0.5); z-index: 5;
}
.float-badge svg { width: 16px; height: 16px; color: var(--brand); }

/* CTA band */
.cta {
  position: relative; max-width: 1536px; margin: 0 auto 1.25rem; border-radius: var(--card-radius); overflow: hidden;
  background: linear-gradient(120deg, #11204e 0%, #1e3a8f 55%, #2f59d6 100%);
  padding: 4.5rem 1.5rem; text-align: center;
}
@media (min-width: 768px) { .cta { padding: 6rem 2.5rem; } }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 80% 10%, rgba(91,150,255,0.5), transparent 60%), radial-gradient(50% 80% at 10% 100%, rgba(47,89,214,0.6), transparent 60%); }
.cta-inner { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; color: #fff; margin: 0 0 1rem; line-height: 1.05; text-wrap: balance; }
.cta p { font-size: 1.15rem; color: rgba(255,255,255,0.78); margin: 0 auto 2rem; max-width: 34rem; }
.cta .btn-primary { background: #fff; color: var(--brand); }
.cta .btn-primary:hover { background: #eef3ff; }
.cta .btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); }
.cta .btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* footer bottom requisites strip */
.foot-req { max-width: 1536px; margin: 0 auto; padding: 1.2rem 1.5rem 2.5rem; border-top: 1px solid rgba(var(--brand-deep),0.08); display: flex; flex-wrap: wrap; gap: 0.4rem 2rem; align-items: center; }
@media (min-width: 768px) { .foot-req { padding: 1.2rem 2.5rem 2.5rem; } }
.foot-req span { font-size: 0.78rem; color: rgba(var(--brand-deep),0.42); }
.foot-req a { font-size: 0.78rem; color: rgba(var(--brand-deep),0.42); text-decoration: underline; text-underline-offset: 2px; }
.foot-req a:hover { color: var(--brand); }

/* footer */
.foot { max-width: 1536px; margin: 0 auto; padding: 3rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .foot { flex-direction: row; align-items: center; justify-content: space-between; padding: 3rem 2.5rem 2rem; } }
.foot .left { display: flex; align-items: center; gap: 0.7rem; }
.foot .left .logo-word { color: rgba(var(--brand-deep), 0.95); }
.foot nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.foot nav a { font-size: 0.92rem; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.foot nav a:hover { color: var(--brand); }
.foot .copy { font-size: 0.85rem; color: rgba(var(--brand-deep), 0.45); }
