/* =====================================================
   NOTARIX ACADEMY — Estilos Premium
   Estilo: Dark Gold Premium / Personal Brand
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Outfit:wght@300;400;500;600&display=swap');

/* === TOKENS === */
:root {
  --bg:         #08090f;
  --bg-2:       #0d0e18;
  --bg-3:       #12142a;
  --bg-card:    #0e0f1e;
  --cream:      #eeeeff;
  --cream-2:    #b8bce8;
  --cream-3:    #5a5f8a;
  --gold:       #5b6bf5;
  --gold-2:     #7b8fff;
  --gold-dim:   rgba(91,107,245,0.15);
  --gold-glow:  rgba(91,107,245,0.4);
  --line:       rgba(240,232,213,0.08);
  --line-gold:  rgba(91,107,245,0.2);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Outfit', system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);

  --nav-h: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* === SPLASH === */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  animation: splashOut 0.7s var(--ease-in) 2.4s forwards;
}
.splash-logo {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold);
  animation: splashLogo 1.2s var(--ease-out) 0.3s both;
}
.splash-bar {
  width: 200px; height: 2px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}
.splash-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  width: 0;
  animation: splashFill 2s var(--ease-out) 0.5s forwards;
  border-radius: 99px;
}
@keyframes splashLogo {
  from { opacity: 0; letter-spacing: 0.4em; }
  to   { opacity: 1; letter-spacing: 0.15em; }
}
@keyframes splashFill {
  to { width: 100%; }
}
@keyframes splashOut {
  from { opacity: 1; pointer-events: all; }
  to   { opacity: 0; pointer-events: none; }
}

/* === CURSOR === */
.cursor { position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: 0; transition: opacity 0.3s; }
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: absolute; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  position: absolute; width: 36px; height: 36px;
  border: 1.5px solid var(--gold-glow); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s, transform 0.12s;
}
.cursor.is-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--gold);
}

@media (hover: none) {
  body { cursor: auto; }
  .cursor { display: none; }
  button, a { cursor: pointer; }
}

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,9,5,0.88);
  backdrop-filter: blur(20px);
  border-color: var(--line);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  font-family: var(--ff-display);
  font-weight: 900; font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px; line-height: 1;
}
.nav-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 4px;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-sub {
  font-family: var(--ff-body);
  font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--cream-3);
  display: block;
}
.nav-links {
  display: flex; gap: 32px; margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.05em; color: var(--cream-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold-dim);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  padding: 8px 20px; border-radius: 4px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 2px;
}
.nav-burger span {
  display: block; height: 2px;
  background: var(--cream-2); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile {
  display: none; flex-direction: column; gap: 0;
  background: rgba(10,9,5,0.97);
  border-top: 1px solid var(--line);
  padding: 16px 24px 24px;
}
.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem; color: var(--cream-2);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile.open { display: flex; }
.nav-cta-mobile {
  margin-top: 16px !important;
  border: none !important;
  color: var(--gold) !important;
  font-weight: 600;
}

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

/* === REVEALS === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === TYPOGRAPHY HELPERS === */
.section-kicker {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--cream);
  margin-bottom: 48px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title-sm {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}
.section-title-sm em {
  font-style: italic;
  color: var(--gold);
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 28px; border-radius: 4px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 0 rgba(91,107,245,0);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91,107,245,0.35);
}
.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-gold);
  color: var(--cream-2);
  padding: 13px 26px; border-radius: 4px;
  font-weight: 500; font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--bg);
  padding: 14px 28px; border-radius: 4px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.25s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91,107,245,0.5);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* === HERO === */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(91,107,245,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(91,107,245,0.05) 0%, transparent 70%);
  animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}
.hero-grain {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-kicker {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.08;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic; color: var(--gold);
}
.hero-sub {
  font-size: 1rem; color: var(--cream-2);
  line-height: 1.7; margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat {
  display: flex; flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-3); margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--line);
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.hero-img-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(91,107,245,0.2) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes glowPulse {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  to   { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.hero-img {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  border-radius: 8px;
  border: 1px solid var(--line-gold);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--line);
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.hero-img:hover { transform: scale(1.02); }
.hero-img-badge {
  position: absolute; bottom: 20px; right: -12px; z-index: 2;
  background: var(--bg-3);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.badge-icon { font-size: 0.9rem; color: var(--gold); margin-bottom: 2px; }
.hero-img-badge span:nth-child(2) {
  font-family: var(--ff-display);
  font-size: 1.6rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.hero-img-badge small {
  font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-3);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream-3);
  animation: hintFade 3s ease-in-out 3s both;
}
@keyframes hintFade {
  from { opacity: 0; } to { opacity: 1; }
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollArrow 2s ease-in-out infinite;
}
@keyframes scrollArrow {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* === PROBLEM === */
.problem {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}
.problem::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}
.problem-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-bottom: 60px;
}
.problem-card {
  background: var(--bg-card);
  padding: 32px;
  border: 1px solid var(--line);
  transition: border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.problem-card:hover { border-color: var(--line-gold); background: var(--bg-3); }
.problem-card:hover::before { transform: scaleX(1); }
.problem-icon {
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 12px; opacity: 0.7;
}
.problem-card p { color: var(--cream-2); line-height: 1.6; }
.problem-solution {
  display: flex; align-items: center; gap: 24px;
}
.solution-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold));
}
.solution-line:last-child {
  background: linear-gradient(90deg, var(--line-gold), transparent);
}
.solution-text {
  text-align: center; max-width: 520px;
  font-size: 1.1rem; color: var(--cream-2); line-height: 1.6;
}
.solution-text strong { color: var(--gold); }

/* === SOLUTION SECTION === */
.solution {
  padding: 120px 0;
}
.solution-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.solution-img-wrap {
  position: relative;
}
.solution-img {
  width: 100%; border-radius: 8px;
  object-fit: cover; height: 480px;
  border: 1px solid var(--line);
  filter: saturate(0.9) brightness(0.85);
  transition: filter 0.4s;
}
.solution-img:hover { filter: saturate(1) brightness(0.95); }
.solution-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(10,9,5,0.95), transparent);
  border-radius: 0 0 8px 8px;
}
.overlay-quote {
  font-family: var(--ff-display);
  font-style: italic; font-size: 1.1rem;
  color: var(--gold); line-height: 1.4;
}
.solution-text p {
  color: var(--cream-2); line-height: 1.7; margin-bottom: 16px;
}
.solution-text p strong { color: var(--cream); }
.solution-list {
  margin-top: 28px; display: flex; flex-direction: column; gap: 10px;
}
.solution-list li {
  color: var(--cream-2); font-size: 0.9rem;
  padding-left: 4px;
}

/* === MODULES === */
.modules {
  padding: 120px 0;
  background: var(--bg-2);
}
.modules-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-bottom: 64px;
}
.module-card {
  background: var(--bg-card);
  padding: 36px 32px;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.module-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.module-num {
  position: absolute; top: 20px; right: 20px;
  font-size: 0.65rem; letter-spacing: 0.12em;
  color: var(--cream-3); font-weight: 500;
}
.module-icon { font-size: 1.8rem; margin-bottom: 12px; }
.module-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--cream); margin-bottom: 10px;
}
.module-card p { color: var(--cream-3); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.module-tag {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  border: 1px solid var(--line-gold);
  padding: 4px 10px; border-radius: 99px;
}

/* Accordion */
.modules-detail { margin-top: 32px; }
.detail-intro {
  text-align: center; color: var(--cream-3);
  font-size: 0.85rem; margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.accordion { display: flex; flex-direction: column; gap: 2px; }
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s;
}
.accordion-item:hover { border-color: var(--line-gold); }
.accordion-btn {
  width: 100%; display: flex; align-items: center;
  padding: 20px 24px; gap: 16px;
  text-align: left; color: var(--cream);
  font-size: 0.95rem; font-weight: 500;
}
.acc-num {
  font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--gold); font-weight: 700; min-width: 50px;
}
.acc-title { flex: 1; }
.acc-arrow {
  color: var(--gold); transition: transform 0.3s var(--ease-out);
  font-size: 0.9rem;
}
.accordion-item.open .acc-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.accordion-body ul {
  padding: 0 24px 20px 72px;
  display: flex; flex-direction: column; gap: 8px;
}
.accordion-body li {
  color: var(--cream-3); font-size: 0.875rem;
  position: relative; padding-left: 16px;
}
.accordion-body li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--gold);
}

/* === INCLUDES === */
.includes {
  padding: 120px 0;
}
.includes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.include-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 32px 28px;
  transition: border-color 0.3s, background 0.3s;
}
.include-item:hover { border-color: var(--line-gold); background: var(--bg-3); }
.include-icon {
  font-size: 1.6rem; margin-bottom: 14px;
}
.include-item h4 {
  font-weight: 600; font-size: 1rem;
  color: var(--cream); margin-bottom: 10px;
}
.include-item p { color: var(--cream-3); font-size: 0.875rem; line-height: 1.6; }

/* === ABOUT === */
.about {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-text p {
  color: var(--cream-2); line-height: 1.75; margin-bottom: 18px;
}
.about-signature {
  font-family: var(--ff-display);
  font-style: italic; font-size: 1.3rem;
  color: var(--gold); margin-top: 32px;
}
.about-visual { position: relative; }
.about-img-frame {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.about-img-frame img {
  width: 100%; height: 400px; object-fit: cover;
  filter: brightness(0.85);
}
.about-quote {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--bg-3);
  border: 1px solid var(--line-gold);
  border-radius: 8px; padding: 24px;
  max-width: 260px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.quote-mark {
  font-size: 2rem; color: var(--gold);
  display: block; line-height: 1; margin-bottom: 8px;
}
.about-quote p {
  font-family: var(--ff-display);
  font-style: italic; font-size: 0.95rem;
  color: var(--cream-2); line-height: 1.4;
}

/* === PRICING === */
.pricing {
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.pricing-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(91,107,245,0.06) 0%, transparent 70%);
}
.pricing-cards {
  display: flex; justify-content: center;
  gap: 24px; flex-wrap: wrap; margin-bottom: 48px;
}
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px; padding: 40px;
  width: 340px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.pricing-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.pricing-card-vip {
  border-color: var(--line-gold);
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-card) 100%);
}
.pricing-vip-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  padding: 4px 14px; border-radius: 99px;
}
.pricing-card-header { margin-bottom: 32px; }
.pricing-tier {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream-3); font-weight: 500; margin-bottom: 12px;
}
.pricing-price {
  display: flex; align-items: flex-start;
  line-height: 1;
}
.price-amount {
  font-family: var(--ff-display);
  font-size: 3.5rem; font-weight: 900;
  color: var(--gold);
}
.price-cents {
  font-size: 1.8rem;
}
.price-currency {
  font-size: 1.4rem; font-weight: 600;
  color: var(--gold); margin-top: 8px; margin-left: 2px;
}
.price-note {
  font-size: 0.75rem; color: var(--cream-3);
  margin-top: 8px;
}
.pricing-features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  color: var(--cream-2); font-size: 0.9rem;
  padding-left: 4px;
}
.pricing-guarantee {
  max-width: 500px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px; padding: 24px 32px;
  display: flex; align-items: center; gap: 20px;
}
.guarantee-icon { font-size: 2rem; }
.pricing-guarantee h4 {
  font-weight: 600; color: var(--cream);
  margin-bottom: 4px;
}
.pricing-guarantee p { color: var(--cream-3); font-size: 0.875rem; }

/* === FAQ === */
.faq {
  padding: 120px 0;
  background: var(--bg-2);
}
.faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 32px; transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--line-gold); }
.faq-item h4 {
  font-weight: 600; color: var(--cream);
  margin-bottom: 12px; font-size: 0.95rem;
}
.faq-item p { color: var(--cream-3); font-size: 0.875rem; line-height: 1.7; }

/* === FINAL CTA === */
.final-cta {
  padding: 140px 0;
  position: relative; overflow: hidden; text-align: center;
}
.final-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(91,107,245,0.1) 0%, transparent 70%);
}
.final-inner { position: relative; z-index: 1; }
.final-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--cream); margin-bottom: 24px;
}
.final-title em { color: var(--gold); font-style: italic; }
.final-sub {
  font-size: 1rem; color: var(--cream-2);
  line-height: 1.7; margin-bottom: 40px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

/* === FOOTER === */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 900;
  letter-spacing: 0.1em; color: var(--gold); margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.8rem; color: var(--cream-3);
  font-style: italic;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.footer-links a {
  font-size: 0.85rem; color: var(--cream-3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.footer-bottom p { font-size: 0.75rem; color: var(--cream-3); }
.footer-bottom a { color: var(--cream-3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center; gap: 48px;
    padding: 60px 24px 80px;
  }
  .hero-text { order: 2; }
  .hero-img-wrap { order: 1; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img { max-width: 320px; }
  .hero-img-badge { right: 12px; }

  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-img { height: 320px; }
  .modules-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-quote { position: static; margin-top: 24px; max-width: 100%; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 600px) {
  .includes-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .problem-solution { flex-direction: column; gap: 16px; }
  .solution-line { width: 80px; height: 1px; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
