/* ============================================
   WHITTLESEA BLUE CAB - ONLINE CASINO AUSTRALIA
   Modern, Mobile-First CSS Framework
   ============================================ */

/* CSS Variables */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2640;
  --primary-light: #2a5a8c;
  --accent: #f0b429;
  --accent-dark: #d49b1f;
  --accent-light: #ffd166;
  --success: #10b981;
  --success-light: #d1fae5;
  --danger: #ef4444;
  --danger-light: #fee2e2;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --info: #3b82f6;
  --info-light: #dbeafe;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
  --max-width: 1200px;
  --header-height: 72px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.875rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.125rem; color: var(--text-light); line-height: 1.8; }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary-dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary-dark);
  border-bottom: 3px solid var(--accent);
  height: var(--header-height);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: var(--accent); }
.nav-main { display: flex; align-items: center; gap: 0; }
.nav-main a {
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-main a:hover, .nav-main a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5rem;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-main {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-main.active { display: flex; }
  .nav-main a { padding: 0.75rem 1rem; width: 100%; }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.25rem; }
.hero h1 .highlight { color: var(--accent); }
.hero .lead { color: rgba(255,255,255,0.85); font-size: 1.125rem; max-width: 640px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.9);
}
.hero-badge svg { width: 16px; height: 16px; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--text-lighter);
  border-bottom: 1px solid var(--border-light);
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs span { margin: 0 0.375rem; }

/* Cards */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.card-highlight { border-left: 4px solid var(--accent); }

/* Casino Cards */
.casino-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.casino-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.casino-card-rank {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
}
.casino-card-header {
  background: var(--bg-alt);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.casino-card-logo {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  text-align: center;
  flex-shrink: 0;
}
.casino-card-info h3 { margin-bottom: 0.25rem; font-size: 1.125rem; }
.casino-card-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
}
.rating-stars { color: var(--accent); letter-spacing: 1px; }
.rating-score { font-weight: 700; color: var(--primary-dark); }
.casino-card-body { padding: 1.25rem 1.5rem; }
.casino-card-bonus {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--primary-dark);
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}
.casino-card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.casino-card-feature {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--text-light);
}
.casino-card-feature svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }
.casino-card-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.payment-badge {
  font-size: 0.6875rem;
  padding: 0.25rem 0.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-light);
}
.casino-card-footer {
  padding: 1rem 1.5rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.casino-card-footer .btn { flex: 1; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-primary:hover { background: var(--accent-dark); color: var(--primary-dark); }
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }

/* Tables */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.5rem; }
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table thead { background: var(--primary-dark); color: #fff; }
.data-table th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.data-table tbody tr:hover { background: var(--bg-alt); }
.data-table tbody tr:last-child td { border-bottom: none; }

/* Info Boxes */
.info-box {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
}
.info-box-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-box-content { flex: 1; }
.info-box-content p:last-child { margin-bottom: 0; }
.info-box-info { background: var(--info-light); border-left: 4px solid var(--info); }
.info-box-warning { background: var(--warning-light); border-left: 4px solid var(--warning); }
.info-box-success { background: var(--success-light); border-left: 4px solid var(--success); }
.info-box-danger { background: var(--danger-light); border-left: 4px solid var(--danger); }

/* Pros & Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.pros, .cons { padding: 1.25rem; border-radius: var(--radius); }
.pros { background: var(--success-light); border: 1px solid var(--success); }
.cons { background: var(--danger-light); border: 1px solid var(--danger); }
.pros h4 { color: #059669; }
.cons h4 { color: #dc2626; }
.pros li, .cons li {
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
}
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

/* FAQ Accordion */
.faq-section { margin: 2rem 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-dark); }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  display: none;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }

/* Tags & Badges */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-gold { background: var(--accent-light); color: var(--primary-dark); }
.tag-green { background: var(--success-light); color: #059669; }
.tag-blue { background: var(--info-light); color: #1d4ed8; }
.tag-red { background: var(--danger-light); color: #dc2626; }

/* Rating Display */
.rating-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.rating-bar {
  width: 120px;
  height: 8px;
  background: var(--bg-dark);
  border-radius: 100px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.5s ease;
}
.rating-label { font-size: 0.875rem; font-weight: 700; color: var(--primary-dark); }

/* Author Box */
.author-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 2rem 0;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--primary-dark); }
.author-role { font-size: 0.8125rem; color: var(--text-light); }
.author-bio { font-size: 0.875rem; margin-top: 0.375rem; color: var(--text-light); }

/* Updated Badge */
.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.updated-badge strong { color: var(--success); }

/* Table of Contents */
.toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.toc h4 { margin-bottom: 0.75rem; }
.toc ol { counter-reset: toc; padding-left: 0; }
.toc li {
  counter-increment: toc;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border-light);
}
.toc li:last-child { border-bottom: none; }
.toc li::before {
  content: counter(toc) ".";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.5rem;
}
.toc a { color: var(--text); font-size: 0.9375rem; }
.toc a:hover { color: var(--accent); }

/* Comparison Table */
.comparison-table {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comparison-table thead { background: var(--primary-dark); }
.comparison-table th { color: #fff; padding: 1rem; text-align: center; font-size: 0.8125rem; }
.comparison-table td { padding: 0.75rem 1rem; text-align: center; border-bottom: 1px solid var(--border-light); }
.comparison-table .check { color: var(--success); font-weight: 700; }
.comparison-table .cross { color: var(--danger); font-weight: 700; }

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-col h4 { color: var(--accent); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.875rem; padding: 0.25rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.75rem;
}
.footer-responsible {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer-responsible h4 { color: var(--warning); font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer-responsible p { font-size: 0.8125rem; margin-bottom: 0.5rem; }
.footer-helplines { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.75rem; }
.footer-helpline {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
}
.footer-helpline strong { color: var(--accent); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin-top: 1rem; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Bonus Calculator */
.calculator-box {
  background: var(--bg-alt);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}
.calc-input-group { margin-bottom: 1.25rem; }
.calc-input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}
.calc-input-group input, .calc-input-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.calc-input-group input:focus, .calc-input-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.15);
}
.calc-result {
  background: var(--primary-dark);
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
.calc-result h4 { color: var(--accent); margin-bottom: 0.75rem; }
.calc-result-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9375rem;
}
.calc-result-row:last-child { border-bottom: none; }
.calc-result-row .value { font-weight: 700; color: var(--accent); }

/* Content Styles */
.content-body h2 { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.content-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.content-body h3 { margin-top: 1.5rem; }
.content-body ul, .content-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }
.content-body li { margin-bottom: 0.375rem; font-size: 0.9375rem; }
.content-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-light);
}
.content-body strong { color: var(--primary-dark); }

/* Methodology Section */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.methodology-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.methodology-item .score {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 0.25rem;
}
.methodology-item .label {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Sidebar */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}
.sidebar-widget {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  font-size: 0.9375rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 0.75rem;
}
@media (max-width: 900px) {
  .layout-with-sidebar { grid-template-columns: 1fr; }
}

/* Payment Methods Grid */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}
.payment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  border-top: 3px solid var(--accent);
  padding: 0.875rem 1.25rem;
  z-index: 999;
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; align-items: center; justify-content: space-between; }
  .sticky-cta .btn { flex: 1; }
}

/* Step Guide */
.steps { counter-reset: steps; margin: 1.5rem 0; }
.step {
  counter-increment: steps;
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
}
.step::before {
  content: counter(steps);
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 0.25rem; }
.step-content p { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 0; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.4s ease forwards; }

/* Print Styles */
@media print {
  .site-header, .site-footer, .sticky-cta, .btn { display: none !important; }
  body { font-size: 12pt; }
  .container { max-width: 100%; }
}

/* Utility Classes */
.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; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
