/* ============================================
   UNIVERSAL SUCCESS — Premium Wellness Website
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-white: #FFFDF9;
  --color-cream: #F8F4EC;
  --color-sage: #A8BFA3;
  --color-sage-dark: #8FA88A;
  --color-sage-light: #C5D6BC;
  --color-olive: #5E6B52;
  --color-olive-deep: #4A5540;
  --color-sand: #D8C7A1;
  --color-sand-light: #E8DCC4;
  --color-text: #3A4236;
  --color-text-light: #6B7566;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
  color: var(--color-olive);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  margin-bottom: 1.2rem;
  display: inline-block;
  position: relative;
}

.section-label::before {
  content: '✦';
  margin-right: 0.5rem;
  font-size: 0.55rem;
  vertical-align: middle;
  color: var(--color-sand);
}

/* ---------- Buttons ---------- */
.btn-us {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-us::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn-us:hover::after {
  opacity: 1;
}

.btn-primary {
  background-color: var(--color-sage);
  color: var(--color-olive-deep);
  box-shadow:
    0 2px 20px rgba(168, 191, 163, 0.3),
    0 8px 40px rgba(168, 191, 163, 0.15);
}

.btn-primary:hover {
  background-color: var(--color-sage-dark);
  transform: translateY(-3px);
  box-shadow:
    0 6px 30px rgba(168, 191, 163, 0.4),
    0 12px 50px rgba(168, 191, 163, 0.2);
  color: var(--color-white);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-olive);
  border: 1.5px solid var(--color-sand);
}

.btn-outline:hover {
  background-color: var(--color-cream);
  border-color: var(--color-sage);
  color: var(--color-olive-deep);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(216, 199, 161, 0.25);
}

.btn-dark {
  background-color: var(--color-olive);
  color: var(--color-white);
  box-shadow:
    0 2px 20px rgba(94, 107, 82, 0.25),
    0 8px 40px rgba(94, 107, 82, 0.12);
}

.btn-dark:hover {
  background-color: var(--color-olive-deep);
  transform: translateY(-3px);
  box-shadow:
    0 6px 30px rgba(94, 107, 82, 0.35),
    0 12px 50px rgba(94, 107, 82, 0.18);
  color: var(--color-white);
}

/* ---------- Container ---------- */
.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Sparkle Decorations ---------- */
.sparkle {
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
  animation: sparkleFloat 6s ease-in-out infinite;
}

.sparkle::before {
  content: '✦';
  color: var(--color-sand);
  font-size: inherit;
}

.sparkle-1 { font-size: 1.2rem; animation-delay: 0s; }
.sparkle-2 { font-size: 0.8rem; animation-delay: 1.5s; }
.sparkle-3 { font-size: 1rem; animation-delay: 3s; }
.sparkle-4 { font-size: 0.6rem; animation-delay: 4.5s; }

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-12px) rotate(15deg); opacity: 0.6; }
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ---------- Section Spacing ---------- */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-sm {
  padding: 5rem 0;
}

.section-lg {
  padding: 10rem 0;
}

/* ---------- Decorative Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: var(--color-sand);
}

.divider-star {
  color: var(--color-sand);
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ========== NAVIGATION ========== */
.nav-us {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease-out-expo);
}

.nav-us.scrolled {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 30px rgba(94, 107, 82, 0.06);
}

.nav-us-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-olive);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.nav-logo span {
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-sage);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--color-olive);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.7rem 2rem !important;
  font-size: 0.75rem !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-olive);
  transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.hero-bg-circle-1 {
  width: 600px;
  height: 600px;
  background: var(--color-sage);
  top: -15%;
  right: -8%;
  animation: heroCircleFloat 20s ease-in-out infinite;
}

.hero-bg-circle-2 {
  width: 400px;
  height: 400px;
  background: var(--color-sand);
  bottom: -10%;
  left: -5%;
  animation: heroCircleFloat 25s ease-in-out infinite reverse;
}

.hero-bg-circle-3 {
  width: 200px;
  height: 200px;
  background: var(--color-sage-light);
  top: 40%;
  left: 55%;
  animation: heroCircleFloat 18s ease-in-out infinite 3s;
}

@keyframes heroCircleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.03); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-sage-dark);
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--color-olive);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--color-sage-dark);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-sand-light);
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-olive);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 30px 30px;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-sand-light) 100%);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(94, 107, 82, 0.1),
    0 10px 30px rgba(94, 107, 82, 0.06);
}

.hero-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}

.hero-image-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  color: var(--color-olive);
}

.hero-image-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-olive);
  opacity: 0.6;
  font-style: italic;
}

.hero-float-card {
  position: absolute;
  background: var(--color-white);
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  box-shadow:
    0 10px 40px rgba(94, 107, 82, 0.1),
    0 2px 10px rgba(94, 107, 82, 0.05);
  z-index: 2;
}

.hero-float-card-1 {
  top: 8%;
  right: -10%;
  animation: floatCard 8s ease-in-out infinite;
}

.hero-float-card-2 {
  bottom: 12%;
  left: -8%;
  animation: floatCard 9s ease-in-out infinite 2s;
}

.hero-float-card-3 {
  bottom: 10%;
  right: -5%;
  animation: floatCard 10s ease-in-out infinite 4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--color-olive);
  opacity: 0.7;
}

.float-card-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-olive);
  letter-spacing: 0.04em;
}

.float-card-sub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--color-text-light);
}

/* Hero entrance animations */
.hero .hero-label {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.hero .hero-title {
  opacity: 0;
  transform: translateY(35px);
  animation: heroFadeUp 1.1s var(--ease-out-expo) 0.5s forwards;
}

.hero .hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s var(--ease-out-expo) 0.7s forwards;
}

.hero .hero-buttons {
  opacity: 0;
  transform: translateY(25px);
  animation: heroFadeUp 1s var(--ease-out-expo) 0.9s forwards;
}

.hero .hero-stats {
  opacity: 0;
  transform: translateY(25px);
  animation: heroFadeUp 1s var(--ease-out-expo) 1.1s forwards;
}

.hero-visual {
  opacity: 0;
  transform: translateX(30px);
  animation: heroFadeRight 1.2s var(--ease-out-expo) 0.6s forwards;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeRight {
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
  animation: heroFadeUp 1s var(--ease-out-expo) 1.4s forwards;
  opacity: 0;
}

.scroll-indicator-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: var(--color-sand);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-sage);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: var(--color-cream);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-sand), transparent);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-olive);
  white-space: nowrap;
}

.trust-icon {
  font-size: 1.3rem;
  opacity: 0.7;
  color: var(--color-olive);
}

/* ========== ABOUT SECTION ========== */
.about {
  background: var(--color-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-area {
  position: relative;
}

.about-image-card {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-sand-light) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(94, 107, 82, 0.08);
}

.about-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(94, 107, 82, 0.05) 100%);
}

.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.about-image-placeholder-icon {
  font-size: 4rem;
  opacity: 0.4;
}

.about-image-placeholder-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-olive);
  opacity: 0.35;
  font-style: italic;
}

.about-accent-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--color-sage);
  color: var(--color-olive-deep);
  padding: 1.8rem 2rem;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(168, 191, 163, 0.3);
  z-index: 2;
}

.about-float-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.2rem 1.6rem;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(94, 107, 82, 0.12);
  z-index: 3;
}

.about-float-card-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-olive);
  line-height: 1.5;
}

.about-accent-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about-accent-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content {
  max-width: 540px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-value-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  color: var(--color-olive);
  opacity: 0.7;
}

.about-value-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-olive);
  line-height: 1.4;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-sand), transparent);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.steps-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--color-sand), var(--color-sand), transparent);
  transform: translateX(-50%);
}

.step-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-olive);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(94, 107, 82, 0.08);
  transition: all 0.5s var(--ease-out-expo);
}

.step-item:hover .step-number-circle {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: var(--color-white);
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(168, 191, 163, 0.3);
}

.step-content-left {
  text-align: right;
  padding-right: 1rem;
}

.step-content-right {
  text-align: left;
  padding-left: 1rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--color-olive);
}

.step-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* ========== STACKING CARDS SECTION ========== */
.stacking-section {
  background: var(--color-white);
  position: relative;
}

.stacking-cards {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stacking-card {
  position: sticky;
  margin-bottom: 2rem;
  border-radius: 28px;
  padding: 3.5rem 3rem;
  background: var(--color-white);
  box-shadow:
    0 4px 30px rgba(94, 107, 82, 0.06),
    0 1px 8px rgba(94, 107, 82, 0.04);
  border: 1px solid rgba(216, 199, 161, 0.2);
  overflow: hidden;
}

.stacking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 28px 28px 0 0;
}



.stacking-card:nth-child(1) {
  top: 120px;
  z-index: 1;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.stacking-card:nth-child(2) {
  top: 120px;
  z-index: 2;
  background: linear-gradient(135deg, var(--color-white) 0%, #F5F0E8 100%);
}

.stacking-card:nth-child(3) {
  top: 120px;
  z-index: 3;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.stacking-card:nth-child(4) {
  top: 120px;
  z-index: 4;
  background: linear-gradient(135deg, var(--color-white) 0%, #F5F0E8 100%);
}

.stacking-card:nth-child(5) {
  top: 120px;
  z-index: 5;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.stacking-card:nth-child(6) {
  top: 120px;
  z-index: 6;
  background: linear-gradient(135deg, var(--color-white) 0%, #F5F0E8 100%);
}

.stacking-card:nth-child(1)::before { background: var(--color-sage); }
.stacking-card:nth-child(2)::before { background: var(--color-sand); }
.stacking-card:nth-child(3)::before { background: var(--color-sage-light); }
.stacking-card:nth-child(4)::before { background: var(--color-sand); }
.stacking-card:nth-child(5)::before { background: var(--color-sage); }
.stacking-card:nth-child(6)::before { background: var(--color-sand-light); }

.stacking-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  color: var(--color-olive);
  opacity: 0.75;
}

.stacking-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-olive);
}

.stacking-card-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.stacking-card-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-olive);
  margin-top: 1.2rem;
  padding: 0.5rem 1rem;
  background: var(--color-cream);
  border-radius: 50px;
}

.stacking-card-check::before {
  content: '✓';
  color: var(--color-sage-dark);
  font-weight: 700;
}

/* ========== BENEFITS SECTION ========== */
.benefits {
  background: var(--color-white);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 24px;
  background: var(--color-white);
  border: 1px solid rgba(216, 199, 161, 0.2);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--color-cream) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(94, 107, 82, 0.1);
  border-color: var(--color-sage-light);
}

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

.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: var(--color-olive);
  opacity: 0.7;
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--color-olive);
  position: relative;
  z-index: 1;
}

.benefit-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
  position: relative;
  z-index: 1;
}

/* ========== TESTIMONIALS / LOVE SECTION ========== */
.love-section {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.love-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-sand), transparent);
}

.love-quote-big {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.3;
  color: var(--color-olive);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-style: italic;
}

.love-quote-big::before {
  content: '"';
  display: block;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--color-sand);
  margin-bottom: 1rem;
}

.love-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.love-testimonial {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(94, 107, 82, 0.05);
  border: 1px solid rgba(216, 199, 161, 0.15);
  transition: all 0.5s var(--ease-out-expo);
}

.love-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(94, 107, 82, 0.1);
}

.love-stars {
  color: var(--color-sand);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.love-testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.love-testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-olive);
  letter-spacing: 0.04em;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  border-radius: 36px;
  padding: 6rem 4rem;
  text-align: center;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-sand-light) 100%);
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--color-sage);
  opacity: 0.08;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--color-sand);
  opacity: 0.1;
}

.cta-title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.cta-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  max-width: 550px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-guarantee {
  margin-top: 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.cta-guarantee::before {
  content: '🛡️ ';
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-olive);
  color: var(--color-white);
  padding: 5rem 0 3rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-sage-light);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-sage-light);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .hero-float-card {
    display: none !important;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-content {
    max-width: 100%;
    text-align: center;
  }

  .about-values {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-value {
    justify-content: center;
  }

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

  .love-testimonials {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .steps-timeline::before {
    left: 36px;
  }

  .step-item {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }

  .step-content-left,
  .step-content-right {
    text-align: left;
    padding: 0;
  }

  .step-content-left {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .section-lg {
    padding: 6rem 0;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-image-frame {
    max-width: 350px;
    border-radius: 160px 160px 24px 24px;
  }

  .hero-float-card {
    display: none;
  }

  .hero-stats {
    gap: 2rem;
  }

  .trust-items {
    gap: 2rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-accent-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    text-align: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .stacking-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
  }

  .stacking-card:nth-child(1) { top: 100px; }
  .stacking-card:nth-child(2) { top: 100px; }
  .stacking-card:nth-child(3) { top: 100px; }
  .stacking-card:nth-child(4) { top: 100px; }
  .stacking-card:nth-child(5) { top: 100px; }
  .stacking-card:nth-child(6) { top: 100px; }

  .cta-inner {
    padding: 4rem 2rem;
    border-radius: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .section-header {
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

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

  .cta-buttons .btn-us {
    width: 100%;
    max-width: 300px;
  }

  .stacking-card {
    padding: 2rem 1.5rem;
  }

  .stacking-card-title {
    font-size: 1.4rem;
  }
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--color-white);
  z-index: 2000;
  padding: 6rem 2.5rem 2rem;
  transition: right 0.5s var(--ease-out-expo);
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(94, 107, 82, 0.2);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-olive);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mobile-nav-close:hover {
  background: var(--color-cream);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-olive);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(216, 199, 161, 0.2);
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--color-sage-dark);
}

.mobile-nav-cta {
  margin-top: 2rem;
}

/* ========== PARALLAX HELPER ========== */
.parallax-slow {
  will-change: transform;
}

/* ========== TEXT REVEAL ========== */
.text-reveal {
  overflow: hidden;
}

.text-reveal-line {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out-expo);
}

.text-reveal.revealed .text-reveal-line {
  transform: translateY(0);
}

/* ========== CURSOR GLOW (subtle) ========== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 191, 163, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.cursor-glow.visible {
  opacity: 1;
}

/* ========== LOADING SCREEN ========== */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-olive);
  letter-spacing: 0.02em;
}

.loading-bar {
  width: 120px;
  height: 2px;
  background: var(--color-sand-light);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-inner {
  width: 0%;
  height: 100%;
  background: var(--color-sage);
  border-radius: 2px;
  animation: loadingProgress 1.5s ease-out forwards;
}

@keyframes loadingProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}
