/* === 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;
}
html {
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Lato', Arial, sans-serif;
  background-color: #181e23;
  color: #F5F7FA;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  display: block;
  max-width: 100%;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
input, textarea, select, button {
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
}

/* === BRAND & TECH_FUTURISTIC VARIABLES === */
:root {
  --primary: #232B35;
  --secondary: #ADC1D2;
  --accent: #E3B846;
  --primary-darker: #181e23;
  --primary-light: #2d3642;
  --secondary-dark: #85a2b8;
  --white: #F5F7FA;
  --shadow: 0 4px 20px 0 rgba(30,38,45,0.32);
  --neon-blue: #48eaff;
  --neon-gold: #ffe086;
  --card-bg: #22272f;
  --border-radius: 18px;
}

/* === TYPOGRAPHY === */
body {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  color: var(--white);
}
h1, .display {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  color: var(--accent);
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--neon-gold);
}
@media (max-width: 480px) {
  h1, .display {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 24px;
  text-shadow: 0 0 6px var(--neon-blue);
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
}
p, li, .subheadline {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.18rem;
  color: var(--neon-blue);
  margin-bottom: 24px;
  font-weight: 400;
}
strong {
  color: var(--accent);
  font-weight: 700;
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* === HEADER/NAV === */
.site-header {
  width: 100%;
  background: linear-gradient(90deg,var(--primary),var(--primary-darker) 60%);
  box-shadow: 0 8px 24px 0 rgba(35,43,53,.16);
  z-index: 100;
  position: sticky;
  top: 0;
}
.site-header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 6px var(--neon-gold));
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 10px 8px;
  border-radius: 8px;
  position: relative;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 3;
}
.main-nav a:not(.cta):hover,
.main-nav a.active {
  background: var(--primary-light);
  color: var(--accent);
  box-shadow: 0 0 6px var(--neon-blue),0 2px 10px 0 rgba(30,38,45,0.12);
}
.main-nav .cta {
  background: var(--accent);
  color: var(--primary);
  padding: 10px 28px;
  border-radius: 14px;
  font-size: 1.07rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px 0 #ffe08661;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: 2px solid var(--accent);
}
.main-nav .cta:hover {
  background: #fff9dc;
  color: var(--primary);
  box-shadow: 0 0 20px var(--accent);
}
.mobile-menu-toggle {
  background: var(--card-bg);
  color: var(--accent);
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  border-radius: 12px;
  margin-left: 16px;
  padding: 8px 13px;
  box-shadow: 0 2px 8px var(--primary-light);
  display: none;
  z-index: 999;
  transition: background .15s, color .15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,19,23,0.98);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.47,1.64,.41,.8);
  box-shadow: -10px 0 24px 0 #000b;
  padding-top: 44px;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--accent);
  background: none;
  border: none;
  z-index: 1020;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--primary-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  color: var(--white);
  font-weight: 700;
  padding: 14px 0;
  border-radius: 7px;
  width: 100%;
  transition: color .13s, background .13s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--accent);
  background: var(--primary-light);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 8px;
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(120deg, #232B35 55%, #1c2028 100%);
  box-shadow: 0 14px 40px 0 #181e2332;
  padding: 0;
}
.hero .container {
  min-height: 340px;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 60px 0;
  padding-left: 0;
  gap: 18px;
}
.hero h1, .hero .display {
  color: var(--accent);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.hero .subheadline {
  color: var(--neon-blue);
  font-size: 1.23rem;
  margin-bottom: 24px;
  max-width: 500px;
}
.hero .cta {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero .container { min-height: 160px; }
  .hero .content-wrapper { margin: 32px 0; }
  .hero h1, .hero .display { font-size: 2rem; }
}

/* === GENERIC SECTIONS & SPACING === */
.section, .features, .services, .testimonials, .about, .contact-details, .contact-form-info, .contact-map, .privacy-policy, .cookies-policy, .thank-you, .rodo, .terms {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
}
@media (max-width: 768px) {
  .section, .features, .services, .testimonials, .about, .contact-details, .contact-form-info, .contact-map, .privacy-policy, .cookies-policy, .thank-you, .rodo, .terms {
    padding: 28px 7px;
    margin-bottom: 34px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* === CARD STYLES === */
.card, .testimonial-card, .feature-item, .about-box, .event-highlights, .industry-insights {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1.5px solid #2e3340;
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.17s, box-shadow 0.17s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover, .about-box:hover {
  transform: translateY(-4px) scale(1.022);
  box-shadow: 0 8px 32px 0 #adc1d265, 0 0 10px var(--neon-blue);
  z-index: 2;
}

.card-container { /* for home/other card lists */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 240px;
}

/* === FLEX-BASED GRIDS & SECTIONS === */
.feature-grid, .features .content-wrapper > ul, .luxury-cars-list, .sport-cars-list, .suvs-list, .awards-list, .leasing-options-list, .credit-offers-list, .tailored-solutions, .benefit-list, .news-list, .contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 0 0 20px 0;
}
.feature-grid {
  justify-content: space-between;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 0px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 18px 22px 18px;
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item { min-width: 0; width: 100%; }
  .card-container { flex-direction: column; }
}

.services .content-wrapper>ul, .features .content-wrapper>ul, .about .content-wrapper>ul, .benefit-list, .awards-list, .news-list {
  flex-direction: column;
  gap: 20px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 16px;
}
.trust-badges img {
  height: 40px;
}
@media (max-width: 768px) {
  .feature-grid,
  .features .content-wrapper>ul,
  .luxury-cars-list, .sport-cars-list, .suvs-list, .awards-list, .benefit-list, .news-list, .trust-badges {
    flex-direction: column;
    gap: 14px;
  }
}

.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: 16px;
  }
}


/* === LISTS === */
ul li, ol li {
  padding-left: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.6;
}
ul li img {
  height: 26px;
  width: 26px;
  margin-right: 7px;
  flex-shrink: 0;
}

/* === CONTENT GRID === */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid { flex-direction: column; gap: 12px; }
}


/* === CTA BUTTONS === */
.cta, .btn, .cookie-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 13px;
  border: none;
  font-size: 1.09rem;
  letter-spacing: .016em;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #ffe08642;
  position: relative;
  transition: background 0.16s, color 0.16s, transform 0.16s, box-shadow 0.16s;
  display: inline-block;
  text-align: center;
  outline: none;
}
.cta:focus, .btn:focus, .cookie-btn:focus {
  outline: 2px solid var(--neon-gold);
}
.cta:hover, .btn:hover, .cookie-btn:hover {
  background: #fff9dc;
  color: var(--primary-darker);
  transform: scale(1.045);
  box-shadow: 0 0 18px var(--accent);
}

/* --- Accent outlines on focus for accessibility --- */
.cta:active, .btn:active, .cookie-btn:active {
  background: #dac36b;
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient( 90deg, #232b35 80%, #232B35ee 100% );
  border-top: 1px solid #344150;
  border-bottom: 1px solid #344150;
}
.testimonials .container {
  align-items: flex-start;
}
.testimonials h2 {
  color: var(--accent);
  margin-bottom: 24px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F5F7FA;
  color: #232B35;
  padding: 22px 32px 22px 24px;
  border-radius: 17px;
  box-shadow: 0 2px 16px 0 #adc1d248, var(--shadow);
  min-width: 300px;
  max-width: 530px;
  border: 1.5px solid #dadada;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 0 16px var(--accent), 0 12px 30px 0 #e3b84659;
  transform: translateY(-3px) scale(1.03);
}
.testimonial-quote {
  flex: 1 1 60%;
  font-size: 1.13rem;
  font-weight: 500;
  font-style: italic;
  color: #1C2028;
  margin-bottom: 6px;
}
.testimonial-details {
  flex: 0 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1rem;
  color: #232B35;
}
.star-rating {
  color: #E3B846;
  font-size: 1.09rem;
  letter-spacing: .04em;
  margin-top: 6px;
  font-weight: bold;
}
@media (max-width: 900px) {
  .testimonials .content-wrapper { flex-direction: column; gap: 11px; }
  .testimonial-card {
    max-width: 100%;
    padding: 18px 12px;
  }
}

/* === FOOTER === */
.site-footer {
  background: linear-gradient(90deg, #232B35, #232b35 80%, #181e23 100%);
  color: var(--secondary);
  padding-top: 26px;
  padding-bottom: 15px;
  border-top: 1px solid #374150;
}
.site-footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--secondary);
  transition: color .16s, border-bottom .16s;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
}
.footer-nav a:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.footer-contact img {
  height: 23px;
  width: 23px;
  margin-right: 5px;
}
.footer-hours {
  flex-basis: 100%;
  color: var(--neon-blue);
  font-size: 0.93rem;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .site-footer .container,
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12000;
  background: #232B35ee;
  color: var(--secondary);
  box-shadow: 0 -4px 24px 0 #0007;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 24px;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 2px solid var(--accent);
  animation: slide-in-cookie 0.7s cubic-bezier(.42,.89,.37,1.2) 1;
}
@keyframes slide-in-cookie {
  from { transform: translateY(140%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent__text {
  flex: 1 1 340px;
  font-size: 1.07rem;
  color: var(--secondary);
}
.cookie-consent__btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  min-width: 140px;
  padding: 10px 21px;
  font-size: 1rem;
  border-radius: 9px;
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
  font-weight: 700;
  box-shadow: 0 2px 8px #e3b84627;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-btn.reject {
  background: #adc1d2;
  color: var(--primary);
  border: 2px solid #adc1d2;
}
.cookie-btn.settings {
  background: var(--primary-light);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-btn:hover, .cookie-btn.settings:hover {
  background: #fff9dc;
  color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 8px;
    gap: 12px;
  }
  .cookie-btn {
    min-width: 120px;
    font-size: 0.97rem;
    padding: 10px 12px;
  }
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.98);
  z-index: 13200;
  background: #22272f;
  color: var(--secondary);
  border-radius: 18px;
  box-shadow: 0 6px 44px 2px #232B3566, 0 0 20px var(--neon-blue) inset;
  padding: 38px 40px 30px 40px;
  min-width: 320px;
  max-width: 400px;
  transition: box-shadow 0.24s, transform 0.22s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: show-cookie-modal 0.31s ease;
}
@keyframes show-cookie-modal {
  from { opacity: 0; transform: translate(-50%, -60%) scale(.88); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-size: 1.32rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}
.cookie-modal__category label {
  font-size: 1rem;
  color: var(--secondary);
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal__category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
  border-radius: 6px;
}
.cookie-modal__category.essential label {
  color: #aae8bf;
  font-weight: 700;
}
.cookie-modal__actions {
  display: flex;
  gap: 17px;
  margin-top: 11px;
  flex-wrap: wrap;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.6rem;
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 1;
  border-radius: 50%;
  transition: background .13s;
  padding: 7px 9px;
}
.cookie-modal__close:focus,
.cookie-modal__close:hover {
  background: var(--primary-light);
}
@media (max-width: 560px) {
  .cookie-modal {
    padding: 18px 10px 16px 10px;
    min-width: 80vw;
  }
}

/* === FORM/INPUT RESETS & GDPR CHECKBOX === */
input[type=checkbox], input[type=radio] {
  accent-color: var(--accent);
  cursor: pointer;
}
.gdpr-checkbox {
  margin-top: 16px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 8px;
  color: var(--secondary);
}
.gdpr-checkbox input[type=checkbox] {
  width: 19px;
  height: 19px;
  margin-right: 8px;
}

/* === CONTACT LIST & MAP === */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 18px 0;
}
.contact-list li {
  font-size: 1.12rem;
  gap: 12px;
}
.contact-list a { color: var(--accent); transition: text-decoration 0.13s; }
.contact-list a:hover { text-decoration: underline; }

.contact-map p img {
  height: 28px;
  width: 28px;
  margin-right: 6px;
  vertical-align: middle;
}

/* === HIGHLIGHTS / NEWS EXTRA BOXES === */
.event-highlights, .industry-insights {
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 #adc1d27e;
  border-left: 6px solid var(--accent);
  background: #232b3544;
  padding: 19px 17px 13px 22px;
  /* Inherits from .card */
}
.event-highlights h4, .industry-insights h4 {
  font-size: 1.08rem;
  color: var(--neon-blue);
  margin-bottom: 8px;
}

/* === TERMS, PRIVACY, COOKIES, THANK-YOU, ETC. === */
.privacy-policy, .cookies-policy, .rodo, .terms, .thank-you {
  background: #212225ee;
  border-radius: 13px;
  box-shadow: 0 2px 16px 0 #adc1d24f;
  margin: 50px auto;
  max-width: 820px;
}

.privacy-policy h1, .cookies-policy h1, .rodo h1, .terms h1, .thank-you h1 {
  color: var(--accent);
  font-size: 2.3rem;
  margin-bottom: 18px;
  text-shadow: 0 0 7px var(--accent), 0 0 2px #181e23;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.privacy-policy h2, .cookies-policy h2, .rodo h2, .terms h2 {
  font-size: 1.05rem;
  color: var(--secondary);
  margin: 1.7em 0 .5em 0;
}
.privacy-policy h3, .cookies-policy h3, .rodo h3, .terms h3 {
  color: var(--neon-blue);
  margin-top: 0.95em;
  font-size: 1.08rem;
}
.privacy-policy ul, .cookies-policy ul, .rodo ul, .terms ul {
  margin-left: 6px;
  margin-bottom: 12px;
}

@media (max-width: 580px) {
  .privacy-policy, .cookies-policy, .rodo, .terms, .thank-you { padding: 24px 6px; }
  .privacy-policy h1, .cookies-policy h1, .terms h1, .thank-you h1 { font-size: 1.4rem; }
}

/* === MISCELLANEOUS & ACCESSIBILITY === */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #242c36e0;
  border-radius: 4px;
}
::-webkit-scrollbar-track {
  background: #191e24;
}
:focus {
  outline: 2px solid var(--neon-blue);
  outline-offset: 2px;
}

/* === ANIMATIONS === */
a, button, .cta, .btn, .cookie-btn {
  transition: color .17s, background .17s, border .18s, box-shadow .17s, transform .15s;
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 1024px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .feature-grid, .card-container, .content-grid { flex-direction: column; }
}
@media (max-width: 480px) {
  h1, .display { font-size: 1.27rem; }
  h2 { font-size: 1.09rem; }
}

/* === END OF STYLE.CSS === */