/* ============================================================
   48Launch — main.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ink:           #28201c;
  --heading:       #201510;
  --brand:         #c8705a;
  --brand-strong:  #ae5d48;
  --brand-soft:    #f6e7e0;
  --accent:        #e9c5b5;
  --surface:       #fffcf9;
  --surface-alt:   #f5ebe3;
  --surface-warm:  #fbf4ef;
  --surface-dark:  #231510;
  --card:          #ffffff;
  --muted:         #7d6560;
  --border:        #ecddd4;
  --success:       #16a34a;
  --radius:        20px;
  --shadow:        0 10px 28px rgba(40, 32, 28, 0.07);
  --shadow-lg:     0 22px 48px rgba(40, 32, 28, 0.12);
  --font:          'Plus Jakarta Sans', 'Manrope', system-ui, -apple-system, sans-serif;
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: min(1160px, 92vw); margin: 0 auto; }

.section { padding: clamp(4.5rem, 10vw, 7rem) 0; }
.section--alt  { background: var(--surface-alt); }
.section--warm { background: var(--surface-warm); }
.section--dark { background: var(--surface-dark); color: #fff; }

/* Centered section header */
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.4rem;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--brand-strong);
  margin-bottom: 0.9rem;
}
.section-kicker::before,
.section-kicker::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--brand);
  border-radius: 2px;
  opacity: 0.7;
}
h1.section-title,
h2.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1rem;
}
h1.section-title em,
h2.section-title em {
  font-style: italic;
  color: var(--brand);
}
.section-intro {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}
.section-intro a { color: var(--brand-strong); font-weight: 600; text-decoration: underline; }

/* ── Site header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 249, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(40, 32, 28, 0.07);
  transition: background 300ms var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}
.logo {
  font-weight: 800;
  font-size: 1.32rem;
  color: var(--heading);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 220ms var(--ease);
}
.nav a:not(.btn):hover,
.nav a:not(.btn).is-active { color: var(--heading); }
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--heading);
  font-size: 1.35rem;
  padding: 0.2rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease),
    background 280ms var(--ease),
    border-color 280ms var(--ease),
    color 280ms var(--ease);
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(174, 93, 72, 0.3);
}
.btn--primary:hover {
  background: var(--brand-strong);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(174, 93, 72, 0.38);
}
.btn--secondary {
  background: transparent;
  color: var(--heading);
  border: 1.5px solid var(--border);
}
.btn--secondary:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
  background: var(--brand-soft);
}
.btn--block { width: 100%; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 7rem 0 6rem;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% -5%, rgba(200, 112, 90, 0.17), transparent 65%),
    var(--surface);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-soft);
  color: var(--brand-strong);
  padding: 0.44rem 1.05rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--heading);
  max-width: 22ch;
  margin: 0 auto 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand);
}
.hero__lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 2.2rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 2.2rem;
}
.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero__stars { color: #f59e0b; letter-spacing: 0.05em; }
.hero__proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.hero__proof-tag {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 500;
  padding: 0.38rem 0.88rem;
  border-radius: 999px;
}

/* ── Trust / KPI strip ──────────────────────────────────────── */
.trust-strip { padding: 2.8rem 0; }
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  text-align: center;
}
.kpi {
  padding: 1.6rem 1.2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
}
.kpi__value {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.025em;
  margin-bottom: 0.3rem;
}
.kpi__label {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Benefit cards ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.3rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 340ms var(--ease), box-shadow 340ms var(--ease), border-color 340ms var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #f0c8bb;
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
}
.card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ── Step cards ─────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  counter-reset: step;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  counter-increment: step;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-card::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.04em;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.4rem;
}
.step-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* old .steps — used on how-it-works.php inner page */
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 1.3rem;
  color: var(--muted);
  line-height: 1.65;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}
.steps strong { display: block; color: var(--heading); }

/* ── Package cards ──────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
  align-items: start;
}
.package-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card--featured {
  border-color: var(--brand);
  border-width: 2px;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.package-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.package-card__name {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.45rem;
}
.package-card__desc {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.package-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.package-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.package-card__sla {
  font-size: 0.79rem;
  color: var(--brand-strong);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.3rem;
}
.package-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
  border-top: 1px solid #f3e9e3;
  padding-top: 1rem;
}
.package-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.42rem 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  border-bottom: 1px solid #f8f2ee;
}
.package-card__features li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial__quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.4rem;
  font-family: Georgia, serif;
}
.testimonial__body {
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1.3rem;
}
.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.testimonial__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--heading);
  display: block;
}
.testimonial__role {
  font-size: 0.81rem;
  color: var(--muted);
  display: block;
}

/* ── Audience tags ──────────────────────────────────────────── */
.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.audience-list span {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.56rem 1.15rem;
  border-radius: 999px;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
  cursor: default;
}
.audience-list span:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand-strong);
}

/* ── Tools ──────────────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tool-card h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.45rem;
}
.tool-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  line-height: 1.62;
}
.tool-card a {
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.91rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.tool-card a::after { content: " →"; }
.tool-card a:hover { text-decoration: underline; }

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band {
  text-align: center;
  padding: 5.5rem 2rem;
  background: linear-gradient(135deg, #2a1e1a, #3e2720);
  border-radius: var(--radius);
  color: #fff;
}
.cta-band h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.8rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn--primary {
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(174, 93, 72, 0.45);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.89rem;
  color: var(--muted);
}
.site-footer__brand strong { display: block; font-size: 1.05rem; color: var(--heading); font-weight: 800; }
.site-footer__brand span { font-size: 0.84rem; color: var(--muted); }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 0.3rem 1.2rem; align-items: center; }
.site-footer a { color: var(--muted); text-decoration: none; transition: color 200ms var(--ease); }
.site-footer a:hover { color: var(--brand-strong); }

/* ── Forms ──────────────────────────────────────────────────── */
.form-page { padding: 3.5rem 0 5.5rem; }
.form-card {
  max-width: 740px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--heading);
  margin-bottom: 0.42rem;
}
.form-group .hint { font-size: 0.83rem; color: var(--muted); margin-top: 0.3rem; line-height: 1.5; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--heading);
  background: #fff;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(200, 112, 90, 0.15);
}
textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.alert { padding: 0.9rem 1.1rem; border-radius: 12px; margin-bottom: 1.3rem; font-size: 0.95rem; }
.alert--error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert--success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq details {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.8rem;
  background: var(--card);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.faq details[open] {
  border-color: #f0c5b4;
  box-shadow: var(--shadow);
}
.faq summary {
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--heading);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--brand);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 220ms var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin-top: 0.85rem; line-height: 1.72; font-size: 0.95rem; }

/* ── Onboarding wizard ──────────────────────────────────────── */
.wizard { max-width: 660px; margin: 0 auto; padding: 2rem 0 5rem; }
.wizard__progress { height: 6px; background: var(--border); border-radius: 999px; overflow: hidden; margin-bottom: 0.5rem; }
.wizard__progress-bar { height: 100%; background: var(--brand); transition: width 0.4s var(--ease); }
.wizard__step-label { font-size: 0.84rem; color: var(--muted); margin-bottom: 1.6rem; }
.wizard-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.wizard-card h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--heading); }
.wizard-card p.lead { color: var(--muted); margin-bottom: 1.6rem; line-height: 1.65; }
.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.section-toggle { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }

/* ── Admin ──────────────────────────────────────────────────── */
.admin-body { background: var(--surface-alt); min-height: 100vh; }
.admin-header { background: var(--surface-dark); color: #fff; padding: 1rem 0; }
.admin-header a { color: rgba(255,255,255,0.85); text-decoration: none; margin-left: 1.2rem; font-size: 0.9rem; }
.admin-header a:hover { color: #fff; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; }
.admin-table th,
.admin-table td { padding: 0.8rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.admin-table th { background: var(--surface-alt); font-weight: 600; color: var(--heading); }
.badge {
  display: inline-block;
  padding: 0.22rem 0.6rem;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  background: var(--brand-soft);
  color: var(--brand-strong);
}

/* ── Page transition ────────────────────────────────────────── */
.page-enter { opacity: 0; transform: translateY(8px); }
.page-enter.page-enter-active {
  opacity: 1;
  transform: none;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem;
    gap: 1rem;
    box-shadow: 0 10px 28px rgba(40, 32, 28, 0.1);
  }
  .mobile-nav-toggle { display: block; }

  .hero { padding: 5rem 0 4.5rem; text-align: left; }
  .hero h1 { margin: 0 0 1.4rem; }
  .hero__actions { justify-content: flex-start; }
  .hero__social-proof { justify-content: flex-start; }
  .hero__proof-tags { justify-content: flex-start; }

  .section-head { text-align: left; }
  .section-kicker { justify-content: flex-start; }
  .section-kicker::before { display: none; }

  .audience-list { justify-content: flex-start; }
  .kpi-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card--featured { transform: none; }

  .cta-band { padding: 4rem 1.5rem; border-radius: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
