/* ── En Meets — Marketing Pages CSS ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,600&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --brand:       #e8460a;
  --brand-dk:    #c73a08;
  --brand-lt:    #fff3ee;
  --ink:         #1a1208;
  --ink-muted:   #6b5e52;
  --cream:       #faf6f1;
  --cream-dk:    #f0e9e0;
  --white:       #ffffff;
  --border:      #e8ddd4;
  --night:       #1a1208;
  --night-2:     #241c12;
  --gold:        #c8902a;
  --green:       #1a6b3c;
  --green-lt:    #e6f4ed;
}

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

.marketing-page {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

.marketing-page h1,
.marketing-page h2,
.marketing-page h3,
.marketing-page h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

em { font-style: italic; }

/* ── Grain overlay ───────────────────────────────────────────────────── */
.marketing-page::before {
  content: '';
  position: fixed;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
.cs-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.cs-nav.scrolled {
  background: rgba(250,246,241,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.cs-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cs-nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.cs-nav-logo:hover { color: var(--brand-dk); }

.cs-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.cs-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
}
.cs-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.cs-nav-links a:hover,
.cs-nav-links a.active { color: var(--ink); }
.cs-nav-links a:hover::after,
.cs-nav-links a.active::after { transform: scaleX(1); }

.cs-nav-actions { display: flex; gap: 10px; align-items: center; }

.btn-nav-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn-nav-ghost:hover { border-color: var(--brand); background: var(--brand-lt); color: var(--ink); }

.btn-nav-solid {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border: none;
  border-radius: 999px;
  padding: 9px 20px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-nav-solid:hover { background: var(--brand-dk); color: #fff; }
.btn-nav-solid:active { transform: scale(0.97); }

/* Hamburger */
.cs-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.cs-nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}
.cs-nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  gap: 4px;
}
.cs-nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dk);
}
.cs-nav-mobile a.mobile-cta {
  color: var(--brand);
  font-weight: 700;
  border: none;
  margin-top: 8px;
}
.cs-nav-mobile.open { display: flex; }

@media (max-width: 768px) {
  .cs-nav-links,
  .cs-nav-actions { display: none; }
  .cs-nav-hamburger { display: flex; }
}

/* ── Shared section utilities ────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--brand);
}

.section-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-h2 em { color: var(--brand); font-style: italic; }

.section-body {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* ── Scroll reveal ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }

/* ── Big CTA buttons ─────────────────────────────────────────────────── */
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border: none;
  border-radius: 999px;
  padding: 15px 32px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(232,70,10,0.3);
}
.btn-primary-lg:hover { background: var(--brand-dk); color: #fff; box-shadow: 0 6px 28px rgba(232,70,10,0.4); transform: translateY(-1px); }
.btn-primary-lg:active { transform: scale(0.97); }

.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 14px 30px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost-lg:hover { border-color: var(--ink); background: rgba(26,18,8,0.04); color: var(--ink); }

.btn-ghost-lg-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 14px 30px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.btn-ghost-lg-light:hover { border-color: rgba(255,255,255,0.7); color: #fff; background: rgba(255,255,255,0.1); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.cs-mkt-footer {
  background: var(--night);
  color: #a09585;
  padding: 64px 0 0;
  font-size: 0.875rem;
}
.cs-mkt-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cs-mkt-footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 12px;
}
.cs-mkt-footer-brand p {
  color: #6b5e52;
  line-height: 1.7;
  max-width: 220px;
  margin-bottom: 20px;
}
.cs-mkt-footer-social { display: flex; gap: 14px; }
.cs-mkt-footer-social a { font-size: 1.1rem; text-decoration: none; opacity: 0.6; transition: opacity 0.15s; }
.cs-mkt-footer-social a:hover { opacity: 1; }
.cs-mkt-footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4c4b4;
  margin-bottom: 16px;
}
.cs-mkt-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cs-mkt-footer-links a { color: #6b5e52; text-decoration: none; transition: color 0.15s; }
.cs-mkt-footer-links a:hover { color: #d4c4b4; }
.cs-mkt-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: #4a3d30;
  flex-wrap: wrap;
  gap: 12px;
}
.cs-mkt-footer-bottom a { color: #4a3d30; text-decoration: none; }
.cs-mkt-footer-bottom a:hover { color: #6b5e52; }

@media (max-width: 900px) {
  .cs-mkt-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cs-mkt-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .cs-mkt-footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   LANDING PAGE
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding-top: 68px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: -20%; right: -60px;
  width: 180px; height: 140%;
  background: var(--cream-dk);
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
  z-index: 0;
}

.hero-right {
  background: var(--cream-dk);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-right-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(232,70,10,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,144,42,0.1) 0%, transparent 60%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.hero-headline em {
  color: var(--brand);
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.hero-proof-avatars { display: flex; }
.hero-proof-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.hero-proof-avatar:first-child { margin-left: 0; }
.hero-proof-text {
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.hero-proof-text strong { color: var(--ink); }

/* Floating event cards */
.hero-cards-stack {
  position: relative;
  width: 360px;
  height: 420px;
  z-index: 1;
}

.hero-event-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 20px;
  width: 290px;
  box-shadow: 0 8px 40px rgba(26,18,8,0.12);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  animation: float 6s ease-in-out infinite;
}
.hero-event-card:nth-child(1) { top: 0; right: 0; animation-delay: 0s; }
.hero-event-card:nth-child(2) { top: 130px; left: 0; animation-delay: 1.5s; }
.hero-event-card:nth-child(3) { bottom: 0; right: 20px; animation-delay: 3s; }

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

.hec-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hec-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 3px; color: var(--ink); font-family: 'Fraunces', serif; }
.hec-meta { font-size: 0.78rem; color: var(--ink-muted); margin-bottom: 8px; }
.hec-bar { height: 4px; background: var(--cream-dk); border-radius: 99px; overflow: hidden; margin-bottom: 4px; }
.hec-bar-fill { height: 100%; background: var(--brand); border-radius: 99px; }
.hec-spots { font-size: 0.72rem; color: var(--ink-muted); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 24px 60px; }
  .hero-left::after { display: none; }
  .hero-right { padding: 40px 24px 60px; min-height: 400px; }
  .hero-cards-stack { width: 100%; max-width: 360px; margin: 0 auto; }
  .hero-event-card { width: 260px; }
}

/* ── How it works ─────────────────────────────────────────────────────── */
.how-section {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: 'HOW';
  position: absolute;
  top: -20px; left: -10px;
  font-family: 'Fraunces', serif;
  font-size: 18vw;
  font-weight: 700;
  color: var(--cream-dk);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.how-header { position: relative; z-index: 1; margin-bottom: 72px; }

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.how-step {
  padding: 40px 36px;
  position: relative;
  border-right: 1px solid var(--border);
}
.how-step:last-child { border-right: none; }

.how-step-num {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--cream-dk);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.how-step:hover .how-step-num { color: var(--brand-lt); }

.how-step-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: background 0.2s, border-color 0.2s;
}
.how-step:hover .how-step-icon { background: var(--brand-lt); border-color: var(--brand); }

.how-step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.how-step p  { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .how-steps-grid { grid-template-columns: 1fr; gap: 0; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .how-step:last-child { border-bottom: none; }
}

/* ── Event types ──────────────────────────────────────────────────────── */
.types-section {
  padding: 120px 0;
  background: var(--cream);
}

.types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.types-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.type-card {
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.type-card:hover { transform: translateY(-4px); }

.type-card-classic {
  background: var(--white);
  border: 1.5px solid var(--border);
}
.type-card-open {
  background: var(--night);
  color: rgba(255,255,255,0.9);
}

.type-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.type-card-classic .type-badge  { background: var(--brand-lt); color: var(--brand); }
.type-card-open    .type-badge  { background: rgba(232,70,10,0.2); color: #ff8f6b; }
.type-card-friends .type-badge  { background: #fdf2f8; color: #db2777; }
.type-badge-friends             { background: #fdf2f8 !important; color: #db2777 !important; }

.type-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}
.type-card h3 { font-size: 1.7rem; font-weight: 600; margin-bottom: 14px; }
.type-card-open h3 { color: #fff; }
.type-card-classic p { color: var(--ink-muted); line-height: 1.7; margin-bottom: 24px; }
.type-card-open    p { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }

.type-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.type-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.type-card-classic .type-features li { color: var(--ink-muted); }
.type-card-open    .type-features li { color: rgba(255,255,255,0.7); }

.type-features li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--green-lt);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231a6b3c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.type-card-open .type-features li::before {
  background-color: rgba(255,255,255,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ff8f6b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-type-classic { background: var(--brand); color: #fff; box-shadow: 0 4px 16px rgba(232,70,10,0.25); }
.btn-type-classic:hover { background: var(--brand-dk); color: #fff; }
.btn-type-friends { background: #db2777; color: #fff; box-shadow: 0 4px 16px rgba(219,39,119,0.25); }
.btn-type-friends:hover { background: #be185d; color: #fff; }
.btn-type-open { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }
.btn-type-open:hover { background: rgba(255,255,255,0.18); color: #fff; }

.type-card-friends {
  background: #fdf2f8;
  border: 1.5px solid #fbcfe8;
}
.type-card-friends h3 { color: #831843; }
.type-card-friends p  { color: #9d174d; line-height: 1.7; margin-bottom: 24px; }
.type-card-friends .type-features li { color: #9d174d; }
.type-card-friends .type-features li::before {
  background-color: #fce7f3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23db2777' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 960px) {
  .types-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .types-grid { grid-template-columns: 1fr; }
  .types-grid-3 { grid-template-columns: 1fr; }
  .type-card { padding: 36px 28px; }
}

/* ── Stats ───────────────────────────────────────────────────────────── */
.stats-section {
  background: var(--night);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

}
.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number sup {
  font-size: 1.8rem;
  vertical-align: super;
  font-weight: 300;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.45); letter-spacing: 0.03em; }

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); border-right: none; }
}

/* ── Testimonials ────────────────────────────────────────────────────── */
.testimonials-section {
  padding: 120px 0;
  background: var(--cream-dk);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  margin-top: 60px;
  align-items: start;
}
.testimonials-grid .reveal-delay-2 { margin-top: 32px; }

.tcard {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,18,8,0.08); }
.tcard-featured {
  background: var(--night);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(26,18,8,0.2);
}

.tcard-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 0.1em; }
.tcard blockquote { font-size: 1rem; line-height: 1.72; color: var(--ink-muted); margin-bottom: 24px; font-style: italic; }
.tcard-featured blockquote { color: rgba(255,255,255,0.65); }

.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.tcard-name { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.tcard-featured .tcard-name { color: #fff; }
.tcard-meta { font-size: 0.78rem; color: var(--ink-muted); }
.tcard-featured .tcard-meta { color: rgba(255,255,255,0.4); }

@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .reveal-delay-2 { margin-top: 0; }
}

/* ── Events preview ──────────────────────────────────────────────────── */
.events-preview-section {
  padding: 120px 0;
  background: var(--white);
}
.events-preview-section .section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-text-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.btn-text-link:hover { color: var(--brand-dk); gap: 8px; }

.ep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ep-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.ep-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,18,8,0.09); }

.ep-card-top {
  padding: 28px 24px 20px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.ep-icon { font-size: 2rem; }
.ep-price-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.ep-price-free { background: var(--green-lt); color: var(--green); }
.ep-price-paid { background: var(--brand-lt); color: var(--brand); }

.ep-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ep-card-body h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.ep-card-body p  { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.ep-meta { font-size: 0.8rem; color: var(--ink-muted); margin-bottom: 16px; }
.ep-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.ep-spots { font-size: 0.8rem; font-weight: 600; color: var(--ink-muted); }
.ep-join {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s, color 0.15s;
}
.ep-join:hover { color: var(--brand-dk); gap: 8px; }

@media (max-width: 768px) { .ep-grid { grid-template-columns: 1fr; } }

/* ── CTA band ────────────────────────────────────────────────────────── */
.cta-band-section {
  padding: 100px 0;
  background: var(--brand);
  position: relative;
  overflow: hidden;
}
.cta-band-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 30% 60% at 10% 20%, rgba(0,0,0,0.1) 0%, transparent 60%);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.cta-band-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.7); }
.cta-band-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════ */

.page-hero {
  padding: 140px 0 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.page-hero h1 em { color: var(--brand); font-style: italic; font-weight: 300; }
.page-hero-sub {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.7;
}

.story-section {
  padding: 100px 0;
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; margin-bottom: 24px; }
.story-text h2 em { color: var(--brand); font-style: italic; }
.story-text p { font-size: 1rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 18px; }
.story-text p:last-child { margin-bottom: 0; }
.story-text p strong { color: var(--ink); font-weight: 600; }

.story-stat-cards { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.ssc {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ssc:hover { transform: translateX(6px); box-shadow: 0 6px 24px rgba(26,18,8,0.06); }
.ssc-icon { font-size: 1.8rem; flex-shrink: 0; }
.ssc-stat { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--brand); line-height: 1; margin-bottom: 4px; }
.ssc-label { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.ssc-sub { font-size: 0.78rem; color: var(--ink-muted); margin-top: 2px; }

@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-stat-cards { position: static; flex-direction: row; flex-wrap: wrap; }
  .ssc { flex: 1; min-width: 200px; }
}

/* Mission pullquote */
.mission-section {
  background: var(--night);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '"';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-size: 30vw;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}
.mission-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.mission-quote em { color: #ff8f6b; }
.mission-sub { font-size: 1rem; color: rgba(255,255,255,0.4); position: relative; z-index: 1; }

/* How it works detail */
.how-detail-section {
  padding: 100px 0;
  background: var(--cream);
}
.hdw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 60px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.hdw-item {
  padding: 44px 40px;
  background: var(--white);
  border-right: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  transition: background 0.2s;
}
.hdw-item:nth-child(2n) { border-right: none; }
.hdw-item:nth-child(3), .hdw-item:nth-child(4) { border-bottom: none; }
.hdw-item:hover { background: var(--cream); }
.hdw-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-lt);
  line-height: 1;
  margin-bottom: 18px;
}
.hdw-item h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.hdw-item p { font-size: 0.92rem; color: var(--ink-muted); line-height: 1.72; margin-bottom: 14px; }
.hdw-note {
  font-size: 0.82rem;
  background: var(--cream-dk);
  border-left: 3px solid var(--brand);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  color: var(--ink-muted);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .hdw-grid { grid-template-columns: 1fr; }
  .hdw-item { border-right: none; border-bottom: 1.5px solid var(--border); padding: 32px 24px; }
  .hdw-item:last-child { border-bottom: none; }
}

/* Values */
.values-section {
  padding: 100px 0;
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.value-card {
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: 0 8px 28px rgba(232,70,10,0.08); }
.value-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7; }

@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* Team */
.team-section {
  padding: 100px 0;
  background: var(--cream-dk);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.team-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,18,8,0.08); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 0 auto 16px;
}
.team-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--brand); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.65; }

@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════════════════ */

.pricing-philosophy-section {
  padding: 80px 0 60px;
  background: var(--white);
}
.pricing-phil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 48px;
}
.pricing-phil-item {
  padding: 32px 28px;
  background: var(--white);
  border-right: 1.5px solid var(--border);
  transition: background 0.15s;
}
.pricing-phil-item:last-child { border-right: none; }
.pricing-phil-item:hover { background: var(--cream); }
.pricing-phil-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.pricing-phil-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.pricing-phil-item p { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.65; }

@media (max-width: 768px) {
  .pricing-phil-grid { grid-template-columns: 1fr 1fr; }
  .pricing-phil-item:nth-child(2) { border-right: none; }
  .pricing-phil-item:nth-child(3) { border-top: 1.5px solid var(--border); }
  .pricing-phil-item:nth-child(4) { border-top: 1.5px solid var(--border); border-right: none; }
}

/* Billing toggle */
.billing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 40px 0 56px;
}
.billing-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color 0.15s;
}
.billing-label.active { color: var(--ink); }
.save-pill {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--green-lt);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}
.toggle-switch {
  width: 44px; height: 24px;
  background: var(--border);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.toggle-switch.on { background: var(--brand); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle-switch.on .toggle-knob { left: 23px; }

/* Pricing cards */
.pricing-tiers-section {
  padding: 80px 0 100px;
  background: var(--cream);
}
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 14px 48px rgba(26,18,8,0.08); }
.pricing-card-featured {
  background: var(--night);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(26,18,8,0.2);
  margin-top: -16px;
}
.pricing-card-featured:hover { transform: translateY(-8px); }

.popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}
.pricing-card-featured .pricing-tier-name { color: rgba(255,255,255,0.6); }

.pricing-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  transition: all 0.25s;
}
.pricing-card-featured .pricing-amount { color: #fff; }
.pricing-period { font-size: 0.9rem; color: var(--ink-muted); font-weight: 500; }
.pricing-card-featured .pricing-period { color: rgba(255,255,255,0.45); }
.pricing-annual-note {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
  min-height: 18px;
}
.pricing-card-featured .pricing-annual-note { color: #6effa8; }

.pricing-desc { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.6; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-card-featured .pricing-desc { color: rgba(255,255,255,0.45); border-bottom-color: rgba(255,255,255,0.07); }

.pricing-features-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pricing-features-list li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.feat-yes { color: var(--ink); }
.pricing-card-featured .feat-yes { color: rgba(255,255,255,0.85); }
.feat-no  { color: var(--ink-muted); opacity: 0.5; }
.pricing-card-featured .feat-no  { color: rgba(255,255,255,0.25); opacity: 1; }

.feat-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.feat-yes .feat-check {
  background-color: var(--green-lt);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231a6b3c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pricing-card-featured .feat-yes .feat-check {
  background-color: rgba(110,255,168,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%236effa8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.feat-no .feat-check {
  background-color: var(--cream-dk);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.pricing-cta-btn {
  display: block;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.15s;
  margin-bottom: 10px;
}
.cta-primary { background: var(--brand); color: #fff; box-shadow: 0 4px 20px rgba(232,70,10,0.28); }
.cta-primary:hover { background: var(--brand-dk); color: #fff; }
.cta-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.cta-secondary:hover { border-color: var(--ink); background: rgba(26,18,8,0.03); color: var(--ink); }
.cta-light { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.15); }
.cta-light:hover { background: rgba(255,255,255,0.18); color: #fff; }

.pricing-trial { text-align: center; font-size: 0.78rem; color: var(--ink-muted); }
.pricing-card-featured .pricing-trial { color: rgba(255,255,255,0.3); }

@media (max-width: 900px) {
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { margin-top: 0; }
}

/* Event pricing table */
.event-pricing-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.ept {
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 48px;
}
.ept-head, .ept-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
}
.ept-head {
  background: var(--cream);
  border-bottom: 1.5px solid var(--border);
  padding: 14px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.ept-row {
  padding: 18px 24px;
  border-bottom: 1px solid var(--cream-dk);
  transition: background 0.15s;
}
.ept-row:last-child { border-bottom: none; }
.ept-row:hover { background: var(--cream); }
.ept-event { display: flex; align-items: center; gap: 12px; }
.ept-event-icon { font-size: 1.4rem; }
.ept-event-name { font-weight: 600; font-size: 0.9rem; }
.ept-event-type { font-size: 0.75rem; color: var(--ink-muted); margin-top: 2px; }
.ept-cell { font-size: 0.88rem; }
.ept-main { font-weight: 700; color: var(--ink); }
.ept-note { font-size: 0.75rem; color: var(--ink-muted); margin-top: 3px; }
.ept-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}
.ept-tag-free    { background: var(--green-lt);  color: var(--green); }
.ept-tag-paid    { background: var(--brand-lt);  color: var(--brand); }
.ept-tag-member  { background: #eff6ff; color: #1d4ed8; }
.ept-tag-plus    { background: #f5f3ff; color: #6d28d9; }
.ept-footnote { font-size: 0.8rem; color: var(--ink-muted); margin-top: 16px; line-height: 1.6; }

@media (max-width: 640px) {
  .ept-head, .ept-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .ept-head > *:nth-child(4), .ept-row > *:nth-child(4) { display: none; }
}

/* FAQ */
.pricing-faq-section {
  padding: 80px 0 100px;
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--brand); }
.faq-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.faq-item p  { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7; }

@media (max-width: 640px) { .faq-grid { grid-template-columns: 1fr; } }

/* En Meetsrison */
.comparison-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.cmp-table {
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 48px;
}
.cmp-head, .cmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  align-items: center;
}
.cmp-head {
  background: var(--cream);
  border-bottom: 1.5px solid var(--border);
  padding: 14px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.cmp-head .cmp-col-hl {
  color: var(--brand);
  background: var(--brand-lt);
  border-radius: 6px;
  padding: 5px 10px;
  text-align: center;
}
.cmp-row {
  padding: 16px 24px;
  border-bottom: 1px solid var(--cream-dk);
  font-size: 0.88rem;
  transition: background 0.15s;
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row:hover { background: var(--cream); }
.cmp-feature { font-weight: 600; font-size: 0.88rem; }
.cmp-hl { background: rgba(232,70,10,0.04); font-weight: 600; text-align: center; color: var(--ink); }
.cmp-yes { color: var(--green); font-weight: 600; }
.cmp-no  { color: var(--ink-muted); }

@media (max-width: 640px) {
  .cmp-head, .cmp-row { grid-template-columns: 1.5fr 1.2fr 1fr; }
  .cmp-head > *:nth-child(4), .cmp-row > *:nth-child(4) { display: none; }
}