/* === CSS RESET & BASE STYLES === */
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #ECEFF1;
  color: #263E53;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* === BRAND COLORS === */
:root {
  --primary: #263E53;
  --secondary: #ECEFF1;
  --accent: #F8B400;
  --energy-1: #FF2056;
  --energy-2: #00D7FE;
  --energy-3: #24FF8A;
  --white: #fff;
  --gray-light: #F7F9FB;
  --shadow-high: 0 6px 32px 0 rgba(30,44,64,0.17);
  --shadow-mid: 0 2px 17px 0 rgba(38,62,83,0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* === TYPOGRAPHY === */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.12;
}
@media (min-width: 600px) {
  h1, .h1 { font-size: 3rem; }
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--energy-1);
  margin-bottom: 14px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--primary);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
}
p, .p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.7;
}
strong { font-weight: 700; color: var(--energy-1); }
em { color: var(--energy-2); font-style: italic; }
small { font-size: 0.95em; opacity: 0.8; }

/* Visual hierarchy for lists */
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
hr { border: none; border-top: 1px solid #D9E3EA; margin: 30px 0; }

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-mid);
}
@media (min-width: 900px) {
  .section {
    padding: 60px 34px;
    margin-bottom: 80px;
  }
}

/* === HEADER & MAIN NAVIGATION === */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 14px 0 rgba(38,62,83,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 18px;
}
.header-inner img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.07rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.19s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--energy-1);
  background: var(--gray-light);
}
.main-nav .cta-primary {
  margin-left: 16px;
  background: linear-gradient(90deg,var(--energy-1), var(--accent));
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1.09rem;
  font-weight: 800;
  padding: 10px 22px;
  box-shadow: 0 2px 16px rgba(248,180,0,0.11);
  transition: background 0.23s, box-shadow 0.19s, color 0.19s;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: linear-gradient(90deg,var(--energy-1), var(--energy-2));
  color: var(--white);
  box-shadow: 0 6px 28px rgba(255,32,86,0.16);
  transform: translateY(-2px) scale(1.04);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(248,180,0,0.1);
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 2101;
}
.mobile-menu-toggle:active {
  background: var(--energy-1);
  color: var(--white);
}

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

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  z-index: 2100;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.22s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: var(--energy-1);
  color: var(--white);
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover { background: var(--energy-2); color: var(--primary); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 90px;
  width: 100%;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--white);
  padding: 12px 0;
  border-radius: var(--radius-sm);
  width: 100%;
  transition: color 0.12s, background 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 999px) {
  .main-nav {
    display: none;
  }
}
@media (min-width: 1000px) {
  .mobile-menu { display: none !important; }
}

/* === HERO SECTION === */
.hero {
  width: 100%;
  background: var(--energy-2);
  background-image: linear-gradient(87deg, var(--energy-2) 0%, var(--accent) 120%);
  padding: 60px 0 50px 0;
}
.hero .container { display: flex; align-items: center; justify-content: center; }
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  background: var(--white);
  padding: 38px 22px 38px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-high);
  max-width: 540px;
}
.hero h1 {
  color: var(--energy-1);
}
.hero p {
  font-size: 1.2rem;
  color: var(--primary);
}
.hero .cta-primary {
  margin-top: 15px;
}
@media (max-width: 700px) {
  .hero .content-wrapper {
    padding: 30px 10px;
    max-width: none;
  }
}

/* === CTA BUTTONS === */
.cta-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(97deg,var(--accent) 0%, var(--energy-1) 100%);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .04em;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 38px;
  box-shadow: 0 2px 20px 0 rgba(248,180,0,0.11);
  cursor: pointer;
  text-shadow: 0 1px 1px rgba(255,255,255,0.04);
  transition: background 0.21s, color 0.21s, box-shadow 0.17s, transform 0.17s;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(86deg,var(--energy-2) 30%, var(--energy-1) 100%);
  color: var(--white);
  box-shadow: 0 4px 28px rgba(0,215,254,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* === FEATURES & BRAND VALUES === */
.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid li {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-mid);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px; /* for fallback */
  position: relative;
}
.feature-grid img {
  height: 36px; width: 36px; margin-bottom: 2px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  color: var(--energy-1);
}

.brand-values {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 17px;
}
.brand-values li {
  background: var(--energy-2);
  color: var(--primary);
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 14px 0 rgba(0,215,254,0.12);
  padding: 15px 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.brand-values li:hover,
.brand-values li:focus {
  background: var(--energy-3);
  color: var(--primary);
}

/* === SERVICES PREVIEW === */
.services-preview ul,
.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
  padding-left: 6px;
}
.services-preview li,
.service-list li {
  color: var(--primary);
  background: var(--secondary);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1.07rem;
  box-shadow: 0 1px 6px rgba(38,62,83,0.08);
}
.cta-section {
  margin-top: 30px;
  margin-bottom: 44px;
  text-align: center;
  background: var(--energy-3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-mid);
  padding: 32px 18px;
}

/* === CARD CONTAINERS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-high);
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* === TESTIMONIALS === */
.testimonials,
.testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(38,62,83,0.10);
  border-radius: var(--radius-lg);
  gap: 20px;
  padding: 24px 36px 20px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  min-width: 250px;
  border-left: 6px solid var(--energy-1);
  font-size: 1.14rem;
  color: var(--primary);
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 10px 32px 0 rgba(255,32,86,0.15);
  transform: translateY(-3px) scale(1.014);
  border-left-color: var(--energy-2);
}
.testimonial-author {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.07rem;
  color: var(--energy-1);
}
.star-rating {
  color: var(--accent);
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-family: var(--font-display);
}

/* Contrast for testimonials (dark text on light bg) */
.testimonial-card, .testimonial-card * {
  color: #222 !important;
  background-color: var(--white) !important;
}

/* === FLEXBOX-BASED CONTENT GRIDS === */
.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;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-mid);
  margin-bottom: 20px;
  padding: 24px 20px;
}
.project-overviews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-highlight {
  background: var(--secondary);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 11px rgba(0,215,254,0.09);
  flex: 1 1 320px;
  padding: 27px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 260px;
}

@media (max-width: 900px) {
  .feature-grid, .project-overviews, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .project-highlight { min-width: 0; }
}

/* === CONTACT DETAILS MINI === */
.contact-details-mini, .footer-contact-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 24px 0;
}
.contact-details-mini a.cta-primary {
  margin-top: 10px;
}
/* Address and contacts styling */
.contact-details-mini img, .footer-contact-summary img,
.company-contact-details img {
  vertical-align: middle;
  margin-right: 8px;
  height: 20px;
}

.company-contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-mid);
  padding: 21px 14px 13px 20px;
}
.address-map {
  background: var(--secondary);
  margin-top: 13px;
  border-radius: var(--radius-md);
  padding: 12px 12px 12px 16px;
  font-size: 1.02rem;
  color: var(--primary);
}

/* === FAQ ACCORDION === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(38,62,83,0.09);
  padding: 15px 16px 12px 18px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: box-shadow 0.16s;
}
.faq-item h3 {
  color: var(--energy-2);
  font-size: 1.1rem;
  margin-bottom: 9px;
  font-family: var(--font-display);
}
.faq-answer {
  display: none;
  color: var(--primary);
  font-size: 1rem;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeInFaq 0.34s cubic-bezier(.77,0,.18,1);
}
@keyframes fadeInFaq {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.faq-item:hover, .faq-item.open {
  box-shadow: 0 6px 20px 0 rgba(0,215,254,0.13);
}

/* === FOOTER === */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 0 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}
.footer-menu {
  display: flex;
  gap: 32px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 8px 0;
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.12s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  background: var(--accent);
  color: var(--primary);
}
.footer-contact-summary p {
  color: var(--white);
  opacity: 0.86;
}
.footer-copyright {
  font-size: 0.97rem;
  color: var(--gray-light);
  margin-bottom: 16px;
}
@media (min-width: 800px) {
  footer .container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
  }
  .footer-brand img { margin-bottom: 0; }
  .footer-menu { margin-bottom: 0; }
  .footer-contact-summary { margin-bottom: 0; }
  .footer-copyright { margin-bottom: 0; }
}

/* === RESPONSIVE LAYOUTS === */
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  .header-inner { flex-direction: row; gap: 10px; padding: 10px 8px; }
  .section { padding: 20px 8px; margin-bottom: 38px; }
  .hero { padding: 24px 0 24px 0; }
  .hero .content-wrapper { padding: 18px 10px 22px 10px; }
  .contact-details-mini, .footer-contact-summary, .company-contact-details { padding: 10px 4px; }
  .brand-values { gap: 12px; }
  .feature-grid, .card-container, .content-grid, .project-overviews {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature-grid li, .project-highlight {
    min-width: 0;
    padding: 16px 10px;
  }
  .testimonial-card { padding: 16px 12px 15px 8px; }
  .footer-brand img { height: 32px; }
}
@media (max-width: 600px) {
  .footer-menu { flex-direction: column; gap: 10px; }
  .footer-contact-summary p, .address-map { font-size: 0.97rem; }
}

.text-image-section {
  flex-direction: column;
}
@media (min-width: 860px) {
  .text-image-section {
    flex-direction: row;
  }
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.card, .feature-grid li, .testimonial-card, .project-highlight, .faq-item {
  transition: box-shadow 0.22s, transform 0.22s, border-left-color 0.16s;
}
.card:hover, .feature-grid li:hover, .project-highlight:hover {
  box-shadow: 0 8px 34px 0 rgba(36,255,138,0.11);
  transform: translateY(-2px) scale(1.015);
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 8px 18px 8px;
  box-shadow: 0 -6px 28px rgba(38,62,83,0.16);
  font-size: 1.08rem;
  animation: cookieBannerPop 0.64s cubic-bezier(.56,.35,.44,1.23);
}
@keyframes cookieBannerPop {
  0% { opacity: 0; transform: translateY(40px); }
  60% { opacity: 1; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  border: none;
  border-radius: var(--radius-md);
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.12s;
  outline: none;
}
.cookie-consent-banner .accept-all {
  background: var(--energy-1);
  color: var(--white);
}
.cookie-consent-banner .accept-all:hover {
  background: var(--energy-2);
  color: var(--primary);
}
.cookie-consent-banner .reject-all {
  background: var(--secondary);
  color: var(--energy-1);
  border: 2px solid var(--energy-1);
}
.cookie-consent-banner .reject-all:hover {
  background: var(--energy-1);
  color: var(--white);
}
.cookie-consent-banner .cookie-settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-consent-banner .cookie-settings:hover {
  background: var(--primary);
  color: var(--accent);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(26,38,53,0.52);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 48px rgba(38,62,83,0.28);
  max-width: 410px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPop 0.33s cubic-bezier(.29,.66,.27,1.24);
}
@keyframes modalPop {
  0% { opacity: 0; transform: scale(0.86) translateY(20px); }
  85% { opacity: 1; transform: scale(1.02) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: var(--energy-1);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--energy-1);
}
.cookie-essential {
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-buttons button {
  font-family: var(--font-display);
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.09rem;
  cursor: pointer;
  border: none;
  background: var(--energy-2);
  color: var(--primary);
  transition: background 0.14s, color 0.14s;
}
.cookie-modal .modal-buttons button.save {
  background: var(--energy-1);
  color: var(--white);
}
.cookie-modal .modal-buttons button.save:hover {
  background: var(--energy-2);
  color: var(--primary);
}
.cookie-modal .modal-buttons button.cancel {
  background: var(--secondary);
  color: var(--energy-1);
}
.cookie-modal .modal-buttons button.cancel:hover {
  background: var(--energy-1);
  color: var(--white);
}

/* === MISC. === */
a:focus, button:focus {
  outline: 2px solid var(--energy-2);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px; background: var(--gray-light); border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--energy-2);
  border-radius: 8px;
}

/* === PAGE-SPECIFIC TWEAKS === */
.index .about-teaser { background: var(--energy-3); }
.services-preview { background: var(--energy-2); }
.about-teaser p { color: var(--primary); }

/* SUCCESS/TY STATES */
.thank-you-section {
  background: var(--energy-3);
  border-radius: var(--radius-lg);
  padding: 28px 14px;
  text-align: center;
}
.thank-you-section h1 { color: var(--energy-1); }
.thank-you-section a.cta-primary { margin-top: 22px; }

/* --- END CSS --- */
