/* ============================================================
   Lyna Link — Brand & Design System
   Light, clean teal / white theme
   ============================================================ */

:root {
  /* Brand colours */
  --navy-900: #f4fafa;
  --navy-850: #ffffff;
  --navy-800: #eef7f8;
  --navy-700: #e2f0f2;
  --navy-600: #134e4a;

  --teal-300: #0d9488;
  --cyan-400: #0891b2;
  --sky-500:  #0284c7;
  --teal-600: #0f766e;

  --accent: #0891b2;
  --accent-soft: rgba(8, 145, 178, 0.1);

  /* Text */
  --text-1: #0f172a;
  --text-2: #475569;
  --text-3: #64748b;

  /* Surfaces */
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: rgba(13, 148, 136, 0.14);
  --border-strong: rgba(8, 145, 178, 0.28);

  /* Effects */
  --grad-brand: linear-gradient(135deg, #2dd4bf 0%, #06b6d4 45%, #0ea5e9 100%);
  --grad-brand-text: linear-gradient(120deg, #0d9488, #0891b2 55%, #0284c7);
  --shadow-lg: 0 24px 60px -18px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 10px 36px -10px rgba(8, 145, 178, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;

  --font: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Outfit", "Plus Jakarta Sans", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-1);
  background: var(--navy-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Soft ambient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(620px 480px at 78% -8%, rgba(45, 212, 191, 0.14), transparent 60%),
    radial-gradient(540px 420px at 8% 12%, rgba(14, 165, 233, 0.1), transparent 60%),
    radial-gradient(700px 600px at 50% 120%, rgba(13, 148, 136, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 96px 0; position: relative; z-index: 1; }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-600);
  padding: 7px 14px; border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
}

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; font-family: var(--font-display); }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.22rem; }

.lead { color: var(--text-2); font-size: clamp(1.02rem, 1.4vw, 1.18rem); max-width: 60ch; }
.muted { color: var(--text-3); }

.gradient-text {
  background: var(--grad-brand-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin: 18px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #04222b; background: var(--grad-brand);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(8, 145, 178, 0.45); }
.btn-ghost {
  color: var(--text-1); background: var(--surface);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); border-color: var(--teal-300); color: var(--teal-600); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px -12px rgba(15, 23, 42, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--text-1); font-family: var(--font-display); }
.brand img { width: 42px; height: 42px; filter: drop-shadow(0 4px 12px rgba(8, 145, 178, 0.2)); transition: transform .25s ease; }
.brand:hover img { transform: scale(1.05) rotate(-3deg); }
.brand .brand-name span { background: var(--grad-brand-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--text-2); font-weight: 500; font-size: 0.93rem; white-space: nowrap; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-600); }
.nav-cta { display: flex; align-items: center; gap: 9px; }
.nav-cta .lang-switch { padding: 8px 12px; font-size: 0.85rem; font-weight: 700; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text-1); cursor: pointer; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px -8px rgba(15, 23, 42, 0.06);
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.1); }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--accent-soft); border: 1px solid var(--border);
  color: var(--teal-300);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: 0.98rem; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 64px 0 36px; position: relative; z-index: 1; background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--text-2); font-size: 0.95rem; transition: color .2s; }
.footer ul li a:hover { color: var(--teal-300); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--border); color: var(--text-3); font-size: 0.9rem; flex-wrap: wrap; gap: 12px; }

/* ---------- Language & trust ---------- */
.lang-banner {
  background: linear-gradient(90deg, rgba(45,212,191,0.12), rgba(14,165,233,0.06));
  border-bottom: 1px solid var(--border);
  padding: 10px 0; text-align: center; position: relative; z-index: 2;
}
.lang-banner p {
  font-size: 0.92rem; color: var(--text-2); margin: 0;
}
.lang-banner strong { color: var(--teal-600); font-weight: 600; }
.lang-banner .tr { color: var(--text-3); font-size: 0.88rem; margin-top: 2px; }

.trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px;
  padding: 20px 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: 0 4px 20px -8px rgba(15, 23, 42, 0.05);
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
}
.trust-item svg { width: 18px; height: 18px; color: var(--teal-300); flex-shrink: 0; }

.audience-grid .card { text-align: left; }
.audience-grid .card .who-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-600); margin-bottom: 10px;
}
.audience-grid .card ul {
  margin-top: 14px; padding-left: 0;
}
.audience-grid .card li {
  position: relative; padding-left: 22px; margin-bottom: 8px;
  color: var(--text-2); font-size: 0.94rem;
}
.audience-grid .card li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal-300);
}

.cred-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 32px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(45,212,191,0.08), var(--surface));
  border: 1px solid var(--border-strong);
  box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.08);
}
.cred-strip h3 { font-size: 1rem; margin-bottom: 6px; }
.cred-strip p { color: var(--text-2); font-size: 0.92rem; margin: 0; }
.cred-strip .cred-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
  display: grid; place-items: center; background: var(--accent-soft);
  border: 1px solid var(--border); color: var(--teal-300);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cred-strip { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--surface); padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.1);
  }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .service-split { grid-template-columns: 1fr; }
  .service-visual { min-height: 280px; }
}

/* ---------- Recovery Solutions–inspired service layout ---------- */
.page-hero-band {
  padding: 72px 0 64px;
  text-align: center;
  background: linear-gradient(135deg, rgba(45,212,191,0.2), rgba(14,165,233,0.08));
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.page-hero-band h1 { font-size: clamp(2.6rem, 5vw, 3.6rem); margin-top: 14px; }

.service-intro { padding: 72px 0; position: relative; z-index: 1; }
.service-split {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center;
}
.service-visual {
  border-radius: var(--radius); overflow: hidden; min-height: 360px;
  background: linear-gradient(145deg, rgba(45,212,191,0.12), var(--surface));
  border: 1px solid var(--border);
  display: grid; place-items: center; padding: 40px;
  box-shadow: var(--shadow-lg);
}
.service-visual img { width: 55%; filter: drop-shadow(0 16px 32px rgba(8, 145, 178, 0.2)); }
.service-split .lead { max-width: none; margin-bottom: 18px; }
.service-split .lead:last-of-type { margin-bottom: 28px; }

.service-category {
  padding: 80px 0; position: relative; z-index: 1;
}
.service-category.band {
  background: linear-gradient(180deg, rgba(45,212,191,0.08), rgba(255,255,255,0));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-category-head { max-width: 720px; margin-bottom: 40px; }
.service-category-head h2 { margin: 14px 0 16px; }
.service-category-head .lead { max-width: none; }

.service-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px -8px rgba(15, 23, 42, 0.05);
}
.service-item:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.1); }
.service-item h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-item p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 14px; }
.service-item .card-link { margin-top: 0; }

.approach-section {
  padding: 80px 0; position: relative; z-index: 1;
  background: var(--navy-800); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.approach-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-2); font-size: 0.98rem; margin-bottom: 14px; padding-left: 0;
}
.approach-list li::before { display: none; }
.approach-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--teal-300); }

.ready-begin {
  text-align: center; padding: 64px 40px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(45,212,191,0.16), rgba(14,165,233,0.06));
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg);
}
.ready-begin h2 { margin: 16px 0 12px; }
.ready-begin .lead { margin: 0 auto 28px; max-width: 52ch; }
.ready-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.connect-strip {
  padding: 56px 0; position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(45,212,191,0.12), rgba(94,234,212,0.06));
  border-top: 1px solid var(--border);
}
.connect-strip h2 { text-align: center; margin-bottom: 32px; }
.connect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.connect-item {
  text-align: center; padding: 24px 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px -8px rgba(15, 23, 42, 0.05);
}
.connect-item .icon {
  width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 12px;
  display: grid; place-items: center; background: var(--accent-soft); color: var(--teal-300);
}
.connect-item strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.connect-item span { color: var(--text-2); font-size: 0.92rem; }
.connect-item a:hover { color: var(--teal-300); }

@media (max-width: 920px) {
  .approach-grid, .connect-grid { grid-template-columns: 1fr; }
  .refer-banner-inner, .accept-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .accept-phone { margin: 0 auto; }
  .help-pillars { grid-template-columns: 1fr; }
  .supports-icon-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Ultimate site sections (RS + flyer style) ---------- */
.accept-banner {
  background: linear-gradient(135deg, rgba(8,145,178,0.12), rgba(45,212,191,0.18));
  border-bottom: 1px solid var(--border-strong);
  padding: 28px 0;
  position: relative; z-index: 1;
}
.accept-banner-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.accept-banner h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem); margin: 8px 0 6px;
}
.accept-banner .script { font-style: italic; color: var(--teal-600); font-weight: 600; font-size: 1.05rem; }
.accept-banner p { color: var(--text-2); font-size: 0.98rem; max-width: 52ch; }
.accept-phone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 140px; height: 140px; border-radius: 50%; text-align: center;
  background: var(--grad-brand); color: #04222b; box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}
.accept-phone svg { width: 22px; height: 22px; margin-bottom: 6px; }
.accept-phone strong { font-size: 1rem; font-weight: 800; line-height: 1.2; }
.accept-phone span { font-size: 0.72rem; font-weight: 600; opacity: 0.85; margin-top: 4px; }

.help-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.help-pillar {
  text-align: center; padding: 32px 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: 0 4px 20px -8px rgba(15, 23, 42, 0.06);
  transition: transform .2s, box-shadow .2s;
}
.help-pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.1); }
.help-pillar .circle {
  width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--border);
  color: var(--teal-300);
}
.help-pillar h3 { font-size: 0.95rem; line-height: 1.35; margin-bottom: 8px; }
.help-pillar p { color: var(--text-2); font-size: 0.9rem; }

.refer-banner {
  padding: 56px 0; position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(45,212,191,0.1), rgba(8,145,178,0.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.refer-banner-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
  padding: 36px 40px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.refer-banner .refer-icon {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: var(--grad-brand); color: #04222b;
}
.refer-banner h2 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); margin-bottom: 8px; }
.refer-banner p { color: var(--text-2); font-size: 0.98rem; }
.refer-banner .tagline { font-style: italic; color: var(--teal-600); font-weight: 600; margin-top: 8px; font-size: 0.95rem; }

.supports-icon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.support-tile {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 20px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.support-tile:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.support-tile .tile-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--teal-300);
  border: 1px solid var(--border);
}
.support-tile h3 { font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 6px; }
.support-tile p { color: var(--text-2); font-size: 0.9rem; line-height: 1.5; }

.resources-band {
  padding: 48px 0; background: var(--navy-800); border-top: 1px solid var(--border);
}
.resources-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  padding: 32px 36px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}
.resources-inner h2 { margin-bottom: 8px; }
.resources-inner p { color: var(--text-2); font-size: 0.96rem; max-width: 50ch; }

.mission-bar {
  padding: 40px 0; background: linear-gradient(90deg, rgba(8,145,178,0.14), rgba(45,212,191,0.08));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.mission-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
}
.mission-inner .heart-icon {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: var(--teal-600); color: white;
}
.mission-inner p { color: var(--text-2); font-size: 1rem; line-height: 1.6; }
.mission-inner .quote-side { font-style: italic; color: var(--teal-600); font-weight: 600; font-size: 1.05rem; white-space: nowrap; }

@media (max-width: 720px) {
  .supports-icon-grid { grid-template-columns: 1fr; }
  .mission-inner { grid-template-columns: 1fr; text-align: center; }
  .mission-inner .quote-side { white-space: normal; }
  .resources-inner { grid-template-columns: 1fr; text-align: center; }
  .resources-inner p { margin: 0 auto; }
}

/* ---------- Homepage hero (premium) ---------- */
.hero {
  padding: 56px 0 88px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(45,212,191,0.22), transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  bottom: -100px; left: -60px;
  background: radial-gradient(circle, rgba(14,165,233,0.14), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}
.hero h1 { margin: 18px 0 20px; font-size: clamp(2.5rem, 5.2vw, 3.75rem); }
.hero .lead { margin-bottom: 28px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.trust-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px;
  color: var(--text-3); font-size: 0.88rem; font-weight: 500;
}
.trust-row .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--teal-300); opacity: 0.55; }

.hero-visual { display: grid; place-items: center; position: relative; }
.hero-showcase {
  position: relative;
  width: min(400px, 100%);
  padding: 48px 36px 40px;
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(165deg, rgba(255,255,255,0.95), rgba(240,253,250,0.88));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    0 32px 64px -24px rgba(8, 145, 178, 0.22),
    0 0 0 1px rgba(8, 145, 178, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
}
.hero-showcase::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(45,212,191,0.5), rgba(14,165,233,0.15), rgba(45,212,191,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.hero-logo-wrap {
  position: relative;
  width: 180px; height: 180px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
}
.hero-logo-wrap img {
  width: 100%; height: auto;
  filter: drop-shadow(0 16px 28px rgba(8, 145, 178, 0.25));
  animation: heroLogoFloat 5s ease-in-out infinite;
}
.hero-logo-glow {
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,0.28), transparent 70%);
  z-index: -1;
  animation: heroGlowPulse 4s ease-in-out infinite;
}
.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-wordmark .link { background: var(--grad-brand-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-tagline {
  font-size: 0.92rem; font-weight: 600; color: var(--teal-600);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-2);
  padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.hero-chip svg { width: 14px; height: 14px; color: var(--teal-300); flex-shrink: 0; }
.hero-float {
  position: absolute;
  padding: 10px 14px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: 0 12px 32px -12px rgba(15,23,42,0.15);
  font-size: 0.78rem; font-weight: 600; color: var(--text-1);
  display: flex; align-items: center; gap: 8px;
  animation: heroLogoFloat 6s ease-in-out infinite;
}
.hero-float small { display: block; color: var(--text-3); font-weight: 500; font-size: 0.68rem; }
.hero-float .pip {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--teal-300);
}
.hero-float.top { top: 4%; right: -8%; animation-delay: -1.5s; }
.hero-float.bottom { bottom: 6%; left: -6%; animation-delay: -3s; }

@keyframes heroLogoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes heroGlowPulse { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }

.cta-band {
  position: relative; overflow: hidden;
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,253,250,0.95));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 50% -20%, rgba(45,212,191,0.2), transparent 60%);
  pointer-events: none;
}
.cta-band .lead { margin: 16px auto 30px; }

.step { padding-top: 30px; }
.step .step-num {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
  font-weight: 800; font-size: 1.1rem; color: #04222b;
  background: var(--grad-brand); box-shadow: var(--shadow-glow);
  font-family: var(--font-display);
}
.quote { color: var(--text-1); font-size: 1.02rem; line-height: 1.6; margin-bottom: 22px; }
.person { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: 0.95rem;
  color: #04222b; background: var(--grad-brand); flex-shrink: 0;
  font-family: var(--font-display);
}
.person .name { font-weight: 600; font-size: 0.96rem; }
.person .role { color: var(--text-3); font-size: 0.85rem; }
.stars { color: var(--teal-300); margin-bottom: 14px; letter-spacing: 2px; font-size: 0.95rem; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-showcase { width: min(360px, 92%); padding: 40px 28px 32px; }
  .hero-logo-wrap { width: 150px; height: 150px; }
  .hero-float.top { right: 0; }
  .hero-float.bottom { left: 0; }
}
@media (max-width: 720px) {
  .cta-band { padding: 48px 24px; }
  .hero { padding-top: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-wrap img, .hero-logo-glow, .hero-float { animation: none; }
  .brand:hover img { transform: none; }
}

