/* ============================================================
   Ontario iGaming Hub — style.css
   Bright "big-tech" design language (light Stripe/Vercel/Linear style)
   White / light-gray surfaces, dark text, maple-red gradient accents
   Self-hosted Inter variable font — single @font-face, wght 100-900
   ============================================================ */

/* ---------- 0. Self-hosted Inter variable font (single file) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(fonts/inter-var.woff2) format('woff2');
}

/* ---------- 1. Design tokens ---------- */
:root {
  /* Surfaces — bright */
  --bg: #ffffff;
  --bg-2: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #fbfcfd;
  --surface-3: #f2f4f7;

  /* Borders — light gray, thin */
  --border: rgba(15, 17, 21, 0.08);
  --border-strong: rgba(15, 17, 21, 0.15);

  /* Text — dark on light */
  --text-1: #0f1115;
  --text-2: #4c5563;
  --text-3: #8a919e;

  /* Brand — maple red gradient (accent only) */
  --brand: #e5484d;
  --brand-strong: #d92d33;
  --brand-soft: rgba(229, 72, 77, 0.09);
  --brand-glow: rgba(229, 72, 77, 0.3);

  /* Semantics — darkened for contrast on light surfaces */
  --green: #0e9f6e;
  --green-soft: rgba(14, 159, 110, 0.1);
  --amber: #b45309;
  --amber-soft: rgba(245, 184, 61, 0.18);
  --blue: #2563eb;

  /* Gradients */
  --grad: linear-gradient(120deg, #ff5c55 0%, #e5484d 45%, #f59f3e 100%);
  --grad-soft: linear-gradient(120deg, rgba(255, 92, 85, 0.1), rgba(245, 159, 62, 0.1));
  --grad-green: linear-gradient(120deg, #0e9f6e, #2dd4a7);

  /* Effects — soft, diffuse */
  --shadow-card: 0 20px 45px -28px rgba(15, 17, 21, 0.22), 0 8px 20px -12px rgba(15, 17, 21, 0.1);
  --shadow-btn: 0 10px 24px -10px var(--brand-glow);
  --shadow-glow: 0 0 70px -20px var(--brand-glow);

  /* Shape & motion — large radii, generous whitespace */
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background glow — very subtle on light */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 480px at 15% -5%, rgba(229, 72, 77, 0.06), transparent 60%),
    radial-gradient(800px 420px at 90% 8%, rgba(14, 159, 110, 0.04), transparent 60%),
    radial-gradient(700px 500px at 55% 110%, rgba(245, 159, 62, 0.05), transparent 60%);
  pointer-events: none;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--brand-strong); text-decoration: none; transition: color var(--transition); }
a:hover { color: #f0564f; }
p { color: var(--text-2); }
strong { color: var(--text-1); font-weight: 600; }

::selection { background: rgba(229, 72, 77, 0.25); color: inherit; }

:focus-visible { outline: 2px solid var(--brand-strong); outline-offset: 3px; border-radius: 4px; }

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

.section { padding: 88px 0; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--border); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); }

h1, h2, h3, h4 { line-height: 1.22; font-weight: 750; letter-spacing: -0.015em; color: var(--text-1); }

.h1-hero { font-size: clamp(2.15rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; }
.h2 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); font-weight: 750; letter-spacing: -0.02em; }
.h3 { font-size: 1.14rem; font-weight: 650; }
.h4 { font-size: 1rem; font-weight: 650; }

.lead { font-size: 1.08rem; color: var(--text-2); margin-top: 16px; max-width: 64ch; }
.section-head.center .lead { margin-inline: auto; }

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

/* ---------- 4. Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav { display: flex; align-items: center; gap: 28px; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text-1); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand:hover { color: var(--text-1); }
.brand-mark { width: 34px; height: 34px; flex: none; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin-left: auto; }
.nav-menu a {
  display: inline-block; padding: 8px 12px; border-radius: 8px;
  color: var(--text-2); font-size: 0.94rem; font-weight: 550;
}
.nav-menu a:hover { color: var(--text-1); background: rgba(15, 17, 21, 0.05); }
.nav-menu a[aria-current="page"] { color: var(--brand-strong); background: var(--brand-soft); }

.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; border: 1px solid var(--border-strong); border-radius: 10px;
  background: var(--surface); cursor: pointer; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 11px; width: 18px; height: 2px; border-radius: 2px;
  background: var(--text-1); transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 650; line-height: 1.2;
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { color: #fff; box-shadow: 0 16px 40px -12px var(--brand-glow); }

.btn-ghost { background: transparent; border-color: var(--border-strong); color: var(--text-1); }
.btn-ghost:hover { border-color: var(--brand-strong); color: var(--brand-strong); }

.btn-lg { padding: 14px 26px; font-size: 1.02rem; border-radius: 14px; }
.btn-sm { padding: 8px 14px; font-size: 0.88rem; border-radius: 10px; }

.btn .tg-icon { width: 17px; height: 17px; flex: none; }

/* ---------- 6. Hero ---------- */
.hero { padding: 96px 0 84px; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--grad-soft); border: 1px solid rgba(229, 72, 77, 0.24);
  font-size: 0.83rem; font-weight: 600; color: var(--text-1); margin-bottom: 22px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); animation: pulse 2.4s infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--green-soft); }
  50% { box-shadow: 0 0 0 7px rgba(14, 159, 110, 0.08); }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-mini { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.hero-mini-item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-2); font-weight: 550; }
.hero-mini-item svg { color: var(--green); flex: none; }

/* Hero visual — market dashboard card */
.hero-visual { position: relative; }
.dash-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.dash-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad);
}
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-title { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.dash-live { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 700; color: var(--green); }
.dash-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.dash-row { display: grid; grid-template-columns: 130px 1fr 74px; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.dash-row:last-child { border-bottom: 0; }
.dash-row .label { font-size: 0.86rem; font-weight: 600; color: var(--text-2); }
.dash-bar { height: 8px; border-radius: 999px; background: rgba(15, 17, 21, 0.06); overflow: hidden; }
.dash-bar i { display: block; height: 100%; border-radius: 999px; background: var(--grad); }
.dash-bar i.green { background: var(--grad-green); }
.dash-row .val { font-size: 0.86rem; font-weight: 700; color: var(--text-1); text-align: right; font-variant-numeric: tabular-nums; }

.dash-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 650;
}
.chip-green { background: var(--green-soft); color: var(--green); border: 1px solid rgba(14, 159, 110, 0.3); }
.chip-amber { background: var(--amber-soft); color: var(--amber); border: 1px solid rgba(180, 83, 9, 0.28); }
.chip-red { background: var(--brand-soft); color: var(--brand-strong); border: 1px solid rgba(229, 72, 77, 0.28); }

.float-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border-strong);
  font-size: 0.86rem; font-weight: 650; color: var(--text-1);
  box-shadow: var(--shadow-card);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-chip svg { color: var(--green); }
.fc-1 { top: -22px; right: -10px; }
.fc-2 { bottom: -22px; left: -14px; animation-delay: 2.6s; }
.fc-2 svg { color: var(--amber); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- 7. Stats ---------- */
.stats { padding: 44px 0; border-block: 1px solid var(--border); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num { display: block; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; color: var(--text-1); font-variant-numeric: tabular-nums; }
.stat-num em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { display: block; margin-top: 6px; font-size: 0.85rem; color: var(--text-3); font-weight: 550; }

/* ---------- 8. Cards ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
}
.card:hover { transform: translateY(-3px); border-color: var(--border-strong); background: var(--surface-2); }

.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
  background: var(--grad-soft); border: 1px solid rgba(229, 72, 77, 0.2);
  color: var(--brand-strong);
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.93rem; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 0.9rem; font-weight: 650; color: var(--brand-strong);
}
.card-link svg { transition: transform var(--transition); }
.card-link:hover svg { transform: translateX(4px); }

.card-tag {
  position: absolute; top: 18px; right: 18px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--text-3); border: 1px solid var(--border); padding: 3px 9px; border-radius: 999px;
}

/* ---------- 9. Feature list ---------- */
.feature-list { list-style: none; margin-top: 26px; display: grid; gap: 18px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.fi-icon {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--green-soft); border: 1px solid rgba(14, 159, 110, 0.24);
  color: var(--green); margin-top: 2px;
}
.feature-item h4 { margin-bottom: 3px; }
.feature-item p { font-size: 0.92rem; }

/* ---------- 10. Check list ---------- */
.check-list { list-style: none; display: grid; gap: 12px; margin-top: 18px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--text-2); }
.check-list svg { flex: none; margin-top: 4px; color: var(--green); }

/* ---------- 11. FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(229, 72, 77, 0.35); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-weight: 650; font-size: 1rem; color: var(--text-1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 9px; height: 9px;
  border-right: 2px solid var(--text-3); border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg); transition: transform var(--transition); margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-item .faq-body { padding: 0 22px 20px; }
.faq-item .faq-body p { font-size: 0.94rem; }

/* ---------- 12. Table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 560px; }
th, td { text-align: left; padding: 14px 20px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-3); font-weight: 750; background: var(--bg-2); }
tr:last-child td { border-bottom: 0; }
td { color: var(--text-2); }
td strong { color: var(--text-1); }

/* ---------- 13. Breadcrumbs ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--text-3); margin-bottom: 26px; }
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--brand-strong); }
.breadcrumb svg { width: 13px; height: 13px; color: var(--text-3); }

/* ---------- 14. Page hero (inner pages) ---------- */
.page-hero { padding: 64px 0 40px; }
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; letter-spacing: -0.028em; max-width: 22ch; }
.page-hero .lead { max-width: 70ch; }

/* ---------- 15. Article ---------- */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin: 20px 0 30px; padding-bottom: 22px; border-bottom: 1px solid var(--border);
  font-size: 0.86rem; color: var(--text-3);
}
.article-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--text-3); }
.article-meta .author { color: var(--text-2); font-weight: 600; }

.article-body { font-size: 1.03rem; color: var(--text-2); }
.article-body h2 { margin: 40px 0 14px; font-size: 1.45rem; }
.article-body h3 { margin: 30px 0 10px; font-size: 1.16rem; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body li { margin-bottom: 8px; color: var(--text-2); }
.article-body a { font-weight: 600; }

.article-body blockquote {
  margin: 26px 0; padding: 18px 22px;
  border-left: 3px solid var(--brand-strong);
  background: var(--grad-soft); border-radius: 0 14px 14px 0;
  color: var(--text-1); font-weight: 550;
}

.callout {
  display: flex; gap: 14px; align-items: flex-start;
  margin: 26px 0; padding: 18px 20px; border-radius: 14px;
  background: var(--amber-soft); border: 1px solid rgba(180, 83, 9, 0.25);
}
.callout svg { flex: none; color: var(--amber); margin-top: 2px; }
.callout p { font-size: 0.93rem; color: var(--text-1); }

/* ---------- 16. Related / news ---------- */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.news-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--transition), border-color var(--transition);
}
.news-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.news-card .news-cat {
  align-self: flex-start; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-strong); background: var(--brand-soft); padding: 4px 10px; border-radius: 999px;
}
.news-card h3 { font-size: 1.06rem; }
.news-card h3 a { color: var(--text-1); }
.news-card h3 a:hover { color: var(--brand-strong); }
.news-card p { font-size: 0.9rem; flex: 1; }
.news-meta { font-size: 0.8rem; color: var(--text-3); display: flex; gap: 10px; align-items: center; }

/* ---------- 17. CTA banner ---------- */
.cta-banner {
  margin-top: 64px;
  background:
    radial-gradient(600px 300px at 85% -20%, rgba(229, 72, 77, 0.12), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 44px 40px;
  display: grid; grid-template-columns: 1.3fr auto; gap: 28px; align-items: center;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.cta-banner h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 8px; }
.cta-banner p { font-size: 0.96rem; max-width: 52ch; }

/* ---------- 18. Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); margin-top: 96px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding: 56px 0 40px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 14px; max-width: 34ch; }
.footer-col h4 { font-size: 0.8rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--text-2); font-size: 0.92rem; }
.footer-col a:hover { color: var(--brand-strong); }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 0; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-3);
}

.disclosure {
  border-top: 1px solid var(--border);
  padding: 22px 0 34px;
  font-size: 0.8rem; color: var(--text-3);
  max-width: 90ch; line-height: 1.65;
}

/* ---------- 19. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 20. Responsive ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 560px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 20px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 14px; font-size: 1rem; }
  .nav-cta { margin: 10px 0 0; justify-content: center; }
  .nav { height: 64px; }
  .section { padding: 64px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .cta-banner { grid-template-columns: 1fr; padding: 32px 26px; }
  .float-chip { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero { padding: 64px 0 56px; }
  .grid-4 { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
