/* =============================================
   allhockey365.com — Main Stylesheet
   Theme: Clean Minimal Light | Ice Blue & White
   Colors: Ice Blue #0096C7 | Navy #0A2540 | White #FFFFFF
   ============================================= */

:root {
  --bg-body:       #F0F7FF;
  --bg-white:      #FFFFFF;
  --bg-card:       #FFFFFF;
  --bg-section-alt:#E8F4FD;
  --border:        #C8DFF0;
  --border-light:  #E0EEF8;
  --ice-blue:      #0096C7;
  --ice-blue-dark: #0077A8;
  --ice-blue-light:#E0F2FB;
  --ice-blue-glow: rgba(0,150,199,0.12);
  --navy:          #0A2540;
  --navy-mid:      #1A3A5C;
  --accent:        #00B4D8;
  --accent-light:  #ADE8F4;
  --green:         #059669;
  --green-light:   #D1FAE5;
  --orange:        #F59E0B;
  --orange-light:  #FEF3C7;
  --red:           #DC2626;
  --text-primary:  #0A2540;
  --text-secondary:#3D5A80;
  --text-muted:    #7A9BB5;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --shadow-sm:     0 1px 4px rgba(10,37,64,0.06);
  --shadow:        0 4px 16px rgba(10,37,64,0.10);
  --shadow-lg:     0 8px 32px rgba(10,37,64,0.14);
  --transition:    0.2s ease;
  --header-h:      68px;
}

*, *::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: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--ice-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ice-blue-dark); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4rem; color: var(--text-secondary); }
li { margin-bottom: 0.4rem; }

/* ── Layout ── */
.container  { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 4.5rem 0; }
.section--sm { padding: 2.5rem 0; }
.section--alt { background: var(--bg-section-alt); }
.section--white { background: var(--bg-white); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
}
.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.logo:hover { color: var(--navy); }
.logo .accent { color: var(--ice-blue); }
.logo-icon { font-size: 1.5rem; line-height: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ice-blue);
  background: var(--ice-blue-light);
}
.nav-cta { margin-left: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem 1rem;
}
.mobile-menu a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active,
.mobile-menu a:hover { color: var(--ice-blue); }
.mobile-menu.open { display: flex; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--ice-blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ice-blue-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--ice-blue-glow);
}
.btn-outline {
  background: transparent;
  color: var(--ice-blue);
  border: 1.5px solid var(--ice-blue);
}
.btn-outline:hover {
  background: var(--ice-blue-light);
  color: var(--ice-blue-dark);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: #fff;
  transform: translateY(-1px);
}
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; }

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-blue  { background: var(--ice-blue-light); color: var(--ice-blue-dark); }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-orange{ background: var(--orange-light); color: #92400E; }
.badge-navy  { background: var(--navy); color: #fff; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--ice-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1A5F8A 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,150,199,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,180,216,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}
.hero-stat .stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

/* ── Section Headers ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ice-blue);
  background: var(--ice-blue-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; }

/* ── Bookmaker Cards ── */
.bookie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}
.bookie-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.bookie-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.bookie-card.featured {
  border-color: var(--ice-blue);
  box-shadow: 0 0 0 1px var(--ice-blue), var(--shadow-sm);
}
.bookie-rank {
  position: absolute;
  top: -1px;
  right: 14px;
  background: var(--ice-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.5px;
}
.bookie-logo {
  width: 64px;
  height: 48px;
  background: var(--bg-section-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--navy);
  flex-shrink: 0;
  text-align: center;
  line-height: 1.2;
  border: 1px solid var(--border-light);
}
.bookie-body { flex: 1; min-width: 0; }
.bookie-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.bookie-bonus {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.bookie-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.75rem; }
.bookie-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.bookie-rating .stars { letter-spacing: 1px; }
.bookie-actions { display: flex; gap: 0.5rem; align-items: center; }
.bookie-review-link {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.bookie-review-link:hover { color: var(--ice-blue); }

/* ── Guide Cards ── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.guide-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.guide-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.guide-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ice-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.guide-card h3 { margin-bottom: 0.5rem; }
.guide-card p { font-size: 0.9rem; flex: 1; margin-bottom: 1rem; }
.guide-card .read-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ice-blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.guide-card .read-more:hover { color: var(--ice-blue-dark); }

/* ── League Cards ── */
.league-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.league-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.league-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.league-flag {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.league-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.league-country {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.league-stat {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-section-alt);
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  display: inline-block;
}

/* ── Comparison Table ── */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--bg-section-alt); }
.compare-table tr:hover td { background: var(--ice-blue-light); }
.check { color: var(--green); font-size: 1.1rem; }
.cross { color: var(--red); font-size: 1.1rem; }
.rating-cell { color: var(--orange); font-weight: 700; }

/* ── Breadcrumbs ── */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--ice-blue); }
.breadcrumbs span { margin: 0 0.4rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0F3460 100%);
  padding: 3rem 0;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.page-hero p  { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 640px; }

/* ── Content Layout (article + sidebar) ── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.sidebar-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin-bottom: 1.25rem;
}
.sidebar-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.toc-list { list-style: none; padding: 0; }
.toc-list li { margin-bottom: 0; }
.toc-list a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.toc-list a:hover { color: var(--ice-blue); }
.toc-list li:last-child a { border-bottom: none; }

/* Article content */
.article-body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
  padding-top: 0.5rem;
}
.article-body h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.6rem;
}
.article-body p { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol {
  margin-bottom: 1.1rem;
}
.article-body ul li, .article-body ol li { margin-bottom: 0.5rem; }
.info-box {
  background: var(--ice-blue-light);
  border-left: 3px solid var(--ice-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.info-box p { color: var(--navy); margin: 0; font-size: 0.94rem; }
.warn-box {
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.warn-box p { color: #78350F; margin: 0; font-size: 0.94rem; }

/* ── Trust Signals ── */
.trust-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-item .t-icon { font-size: 1.2rem; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-white);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--ice-blue-light); }
.faq-q.open  { background: var(--ice-blue-light); color: var(--ice-blue-dark); }
.faq-q .faq-arrow { transition: transform var(--transition); font-size: 0.8rem; color: var(--text-muted); }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
}
.faq-a.open { display: block; }

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 1.25rem; }
.blog-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.75rem;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.blog-card p  { font-size: 0.88rem; margin-bottom: 0.75rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(0,150,199,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.78); margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}
.cta-banner .btn-white:hover {
  background: var(--accent-light);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ── Disclaimer Bar ── */
.disclaimer-bar {
  background: var(--orange-light);
  border-top: 2px solid var(--orange);
  padding: 0.75rem 0;
  font-size: 0.8rem;
  color: #78350F;
  text-align: center;
}
.disclaimer-bar strong { font-weight: 700; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 1rem; }
.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent-light); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent-light); }
.footer-legal { max-width: 760px; font-size: 0.78rem; line-height: 1.6; color: rgba(255,255,255,0.4); padding-bottom: 1.5rem; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-muted   { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex  { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.items-center { align-items: center; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { order: -1; grid-template-columns: repeat(4, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero { padding: 3rem 0 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .bookie-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .compare-table { font-size: 0.82rem; }
  .compare-table td, .compare-table th { padding: 0.65rem 0.7rem; }
}
