/* ============================================================
   AI Symantix — Global Stylesheet
   ============================================================ */

:root {
  --black:           #0B0B0F;
  --black-card:      #12121A;
  --black-mid:       #0D0D15;
  --purple-deep:     #6C3BFF;
  --purple-electric: #9D7BFF;
  --purple-glow:     rgba(108, 59, 255, 0.12);
  --purple-glow-md:  rgba(108, 59, 255, 0.25);
  --white:           #FFFFFF;
  --gray-soft:       #B3B3C0;
  --gray-dark:       #1E1E2A;
  --gradient-purple: linear-gradient(135deg, #6C3BFF 0%, #9D7BFF 100%);
  --font-heading:    'Space Grotesk', 'Inter', sans-serif;
  --font-body:       'Inter', sans-serif;
  --font-mono:       'JetBrains Mono', 'Courier New', monospace;
  --radius:          14px;
  --radius-sm:       8px;
  --glow-sm:         0 0 18px rgba(108, 59, 255, 0.2);
  --glow-md:         0 0 32px rgba(108, 59, 255, 0.35);
  --max-w:           1280px;
  --ease:            0.2s ease;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1rem, 1.5vw, 1.2rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-electric);
  margin-bottom: 1rem;
}

.gradient-text {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  color: var(--gray-soft);
  font-size: 1.05rem;
  margin-top: 0.85rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-purple);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(108, 59, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108, 59, 255, 0.55);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(108, 59, 255, 0.5);
}
.btn-secondary:hover {
  background: var(--purple-glow);
  border-color: var(--purple-electric);
  transform: translateY(-2px);
}
.btn-lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn svg { width: 16px; height: 16px; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 11, 15, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(108, 59, 255, 0.14);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}
.logo-mark {
  width: 30px;
  height: 30px;
  background: var(--gradient-purple);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-soft);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.28s ease;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--black-card);
  border-top: 1px solid var(--gray-dark);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-soft);
  border-bottom: 1px solid var(--gray-dark);
  transition: color var(--ease);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .btn {
  margin: 1rem 2rem;
  justify-content: center;
}

/* ============================================================
   Hero (Homepage)
   ============================================================ */
.hero {
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 55%;
  height: 130%;
  background: radial-gradient(ellipse at 60% 40%, rgba(108,59,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(108,59,255,0.1);
  border: 1px solid rgba(108,59,255,0.28);
  border-radius: 100px;
  padding: 0.38rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-electric);
  margin-bottom: 1.4rem;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-electric);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 { margin-bottom: 1.4rem; }
.hero-sub {
  font-size: 1.08rem;
  color: var(--gray-soft);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.72;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--gray-soft);
  font-weight: 500;
}
.hero-trust-item svg {
  color: var(--purple-electric);
  width: 14px;
  height: 14px;
}

/* Hero diagram */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-diagram {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 0 40px rgba(108,59,255,0.15));
}

/* ============================================================
   Trust Bar
   ============================================================ */
.trust-bar {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(108,59,255,0.12);
  border-bottom: 1px solid rgba(108,59,255,0.12);
  background: rgba(108,59,255,0.03);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-item svg { color: var(--purple-electric); flex-shrink: 0; }

/* ============================================================
   Cards (Shared)
   ============================================================ */
.card {
  background: var(--black-card);
  border: 1px solid rgba(108,59,255,0.14);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.card:hover {
  border-color: rgba(108,59,255,0.38);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(108,59,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--purple-electric);
  flex-shrink: 0;
}
.card-icon svg { width: 20px; height: 20px; }
.card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.88rem; color: var(--gray-soft); line-height: 1.65; }

/* ============================================================
   Problem Section
   ============================================================ */
.problem-section { background: var(--black-mid); }
.cards-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

/* ============================================================
   Solution Section
   ============================================================ */
.solution-section { background: var(--black); }

/* ============================================================
   Stats Section
   ============================================================ */
.stats-section {
  background: var(--black-card);
  border-top: 1px solid rgba(108,59,255,0.14);
  border-bottom: 1px solid rgba(108,59,255,0.14);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1.5rem; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--gray-soft);
  line-height: 1.55;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(108,59,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 0.85rem; position: relative; }
.cta-section p {
  color: var(--gray-soft);
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--black-card);
  border-top: 1px solid rgba(108,59,255,0.14);
  padding: 4rem 0 2.25rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--gray-soft);
  font-size: 0.85rem;
  margin-top: 0.85rem;
  max-width: 250px;
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--gray-soft);
  transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(108,59,255,0.08);
  border: 1px solid rgba(108,59,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-soft);
  transition: all var(--ease);
}
.footer-social a:hover {
  background: var(--purple-glow-md);
  border-color: var(--purple-electric);
  color: var(--white);
}
.footer-social svg { width: 15px; height: 15px; }
.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-soft);
  gap: 1rem;
}

/* ============================================================
   Pricing Hero
   ============================================================ */
.pricing-hero {
  text-align: center;
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(108,59,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.pricing-hero h1 { margin-bottom: 0.85rem; position: relative; }
.pricing-hero > .container > p {
  color: var(--gray-soft);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.pricing-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
}
.pricing-badge-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--gray-soft);
}
.pricing-badge-item svg { color: var(--purple-electric); width: 16px; height: 16px; }

/* ============================================================
   Pricing Cards
   ============================================================ */
.pricing-section { background: var(--black); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  align-items: start;
}
.p-card {
  background: var(--black-card);
  border: 1px solid rgba(108,59,255,0.15);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  position: relative;
}
.p-card:hover {
  border-color: rgba(108,59,255,0.4);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}
.p-card.featured {
  border-color: var(--purple-deep);
  box-shadow: var(--glow-sm);
}
.p-card-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--purple-electric);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.p-card h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}
.p-card-desc {
  font-size: 0.82rem;
  color: var(--gray-soft);
  margin-bottom: 1.1rem;
  line-height: 1.55;
}
.p-card-price {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.p-card-price.free {
  font-size: 1.8rem;
  color: var(--purple-electric);
}
.p-card-price.free small {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-soft);
  font-weight: 500;
  margin-top: 0.2rem;
}
.p-card-price.range {
  font-size: 1.1rem;
  color: var(--white);
}
.p-card-divider {
  height: 1px;
  background: rgba(108,59,255,0.1);
  margin: 1.2rem 0;
}
.p-card-includes h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin-bottom: 0.65rem;
}
.p-card-includes ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.p-card-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--gray-soft);
  line-height: 1.4;
}
.check-icon {
  width: 13px;
  height: 13px;
  min-width: 13px;
  color: var(--purple-electric);
  margin-top: 1px;
}
.p-card-tiers {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid rgba(108,59,255,0.07);
  font-size: 0.78rem;
}
.tier-row:last-child { border-bottom: none; }
.tier-label { color: var(--gray-soft); }
.tier-price { font-weight: 700; color: var(--white); }
.p-card-outcome {
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 600;
  background: rgba(108,59,255,0.09);
  border-left: 2px solid var(--purple-deep);
  border-radius: 0 6px 6px 0;
  padding: 0.55rem 0.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.45;
}
.p-card .btn { width: 100%; justify-content: center; font-size: 0.82rem; padding: 0.65rem 1rem; }

/* ============================================================
   Add-ons Section
   ============================================================ */
.addons-section { background: var(--black-mid); }
.addons-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.addon-item {
  background: var(--black-card);
  border: 1px solid rgba(108,59,255,0.12);
  border-radius: 10px;
  padding: 1.25rem;
}
.addon-item h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.35rem; }
.addon-item span { font-size: 0.8rem; color: var(--purple-electric); font-weight: 600; }

/* ============================================================
   Digital Products Section
   ============================================================ */
.products-section { background: var(--black); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1rem;
}
.product-item {
  background: var(--black-card);
  border: 1px solid rgba(108,59,255,0.12);
  border-radius: 10px;
  padding: 1.25rem;
  transition: all var(--ease);
}
.product-item:hover {
  border-color: rgba(108,59,255,0.35);
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}
.product-item h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.4rem; line-height: 1.4; }
.product-item span { font-size: 0.85rem; color: var(--purple-electric); font-weight: 700; }

/* ============================================================
   Comparison
   ============================================================ */
.comparison-section { background: var(--black-mid); }
.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.comp-col {
  background: var(--black-card);
  border: 1px solid rgba(108,59,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.comp-col.ai {
  border-color: var(--purple-deep);
  box-shadow: var(--glow-sm);
}
.comp-col h3 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(108,59,255,0.15);
}
.comp-col.ai h3 { color: var(--purple-electric); }
.comp-list { display: flex; flex-direction: column; gap: 0.8rem; }
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.45;
}
.comp-item.bad { color: var(--gray-soft); }
.comp-item.bad .ci { color: #555570; }
.comp-item.good { color: var(--white); }
.comp-item.good .ci { color: var(--purple-electric); }
.ci { flex-shrink: 0; width: 15px; height: 15px; margin-top: 1px; }
.comp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--purple-electric);
  padding-top: 3rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--black); }
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: var(--black-card);
  border: 1px solid rgba(108,59,255,0.14);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--purple-electric); }
.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--purple-electric);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.88rem;
  color: var(--gray-soft);
  line-height: 1.7;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .cards-5, .pricing-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item { padding: 1.25rem; border-bottom: 1px solid rgba(108,59,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .comparison-wrap { grid-template-columns: 1fr; }
  .comp-vs { padding: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .cards-5, .pricing-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .pricing-badges { flex-direction: column; align-items: center; gap: 0.75rem; }
  .addons-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .container { padding: 0 1.25rem; }
  section { padding: 3.5rem 0; }
  .cards-5, .pricing-cards { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; gap: 1rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; }
}
