/* ==========================================================================
   Andsocialmedia Design System - BOBENTO Edition 2026
   V 2.0 Visual Identity System
   Font: Bricolage Grotesque + Plus Jakarta Sans
   Palette: Vibrant Chartreuse Lime (#E4F079), Deep Obsidian (#18181A), Soft Concrete (#F4F4F0)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* BOBENTO 2026 Core Palette */
  --lime: #E4F079;
  --lime-2: #D4E262;
  --lime-soft: #F5FAC9;
  --lime-tint: #EBF7BE;
  --lime-dark: #272E03;

  --dark: #18181A;
  --dark-2: #231F20;
  --dark-3: #2A2627;
  --dark-card: #201D1E;
  --dark-card-hover: #292526;

  --ink: #111113;
  --ink-2: #2E2E33;
  --muted: #64646E;
  --muted-2: #92929D;

  --line: #E2E2DC;
  --line-2: #D0D0C8;
  --line-dark: rgba(255, 255, 255, 0.10);
  --line-dark-hover: rgba(228, 240, 121, 0.35);

  --panel: #F4F4F0;
  --panel-alt: #EAEAE4;
  --white: #FFFFFF;

  --success: #10B981;
  --success-soft: #ECFDF5;
  --danger: #EF4444;
  --danger-soft: #FEF2F2;

  --shadow-sm: 0 4px 12px rgba(24, 24, 26, 0.04);
  --shadow: 0 12px 32px rgba(24, 24, 26, 0.06);
  --shadow-hover: 0 20px 48px rgba(24, 24, 26, 0.10);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.35);

  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --max: 1220px;
  --nav-h: 76px;

  --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Aliases */
  --bg: var(--white);
  --bg-card: var(--white);
  --bg-soft: var(--panel);
  --bg-alt: var(--panel);
  --text: var(--ink);
  --text-mid: var(--ink-2);
  --text-muted: var(--muted);
  --accent: var(--dark);
  --primary: var(--dark);
  --border: var(--line);
  --border-strong: var(--line-2);
  --accent-soft: var(--lime-soft);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 18px);
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

p { margin: 0 0 1em; line-height: 1.6; }

:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.muted { color: var(--muted); }
.lime { color: var(--lime); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 400;
  background: var(--dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  font-weight: 700;
  clip-path: inset(50%);
  opacity: 0;
}
.skip-link:focus { clip-path: none; opacity: 1; }

/* --- Signature BOBENTO Pills & Badges -------------------------------------- */

.eyebrow, .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--lime);
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: fit-content;
}

.eyebrow.dark, .pill-badge.dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.eyebrow.ghost, .pill-badge.ghost {
  background: var(--panel);
  color: var(--dark);
  border: 1px solid var(--line);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

.badge-pulse {
  position: relative;
}
.badge-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
  animation: badgePing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes badgePing {
  0% { transform: scale(0.9); opacity: 0.7; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

/* --- Buttons & Interactive Elements --------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary, .btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(24, 24, 26, 0.18);
}
.btn-primary:hover, .btn-dark:hover {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(228, 240, 121, 0.4);
  transform: translateY(-2px);
}

.btn-lime {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(228, 240, 121, 0.3);
}
.btn-lime:hover {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(24, 24, 26, 0.25);
  transform: translateY(-2px);
}

.btn-ghost, .btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-ghost:hover, .btn-outline:hover {
  background: var(--panel);
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--lime);
  color: var(--lime);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block { width: 100%; }

.btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.btn:hover .btn-ico {
  transform: translateX(4px);
}

.circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.circle-arrow.lime {
  background: var(--lime);
  color: var(--dark);
}
.circle-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

/* --- Header & Navigation -------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all 0.25s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--lime);
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 8px rgba(228, 240, 121, 0.4);
}

.logo-word {
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a, .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
}

.nav-links a:hover, .nav-trigger:hover, .nav-links a.active {
  color: var(--dark);
  background: var(--panel);
}

.nav-trigger .chev {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}
.nav-drop:hover .nav-trigger .chev,
.nav-trigger[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

/* Nav Dropdown */
.nav-drop { position: relative; }
.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 16px;
  min-width: 480px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 250;
}
.nav-drop:hover .nav-menu,
.nav-trigger[aria-expanded="true"] + .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-menu-item {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.18s ease;
}
.nav-menu-item:hover {
  background: var(--panel);
}
.nav-menu-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}
.nav-menu-item:hover .nav-menu-icon {
  background: var(--lime);
}
.nav-menu-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
}
.nav-menu-text small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: var(--panel);
  border: 1px solid var(--line);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.nav-toggle-bars span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 180;
}

.nav-drawer-cta { display: none; }

/* --- BOBENTO Bento Cards & Grids ----------------------------------------- */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--dark);
}

.bento-card.dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bento-card.dark h1, .bento-card.dark h2, .bento-card.dark h3, .bento-card.dark h4 {
  color: var(--white);
}
.bento-card.dark .muted {
  color: var(--muted-2);
}
.bento-card.dark:hover {
  border-color: var(--lime);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.bento-card.lime {
  background: var(--lime);
  color: var(--dark);
  border: 1px solid var(--lime-2);
}
.bento-card.lime h1, .bento-card.lime h2, .bento-card.lime h3, .bento-card.lime h4 {
  color: var(--dark);
}
.bento-card.lime .muted {
  color: #384004;
}
.bento-card.lime:hover {
  box-shadow: 0 20px 48px rgba(228, 240, 121, 0.45);
}

.bento-card.concrete {
  background: var(--panel);
  border: 1px solid var(--line);
}

.col-12 { grid-column: span 12; }
.col-8  { grid-column: span 8; }
.col-7  { grid-column: span 7; }
.col-6  { grid-column: span 6; }
.col-5  { grid-column: span 5; }
.col-4  { grid-column: span 4; }
.col-3  { grid-column: span 3; }

/* Bento Header Tabs & Meta */
.bento-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}

.bento-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* Subtle decorative waves */
.bento-waves {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 240px;
  height: 240px;
  opacity: 0.15;
  pointer-events: none;
}

/* --- Hero Section --------------------------------------------------------- */

.hero {
  padding: 44px 0 64px;
  background: radial-gradient(circle at 85% 15%, rgba(228, 240, 121, 0.25) 0%, rgba(244, 244, 240, 0.6) 45%, var(--white) 80%);
}

.hero-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.hero-main {
  background: var(--lime);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 48px rgba(228, 240, 121, 0.28);
  border: 1px solid var(--lime-2);
}

.hero-main h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 20px 0 16px;
  color: var(--dark);
}

.hero-main p {
  font-size: 17px;
  line-height: 1.55;
  max-width: 520px;
  color: #2F3308;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.console-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-dark);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.console-header h3 {
  font-size: 18px;
  color: var(--white);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.metric-box {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color 0.2s ease;
}
.metric-box:hover {
  border-color: var(--lime);
}
.metric-box small {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.metric-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.03em;
}

.hero-quick-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-quick-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  color: var(--white);
}
.hero-quick-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--lime);
  transform: translateX(4px);
}
.hero-quick-item strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
.hero-quick-item span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--lime);
  font-size: 14px;
}

/* Secondary Hero Bento Card */
.hero-subcard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.proof-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.06);
  color: var(--dark);
}
.proof-tag svg {
  width: 15px;
  height: 15px;
}

/* --- Section Formatting --------------------------------------------------- */

.section {
  padding: 80px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-title h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: -0.04em;
  margin: 12px 0 8px;
}
.section-title p {
  color: var(--muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0;
}

/* --- Platform Filter & Tabs ----------------------------------------------- */

.filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 32px;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--panel);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.filter-chip:hover {
  background: var(--white);
  border-color: var(--dark);
  color: var(--dark);
}
.filter-chip.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* --- Package & Pricing Cards ---------------------------------------------- */

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-4px);
  border-color: var(--dark);
  box-shadow: var(--shadow-hover);
}

.pkg-card.highlight {
  background: var(--dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}
.pkg-card.highlight h3, .pkg-card.highlight h4 {
  color: var(--white);
}
.pkg-card.highlight .pkg-price {
  color: var(--lime);
}
.pkg-card.highlight:hover {
  border-color: var(--lime);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.pkg-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pkg-qty {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 4px 0 8px;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  margin: 12px 0 20px;
}

.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}
.pkg-card.highlight .pkg-features li svg {
  color: var(--lime);
}

/* --- Process / Value Bento Section ---------------------------------------- */

.process-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: all 0.25s ease;
}
.process-card:hover {
  background: var(--white);
  border-color: var(--dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.process-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  opacity: 0.3;
  margin-bottom: 24px;
}
.process-card:hover .process-num {
  opacity: 1;
  color: var(--dark);
}
.process-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.process-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

/* --- FAQ Accordion -------------------------------------------------------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item[open] {
  background: var(--white);
  border-color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }

.faq-summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-summary::after {
  content: '−';
}

.faq-body {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* --- CTA Banner ----------------------------------------------------------- */

.cta-bento {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-bento h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-bento p {
  color: var(--muted-2);
  font-size: 17px;
  max-width: 520px;
  margin: 0;
}

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  color: var(--ink);
}

.footer-bento {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 16px 0 24px;
  max-width: 320px;
}

.footer-pay-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-pay-pill {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}

.footer-col h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: var(--dark);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.18s ease;
}
.footer-col a:hover {
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a:hover {
  color: var(--dark);
}

/* --- Checkout / Order Modal ------------------------------------------------ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 24, 26, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-backdrop.is-open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--panel);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 18px;
  transition: background 0.18s ease;
}
.modal-close:hover {
  background: var(--line);
}

.modal-header {
  margin-bottom: 24px;
}
.modal-header h3 {
  font-size: 22px;
}
.modal-header p {
  color: var(--muted);
  font-size: 14px;
  margin: 4px 0 0;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--panel);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--dark);
  transition: all 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(24, 24, 26, 0.08);
}

.qr-box {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px dashed var(--line-2);
  margin-bottom: 20px;
}
.qr-box img {
  margin: auto;
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

/* --- Responsive Breakpoints ----------------------------------------------- */

@media (max-width: 991px) {
  .hero-bento {
    grid-template-columns: 1fr;
  }
  .footer-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-bento {
    flex-direction: column;
    text-align: center;
    padding: 44px 32px;
  }
  .col-8, .col-7, .col-6, .col-5, .col-4 {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    gap: 12px;
    z-index: 210;
    overflow-y: auto;
  }
  .site-header.is-open .nav-drawer-cta {
    display: block;
    margin-top: 16px;
  }
  .hero-main {
    padding: 36px 24px;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .footer-bento {
    grid-template-columns: 1fr;
  }
}
