/* ==========================================================================
   AfiliaGiro — Site Institucional
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f7f7fb;
  --navy: #12141f;
  --navy-soft: #1b1e2e;
  --text-primary: #14151f;
  --text-secondary: #52556b;
  --text-muted: #83869a;
  --border: #e7e7f0;
  --orange: #f2551d;
  --magenta: #f0335a;
  --pink: #ec1e7a;
  --gradient: linear-gradient(120deg, var(--orange) 0%, var(--magenta) 55%, var(--pink) 100%);
  --on-pink: #ffffff;
  --shadow-sm: 0 1px 2px rgba(18, 20, 31, 0.06), 0 1px 1px rgba(18, 20, 31, 0.04);
  --shadow-md: 0 12px 24px -8px rgba(18, 20, 31, 0.16);
  --shadow-lg: 0 24px 48px -12px rgba(18, 20, 31, 0.28);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.section {
  padding: 96px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 38px);
}

.section-head p {
  color: var(--text-secondary);
  font-size: 17px;
}

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 0 rgba(18, 20, 31, 0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 19px;
}

.brand .word-afilia {
  color: var(--text-primary);
}

.brand .word-giro {
  color: var(--pink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover {
  color: var(--text-primary);
  border-color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-login {
  font-family: "Sora", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.header-login:hover {
  color: var(--pink);
}

.nav-login-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% -10%, #1c1f30 0%, var(--navy) 45%, #0d0e17 100%);
  color: #fff;
  padding: 88px 0 0;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(480px 480px at 82% 8%, rgba(242, 85, 29, 0.35), transparent 60%),
    radial-gradient(520px 520px at 98% 55%, rgba(236, 30, 122, 0.28), transparent 60%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  color: #fff;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-note {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  color: #fff;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* Hero mock panel */

.hero-visual {
  position: relative;
}

.mock-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}

.mock-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mock-card-header .dots {
  display: flex;
  gap: 6px;
}

.mock-card-header .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mock-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.mock-chat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 14px;
}

.mock-chat-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient);
  flex-shrink: 0;
}

.mock-bubble {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
}

.mock-bubble .line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 6px;
}

.mock-bubble .line:last-child {
  margin-bottom: 0;
  width: 60%;
}

.mock-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #45e08a;
  margin-top: 10px;
}

.mock-status .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45e08a;
  box-shadow: 0 0 0 0 rgba(69, 224, 138, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(69, 224, 138, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(69, 224, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(69, 224, 138, 0); }
}

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

.mock-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
}

.mock-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  color: #fff;
}

.mock-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.mock-float {
  position: absolute;
  background: #fff;
  color: var(--text-primary);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
}

.mock-float.a {
  top: -18px;
  right: 8px;
}

.mock-float.b {
  bottom: -20px;
  left: -18px;
}

.mock-float .ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.hero-marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.hero-marquee-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Logos / trust strip within light sections ---------- */

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

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.pain-card .num {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--pink);
  margin-bottom: 14px;
}

.pain-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.pain-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}

/* ---------- Features ---------- */

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(236, 30, 122, 0.25);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin: 0;
}

.feature-card.highlight {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.feature-card.highlight h3 {
  color: #fff;
}

.feature-card.highlight p {
  color: rgba(255, 255, 255, 0.65);
}

.feature-card.highlight .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(236, 30, 122, 0.14);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 28px 22px 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.step-card .step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

.step-connector {
  display: none;
}

/* ---------- Plans ---------- */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(-8px);
}

.plan-card.featured .plan-tag {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.plan-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 14px;
  margin-bottom: 22px;
}

.plan-card:not(.featured) .plan-desc {
  color: var(--text-secondary);
}

.plan-card.featured .plan-desc {
  color: rgba(255, 255, 255, 0.65);
}

.plan-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-card.featured .plan-price {
  border-color: rgba(255, 255, 255, 0.14);
}

.price-value {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 34px;
  display: block;
}

.price-period {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
}

.plan-card.featured .price-period {
  color: rgba(255, 255, 255, 0.55);
}

.price-note {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 6px;
}

.plan-card.featured .price-note {
  color: rgba(255, 255, 255, 0.5);
}

/* Billing toggle */

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 44px;
}

.billing-toggle-wrap {
  display: flex;
  justify-content: center;
}

.billing-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.billing-option.is-active {
  background: var(--surface);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.save-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--gradient);
  padding: 3px 8px;
  border-radius: 999px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.plan-card:not(.featured) .plan-features li {
  color: var(--text-secondary);
}

.plan-card.featured .plan-features li {
  color: rgba(255, 255, 255, 0.82);
}

.plan-features svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--pink);
}

.plan-card.featured .plan-features svg {
  color: #ff6fb0;
}

/* ---------- Testimonial / quote band ---------- */

.quote-band {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 90% 0%, rgba(236, 30, 122, 0.2), transparent 60%);
}

.quote-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: "Sora", sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--pink);
  margin-bottom: 8px;
}

.quote-inner p.quote-text {
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.quote-author {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text-primary);
  cursor: pointer;
}

.faq-question .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--text-primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-question .plus::before {
  width: 10px;
  height: 1.6px;
}

.faq-question .plus::after {
  width: 1.6px;
  height: 10px;
}

.faq-item.is-open .plus {
  border-color: var(--pink);
}

.faq-item.is-open .plus::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--text-secondary);
  font-size: 14.5px;
}

/* ---------- Final CTA ---------- */

.cta-band {
  background: radial-gradient(120% 160% at 50% 0%, #1c1f30 0%, var(--navy) 55%, #0d0e17 100%);
  color: #fff;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 420px at 12% 10%, rgba(242, 85, 29, 0.25), transparent 60%),
    radial-gradient(420px 420px at 88% 90%, rgba(236, 30, 122, 0.22), transparent 60%);
}

.cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 38px);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16.5px;
  margin-bottom: 32px;
}

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

/* ---------- Footer ---------- */

.site-footer {
  background: #0d0e17;
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand .word-afilia {
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h4 {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- Responsive ---------- */

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

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }

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

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

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .plan-card.featured {
    transform: none;
  }

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

@media (max-width: 760px) {
  .section {
    padding: 64px 0;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 10px;
    border-bottom: none;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: var(--surface-alt);
  }

  .header-actions .header-login {
    display: none;
  }

  .nav-login-mobile {
    display: block;
    margin-top: 8px;
    padding-top: 16px !important;
    border-top: 1px solid var(--border);
    color: var(--pink) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .pain-grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
