/* ─────────────────────────────────────────────────────────────────────────
   LifeGate Download Page — matching lifegate.dshub.com.ng design system
   ───────────────────────────────────────────────────────────────────────── */

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --teal:       #00A6A3;
  --teal-logo:  #09999B;
  --teal-dark:  #087676;
  --teal-deep:  #034F4D;
  --teal-mid:   #037F7D;
  --teal-grad1: #00B4B0;
  --teal-grad2: #006E6B;
  --hero-from:  #E6F8F7;
  --hero-to:    #D9F9F8;
  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow:     0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl:  0 20px 25px rgba(0,0,0,0.10), 0 10px 10px rgba(0,0,0,0.04);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Quicksand", "Lexend", system-ui, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1280px, 92vw); margin: 0 auto; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--teal-deep);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--teal-deep);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: "Lexend Deca", "Lexend", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal-logo);
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: -1px;
  letter-spacing: 0.04em;
}

.nav-cta {
  display: inline-block;
  background: var(--teal-dark);
  color: var(--white);
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: #00908F; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-to) 100%);
  padding: 7.5rem 0 5rem;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco-1 {
  width: 80px;
  height: 80px;
  background: rgba(0,166,163,0.2);
  top: 60px;
  left: 5%;
}

.hero-deco-2 {
  width: 120px;
  height: 120px;
  background: rgba(0,166,163,0.1);
  bottom: 40px;
  right: 10%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text { max-width: 600px; }

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
h1 {
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}

h2 {
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--teal-deep);
}

h3 {
  font-family: "Lexend", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.text-teal { color: var(--teal); }
.hidden-sm { display: none; }

.lead {
  font-family: "Quicksand", system-ui, sans-serif;
  color: var(--gray-700);
  font-size: clamp(0.96rem, 1.8vw, 1.08rem);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  max-width: 52ch;
}

/* ── Trust Badges ────────────────────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid rgba(0,166,163,0.2);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  box-shadow: var(--shadow-sm);
}

.badge svg { color: var(--teal); flex-shrink: 0; }

/* ── CTA Buttons ─────────────────────────────────────────────────────────── */
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--teal-dark);
  color: var(--white);
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.82rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #008b8a;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.82rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Phone Mockup ────────────────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.phone-wrap { position: relative; }

.phone-mockup {
  width: 260px;
  background: #0d1e2a;
  border-radius: 36px;
  padding: 16px 12px 20px;
  box-shadow:
    0 40px 80px rgba(0,166,163,0.28),
    0 0 0 2px rgba(0,166,163,0.4),
    inset 0 0 32px rgba(0,166,163,0.03);
}

.phone-notch {
  width: 64px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #111e28;
  border-radius: 24px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Lexend", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.phone-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.phone-status-dot.active {
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal);
}

.health-card {
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  border-radius: 14px;
  padding: 12px;
}

.health-card-label {
  font-size: 0.64rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.health-card-value {
  font-family: "Lexend", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 7px;
}

.health-card-value span { font-size: 0.78rem; font-weight: 400; opacity: 0.78; }

.ecg-line { width: 100%; height: 26px; }

.mini-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }

.mini-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 7px 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mini-label {
  font-size: 0.54rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mini-val {
  font-family: "Lexend", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.phone-action-row { display: flex; gap: 7px; }

.phone-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 9px;
  font-size: 0.63rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: var(--white);
  cursor: default;
}

.phone-action-btn.secondary {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* ── Floating Badges ──────────────────────────────────────────────────────── */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid rgba(0,166,163,0.2);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.float-top  { top: 6%;   left: -14%; animation: float 3s ease-in-out infinite; }
.float-bottom { bottom: 6%; right: -14%; animation: float 3s ease-in-out infinite 1.5s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ── Why LifeGate ─────────────────────────────────────────────────────────── */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--hero-from) 0%, var(--white) 100%);
  font-family: "Lexend", system-ui, sans-serif;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 { max-width: 36ch; margin: 0 auto; }

.section-sub {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-family: "Quicksand", sans-serif;
  font-style: italic;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: linear-gradient(180deg, var(--teal-grad1) 0%, var(--teal-grad2) 100%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.25s, transform 0.25s;
}

.why-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  flex-shrink: 0;
}

.why-card p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  line-height: 1.65;
  font-family: "Quicksand", sans-serif;
  max-width: 28ch;
  margin: 0 auto;
}

/* ── Features Strip ───────────────────────────────────────────────────────── */
.features-strip {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  overflow: hidden;
}

.features-strip-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center/80px repeat;
  pointer-events: none;
}

.features-strip-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-direction: row-reverse;
}

.features-strip-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.strip-phone {
  width: 240px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 1.4rem;
  backdrop-filter: blur(8px);
}

.strip-screen { display: flex; flex-direction: column; gap: 0.9rem; }

.strip-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.strip-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.strip-metric-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.strip-metric-val {
  font-family: "Lexend", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.strip-divider {
  height: 1px;
  background: rgba(255,255,255,0.18);
}

.features-strip-text {
  flex: 1;
  color: var(--white);
}

.features-strip-text h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.strip-lead {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 1.8rem;
  max-width: 46ch;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
}

.features-list li svg { flex-shrink: 0; }

/* ── Stats Section ────────────────────────────────────────────────────────── */
.stats-section {
  padding: 5rem 0;
  background: var(--white);
}

.stats-section .section-head { margin-bottom: 2.5rem; }
.stats-section .section-head h2 { color: var(--teal-deep); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid rgba(0,166,163,0.15);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.stat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,166,163,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card h3 {
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.2rem;
  color: var(--gray-500);
}

.stat-value {
  font-family: "Lexend", system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
}

/* ── Chart ───────────────────────────────────────────────────────────────── */
.chart-panel {
  background: var(--gray-50);
  border: 1px solid rgba(0,166,163,0.12);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}

.bar-row {
  display: grid;
  align-items: center;
  gap: 0.8rem;
  grid-template-columns: 100px 1fr 40px;
}

.bar-label-text {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-700);
}

.bar-track {
  height: 10px;
  background: rgba(0,166,163,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bar-android { background: linear-gradient(90deg, var(--teal), var(--teal-mid)); }
.bar-web     { background: linear-gradient(90deg, var(--teal-dark), var(--teal-deep)); }

.bar-count {
  font-family: "Lexend", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--teal-deep);
  text-align: right;
}

.chart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.updated {
  color: var(--gray-500);
  font-size: 0.82rem;
}

.source-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0,166,163,0.2);
  background: var(--white);
  font-size: 0.74rem;
  color: var(--gray-500);
  white-space: nowrap;
}

/* ── Bottom CTA ───────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 5.5rem 0;
  background: var(--teal-dark);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='38'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center/100px repeat,
    linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
}

.cta-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-section h2 { color: var(--white); margin-bottom: 0.6rem; }

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.04rem;
  margin-bottom: 2rem;
  font-family: "Quicksand", sans-serif;
}

.cta-btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--teal-dark);
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow-xl);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(0,0,0,0.18);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  background: var(--teal-dark);
  padding: 3rem 0 0;
  color: var(--white);
  font-family: "Lexend", system-ui, sans-serif;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: rgba(7,118,118,0.8);
  pointer-events: none;
}

.footer-inner { position: relative; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.footer-brand-name {
  display: block;
  font-family: "Lexend Deca", "Lexend", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-sub {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  margin-top: -1px;
  letter-spacing: 0.04em;
}

.footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.footer-contact-row a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-contact-row a:hover { text-decoration: underline; }

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.9rem;
  font-family: "Lexend", sans-serif;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-family: "Quicksand", sans-serif;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white); }

.footer-compliance {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-compliance li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  font-family: "Quicksand", sans-serif;
}

.footer-bottom {
  padding: 1.2rem 0;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-family: "Quicksand", sans-serif;
}

/* ── Animations ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s;  }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
  .hidden-sm { display: block; }
}

@media (max-width: 1024px) {
  .features-strip-inner { flex-direction: column; text-align: center; gap: 2.5rem; }
  .strip-lead { margin: 0 auto 1.8rem; }
  .features-list { align-items: center; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text { max-width: 100%; }

  .lead { max-width: 60ch; margin-left: auto; margin-right: auto; }

  .trust-badges { justify-content: center; }

  .cta-row { justify-content: center; }

  .hero-visual { display: none; }

  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .hero { padding: 6rem 0 3.5rem; }

  .why-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr; }

  .btn-primary,
  .btn-outline { width: 100%; justify-content: center; }

  .cta-row { flex-direction: column; }

  .cta-btn-row { flex-direction: column; align-items: center; }

  .btn-cta-primary,
  .btn-cta-outline { width: min(320px, 100%); justify-content: center; }

  .bar-row { grid-template-columns: 80px 1fr 32px; }

  .float-badge { display: none; }
}
