/* --------------------------------------------------
   CSS RESET & NORMALIZE
-------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f8f8fa;
  color: #23272b;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #06549a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #23272b;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
input, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* --------------------------------------------------
   SOFT PASTEL BRAND STYLES
-------------------------------------------------- */
:root {
  --brand-primary: #23272b;
  --brand-secondary: #06549a;
  --brand-accent: #f3e8d1;
  --pastel-blue: #c6e4fa;
  --pastel-pink: #fad6ec;
  --pastel-lavender: #eae5f8;
  --pastel-mint: #c9f4e0;
  --pastel-yellow: #fff7d6;
  --pastel-green: #e2f8d7;
  --gray-100: #f8f8fa;
  --gray-200: #ececf3;
  --gray-300: #e1e5ed;
  --shadow-lg: 0 6px 32px rgba(44, 44, 82, 0.07);
  --shadow-card: 0 2px 16px rgba(44,44,82,0.09);
}

/* --------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--brand-secondary);
  text-shadow: 0 1px 0 var(--gray-200);
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--brand-primary);
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--brand-primary);
  font-weight: 500;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--brand-secondary);
}
p, ul, ol {
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--brand-primary);
}
p.small, .small {
  font-size: 0.94rem;
  color: #4b4b54;
}
strong {
  font-weight: 700;
}

/* --------------------------------------------------
   CONTAINER & GENERAL LAYOUT
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: var(--pastel-lavender);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 32px 20px;
  margin-bottom: 32px;
  color: var(--brand-primary);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (min-width: 900px) {
  .section {
    padding: 54px 0;
  }
  .content-wrapper {
    gap: 32px;
  }
}

/* --------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------- */
header {
  background: linear-gradient(90deg, var(--pastel-blue) 0%, var(--pastel-lavender) 100%);
  box-shadow: 0 2px 14px rgba(80, 80, 140, 0.07);
  position: sticky;
  top: 0;
  z-index: 1040;
  padding-top: 8px;
  padding-bottom: 8px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header img {
  height: 42px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  position: relative;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 6px 12px;
  color: var(--brand-primary);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--brand-secondary);
}
.btn-primary {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.09rem;
  padding: 10px 28px;
  border-radius: 30px;
  color: white;
  background: linear-gradient(100deg, var(--pastel-pink) 0%, var(--brand-secondary) 100%);
  box-shadow: 0 2px 8px rgba(6, 84, 154, 0.09);
  border: none;
  font-weight: 600;
  margin-left: 16px;
  transition: background 0.24s, box-shadow 0.24s, transform 0.11s;
  letter-spacing: 0.2px;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--brand-secondary) 0%, var(--pastel-lavender) 100%);
  color: var(--brand-primary);
  box-shadow: 0 4px 24px rgba(80, 80, 140, 0.13);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary);
  color: #fff;
  font-size: 1.85rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s;
  z-index: 1100;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--pastel-blue);
  color: var(--brand-secondary);
}

@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Hide main nav and CTA on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
}

/* --------------------------------------------------
   MOBILE MENU
-------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(250, 250, 255, 0.98);
  box-shadow: 0 4px 32px rgba(80,80,140,.14);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.36s cubic-bezier(.4,0,.2,1), opacity 0.2s, visibility 0.2s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  margin-top: 24px;
  margin-left: 18px;
  margin-bottom: 18px;
  font-size: 2.25rem;
  color: var(--brand-secondary);
  background: none;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: background 0.12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pastel-blue);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100vw;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 14px 10px 13px 0;
  color: var(--brand-primary);
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
  font-weight: 500;
  letter-spacing: .02em;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--brand-secondary);
}

/* Hide on desktop */
@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}

/* --------------------------------------------------
   HERO SECTIONS
-------------------------------------------------- */
section:first-of-type {
  background: linear-gradient(120deg, var(--pastel-blue) 0%, var(--pastel-lavender) 100%);
  margin-bottom: 0;
  min-height: 220px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(44,44,64,.03);
}
section:first-of-type .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
@media (min-width: 600px) {
  section:first-of-type .content-wrapper {
    align-items: center;
    text-align: center;
  }
}

.brand-tagline, .subheadline {
  color: var(--brand-primary);
  font-size: 1.08rem;
  margin-bottom: 18px;
  opacity: 0.95;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------
   FLEXBOX SPACING & ALIGMENTS (MANDATORY)
-------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(44,44,82,0.12);
  transform: translateY(-2px) scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-yellow);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(180,180,140,.12);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: var(--brand-secondary);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.testimonial-card p {
  color: var(--brand-primary);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------------------------------------------
   FEATURE GRID/LISTS
-------------------------------------------------- */
.feature-grid,
.feature-list,
.vehicle-types-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: stretch;
}
.feature-grid li, .feature-list li {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: 16px;
  padding: 26px 20px 14px 20px;
  flex: 1 1 235px;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.23s, transform 0.14s;
}
.feature-grid li:hover, .feature-list li:hover {
  box-shadow: 0 8px 32px rgba(44,44,110,.10);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img, .feature-list img {
  height: 42px;
  width: 42px;
  margin-bottom: 14px;
  filter: drop-shadow(0 3px 8px rgba(100,100,150,.08));
}

.vehicle-types-list li {
  flex: 1 1 210px;
  background: var(--pastel-mint);
  color: var(--brand-primary);
  border-radius: 16px;
  padding: 18px 18px 18px 16px;
  margin-bottom: 0;
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .feature-grid,
  .feature-list,
  .vehicle-types-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li,
  .feature-list li,
  .vehicle-types-list li {
    max-width: 100%;
  }
}

/* --------------------------------------------------
   SERVICES CARDS & OVERVIEW
-------------------------------------------------- */
.services-overview,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card {
  background: var(--pastel-green);
  box-shadow: var(--shadow-card);
  border-radius: 16px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 320px;
  padding: 26px 18px 19px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.21s;
}
.service-card:hover {
  box-shadow: 0 8px 36px rgba(44,44,80,.10);
  transform: translateY(-3px) scale(1.035);
}
.service-card h3 {
  color: var(--brand-secondary);
  font-size: 1.14rem;
  margin-bottom: 8px;
}
.service-card p,
.service-card div {
  font-size: 1rem;
  color: var(--brand-primary);
}

@media (max-width: 960px) {
  .services-overview,
  .services-list {
    flex-direction: column;
    gap: 18px;
  }
  .service-card,
  .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* --------------------------------------------------
   ARTICLE/FAQ LISTS & TIPS
-------------------------------------------------- */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.faq {
  background: var(--pastel-yellow);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(200,200,120,.08);
  padding: 16px;
  color: var(--brand-primary);
  margin-bottom: 0;
}
.faq li {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-300);
}
.faq li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.tips-icons ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tips-icons li {
  background: var(--pastel-pink);
  color: var(--brand-primary);
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(230,180,200,0.10);
  padding: 16px 16px 12px 18px;
  font-size: 1rem;
  min-width: 180px;
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tips-icons img {
  height: 38px; width: 38px;
}

/* --------------------------------------------------
   MISSION/STATEMENT AREAS
-------------------------------------------------- */
.mission-statement,
.mission-vision {
  background: var(--pastel-lavender);
  color: var(--brand-primary);
  border-left: 6px solid var(--brand-secondary);
  border-radius: 14px;
  padding: 18px 16px;
  font-size: 1.07rem;
  margin-top: 8px;
  box-shadow: 0 1px 6px rgba(80,70,180,.07);
}

.fleet-advantages ul,
.certificates-and-standards ul,
.eco-friendly-practices ul,
.safety-measures ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.certificates-and-standards,
.eco-friendly-practices,
.safety-measures {
  margin-bottom: 16px;
}

/* --------------------------------------------------
   CTA SECTIONS
-------------------------------------------------- */
.cta-banner,
.cta {
  background: linear-gradient(92deg, var(--pastel-blue) 30%, var(--pastel-pink) 100%);
  border-radius: 20px;
  padding: 42px 20px;
  margin-top: 24px;
  margin-bottom: 36px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(180, 180, 200, 0.10);
}
.cta-banner h2, .cta h2 {
  color: var(--brand-secondary);
}
.cta-banner .btn-primary, .cta .btn-primary {
  margin-top: 20px;
}

/* --------------------------------------------------
   CLIENT LOGOS
-------------------------------------------------- */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  justify-content: flex-start;
}
.client-logos img {
  height: 34px;
  filter: grayscale(0.09) brightness(1.19);
  opacity: 0.9;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: linear-gradient(90deg, var(--pastel-pink) 0, var(--pastel-blue) 90%);
  box-shadow: 0 -2px 20px rgba(132,158,180,0.06);
  color: var(--brand-primary);
  padding-top: 30px;
  padding-bottom: 26px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 42px;
  margin-bottom: 9px;
}
.footer-nav,
.legal-menu {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a, .legal-menu a {
  font-size: 0.98rem;
  color: var(--brand-primary);
  padding: 3px 0 3px 2px;
  border-radius: 7px;
  transition: background 0.17s, color 0.14s;
}
.footer-nav a:hover, .legal-menu a:hover {
  background: var(--pastel-lavender);
  color: var(--brand-secondary);
}
.footer-address p, .footer-address a {
  font-size: 0.91rem;
  color: var(--brand-primary);
  opacity: 0.93;
}
.footer-address a {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 18px;
  }
}

/* --------------------------------------------------
   SPACING UTILITIES
-------------------------------------------------- */
.mb-0   { margin-bottom: 0 !important; }
.mb-8   { margin-bottom: 8px !important; }
.mb-16  { margin-bottom: 16px !important; }
.mb-24  { margin-bottom: 24px !important; }
.mt-24  { margin-top: 24px !important; }
.mt-32  { margin-top: 32px !important; }
.pb-0   { padding-bottom: 0 !important; }
.pt-0   { padding-top: 0 !important; }

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 9999;
  background: var(--pastel-yellow);
  color: var(--brand-primary);
  box-shadow: 0 -2px 24px rgba(182,170,100,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 14px 19px 14px;
  gap: 32px;
  font-size: 1rem;
  transition: transform 0.3s, opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  max-width: 480px;
  font-size: 1rem;
  color: var(--brand-primary);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 17px;
  align-items: center;
}
.cookie-banner button {
  font-size: 0.98rem;
  border-radius: 16px;
  padding: 11px 22px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  border: none;
  margin: 0;
  color: #fff;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .accept {
  background: var(--brand-secondary);
}
.cookie-banner .accept:hover { background: #3080cc; }
.cookie-banner .reject {
  background: #d39cac;
  color: var(--brand-primary);
}
.cookie-banner .reject:hover { background: #fad6ec; color: var(--brand-secondary); }
.cookie-banner .settings {
  background: var(--pastel-blue);
  color: var(--brand-primary);
}
.cookie-banner .settings:hover { background: var(--brand-accent); color: var(--brand-secondary); }

.cookie-modal-backdrop {
  position: fixed; z-index: 99999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(80,80,160,0.16);
  width: 100vw; height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  box-shadow: 0 8px 44px rgba(80,80,140,0.16);
  border-radius: 22px 22px 0 0;
  padding: 36px 26px 32px 26px;
  min-width: 340px;
  max-width: 97vw;
  min-height: 240px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-backdrop.open .cookie-modal {
  transform: translateY(0);
}
.cookie-modal h3 {
  color: var(--brand-secondary);
  font-size: 1.2rem;
  margin-bottom: 13px;
  font-weight: 700;
}
.cookie-modal-category {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cookie-modal-category label {
  font-size: 0.99rem;
  color: var(--brand-primary);
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  background: var(--gray-300);
  border-radius: 14px;
  position: relative;
  margin-left: auto;
  transition: background 0.18s;
  display: inline-block;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 4px;
  width: 16px; height: 16px;
  background: var(--pastel-blue);
  border-radius: 50%;
  transition: left 0.19s, background 0.15s;
}
.cookie-toggle input:checked + .cookie-toggle::before {
  left: 22px;
  background: var(--brand-secondary);
}
.cookie-modal .modal-footer {
  margin-top: 18px;
  display: flex;
  gap: 18px;
}
.cookie-modal button {
  font-size: 0.99rem;
  border-radius: 14px;
  padding: 10px 18px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 15px;
  top: 13px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-secondary);
  opacity: 0.86;
}
.cookie-modal .modal-close:hover {
  opacity: 1;
  background: var(--pastel-lavender);
  border-radius: 50%;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 0;
    width: 95vw;
    padding: 20px 8px 22px 8px;
  }
  .cookie-modal-category label { font-size: .97rem; }
  .cookie-modal h3 { font-size: 1.08rem; }
}

/* --------------------------------------------------
   RESPONSIVE LAYOUTS
-------------------------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .section {
    padding: 36px 0 28px 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 24px 0 16px 0;
    margin-bottom: 36px;
  }
  .content-wrapper,
  .card-container,
  .content-grid,
  .feature-grid,
  .vehicle-types-list,
  .services-overview,
  .services-list {
    flex-direction: column !important;
    gap: 14px;
  }
  header .container {
    flex-direction: row;
    padding: 0 3vw;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem;}
  .footer-main {
    flex-direction: column;
    gap: 12px;
  }
}

/* --------------------------------------------------
   MICRO-INTERACTIONS & ANIMATIONS
-------------------------------------------------- */
.btn-primary, .service-card, .feature-grid li, .feature-list li, .testimonial-card, .card, .footer-nav a, .legal-menu a, .main-nav a {
  transition: box-shadow 0.19s, background 0.18s, color 0.15s, transform 0.13s;
}

.cta, .cta-banner, .testimonial-card, .feature-grid li, .feature-list li, .service-card {
  will-change: transform, box-shadow;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover, .service-card:hover, .feature-grid li:hover, .feature-list li:hover {
    transform: scale(1.025) translateY(-2px);
    box-shadow: 0 8px 36px rgba(44,44,130,.12);
  }
}

/* --------------------------------------------------
   PRINT STYLES (MINIMAL)
-------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  body { background: #fff; }
  section, .section { background: #fff !important; }
}
