@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Merriweather', serif;
}

/* ─── Liquid Glass Effects ─────────────────────────────────────── */
.glass-panel {
  background: rgba(210, 195, 170, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 195, 170, 0.28);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255,255,255,0.4);
}

.dark .glass-panel {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: rgba(240, 232, 218, 0.40);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(210, 195, 170, 0.30);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .glass-card {
  background: rgba(30, 30, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255,255,255,0.5);
  background: rgba(245, 238, 228, 0.58);
  border-color: rgba(141, 157, 79, 0.25);
}

.dark .glass-card:hover {
  background: rgba(40, 40, 40, 0.5);
}

/* ─── Form Inputs ──────────────────────────────────────────────── */
.glass-input {
  background: rgba(235, 225, 205, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(210, 195, 170, 0.3);
  color: var(--foreground);
  transition: all 0.3s ease;
}
.dark .glass-input {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-input:focus {
  outline: none;
  background: rgba(245, 240, 232, 0.9);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(141, 157, 79, 0.18);
}
.dark .glass-input:focus {
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(138, 159, 123, 0.3);
}

/* ─── Background Blobs ─────────────────────────────────────────── */
@keyframes blob {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(30px, -50px) scale(1.1); }
  66%  { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }

/* ─── Scroll Reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Premium CTA Button ───────────────────────────────────────── */
.btn-premium {
  background: linear-gradient(135deg, #8d9d4f 0%, #71856a 60%, #5c7055 100%);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.06em;
}
.btn-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.btn-premium::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 5s infinite;
}
.btn-premium:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 32px rgba(141, 157, 79, 0.45), 0 4px 12px rgba(0,0,0,0.15);
}
.btn-premium:active {
  transform: translateY(-1px) scale(1.00);
}
@keyframes shine {
  0%   { left: -100%; }
  20%  { left: 200%; }
  100% { left: 200%; }
}

/* ─── CTA Pulse Glow (for hero CTA) ───────────────────────────── */
.btn-premium-hero {
  animation: cta-glow 3s ease-in-out infinite;
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 8px 24px rgba(141, 157, 79, 0.35); }
  50%       { box-shadow: 0 8px 40px rgba(141, 157, 79, 0.60); }
}

/* ─── Section Accent Bands ─────────────────────────────────────── */
.section-tinted {
  background: linear-gradient(180deg, rgba(141,157,79,0.04) 0%, rgba(141,157,79,0.08) 50%, rgba(141,157,79,0.04) 100%);
  border-radius: 2rem;
}

/* ─── Stat Number Counter ──────────────────────────────────────── */
.stat-number {
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* ─── Timeline dot ─────────────────────────────────────────────── */
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(141, 157, 79, 0.2), 0 0 0 8px rgba(141, 157, 79, 0.06);
  flex-shrink: 0;
}

/* ─── Eyebrow Labels ───────────────────────────────────────────── */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}

/* ─── FAQ Accordion ────────────────────────────────────────────── */
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  user-select: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 1rem;
  margin-top: -2px;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item[open] summary {
  color: var(--primary);
}
.faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--foreground);
  opacity: 0.75;
}

/* ─── Pricing card accent ring ─────────────────────────────────── */
.price-featured-glow {
  box-shadow: 0 0 0 1px rgba(141,157,79,0.6), 0 20px 60px rgba(141,157,79,0.20), 0 4px 20px rgba(0,0,0,0.08);
}
