/* ======================================
   XAILNA SSL LANDING PAGE — STYLES
   Design inspired by xailna.com
   ====================================== */

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

:root {
  --dark-bg: #0d0d21;
  --dark-bg2: #12122e;
  --dark-card: #1a1a38;
  --gradient-start: #3452ff;
  --gradient-end: #703bcc;
  --gradient: linear-gradient(135deg, #3452ff 0%, #703bcc 100%);
  --gradient-hover: linear-gradient(135deg, #2540e8 0%, #5e2fb0 100%);
  --white: #ffffff;
  --text-light: rgba(255,255,255,0.80);
  --text-muted: rgba(255,255,255,0.55);
  --text-dark: #1a1a2e;
  --text-gray: #555566;
  --border-light: rgba(255,255,255,0.12);
  --border-dark: rgba(0,0,0,0.08);
  --section-gray: #f5f6fa;
  --accent-green: #00d4aa;
  --success: #00c896;
  --font: 'Montserrat', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 100px;
  --shadow-card: 0 8px 40px rgba(52,82,255,0.12);
  --shadow-hover: 0 16px 60px rgba(52,82,255,0.24);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-gradient {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(52,82,255,0.35);
}
.btn-gradient:hover {
  background: var(--gradient-hover);
  box-shadow: 0 8px 32px rgba(52,82,255,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--dark-bg);
  border: 2px solid var(--dark-bg);
}
.btn-outline:hover {
  background: var(--dark-bg);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ======================================
   NAVBAR
   ====================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 33, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-light);
  padding: 14px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { height: 36px; width: auto; object-fit: contain; }
.logo-ssl {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  padding-left: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta { margin-left: 8px; flex-shrink: 0; font-size: 0.88rem; padding: 12px 24px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ======================================
   HERO
   ====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  overflow: hidden;
}

.constellation-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(52,82,255,0.18) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 60%, rgba(112,59,204,0.14) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(52,82,255,0.2);
  border: 1px solid rgba(52,82,255,0.4);
  color: #a0b4ff;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #6a9fff 0%, #b07bff 50%, #00d4aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-subtitle strong { color: #ff8a6a; font-weight: 700; }

.hero-footnote {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
  padding: 0 16px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 48px;
  backdrop-filter: blur(12px);
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
  flex: 1;
  min-width: 100px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-light);
  flex-shrink: 0;
}



/* ======================================
   ALERT BANNER
   ====================================== */
.alert-banner {
  background: linear-gradient(135deg, #1a0f2e 0%, #0f1a3a 100%);
  border-top: 1px solid rgba(52,82,255,0.3);
  border-bottom: 1px solid rgba(52,82,255,0.3);
  padding: 18px 0;
}

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

.alert-icon { font-size: 1.3rem; flex-shrink: 0; }

.alert-content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.5;
}
.alert-content strong { color: #ffa07a; }

.alert-link {
  color: #7aadff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(122,173,255,0.4);
  transition: var(--transition);
}
.alert-link:hover { color: #ffffff; border-bottom-color: transparent; }

/* ======================================
   SECTIONS
   ====================================== */
.section { padding: 100px 0; }
.section-dark {
  background: var(--dark-bg);
  padding: 100px 0;
}
.section-gray { background: var(--section-gray); }

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

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3452ff;
  background: rgba(52,82,255,0.08);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-tag.light { color: #a0b4ff; background: rgba(160,180,255,0.12); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle.light { color: var(--text-light); }

/* ======================================
   BENEFITS GRID
   ====================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(52,82,255,0.15);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}

.benefit-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* ======================================
   STEPS
   ====================================== */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  transition: var(--transition);
}

.step:hover {
  background: rgba(52,82,255,0.08);
  border-color: rgba(52,82,255,0.3);
}

.step-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

.step-icon {
  font-size: 2.4rem;
  text-align: center;
  opacity: 0.8;
}

.step-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(52,82,255,0.5), rgba(112,59,204,0.5));
  margin-left: 39px;
}

/* ======================================
   PLANS
   ====================================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}

.plan-card {
  background: var(--white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: var(--transition);
}

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

.plan-featured {
  border-color: #3452ff;
  box-shadow: 0 0 0 1px rgba(52,82,255,0.2), var(--shadow-card);
  background: linear-gradient(180deg, #faf9ff 0%, #ffffff 100%);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-header { text-align: center; }

.plan-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.plan-type-badge {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 8px;
}

.price-amount {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -2px;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.5;
}

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

.plan-features li {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.4;
  padding-left: 4px;
}

.plan-features li:has(❌) { color: var(--text-gray); }

.plan-card .btn { margin-top: auto; }
.plan-featured .btn-gradient { box-shadow: 0 8px 24px rgba(52,82,255,0.4); }

.plans-footer-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
}

.plans-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-gray);
}

/* Required/Optional field labels */
.required-star { color: #ff6b6b; font-weight: 700; font-size: 0.9em; }
.optional-tag { color: rgba(255,255,255,0.4); font-size: 0.8em; font-weight: 400; font-style: italic; }

/* ======================================
   TRUST SECTION
   ====================================== */
.trust-section {
  background: var(--dark-bg);
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
}

.trust-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 28px;
}

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

.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  color: rgba(255,255,255,0.7);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.trust-badge:hover {
  background: rgba(52,82,255,0.15);
  border-color: rgba(52,82,255,0.4);
  color: var(--white);
}

/* ======================================
   FAQ
   ====================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(52,82,255,0.3);
  box-shadow: 0 4px 24px rgba(52,82,255,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover { background: rgba(52,82,255,0.03); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: #3452ff;
  flex-shrink: 0;
  transition: transform var(--transition);
  width: 24px;
  text-align: center;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.75;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 20px;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ======================================
   CTA / CONTACT SECTION
   ====================================== */
.cta-section {
  background: var(--dark-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(52,82,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-form-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  backdrop-filter: blur(12px);
  text-align: left;
}

.cta-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group select option,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group select option { background: var(--dark-bg); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(52,82,255,0.6);
  background: rgba(52,82,255,0.08);
  box-shadow: 0 0 0 3px rgba(52,82,255,0.15);
}

.form-success {
  text-align: center;
  padding: 48px 32px;
}

.success-icon { font-size: 3.5rem; margin-bottom: 20px; }

.form-success h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.form-success p { color: var(--text-light); line-height: 1.7; }

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: linear-gradient(to bottom, var(--dark-bg), #08081a);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand .nav-logo { margin-bottom: 20px; }

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-wa { font-size: 0.85rem; padding: 12px 24px; }

.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links-col a::before {
  content: '—';
  font-size: 0.7rem;
  opacity: 0.4;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { opacity: 0.6; }

/* ======================================
   WHATSAPP FAB
   ====================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

/* ======================================
   ANIMATIONS
   ====================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-stats {
    padding: 20px 24px;
    flex-direction: column;
    gap: 24px;
  }
  .stat-divider { width: 60px; height: 1px; }

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

  .step { grid-template-columns: 60px 1fr; }
  .step-icon { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .cta-form-wrapper { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 72px 0; }
  .section-dark { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}
