/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

html {scroll-behavior: smooth;}
html, body {overflow-x: hidden;}
a {display: inline-block; text-align: center;}

:root {
  --navy: #1B2A4A;
  --navy-light: #2C3E6B;
  --navy-dark: #111D35;
  --gold: #C9A84C;
  --gold-light: #E8D5A0;
  --bg: #FAFBFD;
  --bg-alt: #F0F2F7;
  --bg-card: #FFFFFF;
  --text: #2D3436;
  --text-light: #636E72;
  --text-muted: #9BA3A9;
  --border: #E1E5ED;
  --success: #27AE60;
  --error: #E74C3C;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(27,42,74,0.06);
  --shadow: 0 4px 16px rgba(27,42,74,0.08);
  --shadow-lg: 0 8px 32px rgba(27,42,74,0.12);
  --max-w: 1200px;
  --transition: 0.3s ease;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 400;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,251,253,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-block;
  text-align: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover {
  background: #d4b35a;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  text-align: center;
  background: var(--bg-alt);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 28px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-border { border-top: 1px solid var(--border); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header p { color: var(--text-light); font-size: 1.1rem; }
.section-label {
  display: inline-block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step-card {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  counter-increment: step;
  position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0 auto 20px;
}
.step-card h3 { color: var(--navy); }
.step-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

/* Cost breakdown */
.costs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cost-item {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.cost-item:hover { border-color: var(--gold); }
.cost-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.cost-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.cost-pct {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.cost-item p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* Profiles */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.profile-icon { font-size: 2.5rem; margin-bottom: 16px; }
.profile-card-body { padding: 28px; }
.profile-card h3 { margin-bottom: 12px; }
.profile-card p { font-size: 0.95rem; color: var(--text-light); }
.profile-tag {
  display: inline-block;
  text-align: center;
  background: var(--bg-alt);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
}

/* CTA Banner */
.cta-banner {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto 28px; }
.cta-banner .btn-gold { font-size: 1.05rem; padding: 14px 36px; }

/* Content pages */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.info-box h3 { margin-bottom: 16px; }
.info-box ul { padding-left: 20px; margin-bottom: 16px; }
.info-box li { margin-bottom: 8px; color: var(--text-light); }

.disclaimer-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-top: 32px;
}
.disclaimer-box h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.1rem; }
.disclaimer-box p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 8px; }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px 0;
}
.comparison-table th {
  background: var(--navy);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) { background: var(--bg-alt); }

/* Glossary */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.glossary-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.glossary-item strong {
  color: var(--navy);
  font-size: 1rem;
  display: block;
  margin-bottom: 6px;
}
.glossary-item p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* Calculator */
.calc-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 32px;
}
.calc-card h3 { margin-bottom: 24px; text-align: center; }
.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.calc-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.calc-field input, .calc-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--bg);
}
.calc-field input:focus, .calc-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.calc-btn {
  width: 100%;
  margin-top: 8px;
}
.calc-results {
  display: none;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.calc-results.visible { display: block; }
.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.result-item {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.result-item .label { font-size: 0.85rem; color: var(--text-light); margin-bottom: 4px; }
.result-item .value { font-family: var(--font-heading); font-size: 1.6rem; color: var(--navy); }
.result-item .value.gold { color: var(--gold); }

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  padding: 14px 16px 14px 44px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 16px;
  color: var(--gold);
  font-weight: 700;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  margin: 32px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.timeline-item .time-label {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-item p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--bg);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.phone-group {
  display: flex;
  gap: 8px;
}
.phone-prefix {
  width: 80px;
  flex-shrink: 0;
  text-align: center;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}
.checkbox-group input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--navy);
}
.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}
.checkbox-group a { color: var(--navy); text-decoration: underline; }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-info-text span { font-size: 0.95rem; color: var(--text-light); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 280px; border: none; display: block; }

/* Legal pages */
.legal-page { padding: 60px 0 80px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { margin-bottom: 8px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.legal-page .updated { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 40px; }
.legal-page h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.legal-page h2:first-of-type { border-top: none; }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page li { margin-bottom: 6px; }

/* Success & 404 */
.page-message {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.page-message-inner { max-width: 520px; }
.page-message h1 { margin-bottom: 16px; }
.page-message p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 28px; }
.big-404 {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 10rem);
  color: var(--navy);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -20px;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  text-align: left;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; margin: 0 6px; }
.footer-bottom a:hover { color: var(--gold); }
.cookie-pref-link {
  cursor: pointer;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.cookie-pref-link:hover { color: var(--gold); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 20px 24px;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-compact {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-compact p { margin: 0; font-size: 0.9rem; color: var(--text-light); flex: 1; min-width: 200px; }
.cookie-compact a { color: var(--navy); text-decoration: underline; font-size: 0.9rem; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btns .btn { padding: 10px 20px; font-size: 0.85rem; }
.btn-cookie-accept { background: var(--navy); color: #fff; }
.btn-cookie-reject { background: transparent; color: var(--navy); border: 1px solid var(--border); }
.btn-cookie-customize { background: transparent; color: var(--navy); border: 1px solid var(--border); }

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-modal-overlay.visible { display: flex; }
.cookie-modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal h3 { margin-bottom: 24px; font-size: 1.3rem; }
.cookie-option {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cookie-option-header strong { color: var(--navy); font-size: 0.95rem; }
.cookie-option p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* Toggle switch */
.toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  left: 3px;
  top: 3px;
  transition: transform var(--transition);
}
.toggle input:checked + .toggle-slider { background: var(--navy); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.cookie-modal-btns .btn { flex: 1; padding: 12px 16px; font-size: 0.9rem; }

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250,251,253,0.98);
  z-index: 999;
  padding: 32px 24px;
}
.mobile-menu-overlay.active { display: block; }
.mobile-menu-overlay a {
  display: block;
  text-align: left;
  padding: 16px 0;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-menu-overlay .btn {
  display: block;
  text-align: center;
  margin-top: 24px;
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .costs-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-row { grid-template-columns: 1fr; }
  .glossary-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .header-inner .btn { display: none; }
  .hamburger { display: flex; }
  .steps-grid, .profiles-grid { grid-template-columns: 1fr; }
  .costs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
  .result-grid { grid-template-columns: 1fr; }
  .cookie-compact { flex-direction: column; text-align: center; }
  .cookie-btns { width: 100%; justify-content: center; }
}