/* ===== 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 {
  box-sizing: border-box;
  width: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background-color: #181A1B;
  color: #F7F9FB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F4A300;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
strong {
  font-weight: 700;
}

/* ===== BRAND FONTS: Montserrat/Roboto ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F4A300;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #F4A300;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #F7F9FB;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #F7F9FB;
}
p {
  margin-bottom: 16px;
  color: #DFE1E4;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ===== GENERAL CONTAINERS AND LAYOUTS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #1D2327;
  border-radius: 20px;
  box-shadow: 0 4px 28px -6px rgba(30, 34, 38, 0.14); /* Subtle industrial shadow */
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23272B;
  border: 1px solid #31363B;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(16,19,22,0.09);
  padding: 28px 24px;
  transition: box-shadow 0.22s, border-color 0.17s;
}
.card:hover, .card:focus-within {
  border-color: #F4A300;
  box-shadow: 0 6px 28px rgba(244,163,0,0.07), 0 1.5px 10px 0 rgba(30,34,38,0.14);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #FFF;
  color: #23272B;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(25,29,34,0.08);
}
.testimonial-card p {
  margin: 0 0 8px 0;
  color: #23272B;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: #7B848C;
  font-size: 1rem;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #23272B;
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 2px 8px rgba(30, 34, 38, 0.13);
  border: 1px solid #2D3136;
  min-width: 210px;
  flex: 1 1 210px;
  transition: border-color 0.18s, box-shadow 0.22s;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: #F4A300;
  box-shadow: 0 3px 18px rgba(244,163,0,0.13);
}
.feature-item h3 {
  color: #F4A300;
  margin-bottom: 6px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.feature-item img {
  height: 40px;
  width: 40px;
  filter: grayscale(30%) brightness(1.1) contrast(1.3);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #181A1B;
  border-bottom: 1px solid #23272B;
  width: 100%;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
  flex-wrap: wrap;
}
.logo img {
  height: 45px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 14px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #F7F9FB;
  letter-spacing: 1px;
  padding: 6px 0;
  transition: color 0.18s, border-bottom 0.22s;
  border-bottom: 2.5px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  color: #F4A300;
  border-bottom: 2.5px solid #F4A300;
}

.cta.primary {
  display: inline-block;
  background: #F4A300;
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-left: 28px;
  font-size: 1rem;
  transition: background 0.16s, color 0.14s, box-shadow 0.26s;
  box-shadow: 0 2px 12px 0 rgba(244,163,0,0.05);
  border: none;
  cursor: pointer;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD075;
  color: #23272B;
  box-shadow: 0 4px 24px 0 rgba(244,163,0,0.14);
  text-decoration: none;
}

button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  font-weight: 600;
  background: #23272b;
  color: #F7F9FB;
  transition: background 0.15s, color 0.13s, box-shadow 0.20s;
  box-shadow: 0 1.5px 8px 0 rgba(30,34,38,0.10);
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #F4A300;
  color: #23272B;
  box-shadow: 0 2px 12px 0 rgba(244,163,0,0.13);
}

/* ===== MOBILE BURGER MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F4A300;
  font-size: 2.3rem;
  padding: 8px 14px 8px 8px;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: #FFD075;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #23272B;
  color: #F7F9FB;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  transform: translateX(-100vw);
  transition: transform 0.29s cubic-bezier(0.55, 0, 0.1, 1);
  padding-top: 36px;
  box-shadow: 6px 0px 32px rgba(30,34,38,0.17);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F7F9FB;
  font-size: 2.1rem;
  padding: 14px 20px;
  align-self: flex-end;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 1001;
}
.mobile-menu-close:focus {
  color: #F4A300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #F7F9FB;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4A300;
  border-bottom: 2px solid #F4A300;
}

/* ===== MAIN HERO SECTIONS & GENERAL LAYOUT ===== */
.hero {
  background: #1D2327 url('../assets/bg-hero-industrial.png') no-repeat center top;
  background-size: cover;
  padding: 80px 0 60px 0;
  border-bottom: 1px solid #31363B;
  box-shadow: 0 4px 40px -20px #23272B inset;
  text-align: left;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  max-width: 700px;
}
.hero h1, .hero h2 {
  color: #F4A300;
  text-shadow: 2px 4px 0 rgba(70,73,80,0.10);
}
.hero p {
  color: #DFE1E4;
  font-size: 1.18rem;
}

/* ===== FEATURE/SECTION FLEX GRIDS ===== */
.feature-grid, .article-list, .review-summary-grid, .story-snippets, .tip-list, .test-drive-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}
.feature-grid {
  justify-content: flex-start;
}

.article-list,
.review-summary-grid,
.tip-list,
.test-drive-summaries,
.story-snippets {
  list-style: none;
  padding: 0;
}
.review-item, .test-drive-item, .story-item, .tip-item {
  min-width: 220px;
  flex: 1 1 210px;
  background: #23272B;
  border: 1px solid #2D3136;
  border-radius: 12px;
  padding: 22px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 5px rgba(27,32,38, 0.09);
  transition: border-color 0.18s, box-shadow 0.19s;
}
.review-item:hover, .test-drive-item:hover, .story-item:hover, .tip-item:hover, .review-item:focus-within,
.test-drive-item:focus-within, .story-item:focus-within, .tip-item:focus-within {
  border-color: #F4A300;
  box-shadow: 0 4px 18px rgba(244,163,0,0.09);
}

/* ===== LISTS AND SORT/FILTER OPTIONS ===== */
.review-filters, .sort-options, .category-filters, .filter-by-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
  color: #F4A300;
  font-size: 1rem;
  flex-wrap: wrap;
}
.review-filters a, .sort-options a, .category-filters a, .filter-by-category a {
  color: #F7F9FB;
  font-weight: 500;
  text-decoration: underline 1px #38404844;
  transition: color 0.16s;
  margin: 0 2px;
}
.review-filters a:hover, .sort-options a:hover, .category-filters a:hover, .filter-by-category a:hover {
  color: #F4A300;
}

/* ===== CALL TO ACTION SECTIONS ===== */
.cta {
  background: #23272B;
  border-radius: 18px;
  padding: 48px 20px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 3px 22px rgba(30,34,38,0.09);
}
.cta h2 {
  color: #F4A300;
  margin-bottom: 24px;
}
.cta.primary {
  margin: 16px auto 0 auto;
}

/* ===== FOOTER STYLES ===== */
footer {
  background: #181A1B;
  border-top: 1px solid #23272B;
  font-size: 0.98rem;
  color: #B5BBC2;
  padding: 30px 0 10px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px 50px;
  justify-content: space-between;
  padding: 10px 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}
.footer-brand img {
  height: 38px;
  filter: grayscale(25%) brightness(1.08) contrast(1.3);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F7F9FB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4A300;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #7B848C;
  font-size: 0.96rem;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  margin-right: 7px;
  vertical-align: middle;
  filter: grayscale(30%) brightness(1.08) contrast(1.22);
}

/* ======= ABOUT, LEGAL, AND THANK-YOU PAGES ======= */
.text-section {
  margin-top: 16px; 
  color: #DFE1E4;
  background: #1D2327;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 1.5px 11px rgba(32,35,40,0.07);
  letter-spacing: 0.01em;
}
.text-section ul {
  margin: 16px 0 12px 32px;
}
.text-section h3 {
  color: #F4A300;
  margin: 22px 0 5px 0;
}

.thank-you {
  margin: 60px 0;
  padding: 40px;
  background: #23272B;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(244,163,0,0.08);
  text-align: center;
}

.legal {
  padding: 50px 0 70px 0;
}
.legal .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 850px;
}

/* ====== FAQ ACCORDION ====== */
.accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  background: #23272B;
  border-radius: 12px;
  padding: 22px 18px;
  color: #DFE1E4;
  border: 1px solid #2D3136;
}
.faq-item h3 {
  margin-bottom: 10px;
}

/* ====== CONTACT INFO ====== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 38px;
  margin-top: 18px;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #23272B;
  border-radius: 10px;
  padding: 12px 18px;
  border: 1px solid #2D3136;
}
.contact-info img {
  width: 22px;
  height: 22px;
  filter: grayscale(20%) brightness(1.2) contrast(1.26);
}

/* ======= ARTICLE/LISTING STYLES ======= */
.article-list li {
  margin-bottom: 16px;
  font-size: 1.09rem;
}
.article-list li a {
  color: #F4A300;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px dashed #F4A30040;
  transition: color 0.12s, border-color 0.11s;
}
.article-list li a:hover,
.article-list li a:focus {
  color: #FFD075;
  border-bottom: 1px solid #FFD075;
}

/* ======= PROCESS/LIST STEPS ======= */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #DFE1E4;
  list-style: decimal inside;
  margin: 16px 0 0 0;
}
.step-list li {
  background: #181A1B;
  border-radius: 8px;
  padding: 12px 20px;
}

/* ======= FEATURED STORY ======= */
.featured-story {
  background: #23272B;
  padding: 22px 15px;
  margin-top: 28px;
  border-radius: 13px;
  box-shadow: 0 1.5px 8px 0 rgba(30,34,38,0.06);
}
.featured-story h3 {
  color: #F4A300;
  margin-bottom: 10px;
}

/* ======= COOKIE CONSENT BANNER ======= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #181A1B;
  color: #F7F9FB;
  box-shadow: 0 -1.5px 11px rgba(30,34,38,0.09);
  padding: 24px 20px 24px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
  z-index: 1500;
  justify-content: center;
  animation: banner-slide-in 0.7s cubic-bezier(0.5,0,0.09,1);
}
@keyframes banner-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 280px;
  font-size: 1rem;
  color: #DFE1E4;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button, .cookie-banner .button {
  font-size: 0.98rem;
  padding: 9px 20px;
  border-radius: 20px;
}
.cookie-banner .accept {
  background: #F4A300;
  color: #23272B;
  font-weight: 700;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFD075;
  color: #181A1B;
}
.cookie-banner .reject {
  background: #181A1B;
  color: #DFE1E4;
  border: 1.5px solid #DFE1E4;
}
.cookie-banner .reject:focus,
.cookie-banner .reject:hover {
  background: #23272B;
  color: #F4A300;
  border-color: #F4A300;
}
.cookie-banner .settings {
  background: none;
  color: #F4A300;
  border: 1.2px solid #F4A300;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #23272B;
  color: #FFD075;
  border-color: #FFD075;
}

/* ======= COOKIE CONSENT MODAL ======= */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1600;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(24,26,27, 0.9);
  animation: modal-fade-in 0.45s cubic-bezier(0.62,0,0.24,1);
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #23272B;
  color: #F7F9FB;
  border-radius: 14px;
  box-shadow: 0 10px 50px 0 rgba(30,34,38,0.32);
  padding: 38px 32px 30px 32px;
  max-width: 420px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-width: 270px;
}
.cookie-modal-content h2, .cookie-modal-content h3 {
  color: #F4A300;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 14px;
  background: none;
  border: none;
  color: #F7F9FB;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F4A300;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #383D41;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1rem;
  color: #DFE1E4;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  width: 34px;
  height: 18px;
  background: #1D3557;
  border: 1.5px solid #2D3136;
  border-radius: 17px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: background 0.16s, border-color 0.16s;
}
.cookie-toggle[data-checked="true"] {
  background: #F4A300;
  border-color: #F4A300;
}
.cookie-toggle[data-checked="false"] {
  background: #23272B;
  border-color: #2D3136;
}
.cookie-toggle-circle {
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1px;
  transition: left 0.2s;
}
.cookie-toggle[data-checked="true"] .cookie-toggle-circle {
  left: 16px;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal-actions .button {
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 18px;
}
.cookie-modal-actions .save {
  background: #F4A300;
  color: #23272B;
  font-weight: 700;
}
.cookie-modal-actions .save:hover, .cookie-modal-actions .save:focus {
  background: #FFD075;
}
.cookie-modal-actions .cancel {
  background: #23272B;
  color: #DFE1E4;
  border: 1.5px solid #DFE1E4;
}
.cookie-modal-actions .cancel:hover, .cookie-modal-actions .cancel:focus {
  background: #1D3557;
  color: #F4A300;
  border-color: #F4A300;
}

/* ===== RESPONSIVE/MOBILE ADJUSTMENTS ===== */
@media (max-width: 1100px) {
  .container {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer-brand {
    min-width: 180px;
  }
}
@media(max-width:900px) {
  .feature-grid, .article-list, .review-summary-grid, .story-snippets, .tip-list, .test-drive-summaries {
    gap: 15px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-contact {
    font-size: 0.94rem;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary {
    margin-left: 0;
    margin-top: 12px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 44px 0 32px 0;
    min-height: 280px;
  }
  .hero .container {
    max-width: 100%;
    gap: 20px;
    padding: 0;
    text-align: left;
  }
  .feature-grid, .article-list, .review-summary-grid, .story-snippets, .tip-list, .test-drive-summaries {
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .section {
    padding: 24px 5px;
    margin-bottom: 40px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .testimonial-card {
    margin-bottom: 18px;
    padding: 15px;
    font-size: 0.99rem;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    padding: 10px 5px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
  .contact-info {
    flex-direction: column;
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 17px;
    text-align: center;
    padding: 18px 4px 18px 4px;
  }
  .cookie-banner p {
    flex: 1 1 100%;
    margin-bottom: 2px;
  }
  .cookie-modal-content {
    max-width: 99vw;
    padding: 24px 14px 16px 14px;
  }
  .card, .feature-item {
    min-width: 0;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.14rem; }
  .hero { padding: 20px 0 18px 0; }
  .section, .thank-you, .cta { padding: 15px 3px; border-radius: 7px; }
  .testimonial-card, .review-item, .tip-item, .story-item, .faq-item, .feature-item { padding: 12px 8px; border-radius: 6px; }
  .cookie-modal-content { padding: 8px 2px 12px 2px; min-width: 0; }
}

/* ===== INDUSTRIAL MODERN + URBAN METALIC FINISHES ===== */
body, .section, .card, .feature-item, .testimonial-card, .cta, .text-section, .thank-you, .footer-brand, .footer-contact {
  font-family: 'Roboto', Arial, sans-serif;
  background-blend-mode: overlay;
}
header, footer, .section, .card, .feature-item, .review-item, .testimonial-card, .cta, .thank-you {
  /* metallic accent line */
  box-shadow: 0 0.5px 0 #6b6d7130;
}
.feature-item, .card, .testimonial-card, .faq-item {
  border-left: 3.5px solid #F4A300;
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.card, .feature-item {
  box-shadow: 0 1.5px 9px 0 rgba(80,88,98, 0.10) inset, 0 2px 12px 0 rgba(30,34,38,0.07);
}
/* Subtle metallic effect for primary backgrounds */
.hero, .cta, .footer-brand, header, footer {
  background-image: repeating-linear-gradient(135deg, #202327 0px, #23272B 12px, #202327 40px);
  background-size: 90px 90px;
}
/* Accent lines below headings */
h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #F4A300;
  border-radius: 2px;
  margin: 9px 0 0 0;
}

/* ========== SCROLLBAR STYLING ========== */
body::-webkit-scrollbar {
  width: 13px;
  background: #23272B;
}
body::-webkit-scrollbar-thumb {
  background: #384048;
  border-radius: 8px;
  border: 3px solid #1D3557;
}
body, html {
  scrollbar-width: thin;
  scrollbar-color: #384048 #1D3557;
}

/* ================ INTERACTION & ACCESSIBILITY ================ */
a:focus, button:focus, .cta:focus {
  outline: 3px solid #F4A300;
  outline-offset: 2px;
}

/* ========== TRANSITIONS ========== */
*, *:before, *:after {
  transition-property: background, color, border, box-shadow, transform;
  transition-duration: 0.19s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}

/* ========== HIGHLIGHT SELECTION ========== */
::selection {
  background: #F4A300;
  color: #23272B;
}

/* ========== UTILITY CLASSES ========== */
.hidden { display: none !important; }

