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

:root {
  --pink:          #ff1493;
  --pink-hover:    #e0107e;
  --pink-active:   #c00d6e;
  --purple:        #7c3aed;
  --purple-hover:  #6d28d9;
  --bg:            #ffffff;
  --bg-alt:        #f9fafb;
  --bg-dark:       #101828;
  --bg-dark2:      #1f2937;
  --text-heading:  #111827;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --success:       #10b981;
  --warning:       #f59e0b;
  --error:         #dc2626;
  --border:        #e5e7eb;
  --radius-card:   12px;
  --radius-btn:    8px;
  --shadow-card:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-raised: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-screenshot: 0 8px 40px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Layout Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subheading {
  margin: 0 auto;
}

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,20,147,0.3);
}
.btn-primary:hover { background: var(--pink-hover); box-shadow: 0 4px 16px rgba(255,20,147,0.35); transform: translateY(-1px); }
.btn-primary:active { background: var(--pink-active); transform: translateY(0); }

.btn-primary--lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
  border-radius: 10px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-body);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: #9ca3af; color: var(--text-heading); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 12px 0;
  gap: 6px;
}
.btn-ghost:hover { color: var(--text-heading); }

/* ─── Badges ───────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ─── NAV ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-heading);
  flex-shrink: 0;
}
.nav__logo img { width: 28px; height: 28px; border-radius: 6px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--text-heading); }

.nav__cta { flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .nav__links a { font-size: 1rem; }
}

/* ─── HERO ─────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 96px;
  background: radial-gradient(ellipse at 85% 0%, rgba(255,20,147,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 0% 100%, rgba(124,58,237,0.04) 0%, transparent 50%),
              var(--bg);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.hero__eyebrow img { width: 20px; height: 20px; border-radius: 4px; }

.hero__headline {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero__headline .accent { color: var(--pink); }

.hero__subheading {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.hero__proof-item svg { color: var(--success); }
.hero__proof-sep { color: var(--border); font-size: 0.75rem; }

/* Hero visual */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__app-icon {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(255,20,147,0.15), 0 0 60px rgba(255,20,147,0.2), var(--shadow-raised);
}

/* Dashboard Mockup */
.dashboard-mockup {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-screenshot);
  overflow: hidden;
  font-size: 0.75rem;
}

.dm__header {
  background: linear-gradient(135deg, #101828 0%, #1f2937 100%);
  padding: 20px 24px 24px;
  color: #fff;
}

.dm__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.dm__badge {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 500;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}

.dm__title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.dm__actions {
  display: flex;
  gap: 10px;
}

.dm__btn {
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dm__btn--pink {
  background: var(--pink);
  color: #fff;
}

.dm__btn--gray {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}

.dm__body {
  padding: 16px;
  background: #f9fafb;
}

.dm__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dm__stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
}

.dm__stat-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 4px;
}

.dm__stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero__headline { font-size: clamp(2rem, 6vw, 2.75rem); }
}

/* ─── PROBLEM ──────────────────────────────────────────────────────── */
.problem__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.problem__lead {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 16px;
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: #fff9fe;
  border: 1px solid rgba(255,20,147,0.12);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.problem-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(220,38,38,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--error);
}

.problem-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.problem-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .problem__cards { grid-template-columns: 1fr; }
}

/* ─── HOW IT WORKS ─────────────────────────────────────────────────── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.how-step__num-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.how-step__num-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--pink);
  opacity: 0.08;
  line-height: 1;
}

.how-step__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-card);
  color: var(--pink);
}

.how-step__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.how-step__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-steps::before { display: none; }
  .how-step { flex-direction: row; text-align: left; gap: 20px; padding: 0; }
  .how-step__num-wrap { flex-shrink: 0; margin-bottom: 0; }
}

/* ─── FEATURES ─────────────────────────────────────────────────────── */
.feature-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.feature-intro .section-heading { color: var(--text-heading); }

/* Full-width showcase */
.feature-showcase {
  margin-bottom: 80px;
}

.feature-showcase__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-screenshot);
  border: 1px solid var(--border);
}

.feature-showcase__img-wrap img {
  width: 100%;
  height: auto;
}

.feature-showcase__caption {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* 2-col feature rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.feature-row:last-of-type { margin-bottom: 0; }
.feature-row--reverse .feature-row__text { order: 2; }
.feature-row--reverse .feature-row__image { order: 1; }

.feature-row__text {}

.feature-row__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.feature-row__eyebrow--purple { color: var(--purple); }

.feature-row__heading {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 16px;
}

.feature-row__text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-body);
}

.feature-bullets li svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }

.feature-row__image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-screenshot);
  border: 1px solid var(--border);
}

.feature-row__image img { width: 100%; height: auto; display: block; }

/* 3-card row */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-raised); }

.feature-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-bottom: 1px solid var(--border);
}

.feature-card__body {
  padding: 20px;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row--reverse .feature-row__text { order: 0; }
  .feature-row--reverse .feature-row__image { order: 0; }
  .feature-cards { grid-template-columns: 1fr; }
}

/* ─── PRICING ──────────────────────────────────────────────────────── */
.pricing-screenshot {
  margin-bottom: 64px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-screenshot);
  border: 1px solid var(--border);
}
.pricing-screenshot img { width: 100%; height: auto; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-raised); }

.pricing-card--popular {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink), var(--shadow-raised);
}

.pricing-card--max { border-color: var(--purple); }

.pricing-card--business { border-color: var(--text-heading); }

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--pink);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}

.pricing-badge--business {
  background: var(--text-heading);
}

.pricing-plan {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
}
.pricing-price .period {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 2.4em;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 20px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.4;
}

.pricing-features li svg { color: var(--success); flex-shrink: 0; margin-top: 1px; }

.pricing-cta {
  display: block;
  text-align: center;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.pricing-cta--free {
  background: var(--bg-alt);
  color: var(--text-heading);
  border: 1.5px solid var(--border);
}
.pricing-cta--free:hover { background: var(--border); }

.pricing-cta--pink {
  background: var(--pink);
  color: #fff;
}
.pricing-cta--pink:hover { background: var(--pink-hover); }

.pricing-cta--purple {
  background: var(--purple);
  color: #fff;
}
.pricing-cta--purple:hover { background: var(--purple-hover); }

.pricing-cta--dark {
  background: var(--text-heading);
  color: #fff;
}
.pricing-cta--dark:hover { background: #1f2937; }

.pricing-trust {
  text-align: center;
  padding: 20px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  font-size: 0.9375rem;
  color: var(--text-body);
}

.pricing-trust strong { color: var(--text-heading); }

@media (max-width: 960px) {
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

/* ─── USE CASES ────────────────────────────────────────────────────── */
.use-case-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.use-case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.use-case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-raised); }

.use-case-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}

.use-case-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.use-case-card__text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .use-case-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .use-case-cards { grid-template-columns: 1fr; }
}

/* ─── TRUST ────────────────────────────────────────────────────────── */
.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.trust__subheading {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 40px;
}

.trust-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-point__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
}

.trust-point__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.trust-point__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  text-align: center;
}

.trust-badge__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.trust-badge__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
  .trust__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── SUPPORT + CTA ────────────────────────────────────────────────── */
.support-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 96px;
}

.support-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.support-card__content { flex: 1; }

.support-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.support-card__text {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.support-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pink);
}
.support-card__link:hover { text-decoration: underline; }

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 80px 0 96px;
}

.final-cta__icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255,20,147,0.15), 0 0 48px rgba(255,20,147,0.18), var(--shadow-raised);
  margin: 0 auto 28px;
}

.final-cta__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.final-cta__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.final-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .support-card { flex-direction: column; padding: 32px 28px; }
}

/* ─── FOOTER ───────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.875rem;
}
.footer__logo img { width: 22px; height: 22px; border-radius: 4px; }

.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a { color: var(--text-muted); transition: color 0.15s; }
.footer__links a:hover { color: var(--text-heading); }

/* ─── Responsive helpers ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .hero { padding: 48px 0 64px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
