@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ============================================================
  ALLAMERICADISH.ONLINE — PROFESSIONAL DESIGN SYSTEM v3
   Font: DM Sans · Palette: Teal/Emerald · Grid: CSS Native
   ============================================================ */

:root {
  /* Teal Palette */
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  /* Neutral Slate */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Accent */
  --green-500: #22c55e;
  --amber-500: #f59e0b;
  --red-500: #ef4444;

  /* System */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--slate-700);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-700); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--slate-900);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-heading { margin-bottom: 12px; }
.section-desc {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.8;
  max-width: 580px;
}
.text-center .section-desc { margin-inline: auto; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.announce-bar strong { font-weight: 700; }
.announce-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
  font-weight: 600;
}

/* ── NAVBAR ── */
.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 32px;
}
.site-nav .logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.site-nav .logo img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}
.site-nav .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-nav .logo-text strong {
  font-size: .95rem;
  color: var(--slate-900);
  font-weight: 800;
  letter-spacing: .01em;
}
.site-nav .logo-text small {
  font-size: .72rem;
  color: var(--teal-700);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav .nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate-600);
  border-radius: 8px;
  transition: all .15s ease;
}
.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  color: var(--teal-700);
  background: var(--teal-50);
}
.site-nav .nav-cta {
  background: var(--teal-600) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  box-shadow: 0 2px 8px rgba(13,148,136,.25);
}
.site-nav .nav-cta:hover {
  background: var(--teal-700) !important;
}
.site-nav .hamburger {
  display: none;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: var(--slate-700);
  cursor: pointer;
  padding: 4px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1.2;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 4px 12px rgba(13,148,136,.3);
}
.btn-primary:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,148,136,.35);
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: var(--slate-700);
  border: 1.5px solid var(--slate-200);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.btn-secondary:hover {
  border-color: var(--teal-500);
  color: var(--teal-700);
  background: var(--teal-50);
}
.btn-white {
  background: #fff;
  color: var(--teal-700);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.btn-white:hover { background: var(--teal-50); }
.btn-lg { padding: 15px 32px; font-size: .95rem; }

/* ── HERO SECTION ── */
.hero-section {
  padding: 72px 0 88px;
  background: linear-gradient(170deg, var(--teal-50) 0%, #fff 45%, var(--slate-50) 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,.06), transparent 65%);
  top: -200px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { margin-bottom: 20px; }
.hero-content h1 span { color: var(--teal-600); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 36px; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: var(--slate-900); line-height: 1; }
.stat-label {
  font-size: .72rem;
  color: var(--slate-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.hero-media { position: relative; z-index: 2; }
.hero-media img {
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.04);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--slate-100);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--radius);
  transition: background .2s;
}
.trust-item:hover { background: var(--slate-50); }
.trust-item i { font-size: 1.5rem; color: var(--teal-600); display:block; margin-bottom: 6px; }
.trust-item strong { font-size: .85rem; color: var(--slate-800); display: block; font-weight: 700; }
.trust-item span { font-size: .75rem; color: var(--slate-400); }

/* ── PRICING ── */
.pricing-section { padding: 88px 0; background: var(--slate-50); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.07);
}
.price-card.featured {
  border: 2px solid var(--teal-500);
  box-shadow: 0 8px 24px rgba(13,148,136,.1);
}
.price-card .card-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  width: fit-content;
}
.card-badge.starter { background: var(--slate-100); color: var(--slate-600); }
.card-badge.popular { background: var(--teal-600); color: #fff; }
.card-badge.elite { background: var(--slate-800); color: #fff; }
.price-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.price-card .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card .amount small { font-size: .9rem; font-weight: 500; color: var(--slate-400); }
.price-card .feature-list {
  list-style: none;
  margin: 20px 0 28px;
  padding: 0;
  flex: 1;
}
.price-card .feature-list li {
  padding: 7px 0;
  font-size: .88rem;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--slate-100);
}
.price-card .feature-list li:last-child { border: none; }
.price-card .feature-list i { color: var(--green-500); font-size: 1rem; flex-shrink: 0; }
.price-card .feature-list .unavailable { color: var(--slate-300); }
.price-card .feature-list .unavailable i { color: var(--slate-300); }

/* ── FEATURES ── */
.features-section { padding: 88px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .25s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  border-color: var(--teal-200);
}
.feature-card .icon-wrap {
  width: 48px; height: 48px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--teal-600);
  margin-bottom: 16px;
}
.feature-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: .83rem; color: var(--slate-500); margin: 0; line-height: 1.6; }

/* ── SPLIT SECTIONS ── */
.split-section { padding: 88px 0; }
.split-section.alt-bg { background: var(--slate-50); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-media img {
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.split-text h2 { margin-bottom: 14px; }
.split-text p { color: var(--slate-500); line-height: 1.8; margin-bottom: 20px; }
.check-list { list-style: none; padding: 0; margin-bottom: 24px; }
.check-list li {
  padding: 5px 0;
  font-size: .9rem;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-list i { color: var(--green-500); font-size: 1rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-900) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  top: -180px; right: -80px;
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 28px; max-width: 480px; margin-inline: auto; font-size: 1rem; }

/* ── AVAILABILITY ── */
.avail-section { padding: 88px 0; background: var(--slate-50); }
.avail-box { max-width: 640px; margin: 0 auto; text-align: center; }
.avail-form { display: flex; gap: 10px; margin-top: 28px; }
.avail-form input {
  flex: 1;
  padding: 14px 22px;
  font-size: .95rem;
  font-family: var(--font);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-full);
  outline: none;
  transition: border .2s;
  background: #fff;
  color: var(--slate-700);
}
.avail-form input:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(13,148,136,.08); }

/* ── FAQ ── */
.faq-section { padding: 88px 0; }
.faq-list { max-width: 680px; margin: 40px auto 0; }
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: #fff;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--slate-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--slate-400); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--teal-700); }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--slate-500); font-size: .88rem; line-height: 1.8; }

/* ── CONTACT ── */
.contact-section { padding: 88px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 40px;
}
.contact-form { display: grid; gap: 16px; }
.contact-form label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--slate-500);
  display: block;
  margin-bottom: 5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: .9rem;
  font-family: var(--font);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  outline: none;
  transition: border .2s;
  background: #fff;
  color: var(--slate-700);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13,148,136,.08);
}
.contact-info { display: grid; gap: 20px; align-content: start; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  font-size: 1.1rem;
}
.contact-info-item h4 { font-size: .88rem; margin-bottom: 2px; }
.contact-info-item p { font-size: .82rem; color: var(--slate-500); margin: 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand img {
  display: block;
  height: 50px;
  width: auto;
  margin-bottom: 14px;
}
.footer-domain {
  color: var(--teal-200);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: -6px;
  margin-bottom: 14px;
}
.footer-brand p { font-size: .82rem; line-height: 1.8; margin-bottom: 14px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--slate-400);
  font-size: .9rem;
  transition: all .2s;
}
.footer-socials a:hover { background: var(--teal-600); color: #fff; }
.footer-col h5 {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: .82rem; color: var(--slate-400); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; font-size: .75rem; }
.footer-bottom strong { color: var(--slate-300); }

/* ── BOOTSTRAP OVERRIDES (for inner pages) ── */
.accordion-item {
  border: 1px solid var(--slate-200) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--font) !important;
  font-weight: 700 !important;
  color: var(--slate-800) !important;
  background: #fff !important;
  font-size: .9rem !important;
}
.accordion-button:not(.collapsed) { color: var(--teal-700) !important; }
.accordion-body { color: var(--slate-500); font-size: .88rem; }

.form-control, .form-select {
  border: 1.5px solid var(--slate-200) !important;
  border-radius: var(--radius) !important;
  padding: 13px 16px !important;
  font-family: var(--font) !important;
  font-size: .9rem !important;
  color: var(--slate-700) !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal-500) !important;
  box-shadow: 0 0 0 3px rgba(13,148,136,.08) !important;
}

/* inner page hero overrides */
.hero-tv, .hero-policy, .hero { padding: 56px 0; background: linear-gradient(170deg, var(--teal-50) 0%, #fff 50%); }
.hero-badge, .badge-soft {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}
.text-primary { color: var(--teal-600) !important; }
.bg-primary { background: var(--teal-600) !important; }
.btn-brand {
  background: var(--teal-600) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(13,148,136,.3) !important;
}
.btn-brand:hover { background: var(--teal-700) !important; }
.btn-outline-primary {
  border: 1.5px solid var(--slate-200) !important;
  color: var(--slate-700) !important;
  background: #fff !important;
  border-radius: var(--radius-full) !important;
}
.btn-outline-primary:hover {
  border-color: var(--teal-500) !important;
  color: var(--teal-700) !important;
  background: var(--teal-50) !important;
}

/* Table styling for policy pages */
.policy-table { border-collapse: separate; border-spacing: 0; }
.policy-table th {
  background: var(--slate-50);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--slate-600);
  padding: 12px 16px;
  border-bottom: 2px solid var(--slate-200);
}
.policy-table td { padding: 12px 16px; border-bottom: 1px solid var(--slate-100); }

.callout {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius);
  padding: 20px;
}
.law-pill {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  background: var(--slate-100);
  color: var(--slate-600);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.topbar { display: none; } /* hide old topbar from inner pages */
.navbar { /* Bootstrap navbar override */
  background: #fff !important;
  border-bottom: 1px solid var(--slate-200) !important;
  padding: 8px 0 !important;
}
.navbar-brand img { height: 140px !important; }
.nav-link {
  font-family: var(--font) !important;
  font-weight: 600 !important;
  font-size: .88rem !important;
  color: var(--slate-600) !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
}
.nav-link:hover, .nav-link.active {
  color: var(--teal-700) !important;
  background: var(--teal-50) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-inline: auto; }
  .hero-media { max-width: 480px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .avail-form { flex-direction: column; }
  .site-nav .nav-links { display: none; }
  .site-nav .hamburger { display: block; }
  .site-nav .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--slate-200);
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
}
@media (max-width: 576px) {
  .site-nav .logo-text { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; align-items: center; }
  .cta-banner { padding: 36px 20px; }
  .container { padding: 0 16px; }
}

/* ══════════════════════════════════════════════════════════════════
   CREATIVE BUNDLES SECTION - Modern Pricing Cards
   ══════════════════════════════════════════════════════════════════ */

.bundles-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 60%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.bundles-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bundles-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bundles-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.bundles-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.bundles-subtitle {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

.pricing-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bundle-card {
  position: relative;
  height: 100%;
}

.bundle-card.card-1 {
  transform: translateY(20px);
  animation: slideUp 0.6s ease-out 0.1s both;
}

.bundle-card.card-2 {
  animation: slideUp 0.6s ease-out 0.2s both;
}

.bundle-card.card-3 {
  transform: translateY(20px);
  animation: slideUp 0.6s ease-out 0.3s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-background {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--slate-200);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.bundle-card:hover .card-background {
  border-color: var(--teal-300);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
  transform: translateY(-4px);
}

.bundle-card.featured-bundle .card-background {
  border: 2px solid var(--teal-600);
  box-shadow: 0 25px 50px rgba(13, 148, 136, 0.2);
}

.bundle-card.featured-bundle:hover .card-background {
  box-shadow: 0 35px 60px rgba(13, 148, 136, 0.25);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-700) 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.featured-badge i {
  font-size: 0.9rem;
}

.card-inner {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-header {
  margin-bottom: 28px;
}

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

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--teal-100) 100%);
  border-radius: 12px;
  color: var(--teal-600);
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}

.value-tag {
  display: inline-block;
  background: var(--teal-50);
  color: var(--teal-700);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bundle-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0;
}

.card-price-section {
  margin-bottom: 28px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--teal-600);
  line-height: 1;
}

.period {
  font-size: 0.95rem;
  color: var(--slate-500);
  font-weight: 600;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin: 0;
  line-height: 1.5;
}

.bundle-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bundle-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate-600);
}

.bundle-features i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-500);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}

.btn-bundle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--slate-200);
  background: #fff;
  color: var(--slate-700);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: var(--font);
  width: 100%;
}

.btn-bundle:hover {
  border-color: var(--teal-500);
  background: var(--teal-50);
  color: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.15);
}

.btn-primary-bundle {
  border-color: var(--teal-600);
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-700) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary-bundle:hover {
  border-color: var(--teal-700);
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-800) 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
  transform: translateY(-2px);
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

/* ── Responsive Bundles ── */
@media (max-width: 1024px) {
  .pricing-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .bundle-card.card-3 {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .bundles-section {
    padding: 60px 0;
  }
  
  .bundles-title {
    font-size: 1.8rem;
  }
  
  .pricing-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bundle-card.card-1,
  .bundle-card.card-3 {
    transform: translateY(0);
  }
  
  .card-inner {
    padding: 28px 20px;
  }
  
  .amount {
    font-size: 2.8rem;
  }
  
  .bundle-card.card-3 {
    max-width: 100%;
  }
}
