
/* ═══════════════════ DESIGN TOKENS ═══════════════════ */
:root {
  --forest:   #0D3B2E;
  --deep:     #0A2E23;
  --emerald:  #1A6B4A;
  --jade:     #2A9D6F;
  --sage:     #4EB388;
  --mint:     #A8DBBF;
  --cream:    #FAF6EE;
  --parchment:#F2EBD9;
  --gold:     #C49A3C;
  --gold-lt:  #E8C97A;
  --amber:    #8B6914;
  --charcoal: #1C1C1A;
  --ink:      #2D2D2A;
  --stone:    #6B6860;
  --dust:     #A8A49C;
  --white:    #FFFFFF;
  --red-alert:#C0392B;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ═══════════════════ RESET & BASE ═══════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; }

/* ═══════════════════ UTILITY ═══════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════ STICKY NAV ═══════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: background .4s, box-shadow .4s, padding .4s;
}
.nav.scrolled {
  background: rgba(10, 46, 35, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  padding: 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  transition: padding .4s;
}
.nav.scrolled .nav-inner { padding: 14px 32px; }
.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-cta {
  background: var(--gold);
  color: var(--deep) !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-burger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--deep);
  overflow: hidden;
}

/* Animated botanical background */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26,107,74,.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(13,59,46,.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(42,157,111,.15) 0%, transparent 60%);
  background-color: var(--deep);
}

/* SVG lotus mandala decorative */
.hero-mandala {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: 55%; max-width: 700px; opacity: .07;
  animation: slowSpin 120s linear infinite;
  pointer-events: none;
}
@keyframes slowSpin { to { transform: translateY(-50%) rotate(360deg); } }

.hero-lotus-accent {
  position: absolute; bottom: -60px; left: -60px;
  width: 300px; opacity: .06;
  animation: slowSpin 80s linear infinite reverse;
}

/* grain texture overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 130px 0 100px;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(196,154,60,.15);
  border: 1px solid rgba(196,154,60,.4);
  color: var(--gold-lt);
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 40px;
  margin-bottom: 28px;
  animation: fadeUp .8s var(--ease-out) both;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 28px;
  animation: fadeUp .9s .1s var(--ease-out) both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--sage);
}
.hero-h1 strong {
  font-weight: 700;
  color: var(--gold-lt);
  display: block;
}

.hero-sub {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 44px;
  animation: fadeUp 1s .2s var(--ease-out) both;
}
.hero-sub strong { color: var(--mint); font-weight: 500; }

.hero-bullets {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 48px;
  animation: fadeUp 1s .3s var(--ease-out) both;
}
.hero-bullet {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.85);
}
.hero-bullet svg { flex-shrink: 0; color: var(--sage); }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  animation: fadeUp 1s .4s var(--ease-out) both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--deep);
  font-size: 15px; font-weight: 600;
  padding: 18px 36px; border-radius: 50px;
  letter-spacing: .02em;
  transition: all .25s var(--ease-out);
  box-shadow: 0 8px 40px rgba(196,154,60,.4);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(196,154,60,.5);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: 14px; font-weight: 500;
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  transition: all .25s;
}
.btn-secondary:hover { color: white; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }

.hero-trust {
  display: flex; align-items: center; gap: 20px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeUp 1s .5s var(--ease-out) both;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 700;
  color: var(--gold-lt);
  display: block; line-height: 1;
}
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }
.hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* countdown */
.hero-countdown {
   background: rgba(255,255,255,.06);
  border: 1px solid rgba(196,154,60,.3);
  border-radius: 12px; padding: 14px 20px;
  display: flex; gap: 16px; align-items: center;
  animation: fadeUp 1s .6s var(--ease-out) both;
  margin-top: 28px;
}
.countdown-label { font-size: 11px; color: var(--gold-lt); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.countdown-items { display: flex; gap: 12px; }
.cd-item { text-align: center; }
.cd-num { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: white; line-height: 1; display: block; }
.cd-unit { font-size: 10px; color: rgba(255,255,255,.5); letter-spacing: .08em; }

/* seats bar */
.seats-bar {
  margin-top: 16px;
  animation: fadeUp 1s .65s var(--ease-out) both;
}
.seats-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.seats-bar-label strong { color: var(--gold-lt); }
.seats-track { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.seats-fill { height: 100%; background: linear-gradient(90deg, var(--jade), var(--gold)); border-radius: 3px; width: 33%; }

/* scroll indicator */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: 11px; letter-spacing: .1em;
  animation: fadeUp 1s .8s var(--ease-out) both;
}
.scroll-arrow { animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ═══════════════════ SECTION COMMONS ═══════════════════ */
section { padding: 100px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}
.section-eyebrow.gold { color: var(--amber); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300; line-height: 1.1;
  color: var(--forest);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--emerald); }
.section-sub { font-size: 17px; font-weight: 300; color: var(--stone); line-height: 1.7; max-width: 620px; }

/* ═══════════════════ PROBLEM → SOLUTION ═══════════════════ */
.problem-section { background: var(--parchment); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.problem-list { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.problem-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: white;
  border-radius: 14px; border-left: 3px solid var(--red-alert);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.problem-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.problem-item h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.problem-item p  { font-size: 13px; color: var(--stone); line-height: 1.5; }

.solution-card {
  background: var(--forest);
  border-radius: 24px; padding: 44px 40px;
  position: relative; overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(42,157,111,.2) 0%, transparent 70%);
}
.solution-card h3 {
  font-family: var(--font-serif); font-size: 36px; font-weight: 300;
  color: white; line-height: 1.2; margin-bottom: 24px; position: relative;
}
.solution-card h3 em { font-style: italic; color: var(--sage); }
.solution-list { list-style: none; display: flex; flex-direction: column; gap: 14px; position: relative; }
.solution-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.5;
}
.solution-list li::before {
  content: '✓';
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--jade); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: white; margin-top: 1px;
}

/* ═══════════════════ WHAT YOU GET ═══════════════════ */
.deliverables-section { background: var(--cream); }
.deliverables-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px;
}
.deliverable-card {
  background: white; border-radius: 20px; padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.07);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative; overflow: hidden;
}
.deliverable-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--sage));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.deliverable-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.deliverable-card:hover::after { transform: scaleX(1); }
.del-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--parchment); display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.del-title { font-size: 16px; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.del-desc { font-size: 13px; color: var(--stone); line-height: 1.6; }
.del-tag {
  display: inline-block; margin-top: 14px;
  background: var(--parchment); color: var(--emerald);
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px;
  letter-spacing: .04em;
}

/* ═══════════════════ 4-DAY AGENDA ═══════════════════ */
.agenda-section { background: var(--forest); color: white; }
.agenda-section .section-title { color: white; }
.agenda-section .section-title em { color: var(--sage); }
.agenda-section .section-eyebrow { color: var(--sage); }
.agenda-section .section-sub { color: rgba(255,255,255,.6); }
.agenda-tabs { display: flex; gap: 8px; margin: 40px 0 32px; flex-wrap: wrap; }
.agenda-tab {
  padding: 10px 22px; border-radius: 40px; font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.12); cursor: pointer;
  transition: all .2s;
}
.agenda-tab.active { background: var(--gold); color: var(--deep); border-color: var(--gold); font-weight: 600; }
.agenda-tab:hover:not(.active) { background: rgba(255,255,255,.14); color: white; }
.agenda-day { display: none; }
.agenda-day.active { display: block; animation: fadeIn .4s var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.agenda-day-title {
  font-family: var(--font-serif); font-size: 28px; font-weight: 300;
  color: white; margin-bottom: 24px;
}
.agenda-day-title em { color: var(--gold-lt); font-style: italic; }
.agenda-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.agenda-timeline::before {
  content: ''; position: absolute; left: 80px; top: 0; bottom: 0; width: 1px;
  background: rgba(255,255,255,.12);
}
.agenda-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 20px 0; position: relative; }
.agenda-item + .agenda-item { border-top: 1px solid rgba(255,255,255,.06); }
.agenda-time { font-size: 12px; color: var(--sage); font-weight: 500; padding-top: 3px; text-align: right; padding-right: 24px; }
.agenda-content {}
.agenda-type {
  display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 6px;
}
.agenda-type.keynote { background: rgba(78,179,136,.2); color: var(--sage); }
.agenda-type.lab { background: rgba(196,154,60,.2); color: var(--gold-lt); }
.agenda-type.social { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.agenda-item-title { font-size: 15px; font-weight: 500; color: white; margin-bottom: 4px; }
.agenda-item-desc  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ═══════════════════ VALUE COMPARISON ═══════════════════ */
.value-section { background: var(--parchment); }
.value-table-wrap { margin-top: 48px; overflow-x: auto; }
.value-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,.08);
}
.value-table thead th {
  background: var(--forest); color: white;
  padding: 18px 24px; font-size: 13px; font-weight: 600;
  text-align: left; letter-spacing: .04em;
}
.value-table thead th:last-child { color: var(--gold-lt); background: var(--deep); }
.value-table tbody tr:nth-child(even) td { background: #fafaf8; }
.value-table tbody td {
  padding: 16px 24px; font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,.05); color: var(--ink);
}
.value-table tbody td:first-child { font-weight: 500; }
.value-table tbody td:nth-child(2) { color: var(--stone); }
.value-table tbody td:last-child { font-weight: 600; color: var(--emerald); }
.value-table tfoot td {
  background: var(--forest); color: white;
  padding: 18px 24px; font-weight: 600; font-size: 15px;
}
.value-table tfoot td:last-child { color: var(--gold-lt); font-size: 18px; }
.value-highlight {
  margin-top: 28px;
  background: var(--forest); color: white;
  border-radius: 16px; padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.value-highlight p { font-size: 16px; color: rgba(255,255,255,.8); }
.value-highlight p strong { color: var(--gold-lt); }
.value-price {
  font-family: var(--font-serif); font-size: 52px; font-weight: 700;
  color: var(--gold-lt); white-space: nowrap; line-height: 1;
}
.value-price span { font-size: 18px; display: block; color: rgba(255,255,255,.5); font-family: var(--font-sans); font-weight: 300; }

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: white; border-radius: 20px; padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 24px; right: 28px;
  font-family: var(--font-serif); font-size: 80px; line-height: 1;
  color: var(--parchment); font-weight: 700;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15px; color: var(--ink); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 18px; color: var(--sage); font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--forest); }
.testimonial-loc  { font-size: 12px; color: var(--stone); margin-top: 2px; }

/* ═══════════════════ PRICING ═══════════════════ */
.pricing-section { background: var(--forest); }
.pricing-section .section-title { color: white; }
.pricing-section .section-eyebrow { color: var(--sage); }
.pricing-section .section-sub { color: rgba(255,255,255,.6); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; max-width: 900px; }
.pricing-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px; padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease-out);
}
.pricing-card.featured {
  background: white; border-color: white;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--deep);
  font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 20px;
  letter-spacing: .06em; text-transform: uppercase;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.pricing-card.featured .pricing-label { color: var(--emerald); }
.pricing-name { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: white; margin-bottom: 24px; }
.pricing-card.featured .pricing-name { color: var(--forest); }
.pricing-amount {
  font-family: var(--font-serif); font-size: 56px; font-weight: 700;
  color: var(--gold-lt); line-height: 1; margin-bottom: 8px;
}
.pricing-card.featured .pricing-amount { color: var(--forest); }
.pricing-period { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 32px; }
.pricing-card.featured .pricing-period { color: var(--stone); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.8);
}
.pricing-card.featured .pricing-features li { color: var(--ink); }
.pricing-features li::before {
  content: '✓'; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(78,179,136,.2); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; margin-top: 2px;
}
.pricing-card.featured .pricing-features li::before { background: var(--parchment); color: var(--emerald); }
.btn-pricing-primary {
  display: block; width: 100%; text-align: center;
  background: var(--gold); color: var(--deep);
  padding: 16px; border-radius: 50px; font-size: 15px; font-weight: 600;
  transition: all .25s; box-shadow: 0 6px 30px rgba(196,154,60,.3);
}
.btn-pricing-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-pricing-outline {
  display: block; width: 100%; text-align: center;
  background: transparent; color: rgba(255,255,255,.8);
  padding: 16px; border-radius: 50px; font-size: 15px; font-weight: 500;
  border: 1px solid rgba(255,255,255,.25);
  transition: all .25s;
}
.btn-pricing-outline:hover { border-color: rgba(255,255,255,.6); color: white; }

.pricing-guarantee {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 18px 24px;
  margin-top: 32px;
  max-width: 900px;
}
.guarantee-icon { font-size: 28px; flex-shrink: 0; }
.guarantee-text p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }
.guarantee-text strong { color: rgba(255,255,255,.9); font-weight: 600; }

/* ═══════════════════ FAQ ═══════════════════ */
.faq-section { background: var(--parchment); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; margin-top: 48px; }
.faq-item {
  padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,.09);
  cursor: pointer;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  font-size: 15px; font-weight: 500; color: var(--forest); line-height: 1.4;
}
.faq-arrow {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; border: 1.5px solid var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--forest);
  transition: transform .3s, background .2s;
  margin-top: 1px;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--forest); color: white; }
.faq-answer {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--stone); line-height: 1.7;
  transition: max-height .4s var(--ease-in-out), padding .4s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 14px; }

/* ═══════════════════ REGISTRATION FORM ═══════════════════ */
.register-section {
  background: var(--deep);
  position: relative; overflow: hidden;
}
.register-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(26,107,74,.25) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(42,157,111,.1) 0%, transparent 60%);
}
.register-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.register-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px); font-weight: 300;
  color: white; line-height: 1.1; margin-bottom: 20px;
}
.register-left h2 em { color: var(--sage); font-style: italic; }
.register-left p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 36px; }
.register-urgency {
  background: rgba(196,154,60,.12); border: 1px solid rgba(196,154,60,.3);
  border-radius: 12px; padding: 18px 22px; margin-bottom: 36px;
}
.register-urgency p { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.urgency-bar-track { height: 8px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; }
.urgency-bar-fill { height: 100%; width: 33%; background: linear-gradient(90deg, var(--jade), var(--gold)); border-radius: 4px; }
.register-why { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.register-why li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.75);
}
.register-why li span:first-child { color: var(--sage); flex-shrink: 0; font-size: 18px; }

/* FORM */
.register-form-card {
  background: white; border-radius: 24px; padding: 44px 40px;
  box-shadow: 0 20px 80px rgba(0,0,0,.3);
}
.form-title { font-family: var(--font-serif); font-size: 26px; font-weight: 400; color: var(--forest); margin-bottom: 6px; }
.form-sub   { font-size: 13px; color: var(--stone); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--forest); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #e2e0d8; border-radius: 10px;
  font-family: var(--font-sans); font-size: 14px; color: var(--ink);
  background: #fafaf8;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(42,157,111,.12);
  background: white;
}
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6860' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-checkbox-group input { margin-top: 3px; accent-color: var(--jade); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.form-checkbox-group label { font-size: 12px; color: var(--stone); line-height: 1.5; cursor: pointer; }
.form-checkbox-group a { color: var(--emerald); text-decoration: underline; }
.btn-submit {
  width: 100%; padding: 18px;
  background: var(--gold); color: var(--deep);
  border: none; border-radius: 50px;
  font-family: var(--font-sans); font-size: 16px; font-weight: 600;
  cursor: pointer; transition: all .25s; letter-spacing: .02em;
  box-shadow: 0 6px 30px rgba(196,154,60,.35);
}
.btn-submit:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(196,154,60,.45); }
.form-security { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 12px; color: var(--dust); }
.form-security svg { color: var(--jade); }

/* ═══════════════════ VENUE ═══════════════════ */
.venue-section { background: var(--cream); }
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.venue-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.venue-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink); font-weight: 500;
}
.venue-feature span:first-child { font-size: 18px; }
.venue-visual {
  background: var(--forest); border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.venue-visual-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 60%, var(--jade) 100%);
  opacity: .8;
}
.venue-visual-text {
  position: relative; z-index: 2; text-align: center; color: white;
}
.venue-visual-text h3 { font-family: var(--font-serif); font-size: 32px; font-weight: 300; margin-bottom: 8px; }
.venue-visual-text p  { font-size: 14px; color: rgba(255,255,255,.7); }

/* ═══════════════════ FOOTER ═══════════════════ */
footer {
  background: var(--charcoal); color: rgba(255,255,255,.5);
  padding: 48px 0 32px;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-logo { font-family: var(--font-serif); font-size: 20px; color: white; font-weight: 400; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--sage); }
.footer-copy { font-size: 12px; margin-top: 24px; text-align: center; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; }

/* ═══════════════════ FLOATING CTA ═══════════════════ */
.floating-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-seats { background: rgba(10,46,35,.95); backdrop-filter: blur(10px); color: white; font-size: 12px; padding: 8px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,.15); }
.floating-seats strong { color: var(--gold-lt); }
.floating-btn {
  background: var(--gold); color: var(--deep);
  padding: 14px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 6px 30px rgba(196,154,60,.5);
  transition: all .2s; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
}
.floating-btn:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 960px) {
  section { padding: 72px 0; }
  .problem-grid,
  .register-inner,
  .venue-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 640px) {
  .deliverables-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .value-highlight { flex-direction: column; }
  .hero-trust { gap: 12px; }
  .hero-divider { display: none; }
  .floating-cta { bottom: 16px; right: 16px; }
  .register-form-card { padding: 28px 22px; }
}

/* ═══════════════════ LOGO IMAGE ═══════════════════ */
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav.scrolled .nav-logo-img {
  height: 44px;
  transition: height .4s;
}
