/* ============================================================
   LaunchReady.store — TheSetupCo-style Layout
   Palette: Sageberry Bliss (Lavender · Sage · Beige)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Sageberry Bliss */
  --lavender:        #B296CA;
  --lavender-lt:     #CEB7D7;
  --lavender-pale:   #EDE4F4;
  --sage:            #81987F;
  --sage-lt:         #ACB9AD;
  --sage-pale:       #D8E0D8;
  --beige:           #F5F2EC;   /* main bg — matches thesetupco's #F7F5F3 */
  --beige-mid:       #EAE6DE;
  --beige-dark:      #D5D0C6;
  --white:           #FFFFFF;

  /* Dark section */
  --dark:            #141414;
  --dark-text:       rgba(255,255,255,0.75);
  --dark-muted:      rgba(255,255,255,0.35);

  /* ZOZ (footer badge only) */
  --zoz-orange:      #FF5500;
  --zoz-glow:        rgba(255,85,0,0.3);

  /* Text */
  --text:            #1A1814;
  --text-sec:        #6B6660;
  --text-muted:      #9A9390;

  /* Fonts — thesetupco uses Outfit 900 for headings */
  --font-head:       'Outfit', sans-serif;
  --font-body:       'Inter', sans-serif;

  --max-w:           1200px;
  --r:               14px;
  --r-sm:            8px;
  --ease:            0.3s ease;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--ease); }
img { display: block; max-width: 100%; }

/* ─── Container ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-solid {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 2px 12px rgba(129,152,127,0.35);
}
.btn-solid:hover {
  background: #6d8169;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(129,152,127,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--beige);
}
.btn-dark-solid {
  background: var(--lavender);
  color: #fff;
  box-shadow: 0 2px 12px rgba(178,150,202,0.4);
}
.btn-dark-solid:hover {
  background: var(--lavender-lt);
  transform: translateY(-2px);
}
.btn-dark-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-dark-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}
.btn-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--text);
  color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
}
.btn-arrow:hover {
  background: var(--sage);
  transform: scale(1.08);
}

/* ─── Nav / Header ───────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 200;
  padding: 18px 0;
  background: rgba(245, 242, 236, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo .l { color: var(--lavender); }
.nav-logo .r { color: var(--sage); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: auto;
  margin-left: 48px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-sec);
}
.nav-links a:hover { color: var(--text); }

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

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid rgba(129,152,127,0.15);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  gap: 4px;
}
.mobile-menu nav a {
  padding: 14px 16px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--r-sm);
  transition: var(--ease);
}
.mobile-menu nav a:hover {
  background: var(--beige);
  color: var(--sage);
}

/* ─── Category Tabs ──────────────────────────────────────── */
.category-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 48px 0 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.category-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  background: var(--white);
  border: 2px solid rgba(129,152,127,0.15);
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
}
.category-tab:hover {
  border-color: var(--sage-lt);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(129,152,127,0.1);
}
.category-tab.active {
  border-color: var(--sage);
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--lavender-pale) 100%);
  box-shadow: 0 4px 20px rgba(129,152,127,0.15);
}
.tab-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tab-text strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
.tab-text span {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.4;
}

.category-content {
  display: none;
}
.category-content.active {
  display: block;
}
.category-intro {
  text-align: center;
  margin-bottom: 48px;
}
.category-intro h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.category-intro p {
  font-size: 1rem;
  color: var(--text-sec);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0 100px;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

/* Subtle background gradient — matches thesetupco's barely-there radial */
#hero::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(206,183,215,0.28) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(178,150,202,0.12);
  border: 1px solid rgba(178,150,202,0.3);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lavender);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* THE BIG HEADING — thesetupco goes ~96px Outfit 900 */
.hero-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.hero-heading .accent { color: var(--lavender); }
.hero-heading .sage   { color: var(--sage); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-sec);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-trust {
  margin-top: 28px;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ─── Section Base ───────────────────────────────────────── */
section {
  padding: 100px 0;
}
.section-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-sec);
  max-width: 480px;
  line-height: 1.7;
}

/* ─── How It Works ───────────────────────────────────────── */
#how {
  background: var(--white);
}
.how-header {
  margin-bottom: 64px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--beige-dark);
  border: 1px solid var(--beige-dark);
  border-radius: var(--r);
  overflow: hidden;
}
.how-step {
  position: relative;
  background: var(--white);
  padding: 48px 36px 40px;
  overflow: hidden;
}
.step-number {
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 7rem;
  line-height: 1;
  color: var(--beige-mid);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--lavender-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.how-step:nth-child(even) .step-icon { background: var(--sage-pale); }
.step-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ─── Launch Packages (Product Card Grid) ────────────────── */
#packages {
  background: var(--beige);
}
.packages-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.pkg-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.pkg-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.pkg-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.pkg-desc {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.pkg-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}
.pkg-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
}

/* ─── Custom Build Split ─────────────────────────────────── */
#custom {
  background: var(--white);
}
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.custom-text .section-sub { margin-bottom: 32px; }
.custom-text .section-heading { margin-bottom: 16px; }
.custom-examples {
  background: var(--beige);
  border-left: 3px solid var(--sage);
  padding: 20px 24px;
  border-radius: var(--r-sm);
  margin-top: 24px;
}
.custom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.custom-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.custom-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 600;
}
.mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mini-feat {
  background: var(--beige);
  border-radius: var(--r-sm);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--beige-mid);
  transition: var(--ease);
}
.mini-feat:hover {
  border-color: var(--lavender-lt);
  background: var(--lavender-pale);
}
.mf-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1.3;
}
.mf-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.mf-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── Dark / Value Section ───────────────────────────────── */
#value {
  background: var(--dark);
  padding: 120px 0;
}
.value-top {
  text-align: center;
  margin-bottom: 72px;
}
.value-top .section-tag { color: var(--lavender-lt); }
.value-top .section-heading { color: #fff; }
.value-top .section-sub { color: var(--dark-text); margin: 0 auto; }
.value-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r);
  overflow: hidden;
}
.value-col {
  background: var(--dark);
  padding: 44px 36px;
  text-align: center;
  transition: var(--ease);
}
.value-col:hover { background: rgba(255,255,255,0.04); }
.value-col-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.value-col h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}
.value-col p {
  font-size: 0.88rem;
  color: var(--dark-text);
  line-height: 1.7;
}

/* ─── Testimonials / Trust ───────────────────────────────── */
#trust {
  background: var(--beige);
}
.trust-header { text-align: center; margin-bottom: 56px; }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r);
  padding: 28px;
}
.testi-stars {
  color: var(--lavender);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 0.92rem;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.testi-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── CTA / Waitlist ─────────────────────────────────────── */
#cta {
  background: var(--white);
  text-align: center;
}
#cta .section-heading { max-width: 600px; margin: 0 auto 16px; }
#cta .section-sub { margin: 0 auto 44px; }
.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.cta-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--beige-dark);
  background: var(--beige);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: var(--ease);
}
.cta-input:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px rgba(178,150,202,0.15);
}
.cta-input::placeholder { color: var(--text-muted); }

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 64px 0 32px;
  color: var(--dark-muted);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.footer-logo .l { color: var(--lavender-lt); }
.footer-logo .r { color: var(--sage-lt); }
.footer-tagline {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 11px;
  transition: var(--ease);
}
.footer-col a:hover { color: var(--lavender-lt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem;
}

/* ZOZ Badge */
.zoz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,85,0,0.1);
  border: 1px solid rgba(255,85,0,0.25);
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--zoz-orange);
  transition: var(--ease);
}
.zoz-badge:hover {
  background: rgba(255,85,0,0.18);
  box-shadow: 0 4px 16px var(--zoz-glow);
}
.zoz-badge-icon {
  width: 22px; height: 22px;
  background: var(--zoz-orange);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .how-grid       { grid-template-columns: 1fr; gap: 2px; }
  .packages-grid  { grid-template-columns: repeat(2, 1fr); }
  .value-cols     { grid-template-columns: 1fr; }
  .custom-grid    { grid-template-columns: 1fr; gap: 48px; }
  .testimonials   { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}

/* ─── What's Included Section ─────────────────────────────── */
.included-card {
  background: var(--white);
  border: 1px solid rgba(129,152,127,0.12);
  border-radius: var(--r);
  padding: 32px 24px;
  transition: all var(--ease);
}
.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(129,152,127,0.12);
  border-color: rgba(129,152,127,0.25);
}
.included-icon {
  width: 56px;
  height: 56px;
  background: var(--lavender-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.included-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.included-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-sec);
}

/* ─── Why Choose Section ──────────────────────────────────── */
.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid rgba(129,152,127,0.1);
  transition: all var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(129,152,127,0.1);
  border-color: rgba(129,152,127,0.2);
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--lavender-pale) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-sec);
}

/* ─── FAQ Section ──────────────────────────────────────────── */
.faq-item {
  background: var(--white);
  border: 1px solid rgba(129,152,127,0.15);
  border-radius: var(--r);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--ease);
}
.faq-item:hover {
  border-color: rgba(129,152,127,0.25);
}
.faq-item[open] {
  border-color: var(--sage);
}
.faq-question {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--ease);
}
.faq-question:hover {
  color: var(--sage);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--sage);
  transition: transform var(--ease);
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-answer {
  padding: 0 28px 24px 28px;
  color: var(--text-sec);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-answer p {
  margin: 0;
}

@media (max-width: 768px) {
  .nav-links      { display: none; }
  .hamburger      { display: flex; }
  .category-tabs  { grid-template-columns: 1fr; gap: 12px; }
  .category-tab   { padding: 20px 24px; }
  .tab-text strong { font-size: 1rem; }
  .tab-text span  { font-size: 0.8rem; }
  #why-choose > .container > div { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  .container      { padding: 0 20px; }
  .packages-grid  { grid-template-columns: 1fr; }
  .mini-features  { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .hero-heading   { font-size: clamp(2.8rem, 13vw, 5rem); }
}
