/* ============================================================
   DRIVING TEST EXPERT — styles.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #1a3a6b;
  --navy-light:  #2a5298;
  --navy-dark:   #112550;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --amber-light: #fef3c7;
  --bg:          #f8fafc;
  --white:       #ffffff;
  --text:        #1e293b;
  --muted:       #64748b;
  --border:      #e2e8f0;
  --success:     #16a34a;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 2px 8px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(26,58,107,.14);
  --container:   1200px;
  --transition:  .2s ease;
}

/* ── Reset additions ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--amber-dark); }
address { font-style: normal; }
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 .75rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 700; }
p { margin: 0 0 1rem; }
ul,ol { padding-left: 1.5rem; margin: 0 0 1rem; }
li { margin-bottom: .35rem; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
  border-radius: var(--radius); border: 2px solid transparent;
  padding: .7rem 1.6rem; cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: var(--navy); }
.btn-secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--muted); border-color: var(--border); }
.btn-ghost:hover { background: var(--border); color: var(--text); }
.btn-lg { padding: .95rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }

/* ── Disclaimer bar ────────────────────────────────────────── */
.disclaimer-bar {
  background: var(--amber-light);
  border-bottom: 2px solid var(--amber);
  padding: .55rem 0;
  font-size: .8rem;
  line-height: 1.4;
  text-align: center;
}
.disclaimer-bar strong { color: var(--navy-dark); }
.disclaimer-bar a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ── Header ────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 70px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: .2rem; flex: 1; justify-content: center; }
.nav-link {
  padding: .45rem .75rem; border-radius: 6px; font-size: .88rem; font-weight: 500;
  color: var(--muted); transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link--active { color: var(--navy); background: var(--bg); }
.nav-link--highlight { color: var(--navy); font-weight: 700; }
.header-cta { flex-shrink: 0; }

/* Hamburger button */
.nav-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 32px; height: 22px; background: none; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 100%; height: 2.5px;
  background: var(--navy); border-radius: 2px; transition: all var(--transition);
}
.nav-toggle--open span:nth-child(1) { transform: translateY(9.75px) rotate(45deg); }
.nav-toggle--open span:nth-child(2) { opacity: 0; }
.nav-toggle--open span:nth-child(3) { transform: translateY(-9.75px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 959px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.5rem; gap: .2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav--open { display: flex; }
  .nav-link { padding: .75rem 1rem; font-size: 1rem; border-radius: 6px; }
  .header-inner { position: relative; }
}
@media (min-width: 960px) { .header-cta { display: inline-flex; } }

/* ── Page hero ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: var(--white); padding: 5rem 0 4rem; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 580px; margin: 0 auto; }
.page-hero .badge {
  display: inline-block; background: var(--amber); color: var(--navy);
  font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 99px; margin-bottom: 1.25rem;
}

/* ── Section spacing ────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section--bg { background: var(--white); }
.section--muted { background: var(--bg); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { color: var(--muted); font-size: 1.1rem; max-width: 560px; margin: .75rem auto 0; }
.divider {
  width: 52px; height: 4px; background: var(--amber);
  border-radius: 2px; margin: 1rem auto 0;
}

/* ── Feature cards ─────────────────────────────────────────── */
.cards-grid { display: grid; gap: 2rem; }
.cards-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--amber-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem; font-size: 1.6rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ── Stats strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--navy); color: var(--white);
  padding: 3rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: .4rem; }
.stat-label { color: rgba(255,255,255,.75); font-size: .9rem; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before { content: '\201C'; font-size: 4rem; color: var(--amber); line-height: .6; display: block; margin-bottom: .5rem; font-family: Georgia, serif; }
.testimonial p { color: var(--text); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial-meta { font-size: .8rem; color: var(--muted); }
.stars { color: var(--amber); font-size: .95rem; letter-spacing: .1em; margin-bottom: .5rem; }

/* ── Forms ──────────────────────────────────────────────────── */
.form-wrapper {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; color: var(--navy); }
input, select, textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: .96rem; font-family: inherit;
  color: var(--text); background: var(--bg); transition: border-color var(--transition);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--navy); background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,58,107,.1);
}
textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; gap: .75rem; align-items: flex-start; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: .2rem; accent-color: var(--navy); }
.form-check label { font-weight: 400; font-size: .88rem; margin: 0; color: var(--muted); }
.form-check a { color: var(--navy); text-decoration: underline; }
.form-submit { margin-top: 1.75rem; }
.form-notice {
  background: var(--amber-light); border: 1px solid var(--amber);
  border-radius: var(--radius); padding: .9rem 1.2rem; font-size: .85rem;
  color: var(--navy-dark); margin-bottom: 1.5rem;
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ── FAQ accordion ──────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item--open { border-color: var(--navy); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--navy);
  text-align: left; gap: 1rem;
}
.faq-question:hover { background: var(--bg); }
.faq-icon { flex-shrink: 0; font-size: 1.3rem; color: var(--amber); transition: transform var(--transition); line-height: 1; }
.faq-item--open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; color: var(--muted); font-size: .96rem; line-height: 1.7; }

/* ── Blog cards ─────────────────────────────────────────────── */
.blog-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block; background: var(--amber-light); color: var(--amber-dark);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .7rem; border-radius: 99px; margin-bottom: .75rem;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.blog-card-body h3 a { color: var(--navy); }
.blog-card-body h3 a:hover { color: var(--amber-dark); }
.blog-card-body p { color: var(--muted); font-size: .88rem; margin-bottom: 1rem; }
.blog-meta { font-size: .8rem; color: var(--muted); }

/* ── Pricing cards ──────────────────────────────────────────── */
.pricing-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 900px; margin: 0 auto; }
.pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center;
  position: relative; box-shadow: var(--shadow);
}
.pricing-card--featured { border-color: var(--navy); box-shadow: var(--shadow-lg); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--navy); font-size: .75rem; font-weight: 700;
  padding: .3rem 1.1rem; border-radius: 99px; text-transform: uppercase; letter-spacing: .05em;
}
.pricing-price { margin: 1.25rem 0; }
.pricing-amount { font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-period { color: var(--muted); font-size: .9rem; display: block; margin-top: .3rem; }
.pricing-features { list-style: none; padding: 0; margin: 1.5rem 0 2rem; text-align: left; }
.pricing-features li { padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .93rem; color: var(--muted); display: flex; align-items: center; gap: .6rem; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.pricing-note { font-size: .82rem; color: var(--muted); margin-top: 1.25rem; line-height: 1.5; }

/* ── Team cards ─────────────────────────────────────────────── */
.team-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.team-card { text-align: center; }
.team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 4px solid var(--amber); }
.team-card h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.team-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ── How it works steps ─────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 2.5rem; max-width: 720px; margin: 0 auto; }
.step { display: flex; gap: 1.75rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--white); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800;
}
.step h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { color: var(--muted); margin: 0; }

/* ── Locations grid ─────────────────────────────────────────── */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; }
.location-chip {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: .75rem 1rem;
  font-size: .92rem; font-weight: 500; color: var(--navy);
  display: flex; align-items: center; gap: .5rem;
  transition: all var(--transition);
}
.location-chip:hover { border-color: var(--navy); background: var(--bg); }
.location-chip::before { content: '📍'; font-size: .85rem; }

/* ── Two-column layout ──────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col--reverse .two-col-img { order: -1; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } .two-col--reverse .two-col-img { order: 0; } }
.two-col-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.two-col-img img { width: 100%; height: 380px; object-fit: cover; }

/* ── Notice box ─────────────────────────────────────────────── */
.notice { background: var(--amber-light); border-left: 4px solid var(--amber); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.1rem 1.4rem; margin: 1.5rem 0; font-size: .92rem; color: var(--navy-dark); }

/* ── Hero section (index.html) ──────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white); padding: 5.5rem 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -10%; top: -20%;
  width: 60%; height: 140%; background: rgba(255,255,255,.03);
  border-radius: 50%; pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } .hero-img { display: none; } }
.hero-badge {
  display: inline-block; background: var(--amber); color: var(--navy);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .3rem 1rem; border-radius: 99px; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--amber); }
.hero p { color: rgba(255,255,255,.82); font-size: 1.15rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-disclaimer { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 1.5rem; }
.hero-img img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(0,0,0,.35); }

/* ── Received / Success page ─────────────────────────────────── */
.success-box {
  background: var(--white); border: 2px solid var(--success);
  border-radius: var(--radius-lg); padding: 3rem 2.5rem; text-align: center;
  max-width: 540px; margin: 4rem auto; box-shadow: var(--shadow-lg);
}
.success-icon { font-size: 3.5rem; margin-bottom: 1.25rem; }
.success-box h1 { color: var(--success); font-size: 2rem; }

/* ── Blog article ───────────────────────────────────────────── */
.article { max-width: 780px; margin: 0 auto; padding: 4rem 0; }
.article-meta { color: var(--muted); font-size: .88rem; margin-bottom: 2rem; }
.article img { border-radius: var(--radius-lg); margin: 2rem 0; width: 100%; }
.article h2 { margin-top: 2.5rem; }
.article h3 { margin-top: 2rem; }

/* ── Legal pages ────────────────────────────────────────────── */
.legal { max-width: 820px; margin: 0 auto; padding: 4rem 0; }
.legal h2 { margin-top: 2.5rem; font-size: 1.4rem; }
.legal h3 { margin-top: 1.75rem; font-size: 1.1rem; font-family: 'Inter', sans-serif; }
.legal p, .legal li { color: var(--muted); font-size: .96rem; }

/* ── Contact layout ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { margin-bottom: .5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }

/* ── 404 page ───────────────────────────────────────────────── */
.not-found { text-align: center; padding: 7rem 0; }
.not-found h1 { font-size: 6rem; color: var(--border); margin-bottom: .5rem; }
.not-found h2 { color: var(--navy); }
.not-found p { color: var(--muted); margin-bottom: 2rem; }

/* ── Trust badges ───────────────────────────────────────────── */
.trust-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.trust-strip-inner { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; justify-content: center; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: .5rem; font-size: .83rem; font-weight: 600; color: var(--muted); }
.trust-badge span { font-size: 1.2rem; }

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band { background: var(--navy); color: var(--white); padding: 5rem 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 520px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: #0d2240; color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 38px; width: auto; margin-bottom: 1.25rem; filter: brightness(0) invert(1); opacity: .9; }
.footer-tagline { font-size: .88rem; margin-bottom: 1rem; line-height: 1.6; }
.footer-reg { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.8; }
.footer-heading { font-family: 'Inter', sans-serif; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--amber); margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .75rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-address { font-size: .85rem; line-height: 1.8; margin-bottom: .75rem; color: rgba(255,255,255,.65); }
.footer-phone, .footer-email { display: block; font-size: .88rem; color: rgba(255,255,255,.75); margin-bottom: .4rem; }
.footer-phone:hover, .footer-email:hover { color: var(--amber); }
.footer-official { font-size: .78rem; margin-top: .75rem; color: rgba(255,255,255,.45); }
.footer-official a { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.75rem 0 2rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-bottom: 1rem; }
.footer-legal-links a { font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-legal-links a:hover { color: var(--white); }
.footer-copyright { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: .75rem; }
.footer-disclaimer-text { font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.6; max-width: 780px; }
.footer-disclaimer-text a { color: rgba(255,255,255,.55); text-decoration: underline; }

/* ── Cookie banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy-dark); color: var(--white);
  padding: 1.1rem 0; border-top: 3px solid var(--amber);
  transform: translateY(110%); transition: transform .4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-inner p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.82); flex: 1; min-width: 200px; }
.cookie-inner a { color: var(--amber); text-decoration: underline; }
.cookie-btns { display: flex; gap: .75rem; flex-shrink: 0; }

/* ── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.inline-flex { display: inline-flex; align-items: center; gap: .5rem; }

@media (max-width: 540px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0; }
  .page-hero { padding: 3.5rem 0 3rem; }
  .form-wrapper { padding: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
