/* ============================================================
   247Care — Landing Page
   Design system + components
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --blue: #0A4DCC;
  --blue-deep: #073a9e;
  --teal: #08C2B2;
  --teal-deep: #06a094;
  --cyan: #22d3ee;
  --purple: #6d28d9;       /* companions brand accent */
  --white: #ffffff;

  /* Neutrals */
  --ink: #0c1b33;
  --ink-soft: #3a4a63;
  --muted: #6b7a90;
  --line: #e7edf5;
  --gray-50: #f6f9fd;
  --gray-100: #eef3fa;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  --grad-brand-soft: linear-gradient(135deg, #1059e0 0%, #0bd0bf 100%);
  --grad-comp: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  --grad-text: linear-gradient(100deg, var(--blue) 0%, var(--teal) 100%);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(12, 27, 51, .06);
  --shadow-md: 0 14px 40px rgba(12, 27, 51, .10);
  --shadow-lg: 0 30px 70px rgba(10, 77, 204, .18);
  --glass-bg: rgba(255, 255, 255, .65);
  --glass-brd: rgba(255, 255, 255, .8);

  /* Layout */
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1180px;
  --header-h: 104px;

  --ff-display: "Poppins", "SF Pro Display", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.15; margin: 0; color: var(--ink); letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Animated background ---------- */
.bg-aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.orb--blue  { width: 540px; height: 540px; background: #6ea8ff; top: -160px; left: -120px; animation: drift 22s ease-in-out infinite; }
.orb--teal  { width: 460px; height: 460px; background: #67e8df; top: 30%; right: -140px; animation: drift 26s ease-in-out infinite reverse; }
.orb--cyan  { width: 380px; height: 380px; background: #bfe6ff; bottom: -120px; left: 30%; animation: drift 30s ease-in-out infinite; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,-30px) scale(1.12); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.brand__logo { height: 76px; width: auto; }
.nav__links { display: flex; gap: 26px; margin-left: 14px; flex: 1; }
.nav__links a { color: var(--ink-soft); font-weight: 500; font-size: .95rem; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-brand); border-radius: 2px; transition: width .25s ease;
}
.nav__links a:hover { color: var(--blue); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; gap: 12px; align-items: center; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 24px 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mobile-menu a:not(.btn) { padding: 12px 6px; color: var(--ink-soft); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 10px; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  font-family: var(--ff-body); white-space: nowrap;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 10px 24px rgba(10,77,204,.32); }
.btn--primary:hover { box-shadow: 0 16px 34px rgba(10,77,204,.42); transform: translateY(-2px); }
.btn--comp { background: var(--grad-comp); color: #fff; box-shadow: 0 10px 24px rgba(109,40,217,.30); }
.btn--comp:hover { box-shadow: 0 16px 34px rgba(109,40,217,.40); transform: translateY(-2px); }
.btn--outline { background: rgba(255,255,255,.7); color: var(--blue); border: 1.5px solid rgba(10,77,204,.25); backdrop-filter: blur(6px); }
.btn--outline:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { color: var(--ink-soft); }
.btn--ghost:hover { color: var(--blue); }

/* ---------- Store badges ---------- */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; padding: 9px 18px; border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge small { font-size: .62rem; opacity: .8; }
.store-badge strong { font-size: 1.02rem; font-family: var(--ff-display); }
.store-badge--light { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px); }

/* ============================================================
   1. HERO
   ============================================================ */
.hero { padding: 60px 0 90px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(8,194,178,.10); color: var(--teal-deep);
  border: 1px solid rgba(8,194,178,.25);
  padding: 7px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(8,194,178,.5); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(8,194,178,.55); }
  70% { box-shadow: 0 0 0 10px rgba(8,194,178,0); }
  100% { box-shadow: 0 0 0 0 rgba(8,194,178,0); }
}

.hero__title { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; margin: 22px 0 18px; }
.hero__sub { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--ink-soft); max-width: 540px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

/* ---------- Hero visual / phones ---------- */
.hero__visual { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(8,194,178,.35), rgba(10,77,204,.15) 50%, transparent 70%);
  filter: blur(20px); animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { transform: scale(1); opacity:.9 } 50% { transform: scale(1.08); opacity: 1 } }

/* Phone component */
.phone {
  position: relative; width: 270px; border-radius: 42px;
  background: linear-gradient(160deg, #1a2740, #0c1426);
  padding: 12px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
}
.phone__notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 20px; background: #0c1426; border-radius: 0 0 14px 14px; z-index: 3;
}
.phone__screen {
  border-radius: 32px; overflow: hidden; padding: 30px 16px 18px;
  display: flex; flex-direction: column; gap: 12px; min-height: 500px;
}
.phone__screen--client { background: linear-gradient(165deg, #eef5ff 0%, #e6fbf8 100%); }
.phone__screen--comp   { background: linear-gradient(165deg, #f3edff 0%, #e6fbf8 100%); }

.hero__visual .phone--front { position: absolute; left: 8%; top: 30px; z-index: 2; }
.hero__visual .phone--back  { position: absolute; right: 4%; bottom: 10px; transform: scale(.9); z-index: 1; opacity: .98; }

/* Screen widgets */
.appbar { display: flex; align-items: center; gap: 10px; }
.appbar__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--grad-brand); }
.appbar--comp .appbar__avatar { background: var(--grad-comp); }
.appbar__lines { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.appbar__lines span { height: 7px; border-radius: 4px; background: rgba(12,27,51,.12); }
.appbar__lines span:first-child { width: 60%; }
.appbar__lines span:last-child { width: 40%; }

.screen-card {
  background: #fff; border-radius: 16px; padding: 12px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 10px;
}
.screen-card--hero { gap: 12px; }
.screen-icon { width: 40px; height: 40px; border-radius: 12px; }
.mini-icon { width: 34px; height: 34px; border-radius: 10px; }
.screen-card__text { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.screen-card__text strong { font-size: .86rem; color: var(--ink); }
.screen-card__text span { font-size: .72rem; color: var(--muted); }
.mini-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,#0A4DCC,#22d3ee); }
.dot-live { width: 10px; height: 10px; border-radius: 50%; background: #19c37d; box-shadow: 0 0 0 0 rgba(25,195,125,.5); animation: pulse 2s infinite; }

.map {
  position: relative; flex: 1; min-height: 120px; border-radius: 16px;
  background:
    linear-gradient(rgba(10,77,204,.04), rgba(8,194,178,.06)),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(10,77,204,.06) 22px 23px),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(10,77,204,.06) 22px 23px);
  overflow: hidden;
}
.map__route {
  position: absolute; left: 18%; top: 75%; width: 64%; height: 0;
  border-top: 3px dashed var(--blue); transform: rotate(-28deg); transform-origin: left; opacity: .7;
}
.map__pin {
  position: absolute; right: 22%; top: 22%; width: 16px; height: 16px; border-radius: 50% 50% 50% 0;
  background: var(--teal); transform: rotate(-45deg); box-shadow: 0 4px 10px rgba(8,194,178,.5);
}
.map__pin::after { content:""; position:absolute; inset: 4px; background:#fff; border-radius:50%; }

.earn-card {
  background: var(--grad-comp); color: #fff; border-radius: 16px; padding: 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.earn-card span { font-size: .72rem; opacity: .9; }
.earn-card strong { font-size: 1.5rem; font-family: var(--ff-display); }
.earn-bars { display: flex; align-items: flex-end; gap: 5px; height: 36px; margin-top: 8px; }
.earn-bars i { flex: 1; background: rgba(255,255,255,.55); border-radius: 4px; animation: grow 1.4s ease infinite alternate; }
.earn-bars i:nth-child(odd) { animation-delay: .2s; }
.earn-bars i:nth-child(1){height:40%} .earn-bars i:nth-child(2){height:70%}
.earn-bars i:nth-child(3){height:50%} .earn-bars i:nth-child(4){height:90%}
.earn-bars i:nth-child(5){height:60%} .earn-bars i:nth-child(6){height:80%}
.earn-bars i:nth-child(7){height:100%}
@keyframes grow { from { opacity:.5 } to { opacity:1 } }

.screen-btn {
  margin-top: auto; background: var(--grad-brand); color: #fff; padding: 12px;
  border-radius: 14px; font-weight: 600; font-size: .9rem;
}
.screen-btn--comp { background: var(--grad-comp); }
.phone__screen--comp .screen-btn { background: var(--grad-comp); }

/* Floating chips */
.chip-float {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-brd); border-radius: 14px;
  padding: 10px 14px; font-size: .8rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-md); z-index: 4;
}
.chip-float--1 { top: 8%; right: 2%; }
.chip-float--2 { bottom: 16%; left: 0; }
.chip-ico { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: .72rem; }
.chip-ico--green { background: #19c37d; }
.chip-ico--blue { background: var(--blue); }

/* Float animations */
.float-slow { animation: floaty 6s ease-in-out infinite; }
.float-fast { animation: floaty 4.5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hero__visual .phone--back.float-fast { animation: floatyScaled 5s ease-in-out infinite; }
@keyframes floatyScaled { 0%,100% { transform: scale(.9) translateY(0); } 50% { transform: scale(.9) translateY(-18px); } }

/* ============================================================
   2. STATS
   ============================================================ */
.stats { padding: 10px 0 70px; }
.stats__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.stat-card {
  text-align: center; padding: 28px 16px; border-radius: var(--radius-lg);
}
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow-md);
}
.stat-card__num {
  display: block; font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card__label { font-size: .88rem; color: var(--muted); font-weight: 500; }

/* ============================================================
   SECTION shells
   ============================================================ */
.section { padding: 80px 0; }
.section--soft { background: linear-gradient(180deg, var(--gray-50), #fff); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .14em;
  font-size: .76rem; font-weight: 700; color: var(--teal-deep); margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255,255,255,.9); }
.section__title { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 700; }
.section__lead { color: var(--ink-soft); font-size: 1.06rem; margin-top: 14px; }

/* ============================================================
   3. SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content:""; position:absolute; inset:0; background: var(--grad-brand); opacity: 0;
  transition: opacity .3s ease; z-index: 0;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 0; }
.service-ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(10,77,204,.10), rgba(8,194,178,.14));
  color: var(--blue); margin-bottom: 16px; transition: .3s;
}
.service-card:hover .service-ico { background: var(--grad-brand); color: #fff; transform: scale(1.06) rotate(-4deg); }
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; position: relative; z-index: 1; }
.service-card p { font-size: .9rem; color: var(--muted); margin: 0; position: relative; z-index: 1; }

/* ============================================================
   4. HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.steps__line {
  position: absolute; top: 54px; left: 16%; right: 16%; height: 3px;
  background: linear-gradient(90deg, rgba(10,77,204,.25), rgba(8,194,178,.4), rgba(10,77,204,.25));
  border-radius: 4px;
}
.steps__line::after {
  content:""; position:absolute; inset:0; border-radius:4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  background-size: 200% 100%; animation: flow 3s linear infinite;
  -webkit-mask: linear-gradient(90deg, transparent, #000 40%, #000 60%, transparent);
}
@keyframes flow { to { background-position: 200% 0; } }
.step { text-align: center; position: relative; padding-top: 14px; }
.step__badge {
  width: 30px; height: 30px; border-radius: 50%; background: var(--grad-brand); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-family: var(--ff-display);
  margin: 0 auto 18px; font-size: .9rem; box-shadow: 0 6px 16px rgba(10,77,204,.35);
}
.step__icon {
  width: 86px; height: 86px; border-radius: 26px; margin: 0 auto 18px;
  display: grid; place-items: center; color: var(--blue);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
  position: relative; z-index: 1;
}
.step:nth-child(3) .step__icon { color: var(--teal-deep); }
.step h3 { font-size: 1.22rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .95rem; max-width: 280px; margin: 0 auto; }

/* ============================================================
   5. DUAL APP SHOWCASE
   ============================================================ */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.dual__panel {
  border-radius: var(--radius-xl); padding: 40px; display: flex; flex-direction: column; gap: 26px;
  overflow: hidden; position: relative; box-shadow: var(--shadow-md);
}
.dual__panel--client { background: linear-gradient(160deg, #f1f7ff 0%, #e9fbf8 100%); border: 1px solid rgba(10,77,204,.1); }
.dual__panel--comp   { background: linear-gradient(160deg, #f6f0ff 0%, #e9fbf8 100%); border: 1px solid rgba(109,40,217,.1); }
.dual__media { display: flex; justify-content: center; }
.dual__media .phone--showcase { width: 240px; }
.dual__media .phone__screen { min-height: 430px; }
.app-tag {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: #fff; border-radius: 999px; padding: 6px 14px 6px 6px; font-weight: 700;
  font-family: var(--ff-display); font-size: .9rem; box-shadow: var(--shadow-sm);
}
.app-tag img { width: 28px; height: 28px; border-radius: 8px; }
.app-tag--client { color: var(--blue); }
.app-tag--comp { color: var(--purple); }
.dual__body h3 { font-size: 1.6rem; margin: 6px 0 4px; }
.dual__body > p { color: var(--ink-soft); margin: 0 0 18px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.feature-list li { position: relative; padding-left: 32px; font-weight: 500; color: var(--ink); }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px;
  background: var(--grad-brand); color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-size: .72rem; font-weight: 700;
}
.feature-list--comp li::before { background: var(--grad-comp); }

/* ============================================================
   6. WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform .28s ease, box-shadow .28s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; margin-bottom: 16px; box-shadow: 0 8px 18px rgba(10,77,204,.28);
}
.why-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ============================================================
   7. TESTIMONIALS
   ============================================================ */
.carousel { position: relative; max-width: 900px; margin: 0 auto; overflow: hidden; }
.carousel__track { display: flex; transition: transform .55s cubic-bezier(.4,.0,.2,1); }
.t-card {
  flex: 0 0 100%; padding: 8px 8px 0;
}
.t-card > p {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; font-size: 1.18rem; line-height: 1.6; color: var(--ink); margin: 0 0 20px;
  box-shadow: var(--shadow-md); position: relative;
}
.t-stars { color: #ffb22e; letter-spacing: 3px; font-size: 1.1rem; text-align: center; margin-bottom: 16px; }
.t-person { display: flex; align-items: center; gap: 14px; justify-content: center; }
.t-avatar {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 700; font-family: var(--ff-display);
  background: linear-gradient(135deg, var(--a), var(--b)); box-shadow: var(--shadow-sm);
}
.t-meta { display: flex; flex-direction: column; line-height: 1.3; }
.t-meta strong { font-size: 1rem; }
.t-meta small { color: var(--muted); }
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--blue); box-shadow: var(--shadow-sm); transition: .2s;
}
.carousel__btn:hover { background: var(--grad-brand); color: #fff; transform: translateY(-2px); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dots button {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(10,77,204,.2); transition: .25s;
}
.carousel__dots button.active { width: 26px; border-radius: 6px; background: var(--grad-brand); }

/* ============================================================
   8. DOWNLOAD CTA
   ============================================================ */
.download { padding: 40px 0 90px; }
.download__card {
  position: relative; overflow: hidden;
  background: var(--grad-brand);
  border-radius: var(--radius-xl); padding: 56px;
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-lg); color: #fff;
}
.download__glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.25), transparent 60%);
  top: -120px; right: -80px;
}
.download__copy { position: relative; z-index: 1; }
.download__copy h2 { color: #fff; font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 12px; }
.download__copy p { color: rgba(255,255,255,.92); font-size: 1.05rem; max-width: 460px; margin-bottom: 26px; }
.download__visual { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.qr {
  position: relative; width: 150px; height: 150px; background: #fff; border-radius: 22px;
  padding: 14px; box-shadow: var(--shadow-md);
}
.qr__grid { width: 100%; height: 100%; display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; }
.qr__grid span { background: var(--ink); border-radius: 3px; }
.qr__grid span:nth-child(3n) { background: var(--blue); }
.qr__grid span:nth-child(4n) { background: transparent; }
.qr__grid span:nth-child(7n) { background: var(--teal); }
.qr__logo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; border-radius: 11px; border: 3px solid #fff;
}
.qr__caption { color: rgba(255,255,255,.92); font-size: .9rem; font-weight: 500; }

/* ---------- Become a companion strip ---------- */
.become { padding: 0 0 80px; }
.become__inner {
  background: var(--grad-comp); border-radius: var(--radius-xl); padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  color: #fff; box-shadow: var(--shadow-lg);
}
.become__inner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.become__inner p { color: rgba(255,255,255,.92); margin: 8px 0 0; max-width: 520px; }
.become .btn--comp { background: #fff; color: var(--purple); }
.become .btn--comp:hover { background: #fff; color: var(--purple); }

/* ============================================================
   9. FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #cdd7e6; padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 36px; }
.footer__logo { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__brand p { font-size: .92rem; line-height: 1.6; max-width: 320px; color: #9fb0c7; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; transition: .25s;
}
.socials a:hover { background: var(--grad-brand); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col a, .footer__addr { display: block; color: #9fb0c7; font-size: .92rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--teal); }
.footer__news p { color: #9fb0c7; font-size: .9rem; margin: 0 0 14px; }
.newsletter { display: flex; gap: 8px; }
.newsletter input {
  flex: 1; min-width: 0; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: .9rem;
}
.newsletter input::placeholder { color: #7e90a8; }
.newsletter input:focus { outline: 2px solid var(--teal); border-color: transparent; }
.newsletter .btn { padding: 12px 16px; }
.newsletter__msg { font-size: .82rem; color: var(--teal); min-height: 18px; margin: 8px 0 0; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .86rem; color: #8497ae;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer__legal a:hover { color: var(--teal); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 520px; margin-top: 10px; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__grid .stat-card:nth-child(4) { grid-column: 1 / 2; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__news { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .hero { padding: 30px 0 60px; }
  .hero__visual { min-height: 480px; }
  .hero__visual .phone--front { left: 50%; transform: translateX(-58%); }
  .hero__visual .phone--back { right: 50%; transform: translateX(58%) scale(.82); bottom: 30px; }
  .hero__visual .phone--back.float-fast { animation: floatyScaledSm 5s ease-in-out infinite; }
  @keyframes floatyScaledSm { 0%,100% { transform: translateX(58%) scale(.82) translateY(0);} 50% { transform: translateX(58%) scale(.82) translateY(-16px);} }
  .chip-float--1 { right: -2%; top: 2%; }
  .chip-float--2 { left: -2%; bottom: 8%; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid .stat-card:nth-child(4) { grid-column: auto; }
  .stats__grid .stat-card:last-child { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps__line { display: none; }
  .dual { grid-template-columns: 1fr; }
  .dual__panel { padding: 30px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .download__card { grid-template-columns: 1fr; padding: 36px 26px; text-align: center; }
  .download__copy .store-badges { justify-content: center; }
  .download__visual { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .become__inner { padding: 32px 26px; text-align: center; justify-content: center; }
  .t-card > p { font-size: 1.04rem; padding: 26px; }
}

@media (max-width: 440px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
}

/* ---------- 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; }
}

/* ============================================================
   REBRAND TOUCHES — added components
   ============================================================ */

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-brand); z-index: 200;
  box-shadow: 0 1px 6px rgba(8,194,178,.5);
  transition: width .1s linear;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(10,77,204,.4);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.85);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(10,77,204,.5); }

/* ---------- Who we care for ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.audience-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.audience-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.audience-card__media {
  height: 128px; display: grid; place-items: center; color: #fff;
  position: relative; overflow: hidden;
}
.audience-card__media::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(120px 80px at 80% -10%, rgba(255,255,255,.35), transparent 60%);
}
.audience-card__media svg { position: relative; z-index: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,.18)); }
.audience-card__media--a { background: linear-gradient(140deg, #0A4DCC, #2f7bff); }
.audience-card__media--b { background: linear-gradient(140deg, #6d28d9, #08C2B2); }
.audience-card__media--c { background: linear-gradient(140deg, #08C2B2, #22d3ee); }
.audience-card__media--d { background: linear-gradient(140deg, #0A4DCC, #08C2B2); }
.audience-card__body { padding: 20px 22px 24px; }
.audience-card__body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.audience-card__body p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Our promise / values ---------- */
.promise { padding: 30px 0 90px; }
.promise__inner {
  position: relative; overflow: hidden;
  background: var(--grad-comp);
  border-radius: var(--radius-xl); padding: 52px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: center;
  color: #fff; box-shadow: var(--shadow-lg);
}
.promise__inner::before {
  content:""; position:absolute; width: 360px; height: 360px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 60%);
  top: -140px; left: -80px;
}
.promise__copy { position: relative; z-index: 1; }
.promise__copy h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; }
.promise__copy p { color: rgba(255,255,255,.92); margin: 0; max-width: 440px; }
.values { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px); border-radius: var(--radius); padding: 18px;
}
.value__ico {
  flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.2); color: #fff;
}
.value strong { display: block; font-family: var(--ff-display); font-size: 1.02rem; }
.value span { font-size: .85rem; color: rgba(255,255,255,.88); line-height: 1.45; }

/* ---------- Trust & safety band ---------- */
.trustband { padding: 0 0 20px; }
.trustband__inner {
  background: var(--glass-bg); backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--glass-brd); border-radius: var(--radius-lg);
  padding: 22px 30px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: center;
}
.trustband__label {
  font-family: var(--ff-display); font-weight: 700; color: var(--ink);
  font-size: 1rem; padding-right: 26px; border-right: 1px solid var(--line);
}
.trustband__items { display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center; }
.trustband__items li { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink-soft); font-size: .92rem; }
.trustband__ico {
  width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(10,77,204,.1), rgba(8,194,178,.16)); color: var(--blue);
}

/* ---------- FAQ accordion ---------- */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .25s ease, border-color .25s ease;
}
.faq__item[open] { border-color: rgba(8,194,178,.4); box-shadow: var(--shadow-md); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: none; width: 22px; height: 22px; }
.faq__plus::before, .faq__plus::after {
  content:""; position:absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  background: var(--blue); border-radius: 2px; transition: transform .3s ease;
}
.faq__plus::before { width: 14px; height: 2px; }
.faq__plus::after { width: 2px; height: 14px; }
.faq__item[open] .faq__plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq__item[open] .faq__answer { max-height: 320px; padding: 0 24px 22px; }
.faq__answer p { margin: 0; color: var(--ink-soft); font-size: .96rem; line-height: 1.6; }

/* ---------- Responsive: rebrand components ---------- */
@media (max-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .promise__inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .audience-grid { grid-template-columns: 1fr; }
  .promise { padding: 10px 0 60px; }
  .promise__inner { padding: 34px 26px; }
  .values { grid-template-columns: 1fr; }
  .trustband__label { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 12px; width: 100%; text-align: center; }
  .trustband__inner { padding: 20px; }
  .faq__item summary { padding: 16px 18px; font-size: .98rem; }
  .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

/* ---------- Companion page: info split ---------- */
.info-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
  margin-top: 40px;
}
.info-copy .eyebrow { margin-bottom: 10px; }
.info-card { border-radius: var(--radius-lg); padding: 30px 32px; }
.info-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.info-card h3 em { font-style: normal; color: var(--blue); }
.info-card .feature-list { margin-bottom: 0; }
.info-card p { color: var(--ink-soft); margin: 0 0 12px; }
.info-card p:last-child { margin-bottom: 0; }
.info-card--soft { background: linear-gradient(160deg, #f1f7ff, #e9fbf8); border: 1px solid rgba(10,77,204,.1); }
.info-emergency {
  margin-top: 16px !important; padding: 12px 16px; border-radius: 12px;
  background: rgba(255,77,79,.08); border: 1px solid rgba(255,77,79,.25); color: var(--ink) !important;
  font-size: .92rem;
}
.info-emergency strong { color: #d4380d; }
@media (max-width: 760px) {
  .info-split { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPANION (Become a Companion) page — purple/teal variants
   ============================================================ */
.grad-text--comp {
  background: var(--grad-comp);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pill--comp { background: rgba(109,40,217,.10); color: var(--purple); border-color: rgba(109,40,217,.28); }
.pill--comp .pill__dot { background: var(--purple); }
.eyebrow--comp { color: var(--purple); }
.glow--comp { background: radial-gradient(circle, rgba(109,40,217,.35), rgba(8,194,178,.15) 50%, transparent 70%); }

.trustband__ico--comp { background: linear-gradient(135deg, rgba(109,40,217,.12), rgba(8,194,178,.16)); color: var(--purple); }

.why-ico--comp { background: var(--grad-comp); box-shadow: 0 8px 18px rgba(109,40,217,.28); }

.service-card--comp .service-ico {
  color: var(--purple);
  background: linear-gradient(135deg, rgba(109,40,217,.10), rgba(8,194,178,.14));
}
.service-card--comp:hover .service-ico { background: var(--grad-comp); color: #fff; }

.info-card--comp { background: linear-gradient(160deg, #f6f0ff, #e9fbf8); border: 1px solid rgba(109,40,217,.12); }
.info-card--comp h3 em { color: var(--purple); font-style: normal; }

.steps--comp .step__badge { background: var(--grad-comp); box-shadow: 0 6px 16px rgba(109,40,217,.35); }
.steps--comp .step__icon { color: var(--purple); }
.steps--comp .steps__line { background: linear-gradient(90deg, rgba(109,40,217,.25), rgba(8,194,178,.4), rgba(109,40,217,.25)); }
.steps--comp .steps__line::after { background: linear-gradient(90deg, var(--purple), var(--teal)); background-size: 200% 100%; }

.earn-card--lg { padding: 18px; }
.earn-card--lg strong { font-size: 2rem; }

.download__card--comp { background: var(--grad-comp); box-shadow: 0 30px 70px rgba(109,40,217,.28); }

/* Companion hero phone sizing parity with client hero */
.companion-page .hero__visual .phone--front { width: 270px; }
