/* =========================================================
   Velvet Motor Legal: Soft Pastel Flexbox CSS UI Framework  
   For all pages. Brand: Velvet Motor Legal
   Aesthetic: Soft Pastel, Gentle, Modern, Trustworthy
   ========================================================= */

/* ------------- 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, main, 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, main, menu, nav, section {
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
}
html {
  scroll-behavior: smooth;
}

/* ----------- SOFT PASTEL BRAND PALETTE ------------- */
:root {
  --primary: #1B3556;
  --secondary: #E7F0FA;
  --white: #fff;
  --offwhite: #F7FAFE;
  --accent: #289672;
  --accent-darker: #13744D;
  --pastel-blue: #A7CDF2;
  --pastel-green: #C3EBD4;
  --pastel-pink: #FAD9DF;
  --pastel-orange: #FDE7C4;
  --pastel-bg: #F8FAFB;
  --border: #DFE7F2;
  --shadow: rgba(27, 53, 86, 0.07);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background: var(--pastel-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }

/* Soft, friendly font for elements that need warmth */
.tagline, .client {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  letter-spacing: 0.02em;
}

p, li {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
strong { font-weight: 700; }

a {
  color: var(--accent);
  transition: color 0.18s ease;
}
a:hover, .main-nav a.active, .footer-nav a.active {
  color: var(--accent-darker);
  text-decoration: underline;
  transition: color 0.18s;
}

/* ----------------- CONTAINERS ------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

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

@media (max-width: 768px) {
  section, .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}

/* ---------------- HEADER & NAVIGATION ------------- */
header {
  width: 100%;
  background: linear-gradient(90deg, var(--secondary) 75%, var(--pastel-blue) 100%);
  box-shadow: 0 2px 20px var(--shadow);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  gap: 22px;
}
.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 6px var(--shadow));
  transition: filter 0.2s;
}
.logo:hover img {
  filter: drop-shadow(0 3px 10px var(--accent));
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 1.05rem;
}
.main-nav a {
  color: var(--primary);
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover {
  background: var(--pastel-green);
  color: var(--accent-darker);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-left: 20px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent-darker);
  color: var(--white);
  box-shadow: 0 2px 22px var(--pastel-green);
}

/* ----------- MOBILE NAVIGATION ------------ */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 6px var(--shadow);
    width: 46px;
    height: 46px;
    position: absolute;
    right: 24px;
    top: 25px;
    z-index: 200;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--pastel-green);
    color: var(--accent);
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(247,250,254, 0.95);
  box-shadow: 0 8px 36px rgba(27, 53, 86, 0.12);
  z-index: 999999;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.62,.13,.49,.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  margin: 22px 24px 18px 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 34px;
  padding-right: 20px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--primary);
  padding: 12px 4px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--accent-darker);
}

@media (max-width: 480px) {
  .mobile-nav {
    gap: 13px;
    padding: 0 18px;
  }
}

/* -------------- HERO SECTIONS ------------------ */
.hero {
  background: linear-gradient(90deg, var(--pastel-blue) 65%, var(--pastel-pink) 100%);
  border-radius: 0 0 30px 30px;
  box-shadow: 0 8px 40px var(--shadow);
  padding-top: 64px;
  padding-bottom: 56px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 30px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.55rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px var(--white);
}
.hero p {
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 10px;
  opacity: 0.94;
}
.hero .cta-btn {
  margin-top: 10px;
}
@media (max-width: 600px) {
  .hero {
    padding-top: 34px; padding-bottom: 30px;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 { font-size: 1.49rem; }
  .hero .cta-btn { font-size: 1rem; padding: 10px 18px; }
}

/* ------------------ FEATURES AND CARDS ---------------- 
   Flex patterns per requirements
------------------------------------------------------ */
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.feature-grid {
  align-items: stretch;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 1px 12px var(--shadow);
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 340px;
  gap: 15px;
  padding: 28px 24px 25px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-item img {
  width: 40px; height: 40px; margin-bottom: 8px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 30px var(--pastel-blue), 0 1px 16px var(--shadow);
  transform: translateY(-3px) scale(1.02);
  border-color: var(--pastel-blue);
}

/* ------ SERVICE LIST ----- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--pastel-green);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 500;
  box-shadow: 0 1px 7px var(--shadow);
}
.service-list img {
  width: 26px; height: 26px;
}

/* ------- TESTIMONIALS (cards) ----------- */
.testimonials {
  background: linear-gradient(90deg, var(--pastel-green) 55%, var(--pastel-pink) 100%);
  border-radius: 28px;
  box-shadow: 0 1px 15px var(--shadow);
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  flex: 1 1 260px;
  gap: 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 380px;
  border: 1.4px solid var(--border);
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px var(--pastel-blue);
  transform: scale(1.03) translateY(-2px);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.09rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 10px;
  max-width: 270px;
  word-break: break-word;
}
.testimonial-card .client {
  color: var(--accent-darker);
  font-size: .98rem;
  font-weight: 600;
  opacity: 1;
}
@media (max-width: 700px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card { max-width: 98vw; }
}

/* ----------- CASE STUDIES & CARDS -------------- */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.case-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1.4px solid var(--border);
  min-width: 240px; max-width: 340px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  padding: 25px 20px 20px 22px;
  transition: box-shadow 0.19s, transform 0.15s;
}
.case-card:hover, .case-card:focus-within {
  box-shadow: 0 4px 16px var(--pastel-pink);
  transform: scale(1.015) translateY(-3px);
}

/* ------------ CTA SECTION ------------- */
.cta {
  background: linear-gradient(90deg, var(--pastel-pink) 45%, var(--pastel-green) 100%);
  border-radius: 18px;
  box-shadow: 0 6px 18px var(--shadow);
  text-align: center;
  margin-bottom: 60px;
}
.cta h2 {
  font-size: 1.7rem; margin-bottom: 10px;
}
.cta p {
  max-width: 460px;
  margin: 0 auto 20px auto;
  color: var(--primary);
}
.cta .cta-btn {
  margin: 0 auto;
}
@media (max-width: 650px) {
  .cta h2 { font-size: 1.1rem; }
  .cta { padding: 30px 10px; }
}

/* -------------- GENERAL FLEX CLASSES ----------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 1px 10px var(--shadow);
  border: 1.4px solid var(--border);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid, .card-container, .content-grid, .case-study-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* ----------- BLOG PAGE STYLES ------------------ */
.blog-list {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 1px 8px var(--shadow);
}
.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}
.categories-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.categories-filter span {
  background: var(--pastel-pink);
  border-radius: 11px;
  padding: 6px 12px;
  margin-left: 6px;
  cursor: pointer;
  color: var(--primary);
  transition: background 0.16s;
  font-weight: 500;
}
.categories-filter span:hover, .categories-filter span.active {
  background: var(--pastel-blue);
  color: var(--accent-darker);
}

.search-bar input[type="text"] {
  width: 200px;
  padding: 8px 13px;
  border: 1.3px solid var(--border);
  border-radius: 8px;
  background: var(--pastel-blue);
  color: var(--primary);
  transition: border 0.14s, background 0.18s;
}
.search-bar input[type="text"]:focus {
  border: 1.4px solid var(--accent);
  background: var(--white);
}

.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.blog-post-grid article {
  background: var(--pastel-green);
  border-radius: 14px;
  box-shadow: 0 1px 8px var(--shadow);
  padding: 22px 20px;
  flex: 1 1 260px;
  max-width: 330px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-post-grid article:hover {
  box-shadow: 0 6px 18px var(--pastel-pink);
  transform: scale(1.025);
}
.read-more {
  color: var(--accent);
  font-weight: 700;
  margin-top: 8px;
  text-underline-offset: 2px;
}
.read-more:hover { color: var(--accent-darker); }

.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}
.newsletter-signup input[type="email"] {
  padding: 10px 13px;
  font-size: 1rem;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: var(--pastel-blue);
  transition: border 0.14s;
}
.newsletter-signup input[type="email"]:focus {
  border: 1.5px solid var(--accent);
  background: var(--white);
}
.newsletter-signup button {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s;
}
.newsletter-signup button:disabled,
.newsletter-signup button[disabled] {
  background: var(--pastel-green);
  color: var(--primary);
  opacity: 0.6;
  cursor: not-allowed;
}
.newsletter-signup button:not([disabled]):hover {
  background: var(--accent-darker);
}

@media (max-width: 600px) {
  .blog-post-grid { flex-direction: column; gap: 13px; }
  .blog-toolbar { gap: 8px; }
}

/* --------- LEGAL PAGE ---------------------- */
.legal {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 44px;
}
.legal ul, .legal ol {
  margin-left: 20px;
}
.legal li { margin-bottom: 8px; }
.legal h2 {
  font-size: 1.25rem;
  color: var(--accent-darker);
  margin-top: 26px;
  margin-bottom: 10px;
}

/* ---------- ABOUT US / DEEP CONTENT ---------- */
.team-list, .value-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 16px;
}

/* ---------- FAQ ----------- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.faq-item {
  background: var(--pastel-blue);
  border-radius: 15px;
  padding: 22px 16px;
  flex: 1 1 260px;
  min-width: 200px;
  max-width: 360px;
  box-shadow: 0 2px 9px var(--shadow);
  margin-bottom: 20px;
  font-size: 1rem;
  transition: box-shadow 0.16s;
}
.faq-item:hover {
  box-shadow: 0 4px 23px var(--pastel-green);
}
.faq-item h3 { margin-bottom: 7px; color: var(--primary); font-size: 1.08rem; }

div.next-steps {
  margin-bottom: 24px;
}
.next-steps li {
  display: list-item;
  list-style: disc inside;
  color: var(--primary);
}

/* ---------- FOOTER --------------------------- */
footer {
  background: linear-gradient(90deg, var(--pastel-blue) 60%, var(--pastel-green) 100%);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 1px 8px var(--shadow);
  padding: 40px 0 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  gap: 28px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  margin-bottom: 13px;
}
.footer-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  opacity: 0.79;
  transition: color 0.17s, opacity 0.17s;
}
.footer-nav a:hover { color: var(--accent-darker); opacity: 1; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
  color: var(--primary);
  opacity: 0.93;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 18px; height: 18px;
}
.copyright {
  font-size: 0.9rem;
  color: var(--primary);
  opacity: 0.81;
  margin-top: 18px;
  text-align: right;
  width: 100%;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 27px;
  }
  .copyright { text-align: left; }
}

/* ----------- COOKIE CONSENT BANNER --------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--white);
  box-shadow: 0 -3px 18px var(--shadow);
  z-index: 100000;
  padding: 23px 16px 23px 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  transition: transform 0.26s cubic-bezier(.62,.13,.49,.97);
  border-radius: 16px 16px 0 0;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1rem;
  flex: 2 1 240px;
  margin-bottom: 0;
  max-width: 600px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-btn {
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: var(--white);
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.15s;
}
.cookie-btn.reject {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--pastel-green);
  color: var(--accent-darker);
}
.cookie-btn:focus { outline: 2px solid var(--accent-darker); }
.cookie-btn:hover { background: var(--accent-darker); color: var(--white); }
.cookie-btn.reject:hover { background: var(--pastel-pink); color: var(--accent); }
.cookie-btn.settings:hover { background: var(--pastel-blue); color: var(--accent-darker); }
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 8px 18px 8px;
  }
  .cookie-actions {
    gap: 8px;
    align-items: stretch;
    flex-direction: column;
  }
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 50%;
  transform: translate(-50%, -20vh) scale(0.98);
  width: 98vw; max-width: 400px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 44px var(--pastel-green), 0 1px 16px var(--shadow);
  z-index: 100001;
  opacity: 0;
  pointer-events: none;
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.34s, transform 0.34s cubic-bezier(.62,.13,.49,.97);
}
.cookie-modal.show {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h3 { margin-bottom: 5px; font-size: 1.16rem; color: var(--accent); }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pastel-blue);
  border-radius: 12px;
  padding: 13px 10px;
  margin-bottom: 7px;
  gap: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--accent);
  width: 19px; height: 19px;
  cursor: pointer;
}
.cookie-category input[type=checkbox][disabled] {
  accent-color: var(--pastel-blue);
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-btn {
  padding: 8px 20px;
  font-size: 0.97rem;
}
/* Overlay for modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(41, 55, 86, 0.10);
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ----------- RESPONSIVE TYPOGRAPHY ------------- */
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.05rem; }
  p, li, a, strong, input, button {
    font-size: 0.97rem;
  }
}

/* ----------- ANIMATIONS AND TRANSITIONS --------- */
.cta-btn, .mobile-menu-toggle, .mobile-menu-close, .read-more, .blog-post-grid article {
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, transform 0.18s;
}

@media (hover: hover) {
  .cta-btn:hover, .mobile-menu-toggle:hover, .read-more:hover, .cookie-btn:hover {
    filter: brightness(1.09);
    opacity: 1;
  }
}

/* ----------- UTILITIES ---------------- */
.hide { display: none!important; }
.show { display: flex!important; }

/* ========== END Velvet Motor Legal =============== */
