/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --navy:        #1d2f5e;
  --navy-dark:   #111e3f;
  --navy-mid:    #243669;
  --teal:        #3db8a8;
  --teal-dark:   #2a9d8f;
  --teal-light:  #e8f8f6;
  --white:       #ffffff;
  --off-white:   #f6f8fc;
  --slate:       #374151;
  --muted:       #6b7280;
  --border:      #e4e9f0;
  --gold:        #c9a84c;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 4px rgba(29,47,94,.08);
  --shadow-md:  0 4px 20px rgba(29,47,94,.12);
  --shadow-lg:  0 12px 40px rgba(29,47,94,.18);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}

.nav.scrolled {
  background: rgba(17, 30, 63, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: .7rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-logo img { height: 46px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: .55rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: .875rem !important;
  letter-spacing: .03em !important;
  transition: background .2s, transform .15s !important;
}

.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 30, 63, 0.72);
  z-index: 1;
}

/* Diagonal grid pattern removed */
.hero::before { content: none; }

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  z-index: 2;
  background: radial-gradient(circle, rgba(61,184,168,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(61,184,168,.15);
  border: 1px solid rgba(61,184,168,.3);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(61,184,168,.35);
  letter-spacing: .02em;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61,184,168,.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s;
  letter-spacing: .02em;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,.55);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
}

/* ECG line decoration */
.hero-ecg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .12;
  pointer-events: none;
  z-index: 3;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--slate);
  font-size: .875rem;
  font-weight: 400;
}

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

/* ============================================================
   SECTION BASICS
   ============================================================ */
section { padding: 6rem 0; }

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: .9rem;
  max-width: 560px;
  font-weight: 300;
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain { background: var(--off-white); }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pain-cards {
  display: grid;
  gap: 1rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s, box-shadow .2s;
}

.pain-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.pain-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.pain-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-dark);
}

.pain-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .25rem;
}

.pain-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.55;
}

.pain-solution {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.pain-solution h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.pain-solution p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.solution-point {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

.solution-point::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--white); }

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header .section-sub { margin: .9rem auto 0; }

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s, transform .5s, box-shadow .25s, border-color .25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal-light), #d0f2ef);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal-dark);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.feature-outcome {
  margin-top: .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.feature-outcome::before {
  content: '→';
}

/* ============================================================
   SCREENSHOT SECTION
   ============================================================ */
.screenshot-section { background: var(--off-white); padding: 6rem 0; }

.screenshot-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.screenshot-header .section-sub { margin: .9rem auto 0; }

.screenshot-placeholder {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.screenshot-slider {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #eef1f7;
}

.screenshot-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.screenshot-slide.active {
  opacity: 1;
}

.screenshot-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-proof { background: var(--off-white); }

.social-proof-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.social-proof-header .section-sub { margin: .9rem auto 0; }

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

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(15px);
}

.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s, transform .5s;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.testimonial-text {
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-role {
  font-size: .8rem;
  color: var(--muted);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--white); }

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-header .section-sub { margin: .9rem auto 0; }

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-toggle-label {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-toggle-label.active { color: var(--navy); font-weight: 600; }

.pricing-badge {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 100px;
  letter-spacing: .04em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-plan {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .75rem;
}

.pricing-card.featured .pricing-plan { color: var(--teal); }

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: .25rem;
  margin-bottom: .35rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}

.pricing-card.featured .pricing-amount { color: var(--white); }

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  padding-bottom: .5rem;
}

.pricing-card.featured .pricing-currency { color: rgba(255,255,255,.7); }

.pricing-period {
  font-size: .9rem;
  color: var(--muted);
  padding-bottom: .4rem;
}

.pricing-card.featured .pricing-period { color: rgba(255,255,255,.5); }

.pricing-desc {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-weight: 300;
  line-height: 1.55;
}

.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.6); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: var(--slate);
}

.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.8); }

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

.btn-pricing-primary {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: .9rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .02em;
}

.btn-pricing-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }

.btn-pricing-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: .9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  letter-spacing: .02em;
}

.btn-pricing-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--muted);
}

/* Secondary price line + stacked CTAs on each plan card */
.pricing-pricealt {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.pricing-card.featured .pricing-pricealt { color: rgba(255,255,255,.7); }

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: auto;
}

.pricing-card.featured .btn-pricing-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}

.pricing-card.featured .btn-pricing-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--off-white); }

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
  user-select: none;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--teal);
}

.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--navy);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,184,168,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,184,168,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.final-cta-content { position: relative; z-index: 1; }

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.1rem;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--teal);
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.final-cta-note {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-brand img { height: 40px; width: auto; display: block; }

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}

.footer-links a:hover { color: rgba(255,255,255,.8); }

.footer-legal {
  font-size: .8rem;
  color: rgba(255,255,255,.25);
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
  }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .hero { padding: 7rem 0 4rem; }
  .pain-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
