﻿/* 
   Cove  Design System v2
    */

:root {
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gray-950: #020617;

  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-50: #eff6ff;
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --red: #ef4444;
  --rose: #f43f5e;
  --purple: #8b5cf6;

  --gradient: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.16);
  --shadow-glow: 0 0 80px rgba(37,99,235,.25);
  --shadow-glow-cyan: 0 0 60px rgba(6,182,212,.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/*  TYPOGRAPHY  */
h1, h2, h3 { line-height: 1.1; font-weight: 800; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

em { font-style: italic; }

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

/*  SCROLL REVEAL  */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* Slide from left/right variants */
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/*  BUTTONS  */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border: none; border-radius: var(--radius-full); cursor: pointer;
  font-family: inherit; font-weight: 700; text-decoration: none;
  transition: all .2s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm  { font-size: .85rem; padding: .5rem 1.1rem; }
.btn--lg  { font-size: 1rem; padding: .85rem 1.75rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 8px 24px rgba(37,99,235,.4); }

.btn--white {
  background: #fff; color: var(--blue); font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn--white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.18); }

.btn--ghost {
  background: transparent; color: var(--gray-600);
  border: 1.5px solid var(--gray-300);
}
.btn--ghost:hover { border-color: var(--gray-500); color: var(--gray-800); background: var(--gray-50); }

/* Light ghost — for use on dark backgrounds (hero, dark sections) */
.btn--ghost-light {
  background: transparent; color: rgba(255,255,255,.82);
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn--ghost-light:hover { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.07); }

/*  NAV  */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid var(--gray-200);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none;
}
.nav__logo span {
  font-weight: 900; font-size: 1.35rem;
  letter-spacing: -0.06em; color: var(--gray-900);
}
.nav__mark { flex-shrink: 0; }
.nav__links {
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__links a:not(.btn) { font-size: .9rem; color: var(--gray-600); text-decoration: none; font-weight: 500; }
.nav__links a:not(.btn):hover { color: var(--gray-900); }
/* Separate CTA group from text links, keep buttons tight together */
.nav__links .btn--ghost { margin-left: .75rem; }
.nav__links .btn--primary { margin-left: -.75rem; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700); border-radius: 2px;
  transition: all .2s;
}

/*  HERO  */
.hero {
  position: relative;
  background: var(--gray-950);
  overflow: hidden;
  padding: 5rem 0 4.5rem;
}

.hero__bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 65% 20%, rgba(37,99,235,.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(6,182,212,.12) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(37,99,235,.1) 0%, transparent 50%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 5rem;
  align-items: center;
  position: relative; z-index: 1;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--cyan-light);
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}

.hero__copy h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__copy h1 em {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero__sub {
  font-size: 1.2rem; line-height: 1.8;
  color: rgba(255,255,255,.65); max-width: 50ch;
  margin-bottom: 2.25rem;
}
.hero__sub strong { color: var(--cyan-light); font-weight: 700; }

.hero__proof-row {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.25rem;
}
.hero__proof-item { display: flex; flex-direction: column; }
.hero__proof-item strong {
  font-size: 1.6rem; font-weight: 900; letter-spacing: -0.04em;
  color: #fff; line-height: 1;
}
.hero__proof-item span { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: .2rem; }
.hero__proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

.hero__ctas { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__cta-main {
  background: var(--gradient);
  box-shadow: 0 4px 20px rgba(37,99,235,.4), 0 0 40px rgba(6,182,212,.15);
}
.hero__cta-main:hover {
  box-shadow: 0 8px 30px rgba(37,99,235,.5), 0 0 50px rgba(6,182,212,.2);
}

.hero__phone-col {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .75rem;
}
.hero__phone-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: .75rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.hero__phone-wrap.shifted { transform: translateY(-44px); }

/*  iOS PHONE  */
.iphone {
  width: 340px; margin: 0 auto;
  background: #000;
  border-radius: 44px;
  border: 3px solid #2a2a2e;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 30px 60px rgba(0,0,0,.6),
    var(--shadow-glow);
}
.iphone__statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 26px 0;
  font-size: .72rem; font-weight: 600; color: #fff;
}
.iphone__statusbar-icons { display: flex; align-items: center; gap: 5px; }
.iphone__island {
  width: 120px; height: 34px;
  background: #000; border-radius: 20px;
  margin: -12px auto 6px;
  position: relative; z-index: 2;
  border: 2px solid #1a1a1a;
}
.iphone__header {
  display: flex; align-items: center; gap: .5rem;
  padding: .45rem .85rem .55rem;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(12px);
  border-bottom: .5px solid rgba(255,255,255,.08);
}
.iphone__back { color: #0a84ff; display: flex; align-items: center; flex-shrink: 0; }
.iphone__contact { display: flex; align-items: center; gap: .45rem; flex: 1; min-width: 0; }
.iphone__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; font-size: .55rem; font-weight: 700;
  display: grid; place-items: center;
  flex-shrink: 0; letter-spacing: .02em;
}
.iphone__contact-info { min-width: 0; }
.iphone__name { font-size: .82rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.iphone__sub { font-size: .6rem; color: #8e8e93; }
.iphone__actions { display: flex; gap: .6rem; color: #0a84ff; flex-shrink: 0; }
.iphone__screen {
  display: flex; flex-direction: column;
  padding: .25rem .65rem;
  min-height: 280px;
}
.iphone__time {
  text-align: center; font-size: .63rem; font-weight: 500;
  color: #8e8e93; padding: .6rem 0 .5rem;
}
.iphone__inputbar {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .65rem .65rem;
  background: #000;
  border-top: .5px solid rgba(255,255,255,.08);
}
.iphone__inputbar-plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: #636366; display: grid; place-items: center; flex-shrink: 0;
}
.iphone__inputbar-field {
  flex: 1; background: transparent;
  border: 1px solid #3a3a3c; border-radius: 18px;
  padding: .4rem .75rem; color: #8e8e93;
  font-size: .78rem; font-family: inherit;
}
.iphone__inputbar-send {
  width: 28px; height: 28px; border-radius: 50%;
  background: #0a84ff; display: grid; place-items: center; flex-shrink: 0;
}

/* Bubbles */
.imsg {
  width: fit-content; max-width: 78%;
  padding: .5rem .75rem;
  border-radius: 18px;
  font-size: .82rem; line-height: 1.5;
  margin-bottom: .2rem; white-space: pre-line;
}
.imsg--recv {
  background: #1c1c1e; color: rgba(255,255,255,.92);
  border-bottom-left-radius: 6px; margin-right: auto;
}
.imsg--sent {
  background: #0a84ff; color: #fff;
  margin-left: auto; border-bottom-right-radius: 6px; font-weight: 600;
}
.imsg--delivered {
  width: fit-content; margin-left: auto;
  font-size: .58rem; color: #8e8e93; padding: 1px 4px 4px;
}
.imsg--alert {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .65rem; font-weight: 500; color: #8e8e93;
  padding: .35rem 0; margin-top: 4px;
}

/* Hero phone size */
.iphone--hero {
  width: 260px; border-radius: 36px; border-width: 2.5px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset, 0 25px 50px rgba(37,99,235,.2), 0 10px 20px rgba(0,0,0,.15);
}
.iphone--hero .iphone__statusbar { padding: 10px 20px 0; font-size: .6rem; }
.iphone--hero .iphone__statusbar-icons { gap: 4px; }
.iphone--hero .iphone__statusbar-icons svg { transform: scale(.85); }
.iphone--hero .iphone__island { width: 95px; height: 27px; margin: -9px auto 4px; border-radius: 16px; }
.iphone--hero .iphone__header { padding: .35rem .7rem .4rem; gap: .4rem; }
.iphone--hero .iphone__avatar { width: 24px; height: 24px; min-width: 24px; flex-shrink: 0; font-size: .45rem; }
.iphone--hero .iphone__name { font-size: .7rem; }
.iphone--hero .iphone__sub { font-size: .5rem; }
.iphone--hero .iphone__back svg { width: 8px; height: 14px; }
.iphone--hero .iphone__actions svg { width: 14px; height: 14px; }
.iphone--hero .iphone__actions { gap: .4rem; }
.iphone--hero .iphone__screen {
  display: block; height: 360px; min-height: unset;
  padding: .2rem .55rem; overflow-y: auto; overflow-x: hidden;
  scroll-behavior: smooth; background: #000; position: relative;
}
.iphone--hero .iphone__screen::-webkit-scrollbar { width: 0; }
.iphone--hero .iphone__time { font-size: .52rem; padding: .4rem 0 .3rem; }
.iphone--hero .imsg { font-size: .68rem; padding: .35rem .55rem; border-radius: 16px; margin-bottom: .15rem; line-height: 1.45; }
.iphone--hero .imsg--recv { border-bottom-left-radius: 5px; }
.iphone--hero .imsg--sent { border-bottom-right-radius: 5px; }
.iphone--hero .imsg--delivered { font-size: .48rem; padding: 1px 3px 3px; }
.iphone--hero .imsg--alert { font-size: .54rem; }
.iphone--hero .iphone__inputbar { padding: .3rem .55rem .5rem; gap: .3rem; }
.iphone--hero .iphone__inputbar-plus,
.iphone--hero .iphone__inputbar-send { width: 22px; height: 22px; }
.iphone--hero .iphone__inputbar-plus svg { width: 10px; height: 10px; }
.iphone--hero .iphone__inputbar-send svg { width: 10px; height: 10px; }
.iphone--hero .iphone__inputbar-field { font-size: .64rem; padding: .3rem .6rem; border-radius: 15px; }

/* Hero typing */
.hero-typing { display: none; align-items: center; padding: .15rem .3rem; }
.hero-typing.show { display: flex; }
.hero-typing__dots { display: flex; gap: 2.5px; background: #1c1c1e; padding: .35rem .55rem; border-radius: 16px; border-bottom-left-radius: 5px; }
.hero-typing__dot { width: 5px; height: 5px; background: #636366; border-radius: 50%; animation: htBounce .9s ease-in-out infinite; }
.hero-typing__dot:nth-child(2) { animation-delay: .15s; }
.hero-typing__dot:nth-child(3) { animation-delay: .3s; }
@keyframes htBounce { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-3px); opacity: 1; } }
.iphone--hero .imsg:not(.show) { opacity: 0; transform: translateY(8px); }
.iphone--hero .imsg.show { animation: heroMsgIn .3s ease-out forwards; }
@keyframes heroMsgIn { to { opacity: 1; transform: translateY(0); } }
.iphone--hero .imsg--delivered { opacity: 1 !important; transform: none !important; }

/* Hero notification card */
.hero__notif { width: 260px; transition: opacity .5s ease, transform .5s ease; }
.hero__notif-label {
  text-align: center; font-size: .58rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--cyan-light); margin-bottom: .35rem;
}
.hero__notif-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: .65rem .75rem .6rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.hero__notif-top { display: flex; align-items: center; gap: .35rem; margin-bottom: .3rem; }
.hero__notif-icon { width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0; }
.hero__notif-app { font-size: .58rem; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .04em; }
.hero__notif-time { margin-left: auto; font-size: .52rem; color: rgba(255,255,255,.35); }
.hero__notif-title { font-size: .7rem; font-weight: 700; color: #fff; margin-bottom: .15rem; }
.hero__notif-body { font-size: .62rem; line-height: 1.5; color: rgba(255,255,255,.55); }
.hero__notif-via { text-align: center; font-size: .56rem; color: rgba(255,255,255,.3); margin-top: .35rem; letter-spacing: .02em; font-weight: 500; }

/*  LOGO BANNER  */
.logo-banner { padding: 2.5rem 0; background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); overflow: hidden; text-align: center; }
.logo-banner__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gray-500); margin-bottom: 1.25rem; }
.logo-banner__track {
  width: 100%; overflow: hidden; display: flex;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
/* Two sibling .logo-banner__scroll divs — both animate translateX(-100%) simultaneously.
   When Div1 exits left, Div2 (identical, right behind it) lands at x=0. Seamless loop. */
.logo-banner__scroll {
  display: flex; align-items: center; gap: 3.5rem;
  padding-right: 3.5rem; /* trailing gap so last item has same spacing as others */
  flex-shrink: 0;
  animation: scroll-logos 36s linear infinite;
}
.logo-banner__item {
  display: inline-flex; align-items: center; gap: .55rem; flex-shrink: 0;
  filter: grayscale(1) opacity(.45);
  transition: filter .25s ease;
}
.logo-banner__item:hover { filter: grayscale(0) opacity(1); }
.logo-banner__item span { font-size: 1rem; font-weight: 700; white-space: nowrap; }
@keyframes scroll-logos { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/*  PROBLEM  */
.problem { padding: 7rem 0; background: var(--gray-950); color: #fff; position: relative; overflow: hidden; }
.problem::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(239,68,68,.1) 0%, transparent 65%), radial-gradient(ellipse 40% 40% at 90% 90%, rgba(37,99,235,.08) 0%, transparent 55%); }
.problem__top { text-align: center; margin-bottom: 3.5rem; position: relative; }
.problem__kicker { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; }
.problem__heading { font-size: clamp(2.1rem, 4vw, 3.2rem); color: #fff; max-width: 680px; margin: 0 auto; }
.problem__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; position: relative; }
.problem__card { border-radius: var(--radius-xl); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: .75rem; border: 1px solid transparent; transition: transform .3s ease; }
.problem__card:hover { transform: translateY(-4px); }
.problem__card--red { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.2); }
.problem__card--orange { background: rgba(249,115,22,.08); border-color: rgba(249,115,22,.2); }
.problem__card--yellow { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.2); }
.problem__card--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.problem__card-icon { width: 52px; height: 52px; border-radius: var(--radius-lg); display: grid; place-items: center; background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); }
.problem__card--red .problem__card-icon { background: rgba(239,68,68,.15); color: #fca5a5; }
.problem__card--orange .problem__card-icon { background: rgba(249,115,22,.15); color: #fdba74; }
.problem__card--yellow .problem__card-icon { background: rgba(245,158,11,.15); color: #fcd34d; }
.problem__card-stat { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: #fff; }
.problem__card--red .problem__card-stat { color: #fca5a5; }
.problem__card--orange .problem__card-stat { color: #fdba74; }
.problem__card--yellow .problem__card-stat { color: #fcd34d; }
.problem__card-label { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.9); line-height: 1.3; }
.problem__card-sub { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.problem__cta-row { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.problem__cta-text { font-size: 1.1rem; color: rgba(255,255,255,.6); }

/*  HOW IT WORKS  */
.how { padding: 7rem 0; background: var(--gray-950); position: relative; overflow: hidden; }
.how::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 40% at 10% 50%, rgba(37,99,235,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(6,182,212,.07) 0%, transparent 55%); }
.how__header { text-align: center; margin-bottom: 5rem; position: relative; z-index: 1; }
.how__kicker { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan-light); margin-bottom: .75rem; }
.how__header h2 { margin-bottom: 1rem; color: #fff; }
.how__sub { font-size: 1.1rem; color: rgba(255,255,255,.5); max-width: 520px; margin: 0 auto; line-height: 1.8; }
.how__timeline { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.how__step { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding-bottom: 3.5rem; }
.how__step:last-child { padding-bottom: 0; }
.how__step-left { display: flex; flex-direction: column; align-items: center; }
.how__step-num { width: 52px; height: 52px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--blue), #3b82f6); color: #fff; font-size: 1rem; font-weight: 800; display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 4px 20px rgba(37,99,235,.4); }
.how__step:nth-child(2) .how__step-num { background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: 0 4px 20px rgba(6,182,212,.3); }
.how__step:nth-child(3) .how__step-num { background: linear-gradient(135deg, var(--emerald), #34d399); box-shadow: 0 4px 20px rgba(16,185,129,.35); }
.how__step-line { width: 2px; flex: 1; margin-top: .75rem; background: linear-gradient(to bottom, rgba(255,255,255,.12), transparent); }
.how__step-body { padding-top: .6rem; }
.how__step-trigger { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; flex-wrap: wrap; }
.how__trigger-pill { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600; padding: .35rem .75rem; border-radius: var(--radius-full); }
.how__trigger-pill--blue { background: rgba(37,99,235,.2); color: #93c5fd; border: 1px solid rgba(37,99,235,.3); }
.how__trigger-pill--cyan { background: rgba(6,182,212,.15); color: var(--cyan-light); border: 1px solid rgba(6,182,212,.25); }
.how__trigger-or { font-size: .78rem; color: rgba(255,255,255,.3); font-weight: 500; }
.how__step-body h3 { font-size: 1.35rem; margin-bottom: .65rem; color: #fff; }
.how__step-body p { font-size: 1rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: .5rem; }
.how__step-body p strong { color: rgba(255,255,255,.8); }
.how__step-note { display: inline-block; font-size: .88rem; font-weight: 700; color: var(--cyan-light); margin-top: .5rem; }
.how__step-sms-preview { background: rgba(255,255,255,.04); border-radius: var(--radius-lg); padding: 1rem 1.1rem; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .4rem; border: 1px solid rgba(255,255,255,.09); max-width: 400px; backdrop-filter: blur(8px); }
.how__sms-bubble { font-size: .82rem; line-height: 1.55; padding: .5rem .75rem; border-radius: 14px; width: fit-content; max-width: 88%; }
.how__sms-bubble--recv { background: #1c1c1e; color: rgba(255,255,255,.9); border-bottom-left-radius: 4px; margin-right: auto; }
.how__sms-bubble--sent { background: #0a84ff; color: #fff; font-weight: 600; border-bottom-right-radius: 4px; margin-left: auto; }
.how__step-notif-preview { margin-bottom: 1.25rem; max-width: 380px; }
.how__notif-mock { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: .85rem 1rem; backdrop-filter: blur(8px); }
.how__notif-mock-top { display: flex; align-items: center; gap: .4rem; margin-bottom: .4rem; }
.how__notif-mock-top span:first-of-type { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.5); }
.how__notif-time { margin-left: auto; font-size: .62rem; color: rgba(255,255,255,.3); }
.how__notif-mock-title { font-size: .8rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.how__notif-mock-body { font-size: .72rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/*  FEATURES  */
.features { padding: 7rem 0; background: var(--white); }
.features__header { text-align: center; margin-bottom: 4.5rem; }
.features__kicker { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .75rem; }
.features__header h2 { max-width: 600px; margin: 0 auto; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* Bento grid */
.features__bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feat-bento--wide { grid-column: span 2; }
.feat-bento--strip {
  grid-column: 1 / -1;
  flex-direction: row !important;
  align-items: center;
  padding: 1.1rem 1.75rem;
  gap: 1.25rem;
}
.feat-bento--strip h3 { font-size: 1rem; white-space: nowrap; margin: 0; }
.feat-bento--strip p { margin: 0; flex: 1; }
.feat-bento--strip .feat-card__tag { flex-shrink: 0; }

/* Dark hero card */
.feat-card--dark {
  background: linear-gradient(145deg, #0f172a 0%, #1a2744 100%);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 0 0 1px rgba(37,99,235,.15) inset, 0 20px 60px rgba(0,0,0,.3);
}
.feat-card--dark::before { opacity: 1; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.feat-card--dark h3 { color: #fff; }
.feat-card--dark p { color: rgba(255,255,255,.65); }
.feat-card--dark .feat-card__tag { background: rgba(37,99,235,.25); color: #93c5fd; border-color: rgba(37,99,235,.4); }

/* SMS preview inside feat card */
.feat-preview {
  display: flex; flex-direction: column; gap: .45rem;
  margin-top: auto; padding-top: 1.1rem;
}
.feat-preview__bub {
  font-size: .84rem; line-height: 1.55;
  padding: .5rem .85rem; border-radius: 14px;
  width: fit-content; max-width: 94%;
}
.feat-preview__bub--recv { background: #2a2a2e; color: #f5f5f7; border-bottom-left-radius: 4px; }
.feat-preview__bub--sent { background: #0a84ff; color: #fff; font-weight: 600; margin-left: auto; border-bottom-right-radius: 4px; }
.feat-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2rem; display: flex; flex-direction: column; gap: .85rem; transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease; position: relative; overflow: hidden; }
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); opacity: 0; transition: opacity .3s ease; }
.feat-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-4px); border-color: rgba(37,99,235,.15); }
.feat-card:hover::before { opacity: 1; }
.feat-card__icon { width: 52px; height: 52px; border-radius: var(--radius-lg); display: grid; place-items: center; flex-shrink: 0; }
.feat-card__icon--blue { background: rgba(37,99,235,.1); color: var(--blue); }
.feat-card__icon--cyan { background: rgba(6,182,212,.1); color: var(--cyan); }
.feat-card__icon--emerald { background: rgba(16,185,129,.1); color: var(--emerald); }
.feat-card__icon--amber { background: rgba(245,158,11,.1); color: var(--amber-dark); }
.feat-card__icon--purple { background: rgba(139,92,246,.1); color: var(--purple); }
.feat-card__icon--rose { background: rgba(244,63,94,.1); color: var(--rose); }
.feat-card h3 { font-size: 1.15rem; color: var(--gray-900); }
.feat-card p { font-size: .95rem; color: var(--gray-500); line-height: 1.75; flex: 1; }
.feat-card__tag { display: inline-block; align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .04em; padding: .3rem .7rem; border-radius: var(--radius-full); background: var(--gray-100); color: var(--gray-500); border: 1px solid var(--gray-200); }

/*  DEMO  */
.demo { padding: 7rem 0; background: var(--blue); position: relative; overflow: hidden; }
.demo__bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 20% 40%, rgba(255,255,255,.1) 0%, transparent 50%), radial-gradient(circle at 80% 60%, rgba(6,182,212,.15) 0%, transparent 45%); }
.demo__inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.demo__badge { display: inline-flex; align-items: center; gap: .6rem; padding: .55rem 1.2rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-full); font-size: .88rem; font-weight: 600; color: #fff; margin-bottom: 1.75rem; }
.demo h2 { font-size: clamp(2rem, 5vw, 3rem); color: #fff; margin-bottom: 1rem; }
.demo__subtitle { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 2.5rem; line-height: 1.7; }
.demo__form { margin-bottom: 1.75rem; }
.demo__input-group { display: flex; gap: .85rem; max-width: 560px; margin: 0 auto 1.5rem; }
.demo__input-wrapper { flex: 1; position: relative; }
.demo__input-icon { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); pointer-events: none; }
.demo__input-wrapper input { width: 100%; padding: 1.1rem 1.1rem 1.1rem 3.2rem; font-size: 1rem; border: 2px solid rgba(255,255,255,.25); border-radius: var(--radius-md); font-family: inherit; background: rgba(255,255,255,.95); color: var(--gray-900); transition: all .2s; }
.demo__input-wrapper input::placeholder { color: var(--gray-400); }
.demo__input-wrapper input:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2); background: #fff; }
.demo__input-group button { display: flex; align-items: center; gap: .55rem; white-space: nowrap; padding: 1.1rem 1.75rem; font-size: 1rem; background: #fff; color: var(--blue); font-weight: 700; border-radius: var(--radius-md); box-shadow: 0 4px 20px rgba(0,0,0,.15); border: none; cursor: pointer; font-family: inherit; transition: all .2s; }
.demo__input-group button:hover { box-shadow: 0 6px 28px rgba(0,0,0,.2); transform: translateY(-1px); }
.demo__features { display: flex; align-items: center; justify-content: center; gap: 1.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.demo__feature { display: flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.8); font-size: .92rem; }
.demo__feature svg { color: rgba(255,255,255,.9); flex-shrink: 0; }
.demo__status { margin-top: .75rem; font-size: .95rem; min-height: 1.5rem; font-weight: 500; color: rgba(255,255,255,.8); }
.demo__status.success { color: #6ee7b7; }
.demo__status.error { color: #fca5a5; }
.demo__note { display: flex; align-items: center; justify-content: center; gap: .45rem; font-size: .82rem; color: rgba(255,255,255,.45); }

/*  SOCIAL PROOF  */
.proof { padding: 7rem 0; background: var(--gray-50); }
.proof__header { text-align: center; margin-bottom: 3.5rem; }
.proof__kicker { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--emerald); margin-bottom: .75rem; }
.proof__header h2 { max-width: 560px; margin: 0 auto; }
.proof__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.proof__stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .75rem; }
.proof__stars--sm { font-size: .9rem; }
.proof__hero-card { background: var(--gray-900); color: #fff; border-radius: var(--radius-2xl); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; border: 1px solid rgba(255,255,255,.06); }
.proof__hero-card p { font-size: 1.2rem; line-height: 1.7; color: rgba(255,255,255,.85); font-style: italic; font-weight: 500; }
.proof__hero-card footer { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.proof__hero-card footer strong { display: block; font-size: .95rem; color: #fff; }
.proof__hero-card footer span { font-size: .82rem; color: rgba(255,255,255,.4); }
.proof__result-badge { margin-left: auto; font-size: .78rem; font-weight: 700; padding: .35rem .85rem; border-radius: var(--radius-full); background: rgba(16,185,129,.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,.25); }
.proof__cards-col { display: flex; flex-direction: column; gap: 1.25rem; }
.proof__card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.75rem; display: flex; flex-direction: column; gap: .85rem; transition: box-shadow .3s ease, transform .3s ease; }
.proof__card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.proof__card p { font-size: .95rem; line-height: 1.7; color: var(--gray-600); font-style: italic; flex: 1; }
.proof__card footer { display: flex; align-items: center; gap: .6rem; }
.proof__card footer strong { display: block; font-size: .88rem; color: var(--gray-800); }
.proof__card footer span { font-size: .78rem; color: var(--gray-500); }
.proof__avatar { width: 38px; height: 38px; border-radius: 50%; color: #fff; font-size: .65rem; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; letter-spacing: .02em; }
.proof__avatar--blue { background: var(--blue); }
.proof__avatar--cyan { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.proof__avatar--emerald { background: var(--emerald); }
.proof__avatar--amber { background: var(--amber-dark); }

/*  PRICING  */
.pricing { padding: 7rem 0; background: var(--white); }
.pricing__header { text-align: center; margin-bottom: 3.5rem; }
.pricing__kicker { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .75rem; }
.pricing__header h2 { margin-bottom: .75rem; }
.pricing__sub { font-size: 1.05rem; color: var(--gray-500); max-width: 500px; margin: 0 auto; }
.pricing__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; align-items: start; }
.pricing__card { background: var(--white); border: 2px solid var(--blue); border-radius: var(--radius-2xl); overflow: hidden; box-shadow: 0 8px 32px rgba(37,99,235,.12); }
.pricing__card-top { background: var(--blue); padding: 2rem 2rem 1.75rem; text-align: center; }
.pricing__badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .8rem; border-radius: var(--radius-full); background: rgba(255,255,255,.2); color: rgba(255,255,255,.9); margin-bottom: 1rem; }
.pricing__amount { font-size: 4rem; font-weight: 900; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.pricing__dollar { font-size: 2rem; vertical-align: top; margin-top: .5rem; display: inline-block; }
.pricing__per { font-size: 1.4rem; font-weight: 600; color: rgba(255,255,255,.7); }
.pricing__setup { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .5rem; }
.pricing__list { list-style: none; padding: 1.75rem 2rem; display: flex; flex-direction: column; gap: .85rem; }
.pricing__list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; color: var(--gray-700); line-height: 1.5; }
.pricing__list li svg { color: var(--emerald); flex-shrink: 0; margin-top: 2px; }
.pricing__card .btn { margin: 0 2rem 1.5rem; width: calc(100% - 4rem); }
.pricing__risk { text-align: center; font-size: .82rem; color: var(--gray-400); padding-bottom: 1.75rem; }
.pricing__value-col { display: flex; flex-direction: column; gap: 1.25rem; }
.pricing__value-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.pricing__value-card--dark { background: var(--gray-900); border-color: rgba(255,255,255,.08); }
.pricing__value-icon { width: 48px; height: 48px; border-radius: var(--radius-lg); background: rgba(37,99,235,.1); color: var(--blue); display: grid; place-items: center; }
.pricing__value-icon--light { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.pricing__value-card h3 { font-size: 1.1rem; color: var(--gray-900); }
.pricing__value-card--dark h3 { color: #fff; }
.pricing__value-card p { font-size: .93rem; color: var(--gray-500); line-height: 1.7; }
.pricing__value-card p strong { color: var(--gray-800); }
.pricing__value-card--dark p { color: rgba(255,255,255,.55); }
.pricing__link { font-size: .9rem; font-weight: 600; color: var(--cyan-light); text-decoration: none; }
.pricing__link:hover { text-decoration: underline; }

/* Two-column pricing layout (new) */
.pricing__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.pricing__tier {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: box-shadow .3s ease, transform .3s ease;
}
.pricing__tier:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.pricing__tier--dfy {
  border-color: var(--blue);
  background: linear-gradient(160deg, var(--blue-50) 0%, var(--white) 55%);
  box-shadow: 0 8px 32px rgba(37,99,235,.1);
}

.pricing__tier-label {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--gray-400);
}
.pricing__tier--dfy .pricing__tier-label { color: var(--blue); }

/* Override amount colours for white-bg tiers */
.pricing__tier .pricing__amount { color: var(--gray-900); }
.pricing__tier .pricing__dollar { color: var(--gray-500); font-size: 1.75rem; margin-top: .4rem; }
.pricing__tier .pricing__per   { color: var(--gray-400); font-size: 1.2rem; }

.pricing__setup-badge {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  padding: .25rem .65rem;
  border-radius: var(--radius-full);
  background: rgba(37,99,235,.1);
  color: var(--blue);
  margin-left: .5rem;
  vertical-align: middle;
  white-space: nowrap;
}

.pricing__tier-sub {
  font-size: .93rem; color: var(--gray-500);
  line-height: 1.7; margin: 0;
}

.pricing__tier .pricing__list { padding: 0; }
.pricing__tier .btn { margin-top: auto; }
.pricing__tier .pricing__risk { text-align: center; font-size: .82rem; color: var(--gray-400); margin-top: -.25rem; }

.pricing__guarantee {
  display: flex; align-items: flex-start; gap: .85rem;
  max-width: 680px; margin: 0 auto;
  padding: 1.4rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  font-size: .93rem; color: var(--gray-600); line-height: 1.7;
}
.pricing__guarantee svg { color: var(--emerald); flex-shrink: 0; margin-top: 2px; }

/*  FAQ  */
.faq { padding: 7rem 0; background: var(--gray-50); }
.faq__inner { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start; }
.faq__kicker { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .75rem; }
.faq__left h2 { margin-bottom: .75rem; }
.faq__left p { font-size: 1rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.faq__phone { display: inline-flex; align-items: center; gap: .5rem; font-size: 1.05rem; font-weight: 700; color: var(--blue); text-decoration: none; transition: color .2s; }
.faq__phone:hover { color: var(--blue-dark); }
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item { border-bottom: 1px solid var(--gray-200); padding: 1.25rem 0; }
.faq__item:first-child { border-top: 1px solid var(--gray-200); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; font-weight: 600; font-size: 1.05rem; color: var(--gray-800); transition: color .2s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue); }
.faq__chevron { flex-shrink: 0; transition: transform .25s ease; color: var(--gray-400); }
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__item[open] summary { color: var(--blue); }
.faq__item p { font-size: .95rem; color: var(--gray-500); line-height: 1.75; padding-top: .85rem; }

/*  CONTACT  */
.contact { padding: 7rem 0; background: var(--gray-950); color: #fff; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact__kicker { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan-light); margin-bottom: .75rem; }
.contact__copy h2 { color: #fff; margin-bottom: 1rem; }
.contact__copy p { font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 1.5rem; }
.contact__trust { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.contact__trust-item { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: rgba(255,255,255,.6); }
.contact__trust-item svg { color: var(--emerald); flex-shrink: 0; }
.contact__phone { font-size: 1rem; color: rgba(255,255,255,.5); }
.contact__phone a { color: var(--cyan-light); font-weight: 700; text-decoration: none; }
.contact__phone a:hover { text-decoration: underline; }

/*  FORM  */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label {
  display: flex; flex-direction: column; gap: .45rem;
  font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.6);
}
.form input, .form textarea {
  padding: .85rem 1rem; font-size: .95rem; font-family: inherit;
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md);
  transition: border-color .2s, background .2s;
}
.form input::placeholder { color: rgba(255,255,255,.25); }
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--cyan); background: rgba(255,255,255,.09);
}
.form__status { font-size: .9rem; min-height: 1.4rem; font-weight: 500; }
.form__status.is-success { color: #6ee7b7; }
.form__status.is-error { color: #fca5a5; }

/*  FOOTER  */
.footer { background: var(--gray-950); border-top: 1px solid rgba(255,255,255,.06); }
.footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; padding: 4rem 0 2.5rem; flex-wrap: wrap; }
.footer__left { display: flex; flex-direction: column; gap: .5rem; }
.footer__left .nav__logo span { color: #fff; }
.footer__tagline { font-size: .88rem; color: rgba(255,255,255,.45); }
.footer__phone, .footer__email { font-size: .88rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer__phone:hover, .footer__email:hover { color: rgba(255,255,255,.85); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.footer__links a { font-size: .88rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer__links a:hover { color: rgba(255,255,255,.85); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.25rem 0; }
.footer__bottom .container { display: flex; justify-content: center; }
.footer__bottom span { font-size: .82rem; color: rgba(255,255,255,.25); }

/*  STICKY CTA  */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: .85rem 1rem;
  background: rgba(15,23,42,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
}

/*  RESPONSIVE  */
@media (max-width: 1024px) {
  .problem__cards { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .features__bento { grid-template-columns: repeat(2, 1fr); }
  .feat-bento--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__phone-col { order: -1; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links .btn--ghost,
  .nav__links .btn--primary { margin-left: 0 !important; }

  .hero { padding: 4rem 0 3.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__phone-col { order: -1; }
  .hero__proof-row { gap: 1rem; }
  .hero__proof-item strong { font-size: 1.3rem; }

  .problem__cards { grid-template-columns: 1fr 1fr; }
  .problem__cta-row { flex-direction: column; text-align: center; }

  .how__step { grid-template-columns: 56px 1fr; gap: 1.25rem; }
  .how__step-num { width: 44px; height: 44px; font-size: .88rem; }

  .features__grid { grid-template-columns: 1fr; }
  .features__bento { grid-template-columns: 1fr; }
  .feat-bento--wide { grid-column: 1; }
  .feat-bento--strip { flex-direction: column !important; align-items: flex-start; }

  .demo__input-group { flex-direction: column; }
  .demo__input-group button { width: 100%; justify-content: center; }

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

  .pricing__layout { grid-template-columns: 1fr; }
  .pricing__two-col { grid-template-columns: 1fr; }

  .faq__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; gap: 1.5rem; }
  .footer__links { gap: 1rem; }

  .sticky-cta { display: block; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .problem__cards { grid-template-columns: 1fr; }
  .hero__proof-row { flex-wrap: wrap; gap: .75rem; }
  .hero__proof-divider { display: none; }
  .how__step { grid-template-columns: 1fr; }
  .how__step-left { flex-direction: row; align-items: center; gap: .75rem; margin-bottom: .5rem; }
  .how__step-line { display: none; }
}
