:root {
  --olive: #5a6234;
  --olive-light: #7a8448;
  --olive-dark: #3d4422;
  --gold: #c9a84c;
  --cream: #f5f0e8;
  --charcoal: #1a1a1a;
  --black: #0d0d0d;
  --white: #ffffff;
  --gray: #6b7280;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2.5rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(13,13,13,0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(90,98,52,0.2);
}
.nav-logo img { height: 38px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--cream); text-decoration: none; font-size: 0.88rem;
  font-weight: 500; letter-spacing: 0.03em; opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--olive) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 6px; opacity: 1 !important;
  box-shadow: 0 0 24px rgba(90,98,52,0.55), 0 0 48px rgba(90,98,52,0.2);
  transition: box-shadow 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
  box-shadow: 0 0 36px rgba(90,98,52,0.9), 0 0 72px rgba(90,98,52,0.4) !important;
  transform: translateY(-1px);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; display: block; transition: 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(13,13,13,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--cream); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--olive-light); }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer; }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity:0; transform:translateY(-24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(32px); }  to { opacity:1; transform:translateY(0); } }
@keyframes pulse    { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
@keyframes shimmer  { 0%,100% { opacity:0.3; } 50% { opacity:0.7; } }

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 7rem 2rem 5rem;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 25%, rgba(90,98,52,0.38) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(61,68,34,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 85% 65%, rgba(201,168,76,0.07) 0%, transparent 55%),
    var(--black);
}
.hero-lines {
  position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 79px, rgba(90,98,52,0.04) 80px
  ), repeating-linear-gradient(
    90deg, transparent, transparent 79px, rgba(90,98,52,0.04) 80px
  );
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(90,98,52,0.12); border: 1px solid rgba(90,98,52,0.35);
  padding: 0.4rem 1.1rem; border-radius: 100px;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--olive-light); margin-bottom: 2.2rem;
  animation: fadeDown 0.9s ease both;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #8fa844; animation: pulse 2s infinite; }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  animation: fadeDown 0.9s 0.1s ease both;
}
.headline-accent { color: var(--olive-light); font-style: italic; }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75; color: rgba(245,240,232,0.6);
  max-width: 560px; margin: 0 auto 2.75rem;
  animation: fadeDown 0.9s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeDown 0.9s 0.3s ease both;
}
.btn-primary {
  background: var(--olive); color: var(--cream);
  padding: 1rem 2.4rem; border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 0 32px rgba(90,98,52,0.5);
  transition: transform 0.2s, box-shadow 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 52px rgba(90,98,52,0.75); }
.btn-secondary {
  background: transparent; color: var(--cream);
  padding: 1rem 2.4rem;
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--olive-light); background: rgba(90,98,52,0.1); }

.hero-stats {
  display: flex; gap: 3.5rem; justify-content: center; flex-wrap: wrap;
  margin-top: 4.5rem; padding-top: 4.5rem;
  border-top: 1px solid rgba(245,240,232,0.07);
  animation: fadeUp 0.9s 0.5s ease both;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700; color: var(--olive-light);
}
.stat-label { font-size: 0.75rem; color: rgba(245,240,232,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }

/* ── SOCIAL PROOF ── */
#social-proof {
  padding: 3.5rem 2rem;
  background: rgba(90,98,52,0.05);
  border-top: 1px solid rgba(90,98,52,0.12);
  border-bottom: 1px solid rgba(90,98,52,0.12);
}
.proof-label {
  text-align: center; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(245,240,232,0.3); margin-bottom: 2.2rem;
}
.proof-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.proof-logo {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  color: rgba(245,240,232,0.18); letter-spacing: 0.06em; transition: color 0.3s;
}
.proof-logo:hover { color: rgba(245,240,232,0.45); }

/* ── SECTION COMMON ── */
section { padding: 7rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive-light); margin-bottom: 1rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 1rem;
}
.section-sub { color: rgba(245,240,232,0.5); font-size: 1rem; line-height: 1.75; max-width: 500px; margin-bottom: 4rem; }

/* ── FEATURES ── */
#features { background: var(--black); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feature-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(90,98,52,0.18);
  border-radius: 18px; padding: 2.75rem 2.25rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--olive-light), transparent);
  transform: scaleX(0); transition: transform 0.45s;
}
.feature-card:hover {
  border-color: rgba(90,98,52,0.45);
  background: rgba(90,98,52,0.07);
  transform: translateY(-5px);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 54px; height: 54px;
  background: rgba(90,98,52,0.18); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem; font-size: 1.4rem;
}
.feature-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.8rem; }
.feature-desc { color: rgba(245,240,232,0.5); font-size: 0.88rem; line-height: 1.7; }

/* ── TESTIMONIALS ── */
#testimonials {
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(90,98,52,0.1) 0%, transparent 70%), var(--black);
}
.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 1.5rem; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(90,98,52,0.18);
  border-radius: 18px; padding: 2.5rem;
  min-width: calc(33.333% - 1rem); flex-shrink: 0;
}
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 1.2rem; letter-spacing: 3px; }
.testimonial-text {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic;
  line-height: 1.75; color: rgba(245,240,232,0.82); margin-bottom: 1.75rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--olive-dark), var(--olive-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; color: var(--cream); flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.88rem; }
.author-role { font-size: 0.76rem; color: rgba(245,240,232,0.4); margin-top: 0.15rem; }
.carousel-controls { display: flex; gap: 0.75rem; justify-content: center; margin-top: 2.5rem; }
.carousel-btn {
  width: 44px; height: 44px;
  background: rgba(90,98,52,0.12); border: 1px solid rgba(90,98,52,0.3);
  border-radius: 50%; color: var(--cream); font-size: 1rem;
  cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: rgba(90,98,52,0.4); }

/* ── PRICING ── */
#pricing { background: var(--black); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(90,98,52,0.18);
  border-radius: 20px; padding: 2.75rem 2.25rem;
  transition: transform 0.3s;
  position: relative;
}
.pricing-card.featured {
  background: rgba(90,98,52,0.1);
  border-color: var(--olive);
  transform: scale(1.04);
  box-shadow: 0 0 64px rgba(90,98,52,0.18);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--olive); color: var(--cream);
  padding: 0.3rem 1.2rem; border-radius: 100px;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
}
.plan-name { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive-light); margin-bottom: 0.6rem; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 900; line-height: 1; margin-bottom: 0.4rem; }
.plan-price span { font-size: 1.2rem; font-weight: 400; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.plan-period { font-size: 0.8rem; color: rgba(245,240,232,0.35); margin-bottom: 2.2rem; }
.plan-features { list-style: none; margin-bottom: 2.2rem; }
.plan-features li {
  padding: 0.65rem 0; border-bottom: 1px solid rgba(245,240,232,0.06);
  font-size: 0.88rem; color: rgba(245,240,232,0.72);
  display: flex; align-items: center; gap: 0.6rem;
}
.plan-features li::before { content: '✓'; color: var(--olive-light); font-weight: 700; flex-shrink: 0; }
.plan-features li.na { color: rgba(245,240,232,0.22); }
.plan-features li.na::before { content: '–'; color: rgba(245,240,232,0.18); }
.btn-plan {
  width: 100%; padding: 0.95rem;
  border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn-plan-fill {
  background: var(--olive); color: var(--cream); border: none;
  box-shadow: 0 0 22px rgba(90,98,52,0.35);
}
.btn-plan-fill:hover { transform: translateY(-1px); box-shadow: 0 0 36px rgba(90,98,52,0.6); }
.btn-plan-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245,240,232,0.2);
}
.btn-plan-outline:hover { background: rgba(90,98,52,0.1); border-color: var(--olive-light); }

/* ── FAQ ── */
#faq {
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(90,98,52,0.1) 0%, transparent 60%), var(--black);
}
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(245,240,232,0.07); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--cream); padding: 1.6rem 0;
  font-family: 'DM Sans', sans-serif; font-size: 0.98rem; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; transition: color 0.2s;
}
.faq-question:hover { color: var(--olive-light); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(90,98,52,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; line-height: 1;
  transition: transform 0.35s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--olive); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s;
  color: rgba(245,240,232,0.55); font-size: 0.92rem; line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.75rem; }

/* ── FOOTER ── */
footer {
  background: rgba(255,255,255,0.018);
  border-top: 1px solid rgba(90,98,52,0.18);
  padding: 5rem 2rem 2.5rem;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand img { height: 34px; margin-bottom: 1.2rem; }
.footer-tagline { color: rgba(245,240,232,0.42); font-size: 0.85rem; line-height: 1.65; max-width: 230px; margin-bottom: 1.75rem; }
.social-links { display: flex; gap: 0.6rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(90,98,52,0.12); border: 1px solid rgba(90,98,52,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); text-decoration: none; font-size: 0.85rem;
  transition: background 0.2s;
}
.social-link:hover { background: rgba(90,98,52,0.4); }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-bottom: 1.3rem; }
.footer-col a { display: block; color: rgba(245,240,232,0.6); text-decoration: none; font-size: 0.86rem; margin-bottom: 0.65rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--olive-light); }
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(90,98,52,0.28);
  border-radius: 6px; padding: 0.65rem 0.9rem;
  color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
}
.newsletter-input::placeholder { color: rgba(245,240,232,0.3); }
.newsletter-input:focus { outline: none; border-color: var(--olive-light); }
.newsletter-btn {
  background: var(--olive); color: var(--cream);
  border: none; border-radius: 6px; padding: 0.65rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.newsletter-btn:hover { background: var(--olive-light); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.06); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(245,240,232,0.28); }
.legal-links { display: flex; gap: 1.5rem; }
.legal-links a { font-size: 0.78rem; color: rgba(245,240,232,0.28); text-decoration: none; }
.legal-links a:hover { color: rgba(245,240,232,0.55); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .testimonial-card { min-width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.9rem; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 3rem; }
}