/* ============================================================
   GREEN BIOFUELS AUSTRALIA — SHARED RESPONSIVE STYLESHEET
   gba-styles.css  |  v1.0  |  May 2026
   Apply to every page via: <link rel="stylesheet" href="gba-styles.css">
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1A4731;
  --green-mid:    #2D7A4F;
  --green-light:  #4CAF7D;
  --green-pale:   #E8F5EE;
  --green-accent: #6FCF97;
  --text-dark:    #1E293B;
  --text-mid:     #475569;
  --text-light:   #94A3B8;
  --border:       #E2E8F0;
  --white:        #FFFFFF;
  --page-bg:      #F8FAFC;
  --amber:        #F59E0B;
  --amber-pale:   #FEF3C7;
  --red:          #EF4444;
  --red-pale:     #FEE2E2;
  --blue:         #3B82F6;

  --nav-height: 64px;
  --container:  1100px;
  --radius:     8px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--green-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo-tagline {
  font-size: 0.65rem;
  color: var(--green-accent);
  letter-spacing: 0.04em;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.nav-links .nav-cta a {
  background: var(--green-light);
  color: var(--white);
  font-weight: 600;
  padding: 8px 16px;
}

.nav-links .nav-cta a:hover {
  background: var(--green-accent);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 6px;
  transition: background 0.15s;
}

.nav-hamburger:hover { background: rgba(255,255,255,0.1); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

/* Hamburger → X animation */
.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); }

/* Mobile menu drawer */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  padding: 12px 0 20px;
  z-index: 999;
}

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

.nav-mobile-menu a {
  display: block;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  min-height: 48px;
}

.nav-mobile-menu a:hover { background: rgba(255,255,255,0.07); color: var(--white); }

.nav-mobile-menu .nav-mobile-cta {
  margin: 16px 28px 0;
  display: block;
  text-align: center;
  background: var(--green-light);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600;
  padding: 14px 20px !important;
  border-bottom: none !important;
}

/* ============================================================
   HERO / PAGE HEADER BAND
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #0F2D1E 0%, var(--green-dark) 55%, var(--green-mid) 100%);
  padding: 72px 24px 64px;
  text-align: center;
}

.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--green-accent);
}

.page-hero p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Alert banner */
.alert-banner {
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 760px;
  margin: 32px auto 0;
  text-align: left;
}

.alert-banner .alert-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

.alert-banner-body { flex: 1; }

.alert-banner-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.alert-banner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.55;
}

.alert-banner a {
  color: var(--amber);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  transition: all 0.18s;
  line-height: 1;
}

.btn-primary {
  background: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
}
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); text-decoration: none; }

.btn-outline-green {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline-green:hover { background: var(--green-pale); text-decoration: none; }

.btn-sm { padding: 9px 18px; font-size: 0.82rem; min-height: 40px; }

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--page-bg); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title em { font-style: normal; color: var(--green-mid); }

.section-divider {
  width: 40px;
  height: 3px;
  background: var(--green-light);
  border-radius: 2px;
  margin-bottom: 24px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 660px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ============================================================
   STATS / KPI ROW
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
}

.stat-item {
  background: var(--white);
  padding: 22px 20px;
  text-align: center;
}

.stat-item-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-mid);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
}

/* ============================================================
   FEATURE / CONTENT CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================================
   COMPARISON / ALTERNATIVES LIST
   ============================================================ */
.alt-list { list-style: none; margin: 24px 0; }

.alt-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

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

.alt-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.alt-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.alt-body p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.55; }

.alt-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--amber-pale);
  color: #92400E;
}

.alt-tag.tag-red   { background: var(--red-pale); color: var(--red); }
.alt-tag.tag-green { background: var(--green-pale); color: var(--green-dark); }

/* ============================================================
   HIGHLIGHT / FEATURE CALLOUT BOXES
   ============================================================ */
.highlight-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.highlight-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.highlight-box p {
  font-size: 0.9rem;
  color: var(--green-dark);
  line-height: 1.6;
  margin: 0;
}

.warn-box {
  background: var(--amber-pale);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: #78350F;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE TABLES
   ============================================================ */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 24px 0;
}

.table-wrap table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.table-wrap thead tr { background: var(--green-dark); }

.table-wrap thead th {
  padding: 12px 16px;
  text-align: left;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.table-wrap tbody tr:nth-child(even) { background: var(--page-bg); }
.table-wrap tbody tr:nth-child(odd)  { background: var(--white); }

.table-wrap tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  line-height: 1.45;
}

.table-wrap tbody td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

/* Scroll hint on small screens */
.table-scroll-hint {
  display: none;
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: right;
  margin-bottom: 4px;
}

/* ============================================================
   STEP / PROCESS LIST
   ============================================================ */
.steps { list-style: none; margin: 24px 0; }

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

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

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 2px;
}

.step-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step-body p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 8px; }

.step-checklist { list-style: none; margin-top: 8px; }
.step-checklist li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}
.step-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { margin: 24px 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  transition: background 0.15s;
}

.faq-question:hover { background: var(--page-bg); }

.faq-question .faq-arrow {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--green-mid);
  transition: transform 0.25s;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

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

/* ============================================================
   IMAGE + TEXT 2-COLUMN LAYOUT
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 48px 0;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img { width: 100%; height: 320px; object-fit: cover; }

.split-image figcaption {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 10px 14px;
  background: var(--page-bg);
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ============================================================
   CHECKLIST / FEATURE TICKS
   ============================================================ */
.tick-list { list-style: none; margin: 16px 0; }

.tick-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.tick-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 64px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.cta-band h2 em { font-style: normal; color: var(--green-accent); }

.cta-band p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ============================================================
   NEWS CARD GRID
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.news-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-2px); }

.news-card-image { width: 100%; height: 180px; object-fit: cover; }

.news-card-body { padding: 20px; }

.news-card-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.news-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--green-pale);
  color: var(--green-dark);
  margin-bottom: 8px;
}

.news-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 14px;
}

.news-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-mid);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img { height: 36px; margin-bottom: 14px; }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  margin-bottom: 16px;
}

.footer-contact {
  font-size: 0.82rem;
  color: var(--green-accent);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 9px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
em { font-style: italic; }

.text-green  { color: var(--green-mid); }
.text-muted  { color: var(--text-mid); }
.text-center { text-align: center; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── TABLET (max 900px) ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .site-nav { position: sticky; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: 1 / -1; }

  .split-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-section.reverse { direction: ltr; }

  .page-hero { padding: 56px 20px 48px; }
}

/* ── MOBILE (max 600px) ── */
@media (max-width: 600px) {
  :root { --nav-height: 60px; }

  .container { padding: 0 16px; }

  .section    { padding: 48px 0; }
  .section-sm { padding: 32px 0; }

  .page-hero  { padding: 44px 16px 40px; }
  .page-hero h1 { font-size: 1.7rem; }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn { text-align: center; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .cards-grid { grid-template-columns: 1fr; }

  .news-grid  { grid-template-columns: 1fr; }

  .table-scroll-hint { display: block; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p { max-width: 100%; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cta-band { padding: 48px 16px; }

  .split-image img { height: 220px; }

  /* Ensure all tap targets meet 48px minimum */
  .btn { min-height: 48px; padding: 13px 20px; }

  .faq-question { min-height: 56px; padding: 14px 16px; }

  .nav-mobile-menu a { min-height: 52px; padding: 14px 24px; }

  /* Prevent text from being too small */
  body { font-size: 16px; }

  .section-lead { font-size: 0.95rem; }
}

/* ── LARGE SCREENS (min 1200px) ── */
@media (min-width: 1200px) {
  .page-hero { padding: 88px 24px 80px; }
}
