/* ========================================
   SAYDI HEALTH COACH - Styles v2
   ======================================== */

/* --- CSS Variables --- */
:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #0a3419;

  --sage-50: #f6f7f4;
  --sage-100: #e8ebe3;
  --sage-200: #d4d9cb;
  --sage-300: #b5bda7;

  --gold-400: #d4a853;
  --gold-500: #c49a3a;

  --cream: #fefcf3;
  --warm-white: #faf8f5;

  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-glow-green: 0 0 30px rgba(34,197,94,0.3), 0 0 60px rgba(34,197,94,0.1);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Custom cursor glow --- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

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

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--green-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-leaf {
  width: 60px;
  height: 60px;
  animation: preloaderSpin 1.2s ease-in-out infinite;
}

.preloader-text {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.preloader-text span {
  font-family: var(--font-accent);
  color: var(--green-400);
  font-size: 1.6rem;
  font-style: italic;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0) scale(1); opacity: 1; }
  50% { transform: rotate(180deg) scale(1.15); opacity: 0.6; }
  100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

/* --- Floating Particles (canvas bg) --- */
.particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1001;
}

.nav-logo svg {
  width: 56px;
  height: 56px;
  transition: transform var(--transition-base);
}

.nav-logo:hover svg { transform: rotate(-10deg) scale(1.08); }

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition-base);
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.navbar.scrolled .nav-logo-text { color: var(--green-800); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-400), var(--green-300));
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--neutral-700); }
.navbar.scrolled .nav-links a:hover { color: var(--green-700); }

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition-base);
}

.navbar.scrolled .lang-toggle { background: var(--sage-100); border-color: var(--sage-200); }

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.lang-btn.active { background: #fff; color: var(--green-800); box-shadow: var(--shadow-sm); }
.navbar.scrolled .lang-btn { color: var(--neutral-500); }
.navbar.scrolled .lang-btn.active { background: var(--green-700); color: #fff; }

/* Nav social icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition-base);
  font-size: 0.85rem;
}

.nav-social a:hover { background: rgba(255,255,255,0.15); color: #fff; transform: scale(1.1); }
.navbar.scrolled .nav-social a { color: var(--neutral-600); }
.navbar.scrolled .nav-social a:hover { background: var(--green-50); color: var(--green-700); }

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar.scrolled .nav-hamburger span { background: var(--neutral-800); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,52,25,0.92) 0%,
    rgba(20,83,45,0.82) 35%,
    rgba(21,128,61,0.65) 65%,
    rgba(34,197,94,0.40) 100%
  );
  z-index: 1;
}

/* Decorative organic shapes on hero */
.hero-deco-1 {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(134,239,172,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-deco-2 {
  position: absolute;
  bottom: 5%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 820px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--green-400);
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--green-400); }
  50% { opacity: 0.6; transform: scale(1.4); box-shadow: 0 0 20px var(--green-400); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--green-300), #a7f3d0, var(--green-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .accent {
  font-family: var(--font-accent);
  font-weight: 600;
  font-style: italic;
  font-size: 1.05em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  margin-bottom: 2.5rem;
}

/* Hero social bar */
.hero-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--social-color, rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.hero-social a:hover::before { opacity: 1; }
.hero-social a:hover { transform: translateY(-3px) scale(1.1); border-color: transparent; box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.hero-social a svg { position: relative; z-index: 1; }

.hero-social a.social-ig { --social-color: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.hero-social a.social-fb { --social-color: #1877F2; }
.hero-social a.social-tt { --social-color: #000; }
.hero-social a.social-wa { --social-color: #25D366; }

.hero-social a.social-ig::before { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.hero-social a.social-fb::before { background: #1877F2; }
.hero-social a.social-tt::before { background: #010101; }
.hero-social a.social-wa::before { background: #25D366; }

.hero-social-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.75s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  animation: bounceDown 2s ease-in-out infinite;
  cursor: pointer;
}

.hero-scroll svg { width: 28px; height: 28px; }

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
}

.btn:hover::before { width: 300px; height: 300px; }

.btn > * { position: relative; z-index: 1; }

.btn-primary {
  background: #fff;
  color: var(--green-800);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; transform: translateY(-3px); }

.btn-green {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  box-shadow: 0 4px 15px rgba(22,163,74,0.35);
}

.btn-green:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-green); }

.btn-glow {
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(22,163,74,0.3); }
  50% { box-shadow: 0 4px 30px rgba(22,163,74,0.5), 0 0 60px rgba(22,163,74,0.15); }
}

/* --- Marquee Strip --- */
.marquee-strip {
  background: linear-gradient(90deg, var(--green-600), var(--green-500), var(--green-600));
  color: #fff;
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-inner {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-inner span {
  white-space: nowrap;
  padding: 0 3rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee-inner .marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--green-300);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Section Common --- */
.section { padding: 7rem 0; position: relative; z-index: 1; }

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-600);
  margin-bottom: 1rem;
}

.section-tag .tag-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-400), var(--green-300));
  border-radius: 1px;
}

.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.section-header h2 .handwritten {
  font-family: var(--font-accent);
  color: var(--green-600);
  font-weight: 600;
  font-style: italic;
  font-size: 1.1em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* Organic wave divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg { width: 100%; height: auto; display: block; }

.wave-divider-top {
  position: absolute;
  top: -1px;
  bottom: auto;
  transform: rotate(180deg);
}

/* Floating decorative leaf */
.deco-leaf {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* --- Problems Section --- */
/* --- Floating Leaf Animations for White Sections --- */
@keyframes leafDrift {
  0% { transform: translate(0, 0) rotate(var(--r, 0deg)) scale(var(--s, 1)); opacity: 0; }
  10% { opacity: var(--o, 0.12); }
  90% { opacity: var(--o, 0.12); }
  100% { transform: translate(var(--dx, 40px), var(--dy, -60px)) rotate(calc(var(--r, 0deg) + 45deg)) scale(var(--s, 1)); opacity: 0; }
}

@keyframes leafSway {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  25% { transform: translateY(-8px) rotate(calc(var(--r, 0deg) + 3deg)) translateX(4px); }
  50% { transform: translateY(-14px) rotate(calc(var(--r, 0deg) - 2deg)); }
  75% { transform: translateY(-6px) rotate(calc(var(--r, 0deg) + 4deg)) translateX(-3px); }
}

.section-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.section-leaves .leaf {
  position: absolute;
  pointer-events: none;
  color: var(--green-500);
}

/* Swaying leaves - stay in place, gentle movement */
.leaf--sway {
  animation: leafSway var(--dur, 7s) ease-in-out infinite;
  opacity: var(--o, 0.1);
}

/* Drifting leaves - slowly move across */
.leaf--drift {
  animation: leafDrift var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

/* Individual leaf positions & properties */
.leaf-a { top: 8%; left: 5%; --r: 15deg; --s: 1; --o: 0.09; --dur: 8s; }
.leaf-b { top: 15%; right: 8%; --r: -25deg; --s: 0.8; --o: 0.07; --dur: 9s; --delay: 1s; }
.leaf-c { top: 45%; left: 3%; --r: 40deg; --s: 1.1; --o: 0.08; --dur: 7.5s; --delay: 0.5s; }
.leaf-d { top: 65%; right: 5%; --r: -10deg; --s: 0.7; --o: 0.1; --dur: 10s; }
.leaf-e { bottom: 15%; left: 10%; --r: 55deg; --s: 0.9; --o: 0.06; --dur: 8.5s; --delay: 2s; }
.leaf-f { top: 25%; right: 3%; --r: -35deg; --s: 0.6; --o: 0.11; --dur: 11s; --delay: 3s; --dx: -30px; --dy: -80px; }
.leaf-g { bottom: 30%; right: 12%; --r: 20deg; --s: 0.75; --o: 0.08; --dur: 9.5s; --delay: 1.5s; }
.leaf-h { top: 80%; left: 7%; --r: -45deg; --s: 0.85; --o: 0.07; --dur: 12s; --delay: 4s; --dx: 50px; --dy: -100px; }

@media (max-width: 768px) {
  .section-leaves .leaf { opacity: 0.05 !important; }
  .leaf-f, .leaf-g, .leaf-h { display: none; }
}

.problems {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-400), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.problem-card:hover::before { opacity: 1; }
.problem-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }

.problem-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card:hover .problem-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(34,197,94,0.15);
}

.problem-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.problem-card p { font-size: 0.9rem; color: var(--neutral-500); line-height: 1.6; }

.problems-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--green-50), var(--sage-50));
  border-radius: var(--radius-lg);
  border: 1px dashed var(--green-300);
}

.problems-cta p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-800);
  font-family: var(--font-heading);
}

.problems-cta .accent-text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--green-600);
}

/* --- About Section --- */
.about {
  background: var(--warm-white);
  overflow: hidden;
}

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

.about-image { position: relative; }

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-main:hover img { transform: scale(1.04); }

/* Decorative frame around image */
.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--green-300);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about-image-float {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 5s ease-in-out infinite;
  z-index: 2;
}

.about-image-float-2 {
  position: absolute;
  top: -20px;
  right: 30px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite reverse;
  z-index: 2;
  text-align: center;
}

.about-image-float-2 .float-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-float-2 .float-label {
  font-size: 0.72rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.float-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.float-text { font-size: 0.85rem; }
.float-text strong { display: block; color: var(--green-800); font-size: 1.05rem; }
.float-text span { color: var(--neutral-500); }

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--neutral-900);
  margin-bottom: 1.5rem;
}

.about-content h2 .handwritten {
  font-family: var(--font-accent);
  color: var(--green-600);
  font-weight: 600;
  font-style: italic;
  font-size: 1.1em;
}

.about-content .accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-600));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: var(--radius-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

a.about-feature-link {
  text-decoration: none;
  color: inherit;
}

.about-feature:hover {
  border-color: var(--green-200);
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature span { font-size: 0.88rem; font-weight: 500; color: var(--neutral-700); }

/* --- Services Section --- */
.services {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-600));
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

.service-card-image { height: 220px; overflow: hidden; }

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-image img { transform: scale(1.1); }

.service-card-body { padding: 2rem; }

.service-card-body h3 {
  font-size: 1.25rem;
  color: var(--neutral-900);
  margin-bottom: 0.75rem;
}

.service-card-body p { color: var(--neutral-500); font-size: 0.95rem; line-height: 1.7; }

a.service-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }

.service-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-600);
  transition: color 0.2s;
}

.service-card:hover .service-card-link { color: var(--green-800); }

/* --- Pricing Section --- */
.pricing { background: var(--warm-white); position: relative; overflow: hidden; }

.pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34,197,94,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  position: relative;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.08); }

.pricing-card.featured {
  border: 2px solid var(--green-400);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl), var(--shadow-glow-green);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-10px);
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(34,197,94,0.2);
}

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

.pricing-header {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.pricing-card:nth-child(1) .pricing-icon { background: linear-gradient(135deg, var(--green-50), var(--green-100)); }
.pricing-card:nth-child(2) .pricing-icon { background: linear-gradient(135deg, var(--green-200), var(--green-300)); }
.pricing-card:nth-child(3) .pricing-icon { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: #fff; }

.pricing-header h3 { font-size: 1.3rem; color: var(--neutral-900); margin-bottom: 0.5rem; }
.pricing-header .pricing-subtitle { font-size: 0.85rem; color: var(--neutral-500); }

.pricing-price {
  padding: 1.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--sage-50), var(--green-50));
}

.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
}

.pricing-price .amount .dollar { font-size: 1.5rem; vertical-align: super; margin-right: 0.15rem; }
.pricing-price .period { font-size: 0.85rem; color: var(--neutral-500); margin-top: 0.25rem; }

.pricing-features { padding: 2rem; }

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--neutral-700);
}

.pricing-features li .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-100), var(--green-200));
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-features li .check svg { width: 12px; height: 12px; }

.pricing-footer { padding: 0 2rem 2rem; }
.pricing-footer .btn { width: 100%; justify-content: center; }

.pricing-card.featured .pricing-footer .btn {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
}

.pricing-card.featured .pricing-footer .btn:hover { box-shadow: var(--shadow-glow-green); }

/* --- Virtual Section --- */
.virtual { position: relative; overflow: hidden; }

.virtual-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.virtual-bg img { width: 100%; height: 100%; object-fit: cover; }

.virtual-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,52,25,0.94) 0%, rgba(20,83,45,0.88) 50%, rgba(21,128,61,0.85) 100%);
}

.virtual .container { position: relative; z-index: 1; }

.virtual-content { text-align: center; color: #fff; padding: 5rem 0; }
.virtual-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.virtual-content h2 .handwritten { font-family: var(--font-accent); font-weight: 600; font-style: italic; font-size: 1.1em; color: var(--green-300); }
.virtual-content > p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 3rem; line-height: 1.7; }

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

.virtual-feature {
  padding: 2rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.virtual-feature:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.virtual-feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.virtual-feature h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.virtual-feature p { font-size: 0.9rem; opacity: 0.8; line-height: 1.6; }

/* --- Trust / Stats --- */
.trust { background: #fff; }

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.trust-stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-stat:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }

.trust-stat .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-stat .label { font-size: 0.88rem; color: var(--neutral-500); }

.trust-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--green-100);
  line-height: 1;
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }

.testimonial-stars { color: var(--gold-400); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.15em; }

.testimonial-card > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-600);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-200), var(--green-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-800);
  font-size: 0.85rem;
}

.testimonial-author-info strong { display: block; font-size: 0.95rem; color: var(--neutral-800); }
.testimonial-author-info span { font-size: 0.8rem; color: var(--neutral-400); }

/* --- Courses Section --- */
.courses { background: #fff; position: relative; overflow: hidden; }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.course-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-100);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.course-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card:hover .course-card-image img { transform: scale(1.08); }

.course-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-600);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 1;
}

.course-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-card-body h3 {
  font-size: 1.2rem;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.course-card-body .course-desc {
  color: var(--neutral-500);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.course-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.course-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--neutral-500);
  font-weight: 500;
}

.course-card-meta svg { opacity: 0.6; }

.course-card-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 1rem;
}

.course-card-price .course-free {
  font-size: 0.85rem;
  background: var(--green-50);
  color: var(--green-700);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
}

.course-register-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: var(--green-600);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.course-register-btn:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.25);
}

.course-spots {
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--neutral-400);
}

/* --- Course Registration Modal --- */
.course-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.course-modal-overlay.active { opacity: 1; visibility: visible; }

.course-modal {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-modal-overlay.active .course-modal {
  transform: translateY(0) scale(1);
}

.course-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--neutral-100);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-500);
  transition: all 0.2s;
}

.course-modal-close:hover { background: var(--neutral-200); color: var(--neutral-800); }

.course-modal-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.course-modal-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.course-modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--neutral-900);
  margin-bottom: 0.25rem;
}

.course-modal-header p {
  font-size: 0.9rem;
  color: var(--neutral-500);
}

.course-reg-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral-600);
}

.form-field input {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--neutral-200);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

.course-submit-btn {
  margin-top: 0.5rem;
  padding: 0.85rem;
  font-size: 1rem;
  border-radius: 12px;
  width: 100%;
}

.course-reg-success {
  text-align: center;
  padding: 2rem 0;
}

.course-reg-success .success-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.course-reg-success h4 { font-size: 1.3rem; color: var(--green-700); margin-bottom: 0.5rem; }
.course-reg-success p { color: var(--neutral-500); font-size: 0.9rem; }

@media (max-width: 768px) {
  .courses-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .course-modal { padding: 1.75rem; }
}

/* --- TikTok Section --- */
.tiktok-section {
  background: var(--neutral-50);
  position: relative;
  overflow: hidden;
}

.tiktok-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tiktok-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  position: relative;
  min-height: 200px;
}

.tiktok-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* TikTok embed sizing */
.tiktok-card .tiktok-embed {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.tiktok-card blockquote {
  margin: 0;
  padding: 0;
}

.tiktok-card iframe {
  max-width: 100% !important;
  border-radius: var(--radius-lg);
}

.tiktok-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  min-height: 340px;
  background: linear-gradient(160deg, #fafafa 0%, #f0f0f0 100%);
  text-align: center;
  gap: 0.75rem;
}

.tiktok-placeholder-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 0.5rem;
  animation: tiktokPulse 2.5s ease-in-out infinite;
}

@keyframes tiktokPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(254,44,85,0.3); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(254,44,85,0); }
}

.tiktok-placeholder p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin: 0;
}

.tiktok-placeholder span {
  font-size: 0.82rem;
  color: var(--neutral-400);
  font-weight: 500;
}


/* TikTok fallback for blocked browsers */
.tiktok-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  min-height: 380px;
  background: linear-gradient(160deg, #f8f8f8 0%, #f0f0f0 100%);
  text-decoration: none;
  color: inherit;
  gap: 1rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.tiktok-fallback:hover {
  background: linear-gradient(160deg, #f0f0f0 0%, #e8e8e8 100%);
  transform: translateY(-3px);
}

.tiktok-fallback-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.tiktok-fallback-text {
  font-size: 0.92rem;
  color: var(--neutral-600);
  line-height: 1.6;
  max-width: 260px;
}

.tiktok-fallback-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #FE2C55;
  margin-top: 0.5rem;
}

.tiktok-fallback-cta svg { transition: transform 0.2s; }
.tiktok-fallback:hover .tiktok-fallback-cta svg { transform: translateX(3px); }

.tiktok-follow {
  text-align: center;
}

.btn-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: #000;
  color: #fff;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-tiktok::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-tiktok:hover::before { opacity: 1; }
.btn-tiktok:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(254,44,85,0.3); }

.btn-tiktok svg,
.btn-tiktok span { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .tiktok-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .tiktok-placeholder { min-height: 280px; padding: 2.5rem 1.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tiktok-grid { gap: 1rem; }
  .tiktok-placeholder { min-height: 300px; }
}

/* --- Social CTA Section --- */
.social-cta {
  background: linear-gradient(160deg, var(--green-950) 0%, var(--green-900) 40%, var(--green-800) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

.social-cta::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobFloat 12s ease-in-out infinite;
}

.social-cta::after {
  content: '';
  position: absolute;
  bottom: -250px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(134,239,172,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobFloat 15s ease-in-out infinite reverse;
}

.social-cta .container { position: relative; z-index: 1; }

.social-cta h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
}

.social-cta h2 .handwritten {
  font-family: var(--font-accent);
  color: var(--green-300);
  font-weight: 600;
  font-style: italic;
  font-size: 1.05em;
}

.social-cta > .container > p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.social-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  display: block;
}

.social-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,255,255,0.25);
}

.social-card.card-ig:hover { background: rgba(225,48,108,0.2); box-shadow: 0 15px 40px rgba(225,48,108,0.2); }
.social-card.card-fb:hover { background: rgba(24,119,242,0.2); box-shadow: 0 15px 40px rgba(24,119,242,0.2); }
.social-card.card-tt:hover { background: rgba(255,255,255,0.12); box-shadow: 0 15px 40px rgba(255,255,255,0.1); }
.social-card.card-wa:hover { background: rgba(37,211,102,0.2); box-shadow: 0 15px 40px rgba(37,211,102,0.2); }

.social-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform var(--transition-base);
}

.social-card:hover .social-card-icon { transform: scale(1.15) rotate(-5deg); }

.social-card.card-ig .social-card-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.card-fb .social-card-icon { background: #1877F2; }
.social-card.card-tt .social-card-icon { background: #010101; border: 1px solid rgba(255,255,255,0.2); }
.social-card.card-wa .social-card-icon { background: #25D366; }

.social-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.social-card p {
  font-size: 0.82rem;
  opacity: 0.6;
}

.social-cta-note {
  font-size: 0.9rem;
  opacity: 0.5;
  font-style: italic;
}

/* --- Floating Social Bar (fixed side) --- */
.floating-social {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.floating-social.visible { opacity: 1; }

.floating-social a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.floating-social a:hover { transform: scale(1.15) translateX(-5px); }

.floating-social a.fs-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.floating-social a.fs-fb { background: #1877F2; }
.floating-social a.fs-tt { background: #010101; }
.floating-social a.fs-wa { background: #25D366; }

.floating-social a .tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--neutral-800);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.floating-social a:hover .tooltip { opacity: 1; }

/* --- Footer --- */
.footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem;
}

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

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo-text { color: #fff; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }

.footer-brand .footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer-brand .footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: #fff;
}

.footer-brand .footer-social a:hover { transform: translateY(-3px); }
.footer-brand .footer-social a.fs-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743); }
.footer-brand .footer-social a.fs-fb { background: #1877F2; }
.footer-brand .footer-social a.fs-tt { background: rgba(255,255,255,0.1); }
.footer-brand .footer-social a.fs-wa { background: #25D366; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: all var(--transition-fast);
}

.footer-col a:hover { color: var(--green-400); transform: translateX(4px); }

.footer-newsletter p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast);
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-form input:focus { border-color: var(--green-500); }

.footer-newsletter-form button {
  padding: 0.7rem 1.25rem;
  border-radius: 12px;
  border: none;
  background: var(--green-600);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-body);
}

.footer-newsletter-form button:hover { background: var(--green-500); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a { color: var(--green-400); }

/* --- Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(35px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.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; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pricing-grid { gap: 1.5rem; }
  .pricing-card.featured { transform: scale(1.02); }
  .pricing-card.featured:hover { transform: scale(1.02) translateY(-10px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-width: 500px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .pricing-card.featured { transform: none; order: -1; }
  .pricing-card.featured:hover { transform: translateY(-10px); }
  .virtual-features { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 3rem; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
}

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

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10,52,25,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav-links.active { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.25rem; color: #fff !important; }

  .nav-hamburger { display: flex; }
  .nav-social-desktop { display: none; }

  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-social a { width: 42px; height: 42px; }

  .about-features { grid-template-columns: 1fr; }
  .about-image::before { display: none; }

  .social-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .social-card { padding: 1.5rem 1rem; }

  .floating-social { display: none; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-brand .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .problems-grid { grid-template-columns: 1fr 1fr; }
  .marquee-strip { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
  .hero-social { gap: 0.5rem; }
  .problems-grid { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
}

section[id] { scroll-margin-top: 80px; }
::selection { background: var(--green-200); color: var(--green-900); }
