/* ============================================================
   AI Filings — style.css
   Mobile-first. Breakpoints: 480px, 768px
   Colors: #FFFDF7 bg, #FFFFFF surface, #E5A800 accent,
           #1A1A1A text, #4A4A4A secondary, #2E7D32 trust green
   Font: Inter (Google Fonts)
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #FFFFFF;
  color: #1A1A1A;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

p { color: #4A4A4A; }

a { color: inherit; text-decoration: none; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 3.5rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
  text-align: center;
  white-space: nowrap;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background-color: #E5A800;
  color: #1A1A1A;
}

.btn-secondary {
  background-color: transparent;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
}

/* ---- Navigation ---- */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #1A1A1A;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
  z-index: 2;
}

.nav-logo img {
  display: block;
  height: 60px;
  width: auto;
  background: transparent;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.nav-logo:hover img {
  transform: scale(1.5);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: #FFFFFF; }

.nav-cta {
  display: none;
  background-color: #E5A800;
  color: #1A1A1A;
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: opacity 0.15s;
}

.nav-cta:hover { opacity: 0.88; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.25s;
}

/* Hamburger open state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  background-color: #1A1A1A;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s;
}

.nav-mobile-menu a:hover { color: #FFFFFF; }

.nav-mobile-cta {
  margin-top: 1rem;
  background-color: #E5A800;
  color: #1A1A1A;
  text-align: center;
  padding: 0.875rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  transition: opacity 0.15s;
}

.nav-mobile-cta:hover { opacity: 0.88; }

/* ---- Hero ---- */
#hero {
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.hero-content h1 { margin-bottom: 1.25rem; }

.hero-sub {
  font-size: 1.0625rem;
  color: #4A4A4A;
  max-width: 640px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* Trust chips */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1A1A1A;
}

.chip::before {
  content: '✓';
  color: #2E7D32;
  font-weight: 700;
}

/* Hero two-column layout */
.hero-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1 1 55%;
  min-width: 0;
}

.hero-video-wrap {
  position: relative;
  flex: 1 1 42%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.gator-video-inner {
  position: relative;
  width: 100%;
  max-width: 692px;
}

.hero-video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: block;
}

/* Play button — below video */
.gator-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #E5A800;
  color: #1A1A1A;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(229,168,0,0.3);
}

.gator-play-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.gator-play-icon {
  font-size: 0.875rem;
  line-height: 1;
}

.gator-play-label {
  font-size: 1rem;
  font-weight: 700;
}

.gator-play-btn.hidden {
  display: none;
}

/* Overlay play button — centered on video */
.gator-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(229, 168, 0, 0.92);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.gator-overlay-btn:hover {
  opacity: 0.88;
  transform: translate(-50%, -50%) scale(1.08);
}

.gator-overlay-icon {
  font-size: 1.5rem;
  color: #1A1A1A;
  margin-left: 4px; /* optical center for ▶ */
  line-height: 1;
}

.gator-overlay-btn.hidden {
  display: none;
}

@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-video-wrap {
    width: 100%;
  }
  .hero-video {
    max-width: 100%;
  }
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* Proof strip */
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.125rem 1.25rem;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  max-width: 560px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.proof-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
}

.proof-label {
  font-size: 0.75rem;
  color: #4A4A4A;
  line-height: 1.3;
}

/* ---- How It Works ---- */
#how-it-works {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2E7D32;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 2.5rem;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 1.5rem;
}

.step-number {
  width: 2.25rem;
  height: 2.25rem;
  background: #E5A800;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.875rem;
  flex-shrink: 0;
}

.step-card h3 { margin-bottom: 0.5rem; }

/* ---- Comparison Table ---- */
#comparison {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comparison-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comparison-table th {
  font-weight: 700;
  font-size: 0.875rem;
  background: #1A1A1A;
  color: #FFFFFF;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #1A1A1A;
}

/* Highlight AI Filings column */
.comparison-table th.col-ai,
.comparison-table td.col-ai {
  background: #FFF8E1;
  font-weight: 600;
  color: #1A1A1A;
}

.comparison-table th.col-ai {
  background: #E5A800;
  color: #1A1A1A;
}

.comparison-table tr:hover td { background: rgba(0,0,0,0.02); }
.comparison-table tr:hover td.col-ai { background: #FFEFC3; }

.check-yes { color: #2E7D32; font-weight: 700; }
.check-no { color: #C62828; }

/* ---- Page Hero (for individual pages) ---- */
.page-hero {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.page-hero h1 { color: #FFFFFF; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; font-size: 1.0625rem; }

/* ---- Explore Section (replaces tabs on index) ---- */
#explore-section {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.explore-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.explore-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.explore-card:hover {
  border-color: #E5A800;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.explore-icon {
  font-size: 2rem;
  line-height: 1;
}

.explore-card h3 { color: #1A1A1A; margin-bottom: 0; }
.explore-card p { font-size: 0.9375rem; color: #4A4A4A; margin: 0; }

.explore-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #E5A800;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.explore-link:hover { opacity: 0.8; }

/* ---- Page Content Section ---- */
.page-content {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ---- Tabbed Block (kept for backward compat, now unused on index) ---- */
#tabs-block {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tabs-nav {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 2px solid rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  gap: 0;
}

.tab-btn {
  flex-shrink: 0;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #4A4A4A;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  margin-bottom: -2px;
}

.tab-btn:hover { color: #1A1A1A; }

.tab-btn.active {
  color: #1A1A1A;
  border-bottom-color: #E5A800;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* -- Tab: Why Trust Us -- */
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 1.25rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #E5A800;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.review-meta { flex: 1; }
.review-name { font-weight: 600; font-size: 0.9375rem; color: #1A1A1A; }
.review-location { font-size: 0.8125rem; color: #4A4A4A; }

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.star { color: #D4D4D4; font-size: 1rem; }

.review-text { font-size: 0.9375rem; color: #4A4A4A; font-style: italic; }

.reviews-disclaimer {
  font-size: 0.8125rem;
  color: #888;
  text-align: center;
  margin-top: 0.5rem;
}

/* -- Tab: Florida NTO Law -- */
.law-content h3 { margin-bottom: 1rem; }

.law-content p { margin-bottom: 1rem; }

.law-checklist {
  list-style: none;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.law-checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.875rem 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
}

.law-checklist li .check-icon {
  color: #2E7D32;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

.law-checklist li .check-label { font-weight: 600; color: #1A1A1A; }
.law-checklist li .check-detail { font-size: 0.875rem; color: #4A4A4A; margin-top: 0.125rem; }

.legal-disclaimer {
  background: #FFF8E1;
  border-left: 3px solid #E5A800;
  padding: 0.875rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.875rem;
  color: #4A4A4A;
  margin-top: 1.25rem;
}

/* -- Tab: Pricing -- */
.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: #4A4A4A;
  margin-bottom: 1.75rem;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border: 2px solid #16a34a;
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card.popular .pricing-cta {
  background: #16a34a;
  color: #fff;
  border: none;
}

.pricing-card.popular .pricing-cta:hover {
  background: #15803d;
  opacity: 1;
}

.pricing-plan { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #4A4A4A; margin-bottom: 0.375rem; }
.pricing-price { font-size: 2rem; font-weight: 700; color: #1A1A1A; line-height: 1; margin-bottom: 0.25rem; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: #4A4A4A; }
.pricing-desc { font-size: 0.875rem; color: #4A4A4A; margin-bottom: 1rem; }

.pricing-features {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: #2E7D32;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  background: #E5A800;
  color: #1A1A1A;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: opacity 0.15s;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
}

.pricing-cta:hover { opacity: 0.88; }

.pricing-footnote {
  font-size: 0.8125rem;
  color: #888;
  text-align: center;
  margin-top: 1rem;
}

/* -- Tab: FAQ -- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background: #FFFFFF;
  transition: background 0.15s;
  gap: 1rem;
}

.faq-question:hover { background: #FAFAFA; }

.faq-question span {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1A1A1A;
  flex: 1;
}

.faq-icon {
  font-size: 1.25rem;
  color: #4A4A4A;
  transition: transform 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  background: #FFFFFF;
  font-size: 0.9375rem;
  color: #4A4A4A;
  line-height: 1.65;
}

.faq-item.open .faq-answer { display: block; }

/* ---- CTA Section ---- */
#cta-section {
  background: #1A1A1A;
  color: #FFFFFF;
  text-align: center;
  padding: 4rem 0;
}

#cta-section h2 { color: #FFFFFF; margin-bottom: 0.875rem; }

#cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  font-size: 1.0625rem;
}

.cta-trial-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}

.cognito-placeholder {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}

/* ---- Footer ---- */
#footer {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .footer-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-logo img {
  display: block;
  background: transparent;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer-links a:hover { color: #FFFFFF; }

.footer-serve {
  color: rgba(255,255,255,0.45);
  font-size: 0.8125rem;
}

.footer-legal {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* ============================================================
   Tablet: 768px+
   ============================================================ */
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.25rem; }

  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .nav-hamburger { display: none; }
  .nav-mobile-menu { display: none !important; }

  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-brand { flex: 0 0 220px; }
  .footer-right { display: flex; flex-direction: column; gap: 0.875rem; text-align: right; }

  .comparison-scroll {
    margin: 0;
    padding: 0;
    overflow-x: visible;
  }

  .tabs-nav { overflow-x: visible; }
}

/* ============================================================
   Pricing grid responsive overrides
   ============================================================ */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Desktop: 960px+
   ============================================================ */
@media (min-width: 960px) {
  section { padding: 5rem 0; }
  #cta-section { padding: 5.5rem 0; }

  .explore-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
