/* ═══════════════════════════════════════════
   THE FEMININE BUSINESS ALCHEMY™
   style.css  Premium Dark Elegant Theme
═══════════════════════════════════════════ */

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

:root {
  /* Colors */
  --deep-charcoal: #1a1a2e;
  --midnight-noir: #09132e;
  --rose-gold: #c9956c;
  --shiny-rose-gold: #e8b4a0;
  --emerald: #00c896;
  --warm-white: #f8f4ef;
  --pure-gold: #d4af37;
  --overlay: rgba(26, 26, 46, 0.85);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #c9956c, #e8b4a0, #d4af37);
  --grad-dark: linear-gradient(180deg, #1a1a2e, #16213e);
  --grad-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #1f1535 100%);

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Raleway", sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-w: 1200px;

  /* Transitions */
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  background-color: var(--deep-charcoal);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--deep-charcoal);
}
::-webkit-scrollbar-thumb {
  background: var(--rose-gold);
  border-radius: 3px;
}

/* ─── SELECTION ─── */
::selection {
  background: var(--rose-gold);
  color: var(--deep-charcoal);
}

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── GOLD GRADIENT TEXT ─── */
.gold-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── TYPOGRAPHY UTILITIES ─── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--warm-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(248, 244, 239, 0.7);
  max-width: 560px;
  margin: 0 auto 60px;
  text-align: center;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 16px 40px;
  background: var(--grad-gold);
  color: var(--deep-charcoal);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 149, 108, 0.4);
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.8s ease;
}

.btn-primary:hover .btn-shimmer {
  left: 150%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 36px;
  background: transparent;
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid rgba(201, 149, 108, 0.5);
  border-radius: 2px;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-bottom-color: var(--rose-gold);
  gap: 14px;
}

.btn-emerald {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--emerald);
  color: var(--deep-charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 200, 150, 0.3);
  transition: var(--transition);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 200, 150, 0.5);
}

.btn-primary.large {
  padding: 20px 52px;
  font-size: 1rem;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 149, 108, 0.15);
}

.nav-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tm {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--rose-gold);
  -webkit-text-fill-color: var(--rose-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--warm-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta-btn {
  padding: 10px 24px;
  background: var(--grad-gold);
  color: var(--deep-charcoal);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 149, 108, 0.4);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--warm-white);
  transition: var(--transition);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding: 140px 40px 100px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(201, 149, 108, 0.08) 0%,
    transparent 60%
  );
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1.1) rotate(5deg);
  }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--rose-gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1.5);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--rose-gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(248, 244, 239, 0.72);
  line-height: 1.9;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.hero-micro {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 149, 108, 0.6);
  opacity: 0;
  animation: fadeInUp 1s ease 1.2s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.4);
}

/* ══════════════════════════════════════
   STORY BAND
══════════════════════════════════════ */
.story-band {
  background: linear-gradient(135deg, #c9956c, #e8b4a0, #d4af37);
  padding: 32px 0;
  text-align: center;
}

.story-band-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--deep-charcoal);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   ABOUT BRIEF
══════════════════════════════════════ */
.about-brief {
  padding: var(--section-pad);
  background: var(--midnight-noir);
}

.about-brief-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.image-frame {
  position: relative;
  max-width: 380px;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--deep-charcoal), #2a2a4a);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(248, 244, 239, 0.3);
  position: relative;
  z-index: 2;
}

.image-border-glow {
  position: absolute;
  inset: -2px;
  background: var(--grad-gold);
  border-radius: 2px;
  z-index: 1;
  opacity: 0.6;
}

.about-brief-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.about-brief-badge span {
  padding: 6px 14px;
  border: 1px solid rgba(201, 149, 108, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold);
  border-radius: 1px;
}

.about-brief-content .section-title {
  text-align: left;
}

.about-brief-text {
  color: rgba(248, 244, 239, 0.72);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ══════════════════════════════════════
   PILLARS
══════════════════════════════════════ */
.pillars {
  padding: var(--section-pad);
  background: var(--deep-charcoal);
  text-align: center;
}

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

.pillar-card {
  position: relative;
  padding: 52px 36px;
  background: rgba(22, 33, 62, 0.6);
  border: 1px solid rgba(201, 149, 108, 0.15);
  border-radius: 2px;
  text-align: left;
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: rgba(201, 149, 108, 0.5);
  transform: translateY(-6px);
}

.pillar-card:hover .pillar-glow {
  opacity: 1;
}

.pillar-card.featured {
  border-color: rgba(201, 149, 108, 0.4);
  background: rgba(201, 149, 108, 0.06);
}

.pillar-glow {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 149, 108, 0.15), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 149, 108, 0.12);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 8px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-subtitle {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(248, 244, 239, 0.5);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-list li {
  font-size: 0.88rem;
  color: rgba(248, 244, 239, 0.72);
  padding-left: 16px;
  position: relative;
}

.pillar-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--rose-gold);
  font-size: 0.6rem;
  top: 4px;
}

/* ══════════════════════════════════════
   RESONANCE
══════════════════════════════════════ */
.resonance {
  padding: var(--section-pad);
  background: var(--midnight-noir);
  text-align: center;
}

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

.resonance-card {
  padding: 32px 28px;
  border: 1px solid rgba(201, 149, 108, 0.12);
  border-radius: 2px;
  background: rgba(26, 26, 46, 0.5);
  transition: var(--transition);
}

.resonance-card:hover {
  border-color: rgba(201, 149, 108, 0.4);
  transform: translateY(-4px);
  background: rgba(201, 149, 108, 0.05);
}

.resonance-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(248, 244, 239, 0.78);
  line-height: 1.6;
}

.resonance-cta-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--warm-white);
  margin-bottom: 36px;
}

/* ══════════════════════════════════════
   OFFERS PREVIEW
══════════════════════════════════════ */
.offers-preview {
  padding: var(--section-pad);
  background: var(--deep-charcoal);
  text-align: center;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  margin-top: 60px;
  align-items: start;
}

.offer-card {
  padding: 48px 40px;
  border: 1px solid rgba(201, 149, 108, 0.2);
  border-radius: 2px;
  background: rgba(22, 33, 62, 0.5);
  text-align: left;
  transition: var(--transition);
  position: relative;
}

.offer-card:hover {
  border-color: rgba(201, 149, 108, 0.5);
  transform: translateY(-4px);
}

.offer-card.featured-offer {
  border-color: rgba(201, 149, 108, 0.45);
  background: rgba(201, 149, 108, 0.05);
}

.offer-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 200, 150, 0.15);
  color: var(--emerald);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 1px;
  margin-bottom: 24px;
}

.offer-badge.gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--pure-gold);
}

.offer-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.offer-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.offer-duration {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.45);
  margin-bottom: 24px;
}

.offer-desc {
  font-size: 0.9rem;
  color: rgba(248, 244, 239, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.offer-klarna {
  font-size: 0.85rem;
  color: var(--rose-gold);
  margin-bottom: 4px;
}

.offer-micro {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(201, 149, 108, 0.55);
  margin-bottom: 28px;
}

/* ══════════════════════════════════════
   PRICE HOOK BAND
══════════════════════════════════════ */
.price-hook-band {
  background: rgba(22, 33, 62, 0.8);
  border-top: 1px solid rgba(201, 149, 108, 0.15);
  border-bottom: 1px solid rgba(201, 149, 108, 0.15);
  padding: 48px 0;
  text-align: center;
}

.price-hook-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
}

/* ══════════════════════════════════════
   BLUEPRINT CTA
══════════════════════════════════════ */
.blueprint-cta {
  padding: 120px 0;
  background: var(--grad-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blueprint-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 149, 108, 0.07), transparent);
  pointer-events: none;
}

.blueprint-cta-inner {
  position: relative;
  z-index: 2;
}

.blueprint-desc {
  font-size: 1rem;
  color: rgba(248, 244, 239, 0.65);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #0f0f1a;
  padding: 72px 0 40px;
  border-top: 1px solid rgba(201, 149, 108, 0.1);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(248, 244, 239, 0.4);
}

.footer-links,
.footer-social {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a,
.footer-social a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--rose-gold);
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(248, 244, 239, 0.25);
  letter-spacing: 0.08em;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-brief-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .resonance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px 0;
  }

  .container {
    padding: 0 24px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(22, 33, 62, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 60px 40px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-menu.open {
    right: 0;
  }
  .nav-toggle {
    display: flex;
    z-index: 1000;
  }

  .hero {
    padding: 120px 24px 80px;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

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

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

/* ═══════════════════════════════════════════
   about.css  About Page Styles
═══════════════════════════════════════════ */

/* ─── PAGE HERO ─── */
.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    ellipse,
    rgba(201, 149, 108, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.page-hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.5);
  animation: fadeInUp 0.9s ease 0.4s both;
}

.page-hero-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--rose-gold), transparent);
  margin: 0 auto;
  margin-top: 40px;
}

/* ─── STORY SECTION ─── */
.story-section {
  padding: 100px 0;
  background: var(--deep-charcoal);
}

.story-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* Sticky image column */
.story-image-col {
  position: sticky;
  top: 100px;
}

.story-image-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-image-frame {
  position: relative;
}

.story-image-border {
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, #c9956c, #e8b4a0, #d4af37);
  border-radius: 2px;
  z-index: 1;
  opacity: 0.5;
}

/* Credentials card */
.credentials-card {
  background: rgba(22, 33, 62, 0.8);
  border: 1px solid rgba(201, 149, 108, 0.2);
  border-radius: 2px;
  padding: 28px 24px;
}

.credentials-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 16px;
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.credentials-list li {
  font-size: 0.78rem;
  color: rgba(248, 244, 239, 0.65);
  line-height: 1.5;
}

/* Story content */
.story-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-block {
  padding: 52px 0;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.story-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-chapter {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 20px;
}

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--warm-white);
  margin-bottom: 28px;
}

.story-content-col p {
  font-size: 0.95rem;
  color: rgba(248, 244, 239, 0.72);
  line-height: 1.95;
  margin-bottom: 20px;
}

.story-closing {
  font-family: var(--font-display) !important;
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--warm-white) !important;
  padding: 28px 32px;
  border-left: 2px solid var(--rose-gold);
  margin-top: 12px;
  background: rgba(201, 149, 108, 0.05);
}

.story-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
}

.story-divider::before,
.story-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 149, 108, 0.3),
    transparent
  );
}

.story-divider-symbol {
  color: var(--rose-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─── METHOD BRIEF ─── */
.method-brief {
  padding: var(--section-pad);
  background: var(--midnight-noir);
  text-align: center;
}

.method-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.method-brief-card {
  padding: 44px 32px;
  border: 1px solid rgba(201, 149, 108, 0.15);
  border-radius: 2px;
  text-align: left;
  background: rgba(26, 26, 46, 0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.method-brief-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.method-brief-card:hover {
  border-color: rgba(201, 149, 108, 0.4);
  transform: translateY(-5px);
}

.method-brief-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 149, 108, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.method-brief-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.method-brief-text {
  font-size: 0.88rem;
  color: rgba(248, 244, 239, 0.65);
  line-height: 1.85;
}

/* ─── BRAND STORY SECTION ─── */
.brand-story-section {
  padding: var(--section-pad);
  background: var(--deep-charcoal);
  position: relative;
  overflow: hidden;
}

.brand-story-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 149, 108, 0.05), transparent);
  pointer-events: none;
}

.brand-story-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.brand-story-text {
  margin-top: 48px;
}

.brand-story-text p {
  font-size: 1rem;
  color: rgba(248, 244, 239, 0.72);
  line-height: 2;
  margin-bottom: 28px;
}

.brand-story-text strong {
  color: var(--warm-white);
  font-weight: 500;
}

.brand-story-gold {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  font-style: italic;
  color: var(--warm-white) !important;
  padding: 32px 40px;
  border-left: 2px solid var(--rose-gold);
  border-right: 2px solid var(--rose-gold);
  background: rgba(201, 149, 108, 0.05);
  margin: 12px 0 !important;
}

/* ─── ABOUT CTA ─── */
.about-cta {
  padding: 120px 0;
  background: var(--midnight-noir);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 149, 108, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  z-index: 2;
}

.about-cta-sub {
  font-size: 1rem;
  color: rgba(248, 244, 239, 0.6);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .story-image-col {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .method-brief-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 24px 60px;
  }

  .story-section {
    padding: 60px 0;
  }

  .story-block {
    padding: 36px 0;
  }

  .brand-story-gold {
    padding: 24px 24px;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ─── STORY IMAGE - VERSIONE CORRETTA ─── */
.story-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 2px;
}

/* Cornice dorata DIETRO che fa da bordo */
.story-image-border {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #c9956c, #e8b4a0, #d4af37);
  border-radius: 2px;
  z-index: 1;
  opacity: 0.7;
}

/* Container immagine SOPRA la cornice (ma più piccolo) */
.story-image-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
  z-index: 2;
  background: var(--deep-charcoal);
}

/* L'immagine */
.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: none;
  opacity: 1;
}

input[name="fields[assessment_result]"],
input[name="fields[result_page_url]"] {
  display: none !important;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS — Carousel
═══════════════════════════════════════════ */

.sl-testimonials {
  padding: 100px 0 80px;
  background: var(--midnight-noir);
  border-top: 1px solid rgba(201, 149, 108, 0.12);
  border-bottom: 1px solid rgba(201, 149, 108, 0.12);
  position: relative;
  overflow: hidden;
}

.sl-testimonials::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(201, 149, 108, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ─── Header ─── */
.sl-testimonials-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold);
  text-align: center;
  margin-bottom: 16px;
}

.sl-testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--warm-white);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 60px;
}

/* ─── Outer: frecce + wrapper affiancati ─── */
.sl-testimonials-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ─── Frecce ─── */
.sl-arrow {
  /* Fuori dal flusso flex, sopra tutto */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 149, 108, 0.35);
  background: rgba(9, 19, 46, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.sl-arrow:hover {
  background: rgba(201, 149, 108, 0.15);
  border-color: var(--rose-gold);
  color: var(--warm-white);
  transform: translateY(-50%) scale(1.08);
}

.sl-arrow:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.sl-arrow-prev {
  left: 24px;
}

.sl-arrow-next {
  right: 24px;
}

/* ─── Track wrapper: maschera solo questo ─── */
.sl-testimonials-track-wrapper {
  /* Prende tutto lo spazio orizzontale */
  flex: 1;
  overflow: hidden;
  /* Il fade laterale tocca solo il contenuto, non le frecce */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

/* ─── Track ─── */
.sl-testimonials-track {
  display: flex;
  gap: 28px;
  padding: 20px 0 40px;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* ─── Card ─── */
.sl-testimonial-card {
  flex-shrink: 0;
  width: 620px;
  background: rgba(26, 26, 46, 0.7);
  border: 1px solid rgba(201, 149, 108, 0.15);
  border-radius: 2px;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
  opacity: 0.45;
  transform: scale(0.97);
  cursor: pointer;
}

.sl-testimonial-card.active {
  border-color: rgba(201, 149, 108, 0.4);
  opacity: 1;
  transform: scale(1);
  cursor: default;
}

.sl-testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 1;
  color: rgba(201, 149, 108, 0.06);
  pointer-events: none;
}

/* ─── Top row ─── */
.sl-testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sl-testimonial-pillar {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sl-testimonial-stars {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--rose-gold);
  opacity: 0.7;
}

/* ─── Quote ─── */
.sl-testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(248, 244, 239, 0.85);
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

/* ─── Author ─── */
.sl-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 149, 108, 0.12);
}

.sl-testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(201, 149, 108, 0.2),
    rgba(212, 175, 55, 0.12)
  );
  border: 1px solid rgba(201, 149, 108, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--rose-gold);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.sl-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sl-testimonial-meta strong {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.04em;
}

.sl-testimonial-meta span {
  font-size: 0.72rem;
  color: rgba(248, 244, 239, 0.4);
  letter-spacing: 0.1em;
}

/* ─── Dots ─── */
.sl-testimonials-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.sl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 149, 108, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.sl-dot.active {
  background: var(--rose-gold);
  width: 24px;
  border-radius: 3px;
}

/* ─── Nota finale ─── */
.sl-testimonials-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(248, 244, 239, 0.45);
  text-align: center;
  margin-top: 52px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .sl-testimonials {
    padding: 72px 0 60px;
  }

  .sl-testimonial-card {
    width: calc(100vw - 48px);
    padding: 36px 28px;
  }

  .sl-testimonial-quote {
    font-size: 1.05rem;
  }

  .sl-testimonials-title {
    margin-bottom: 40px;
  }

  .sl-arrow {
    width: 40px;
    height: 40px;
  }

  .sl-arrow-prev {
    left: 8px;
  }

  .sl-arrow-next {
    right: 8px;
  }
}

.image-frame {
  border: 1px solid #c9956c;
  padding: 6px;
  margin-bottom: 18px;
}

.cover-image {
  width: 100%;
  height: auto;
  display: block;
}

.ml-form-embedContainer,
.ml-form-embedWrapper {
  background: #fdf9f5 !important;
  border: 1px solid rgba(180, 120, 42, 0.35) !important;
  border-radius: 2px !important;
  box-shadow: 0 24px 70px rgba(26, 26, 46, 0.18) !important;
}

.ml-form-embedContent h4 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 2rem !important;
  font-weight: 300 !important;
  color: #1a1a2e !important;
  line-height: 1.1 !important;
}

.ml-form-embedContent p {
  font-family: "Raleway", sans-serif !important;
  font-size: 0.88rem !important;
  color: #4a4a5a !important;
  line-height: 1.7 !important;
}

.ml-form-fieldRow input {
  border: 1px solid rgba(180, 120, 42, 0.35) !important;
  border-radius: 2px !important;
  padding: 14px 16px !important;
  font-family: "Raleway", sans-serif !important;
  color: #2c2c3e !important;
}

.ml-form-fieldRow input::placeholder {
  color: #8f8a86 !important;
}

.primary {
  background: linear-gradient(135deg, #b8782a, #d4943a, #8b5e1a) !important;
  border-radius: 2px !important;
  font-family: "Raleway", sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.ml-form-embedSubmit button:hover {
  filter: brightness(1.05) !important;
}

@media print {
  html {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background: #fff;
    overflow-x: hidden;
  }

  .print-bar {
    position: static;
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .print-bar p {
    font-size: 0.62rem;
    line-height: 1.5;
  }

  .btn-print {
    width: 100%;
    justify-content: center;
  }

  .document {
    width: 100%;
    margin: 0;
  }

  .page,
  .cover-page {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 32px 22px 70px;
    box-shadow: none;
    overflow: visible;
    break-after: auto;
    page-break-after: auto;
  }

  .ph,
  .pf {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  p {
    font-size: 0.86rem;
    line-height: 1.72;
  }

  .two-col,
  .two-col-wide,
  .cover-page,
  .page-12 .two-col-wide {
    display: block;
  }

  .cover-minimal {
    min-height: 100vh;
    height: auto;
  }

  .cover-frame {
    position: relative;
    inset: auto;
    min-height: 100vh;
    padding: 56px 24px 40px;
    border-left: 0;
    border-right: 0;
  }

  .cover-brand {
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    margin-bottom: 44px;
  }

  .cover-main-title {
    font-size: 2.45rem;
  }

  .idx-item {
    grid-template-columns: 36px 1fr 28px;
    gap: 12px;
  }

  .pillar-card,
  .result-section,
  .step-card,
  .offer-card,
  .testi,
  .gold-box,
  .dark-box,
  .guarantee {
    padding: 18px;
    margin-bottom: 18px;
  }

  .offer-card {
    display: block;
  }

  .assessment-grid {
    display: block;
  }

  .assessment-grid > div {
    margin-bottom: 22px;
  }

  .score-row {
    flex-direction: column;
    gap: 14px;
  }

  .score-field {
    width: 100%;
  }

  .ctable {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  img {
    margin-top: 18px;
  }
}
