/* ============================================================
   NOW PHOTO BOOTH — WordPress Theme CSS
   theme.css — all pages consolidated
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --color-brand:        #1a1a1a;
  --color-brand-light:  #2d2d2d;
  --color-accent:       #c9a96e;
  --color-accent-light: #e0c898;
  --color-bg:           #ffffff;
  --color-bg-warm:      #faf9f7;
  --color-bg-dark:      #111111;
  --color-text:         #1a1a1a;
  --color-text-muted:   #6b7280;
  --color-text-light:   #9ca3af;
  --color-border:       #e5e7eb;
  --color-border-light: #f3f4f6;
  --color-success:      #16a34a;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.09), 0 10px 10px rgba(0,0,0,.04);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --nav-h: 72px;
  --container: 1200px;
  --section-py: clamp(64px, 8vw, 112px);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea, button { font: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-text);
  flex-shrink: 0;
}
.nav-logo span { color: var(--color-accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--color-text);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--color-brand-light); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px clamp(16px, 4vw, 48px);
  z-index: 99;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 16px; }
.mobile-menu .nav-cta {
  display: inline-flex;
  padding: 14px 24px;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding-block: var(--section-py);
  background: var(--color-bg);
}
.section-warm { background: var(--color-bg-warm); }
.section-dark  { background: var(--color-bg-dark); color: #fff; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  max-width: 36ch;
}
.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-bottom: 56px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--color-bg-warm);
  padding-block: clamp(64px, 8vw, 96px) clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.page-hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201,169,110,.12);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -1px;
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-inline: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: var(--color-text);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--color-brand-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: transparent;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-ghost:hover { border-color: var(--color-text); background: rgba(0,0,0,.03); transform: translateY(-1px); }

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: #fff;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: transform .15s, box-shadow .2s;
}
.btn-primary-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,.3);
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,.7); color: #fff; transform: translateY(-1px); }

/* ============================================================
   CTA SECTION (dark)
   ============================================================ */
.cta-section {
  background: var(--color-bg-dark);
  padding-block: clamp(80px, 10vw, 128px);
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,.65);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,.5);
  padding-block: 64px 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.footer-brand-name span { color: var(--color-accent); }
.footer-tagline {
  color: rgba(255,255,255,.45);
  max-width: 28ch;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  transition: border-color .2s, color .2s;
  text-transform: uppercase;
}
.footer-social a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.45);
  font-size: 14px;
  transition: color .2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-note { font-size: 13px; color: rgba(255,255,255,.3); }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  background: var(--color-bg-warm);
  padding-block: clamp(80px, 10vw, 128px) clamp(64px, 8vw, 96px);
  text-align: center;
  overflow: hidden;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201,169,110,.12);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
}
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.img-card.center {
  transform: translateY(-24px);
  box-shadow: var(--shadow-xl);
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── TRUST BAR (homepage stat version) ── */
.trust-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding-block: 24px;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-inline: 32px;
}
.trust-item-num {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-text);
}
.trust-item-label {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ── FEATURE SPLIT (homepage) ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.feature-text .section-heading { max-width: 22ch; }
.feature-text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 1.0625rem;
}
.feature-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── EVENT CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder span {
  font-size: 13px;
  color: var(--color-text-light);
  text-transform: lowercase;
}
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.card-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── HOW IT WORKS STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { text-align: center; }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--color-text-muted); max-width: 28ch; margin-inline: auto; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; flex-direction: column; gap: 3px; }
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 13px; color: var(--color-text-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 2/3;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-copy .section-heading { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 24px; }
.story-copy p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin-bottom: 16px;
}

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.value-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text);
}
.value-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; }

/* ── FEATURE ROWS ── */
.features-wrap { display: flex; flex-direction: column; gap: clamp(64px, 8vw, 96px); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
}
.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy .section-heading { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }
.feature-copy p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin-bottom: 20px;
}
.feature-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.chip {
  padding: 6px 14px;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================================
   THE BOOTHS PAGE
   ============================================================ */
.booths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.booth-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.booth-card-photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.booth-card-body {
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.booth-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.booth-card h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.booth-card-lead {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.booth-card-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 24px;
}
.booth-highlights { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.booth-highlights li { display: flex; gap: 12px; font-size: 14px; line-height: 1.55; color: var(--color-text-muted); }
.hi-dot {
  color: var(--color-success);
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
  flex-shrink: 0;
}
.booth-steps { display: flex; flex-direction: column; gap: 10px; }
.booth-step { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-text-muted); }
.step-num-sm {
  width: 22px;
  height: 22px;
  background: var(--color-text);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.booth-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.booth-price-num { font-size: 2rem; font-weight: 800; letter-spacing: -1px; }
.booth-price-detail { font-size: 13px; color: var(--color-text-muted); }
.booth-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: var(--color-text);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  transition: background .2s, transform .15s;
  text-align: center;
}
.booth-card-cta:hover { background: var(--color-brand-light); transform: translateY(-1px); }
.booth-card-cta-secondary {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 10px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  transition: border-color .2s, color .2s;
}
.booth-card-cta-secondary:hover { border-color: var(--color-text); color: var(--color-text); }

/* ── COMPARISON ── */
.compare-section {
  background: var(--color-bg-warm);
  padding-block: var(--section-py);
}
.compare-section .section-sub { margin-bottom: 40px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 48px;
}
.compare-table th {
  text-align: left;
  padding: 14px 20px;
  background: var(--color-text);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.compare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  vertical-align: top;
}
.compare-table td:first-child { color: var(--color-text); font-weight: 500; }
.compare-table tr:nth-child(even) td { background: rgba(0,0,0,.015); }
.compare-table td.yes { color: var(--color-success); font-weight: 600; }
.compare-table td.no  { color: var(--color-text-light); }
.compare-rec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.rec-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.rec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.rec-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 10px; }
.rec-desc { font-size: 14px; color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.65; }

/* ============================================================
   PACKAGES PAGE
   ============================================================ */
.packages-hero-wrap {
  text-align: center;
}
.booth-tabs {
  display: inline-flex;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
  margin-top: 32px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: background .2s, color .2s, box-shadow .2s;
  cursor: pointer;
}
.tab-btn.active {
  background: var(--color-text);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.pricing-section { padding-block: var(--section-py); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin-inline: auto;
}
.pkg-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.pkg-card.featured {
  border-color: var(--color-text);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.pkg-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pkg-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.pkg-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.pkg-price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 4px;
  line-height: 1;
}
.pkg-price span { font-size: 1rem; font-weight: 500; color: var(--color-text-muted); }
.pkg-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.pkg-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pkg-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.pkg-feat-dot {
  color: var(--color-success);
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
  flex-shrink: 0;
}
.pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: var(--color-text);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background .2s, transform .15s;
  text-align: center;
}
.pkg-cta:hover { background: var(--color-brand-light); transform: translateY(-1px); }
.pkg-cta.ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.pkg-cta.ghost:hover { border-color: var(--color-text); background: rgba(0,0,0,.03); }

/* ── ADDONS ── */
.addons-section {
  background: var(--color-bg-warm);
  padding-block: var(--section-py);
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.addon-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}
.addon-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.addon-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.addon-price { font-size: 13px; font-weight: 600; color: var(--color-accent); margin-bottom: 8px; }
.addon-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.55; }

/* ── FAQ ── */
.faq-section { padding-block: var(--section-py); }
.faq-section .section-sub { margin-bottom: 40px; }
.faq-list { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--color-text);
  transition: color .2s;
}
.faq-q:hover { color: var(--color-text-muted); }
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: border-color .2s, transform .25s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--color-text);
  color: var(--color-text);
}
.faq-a {
  display: none;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  padding-bottom: 20px;
}
.faq-item.open .faq-a { display: block; }

/* ── PACKAGES CLOSING CTA (inline card) ── */
.pkg-closing-cta {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-block: var(--section-py);
}
.pkg-closing-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.pkg-closing-cta p { font-size: 15px; color: var(--color-text-muted); max-width: 44ch; }
.pkg-closing-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Trust pills bar — contact-specific (avoid conflict with homepage .trust-bar) */
.contact-trust-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding-block: 14px;
}
.contact-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}
.trust-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  flex-shrink: 0;
}

/* Contact layout */
.contact-section { padding-block: var(--section-py); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Form card */
.form-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
}
.form-card-header { margin-bottom: 28px; }
.form-card-header h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 8px; }
.form-card-header p { font-size: 14px; color: var(--color-text-muted); }

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
.form-success.visible { display: flex; }
.success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(22,163,74,.12);
  color: var(--color-success);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.form-success h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--color-text-muted); max-width: 36ch; }

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.span-2 { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}
.req { color: #ef4444; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-text);
  box-shadow: 0 0 0 3px rgba(26,26,26,.08);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #ef4444; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 38px;
  cursor: pointer;
}
.err-msg {
  font-size: 12px;
  color: #ef4444;
  display: none;
}
.err-msg.visible { display: block; }

/* Booth choice radio */
.booth-choice-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}
.booth-choice {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .2s, background .2s;
}
.booth-choice input[type="radio"] { display: none; }
.booth-choice:hover { border-color: var(--color-text-muted); }
.booth-choice.chosen {
  border-color: var(--color-text);
  background: rgba(26,26,26,.04);
}
.booth-choice-name { font-size: 13px; font-weight: 700; }
.booth-choice-sub { font-size: 12px; color: var(--color-text-muted); }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--color-text);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-md);
  margin-bottom: 12px;
}
.form-submit:hover { background: var(--color-brand-light); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.form-submit:active { transform: none; }
.form-note { font-size: 12px; color: var(--color-text-light); text-align: center; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: calc(var(--nav-h) + 20px); }
.sidebar-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-section-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.sidebar-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.sidebar-row:last-child { margin-bottom: 0; }
.sidebar-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text-muted);
}
.sidebar-info { display: flex; flex-direction: column; gap: 2px; }
.sidebar-caption { font-size: 14px; font-weight: 600; }
.sidebar-caption a { color: var(--color-text); transition: color .2s; }
.sidebar-caption a:hover { color: var(--color-accent); }
.sidebar-caption-muted { font-size: 13px; color: var(--color-text-muted); }

/* Next steps */
.next-steps { display: flex; flex-direction: column; gap: 12px; }
.next-step { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--color-text-muted); line-height: 1.55; }
.next-num {
  width: 22px;
  height: 22px;
  background: var(--color-text);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Sidebar social */
.sidebar-social { display: flex; gap: 8px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--color-text); color: var(--color-text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── 1080px ── */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .compare-rec { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .booths-grid { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split .feature-image { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-image-grid { grid-template-columns: 1fr 1fr; }
  .hero-image-grid .img-card:last-child { display: none; }
  .img-card.center { transform: none; }

  /* Trust bar */
  .trust-bar-inner { gap: 0; flex-wrap: wrap; justify-content: center; }
  .trust-item { padding: 12px 20px; }
  .trust-divider { display: none; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* About */
  .story-split { grid-template-columns: 1fr; }
  .story-img { order: -1; aspect-ratio: 4/3; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .feature-img-wrap { aspect-ratio: 4/3; }

  /* Booths */
  .compare-table { font-size: 13px; }
  .compare-table th,
  .compare-table td { padding: 10px 12px; }

  /* Contact */
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: auto; }
  .booth-choice-group { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Packages */
  .addons-grid { grid-template-columns: 1fr; }
  .pkg-closing-cta { flex-direction: column; text-align: center; }
  .pkg-closing-cta-actions { justify-content: center; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .hero-image-grid { display: none; }
  .contact-trust-bar-inner { flex-direction: column; align-items: stretch; }
  .trust-pill { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .booth-tabs { flex-direction: column; width: 100%; }
  .tab-btn { text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   POST-DEPLOY FIXES & CUSTOMIZATIONS
   ═══════════════════════════════════════════════════════════════ */

:root {
	--color-brand:        #0075de;
	--color-brand-light:  #005bab;
	--color-accent:       #097fe8;
	--color-accent-light: #f2f9ff;
}

.nav-mobile {
	display: none;
}
@media (max-width: 768px) {
	.nav-mobile.open {
		display: block;
		position: fixed;
		top: var(--nav-h, 72px);
		left: 0;
		right: 0;
		background: #ffffff;
		padding: 24px;
		box-shadow: 0 8px 24px rgba(0,0,0,0.08);
		z-index: 999;
	}
	.nav-mobile a {
		display: block;
		padding: 12px 0;
		color: var(--color-text);
		text-decoration: none;
		border-bottom: 1px solid var(--color-border-light);
	}
	.nav-mobile a.nav-cta {
		margin-top: 16px;
		border: none;
		text-align: center;
		background: var(--color-brand);
		color: #ffffff;
		border-radius: var(--radius-full, 9999px);
		padding: 14px 20px;
	}
}

.footer {
	background: #1a1a1a;
	color: #ffffff;
	padding: 64px 0 32px;
	margin-top: 80px;
}
.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}
@media (max-width: 768px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
.footer-brand img {
	margin-bottom: 16px;
}
.footer-desc {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.6;
	margin: 16px 0 24px;
	max-width: 380px;
}
.footer-col h4 {
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
}
.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-col ul li {
	margin-bottom: 10px;
}
.footer-col ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}
.footer-col ul li a:hover {
	color: #ffffff;
}
.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}
.footer .social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: background 0.2s ease;
}
.footer .social-link:hover {
	background: var(--color-brand);
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.footer-copy {
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
}


/* ═══════════════════════════════════════════════════════════════
   ADD-ONS SECTION + FAQ ENHANCEMENTS
   Match original Claude design reference (light gray wrap, white cards, blue prices)
   ═══════════════════════════════════════════════════════════════ */

/* The light gray rounded container wrapping add-ons header + grid */
.addons-wrap {
	background: #f6f6f4;
	border: 1px solid #e8e6e1;
	border-radius: 16px;
	padding: 32px;
	margin-top: 48px;
}
.addons-wrap > h3,
.addons-wrap .addons-heading {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
}
.addons-wrap > p,
.addons-wrap .addons-sub {
	color: #6b7280;
	font-size: 14px;
	margin: 0 0 24px;
}

/* 3-column grid of add-on cards */
.addons-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
@media (max-width: 768px) {
	.addons-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* Individual white add-on cards */
.addon-item {
	background: #ffffff;
	border: 1px solid #e8e6e1;
	border-radius: 10px;
	padding: 16px 18px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.addon-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}
.addon-item h4,
.addon-item .addon-name {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 6px;
}
.addon-item .addon-price,
.addon-item p:nth-of-type(1) {
	color: var(--color-brand);
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 6px;
}
.addon-item .addon-desc,
.addon-item p:nth-of-type(2) {
	color: #6b7280;
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
}

/* FAQ section enhancements */
.faq-section {
	padding: 80px 0;
	background: #fafaf9;
}
.faq-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq-item {
	background: #ffffff;
	border: 1px solid #e8e6e1;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}
.faq-item:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.faq-item .faq-btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 24px;
	background: transparent;
	border: none;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	cursor: pointer;
	font-family: inherit;
}
.faq-item .faq-icon {
	display: inline-block;
	font-size: 10px;
	color: #9ca3af;
	transition: transform 0.2s ease;
	flex-shrink: 0;
	margin-left: 16px;
}
.faq-item.open .faq-icon {
	transform: rotate(180deg);
}
.faq-item .faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 24px;
	color: #4b5563;
	font-size: 15px;
	line-height: 1.6;
	transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
	max-height: 500px;
	padding: 0 24px 20px;
}


/* ═══════════════════════════════════════════════════════════════
   PACKAGE CARD CTA BUTTONS — was rendering as plain text
   Class: .pkg-cta-primary inside .pkg-cta-row inside .pkg-card
   ═══════════════════════════════════════════════════════════════ */
.pkg-cta-row {
	margin-top: 24px;
	display: flex;
}
.pkg-cta-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 24px;
	background: var(--color-brand);
	color: #ffffff !important;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border-radius: 9999px;
	width: 100%;
	text-align: center;
	transition: background 0.2s ease, transform 0.2s ease;
}
.pkg-cta-primary:hover {
	background: var(--color-brand-light);
	transform: translateY(-1px);
}
.pkg-cta-primary:focus-visible {
	outline: 2px solid var(--color-brand);
	outline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════════
   FAQ CHEVRON — refined circle with properly centered triangle
   Overrides earlier rules via descendant specificity (.faq-list .faq-item .faq-icon)
   The triangle was rendering off-center because original CSS used display:block
   instead of flex alignment. This version uses inline-flex for true centering.
   ═══════════════════════════════════════════════════════════════ */
.faq-list .faq-item .faq-icon {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	background: #ffffff;
	color: #6b7280;
	font-size: 11px;
	line-height: 1;
	flex-shrink: 0;
	margin-left: 16px;
	padding: 0;
	transition: transform 0.3s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.faq-list .faq-item:hover .faq-icon {
	border-color: #d1d5db;
	color: #4b5563;
	background: #fafafa;
}
.faq-list .faq-item.open .faq-icon {
	background: var(--color-brand);
	border-color: var(--color-brand);
	color: #ffffff;
	transform: rotate(180deg);
}


/* logo image size fix */
.nav-logo img {
	height: 80px;
	width: auto;
	max-width: 100%;
	display: block;
}
@media (max-width: 480px) {
	.nav-logo img { height: 64px; }
}


/* featured add-on (Keychain Station) */
.addon-featured {
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, var(--color-accent-light, #f2f9ff) 100%);
	border: 2px solid var(--color-brand);
	border-radius: 18px;
	padding: 28px 32px;
	margin-bottom: 28px;
	display: grid;
	grid-template-columns: 170px 1fr auto;
	gap: 28px;
	align-items: center;
	box-shadow: 0 10px 32px rgba(0, 117, 222, 0.10);
	overflow: hidden;
}
.addon-featured-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: var(--color-brand);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(0, 117, 222, 0.25);
}
.addon-featured-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.addon-featured-visual svg {
	width: 100%;
	max-width: 160px;
	height: auto;
	display: block;
}
.addon-featured-content h4 {
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 4px;
	letter-spacing: -0.5px;
	color: var(--color-text);
}
.addon-featured-tagline {
	color: var(--color-brand);
	font-weight: 600;
	font-size: 15px;
	margin: 0 0 12px;
}
.addon-featured-desc {
	color: var(--color-text-soft, #4b5563);
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 18px;
}
.addon-featured-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 18px;
}
.addon-featured-features li {
	position: relative;
	padding-left: 22px;
	font-size: 14px;
	line-height: 1.45;
	color: var(--color-text);
}
.addon-featured-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--color-brand);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7l3 3 5-6' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-size: 14px 14px;
	background-repeat: no-repeat;
	background-position: center;
}
.addon-featured-cta-area {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.addon-featured-price {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-soft, #4b5563);
	text-align: center;
	letter-spacing: 0.02em;
}
.addon-featured-cta {
	display: inline-block;
	background: var(--color-brand);
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
	box-shadow: 0 4px 14px rgba(0, 117, 222, 0.28);
}
.addon-featured-cta:hover,
.addon-featured-cta:focus-visible {
	background: var(--color-brand-light, #005bab);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(0, 117, 222, 0.35);
}
@media (max-width: 900px) {
	.addon-featured {
		grid-template-columns: 140px 1fr;
		gap: 22px;
		padding: 24px;
	}
	.addon-featured-cta-area {
		grid-column: 1 / -1;
		flex-direction: row;
		justify-content: flex-start;
		gap: 16px;
	}
}
@media (max-width: 600px) {
	.addon-featured {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 28px 20px 24px;
	}
	.addon-featured-badge {
		position: static;
		display: inline-block;
		margin-bottom: 12px;
	}
	.addon-featured-visual svg { max-width: 130px; }
	.addon-featured-content h4 { font-size: 22px; }
	.addon-featured-features {
		grid-template-columns: 1fr;
		text-align: left;
		max-width: 320px;
		margin: 0 auto;
	}
	.addon-featured-cta-area {
		flex-direction: column;
		align-items: center;
	}
}


/* footer flush + logo size fix */
.footer {
	margin-top: 0 !important;
}
.footer .footer-brand img {
	height: 80px;
	width: auto;
	max-width: 100%;
	display: block;
	margin-bottom: 16px;
	background: #ffffff;
	padding: 10px 16px;
	border-radius: 14px;
	box-sizing: content-box;
}
@media (max-width: 600px) {
	.footer .footer-brand img { height: 64px; }
}
