@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green: #1A6B2F;
  --green-dark: #124d22;
  --green-light: #e8f4ec;
  --purple: #1E1048;
  --purple-mid: #2E1A6B;
  --purple-light: #f0edf8;
  --gold: #C9A84C;
  --white: #ffffff;
  --off-white: #f9f9f7;
  --gray-light: #f3f3f1;
  --gray-mid: #888;
  --gray-dark: #2a2a2a;
  --text: #1a1a1a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(30,16,72,0.08);
  --shadow-hover: 0 8px 40px rgba(30,16,72,0.15);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(30,16,72,0.08);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 12px rgba(30,16,72,0.06);
}

.nav-logo img { height: 48px; width: auto; }

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  background: var(--purple);
  color: var(--white);
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(26,107,47,0.12);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(201,168,76,0.07);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(26,107,47,0.25);
  border: 1px solid rgba(26,107,47,0.4);
  color: #8adba0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 780px;
}

.hero h1 span { color: #8adba0; }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color var(--transition), background var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-green {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── SECTIONS ── */
.section { padding: 80px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--purple);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-mid);
  max-width: 580px;
  margin-bottom: 48px;
}

.bg-off { background: var(--off-white); }
.bg-green-light { background: var(--green-light); }
.bg-purple { background: var(--purple); color: var(--white); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30,16,72,0.08);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }

/* ── PACKAGE CARDS ── */
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30,16,72,0.1);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pkg-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.pkg-card.featured {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--purple);
}
.pkg-card.featured .pkg-name { color: var(--white); }

.pkg-price {
  font-size: 42px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  color: var(--green);
  line-height: 1;
  margin: 12px 0 4px;
}
.pkg-card.featured .pkg-price { color: #8adba0; }

.pkg-period {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 6px;
}
.pkg-card.featured .pkg-period { color: rgba(255,255,255,0.55); }

.pkg-note {
  font-size: 11px;
  font-style: italic;
  color: var(--gray-mid);
  margin-bottom: 16px;
  line-height: 1.5;
}
.pkg-card.featured .pkg-note { color: rgba(255,255,255,0.45); }

.pkg-tag {
  font-size: 13px;
  font-style: italic;
  color: var(--green);
  margin-bottom: 20px;
  font-weight: 500;
}
.pkg-card.featured .pkg-tag { color: #8adba0; }

.pkg-divider {
  border: none;
  border-top: 1px solid rgba(30,16,72,0.1);
  margin: 20px 0;
}
.pkg-card.featured .pkg-divider { border-color: rgba(255,255,255,0.15); }

.pkg-includes {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.pkg-card.featured .pkg-includes { color: #8adba0; }

.pkg-list { list-style: none; }
.pkg-list li {
  font-size: 14px;
  color: var(--gray-dark);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pkg-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}
.pkg-card.featured .pkg-list li { color: rgba(255,255,255,0.85); }
.pkg-card.featured .pkg-list li::before { color: #8adba0; }

/* ── STAT BAR ── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  background: var(--purple);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: #8adba0;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ── ICON BOX ── */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(30,16,72,0.15);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
footer {
  background: var(--purple);
  color: rgba(255,255,255,0.7);
  padding: 60px 5% 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img { height: 52px; margin-bottom: 16px; }
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #8adba0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-green-bar {
  height: 3px;
  background: var(--green);
  margin-bottom: 0;
}

/* ── DISCLAIMER BOX ── */
.disclaimer {
  background: var(--purple-light);
  border: 1px solid rgba(46,26,107,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-top: 40px;
}
.disclaimer strong { color: var(--purple); }

/* ── ADD-ON GRID ── */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.addon-item {
  background: var(--white);
  border: 1px solid rgba(30,16,72,0.1);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition), border-color var(--transition);
}
.addon-item:hover { background: var(--green-light); border-color: var(--green); }
.addon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--purple);
  padding: 70px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(26,107,47,0.1);
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── VENDOR BENEFIT STRIP ── */
.benefit-strip {
  background: var(--green-light);
  border: 1px solid rgba(26,107,47,0.2);
  border-radius: var(--radius);
  padding: 24px 32px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.benefit-item { display: flex; gap: 12px; align-items: flex-start; }
.benefit-check {
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
  font-size: 12px;
  font-weight: 700;
}
.benefit-text strong { color: var(--green); display: block; font-size: 14px; margin-bottom: 2px; }
.benefit-text span { font-size: 13px; color: var(--gray-dark); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px 5%; gap: 20px; border-bottom: 1px solid rgba(30,16,72,0.08); box-shadow: 0 8px 24px rgba(30,16,72,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .benefit-strip { grid-template-columns: 1fr; }
  .hero { padding: 70px 5% 60px; min-height: auto; }
}
