/* ----------------- 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, menu, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #191c24;
  color: #EAEAF4;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
:focus {
  outline: 2px solid #FFC857;
  outline-offset: 2px;
}

/*------------------ ROOT BRAND COLORS AND FONTS ------------------*/
:root {
  --color-primary: #38623C;
  --color-secondary: #EAEAF4;
  --color-accent: #FFC857;
  --color-bg-dark: #191c24;
  --color-bg-card: #24273a;
  --color-bg-light: #F5F7FB;
  --color-fg: #EAEAF4;
  --color-fg-dark: #191c24;
  --color-fg-light: #EAEAF4;
  --color-neon-green: #49FFB8;
  --color-neon-blue: #23B6F6;
  --color-error: #ff5277;
  --shadow-soft: 0 2px 16px rgba(35,212,180,0.09),0 1.5px 4px 0 rgba(32,45,66,.07);
  --shadow-elevated: 0 4px 36px 0 rgba(80,255,200,0.1),0 2px 16px 0 rgba(57,113,222,.07);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ----------------- TYPOGRAPHY ----------------- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-fg-light);
  margin-bottom: 24px; 
  text-shadow: 0 4px 24px rgba(35, 182, 246, 0.10);
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-neon-green);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
}
p, ul li, ol li, .subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-fg-light);
}
p.subtitle, .subtitle {
  font-size: 1.17rem;
  line-height: 1.7;
  color: var(--color-neon-blue);
  margin-bottom: 18px;
  font-weight: 500;
}
strong { font-weight: 600; color: var(--color-accent); }
a:hover,
a:focus {
  color: var(--color-neon-blue);
}

/* --------------- CONTAINER & GENERAL LAYOUT ----------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
main {
  background: linear-gradient(145deg, #22252c 0%, #272d3a 85%);
  min-height: 70vh;
  padding-bottom: 56px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 5vw;
    margin-bottom: 32px;
  }
}

/* --------------- HEADER & NAVIGATION ----------------- */
header {
  background: #20232c;
  box-shadow: 0 4px 24px 0 rgba(32, 45, 66, 0.16);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.03rem;
  color: var(--color-fg-light);
  padding: 6px 6px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.16s, color 0.19s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--color-neon-blue);
  background: rgba(35,182,246,0.11);
  box-shadow: 0 1px 10px 0 rgba(35,182,246,0.09);
}

header img {
  height: 40px;
  width: auto;
}

.cta-button {
  font-family: var(--font-display);
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  border-radius: 32px;
  padding: 13px 32px;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 2px 24px 0 rgba(80, 255, 200, 0.13);
  border: 2px solid var(--color-accent);
  margin-left: 18px;
  transition: background 0.19s, color 0.17s, border 0.17s, box-shadow 0.19s;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-neon-blue);
  box-shadow: 0 6px 32px 0 rgba(35,255,205,0.28) !important;
  text-shadow: 0 0 4px rgba(47,255,182,0.09);
}

/* ----------- MOBILE NAVIGATION ----------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-accent);
  border: none;
  font-size: 2rem;
  padding: 10px;
  margin-left: 14px;
  border-radius: 7px;
  z-index: 98;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(255,200,87,0.18);
}
.mobile-menu {
  display: none;
}
@media (max-width: 1050px) {
  header .container nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 98vw;
  max-width: 350px;
  background: #20232c;
  box-shadow: -2px 0 40px 0 rgba(56,98,60,0.19);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.6,-0.2,.3,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 0 0 24px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  align-self: flex-end;
  font-size: 2.3rem;
  padding: 18px;
  margin: 8px 10px 0 0;
  border-radius: 7px;
  z-index: 202;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,200,87,0.10);
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: 26px;
  padding-left: 24px;
}
.mobile-menu nav.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-fg-light);
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 0.15s;
  width: 90%;
}
.mobile-menu nav.mobile-nav a:hover, .mobile-menu nav.mobile-nav a:focus {
  background: rgba(255,200,87,0.16);
  color: var(--color-neon-blue);
}

/* Mobile menu overlay background */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(25,28,36,0.64);
  z-index: 190;
  transition: opacity 0.25s;
}
.mobile-menu.open + .mobile-menu-overlay {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  header .container {
    min-height: 55px;
    padding: 0 10px;
  }
  .cta-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .mobile-menu {
    max-width: 95vw;
  }
}

/* ---------- HERO SECTIONS ---------- */
.hero {
  padding: 64px 0 44px 0;
  background: linear-gradient(137deg,#191c24 72%, var(--color-primary) 96%);
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
}
.hero .container {
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
  max-width: 550px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--color-accent);
  filter: drop-shadow(0 2px 16px #49FFB833);
}

@media (max-width: 768px) {
  .hero {
    padding: 34px 0 18px 0;
    min-height: 210px;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
}

/* ---------------- FLEX CONTAINERS AND GAPS ----------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--color-bg-card);
  border-radius: 20px;
  padding: 28px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-elevated);
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s, border 0.17s;
}
.card:hover {
  box-shadow:0 8px 32px 0 rgba(35,255,182,0.19),0 2px 8px 0 rgba(35,182,246,0.07);
  border: 1.5px solid var(--color-neon-green);
  transform: translateY(-2px) scale(1.01);
}
.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;
  }
  .content-grid {
    flex-direction: column;
    gap: 22px;
  }
}

/* -------- FEATURE GRID / ICONS ---------- */
.feature-grid, .icon-list, .project-types, .core-values {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 0px;
}
.feature-grid li, .icon-list li, .project-types li, .core-values li {
  background: var(--color-bg-card);
  border-radius: 17px;
  box-shadow: var(--shadow-soft);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 170px;
  max-width: 325px;
  min-height: 120px;
  transition: border 0.17s, box-shadow 0.17s, transform 0.14s;
  border: 1.2px solid transparent;
  position: relative;
}
.feature-grid li:hover, .icon-list li:hover, .project-types li:hover, .core-values li:hover {
  border: 1.2px solid var(--color-neon-blue);
  box-shadow: 0 7px 22px 0 rgba(35,255,182,0.12);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid li img, .icon-list li img, .project-types li img, .core-values li img {
  height: 36px;
  width: 36px;
  margin-bottom: 7px;
  filter: drop-shadow(0 4px 8px #49FFB899);
}
.feature-grid li h3, .core-values li strong {
  font-size: 1.13rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.feature-grid li p, .core-values li p {
  color: var(--color-fg-light);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 3px;
}
.icon-list li span, .project-types li span {
  color: var(--color-neon-green);
  font-family: var(--font-display);
  font-size: 1.04rem;
}

@media (max-width: 970px) {
  .feature-grid, .icon-list, .project-types, .core-values {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .icon-list li, .project-types li, .core-values li {
    max-width: 100%;
    min-width: 120px;
  }
}

/* --------- SERVICES LIST ---------- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
}
.service-list li {
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 16px 0 rgba(56,98,60,0.07);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: border 0.17s, box-shadow 0.17s, transform 0.14s;
  border: 1.2px solid transparent;
}
.service-list li:hover {
  border: 1.2px solid var(--color-neon-green);
  box-shadow: 0 6px 18px 0 rgba(80,255,200,0.14);
  transform: translateY(-2px);
}
.service-list li img {
  min-width: 32px;
  max-width: 35px;
  height: 35px;
  margin-right: 8px;
  filter: drop-shadow(0 3px 7px #23B6F633);
}
.service-list li strong {
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.02rem;
}
.service-list li p {
  flex: 1 1 80%;
  color: var(--color-fg-light);
  margin-left: 0px;
  font-size: 1rem;
  margin-bottom: 0;
}
.service-list li span, .service-price {
  font-family: var(--font-display);
  color: var(--color-neon-blue);
  font-size: 1.04rem;
  font-weight: 600;
  margin-left: 20px;
}
@media (max-width: 650px) {
  .service-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 8px;
    min-height: 0;
  }
  .service-list li img {
    margin-bottom: 8px;
    margin-right: 0;
  }
}

/* ----------- TESTIMONIALS ----------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F8FAFA;
  color: var(--color-bg-dark);
  border-radius: 18px;
  padding: 20px;
  min-width: 256px;
  max-width: 400px;
  box-shadow: 0 8px 32px 0 rgba(35,182,246,0.08);
  margin-bottom: 20px;
  border: 1.5px solid #c1e9c7;
  position: relative;
  transition: box-shadow 0.15s, border 0.15s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(57,113,222,0.13);
  border: 1.5px solid var(--color-accent);
  transform: translateY(-2px);
}
.testimonial-card p {
  color: var(--color-bg-dark);
  font-weight: 500;
  font-size: 1.03rem;
  margin-bottom: 7px;
  line-height: 1.6;
}
.testimonial-name {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
}
.star-rating {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--color-accent);
}
@media (max-width: 900px) {
  .testimonial-slider {
    gap: 20px;
    flex-direction: column;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 100px;
    width: 100%;
  }
}

/* ---------------- VALUE STATEMENT, MOOD BOARD, PHILOSOPHY ----------------- */
.value-statement, .mission-statement, .eco-friendly-description, .mood-board-text, .creative-process-overview {
  background: var(--color-bg-card);
  border-radius: 13px;
  padding: 14px 18px;
  color: var(--color-fg-light);
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ---------------- PRIVACY, POLICY, GDPR, TERMS, ETC -----------------*/
.privacy-policy-text, .cookie-policy-text, .gdpr-compliance-statement, .terms-of-use-text {
  color: var(--color-fg-light);
  background: var(--color-bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 20px 18px;
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.74;
}
.privacy-policy-text ul, .cookie-policy-text ul, .gdpr-compliance-statement ul, .terms-of-use-text ul {
  margin-top: 10px;
  margin-left: 18px;
  color: var(--color-neon-green);
}
.privacy-policy-text li, .cookie-policy-text li, .gdpr-compliance-statement li, .terms-of-use-text li {
  margin-bottom: 8px;
  font-size: 1rem;
}


/* ------------- CONTACT PAGE DETAILS --------------- */
.address-brief, .address-details, .email-phone, .office-hours {
  font-family: var(--font-body);
  color: var(--color-fg-light);
  margin-bottom: 11px;
  font-size: 1.04rem;
  line-height: 1.5;
}
.address-brief br, .footer-address br {
  margin-bottom: 8px;
  display: block;
  content: "";
}
.email-phone a {
  color: var(--color-accent);
  transition: color 0.17s;
}
.email-phone a:hover, .email-phone a:focus { color: var(--color-neon-green); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  margin-left: 12px;
}
.process-steps li {
  color: var(--color-fg-light);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* --------------- FAQ ACCORDION (not interactive in pure CSS) --------------*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 16px;
}
.faq-item {
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 18px 22px;
  color: var(--color-fg-light);
  box-shadow: 0 2px 16px 0 rgba(35,182,246,0.08);
  margin-bottom: 10px;
  border-left: 4px solid var(--color-accent);
  transition: box-shadow 0.15s, border 0.15s;
}
.faq-item h3 {
  font-size: 1.12rem;
  font-family: var(--font-display);
  color: var(--color-accent);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-prompt {
  background: rgba(56,98,60,0.09);
  color: var(--color-neon-green);
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

/* --------------- MISC CARD & SECTION LAYOUTS --------------*/
.before-after-text {
  background: var(--color-bg-card);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
  padding: 16px 18px;
  margin: 14px 0 16px 0;
}
.before-after-text h3 {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.before-after-text ul {
  margin-left: 15px;
}
.before-after-text li {
  color: var(--color-neon-green);
  font-size: 1.01rem;
  margin-bottom: 6px;
}

.project-statistics ul {
  display: flex;
  flex-direction: row;
  gap: 27px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.project-statistics li {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.key-partnerships-list h3 {
  color: var(--color-neon-green);
  margin-bottom: 6px;
}
.key-partnerships-list ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-left: 14px;
  margin-bottom: 8px;
}
.key-partnerships-list li {
  color: var(--color-fg-light);
  font-size: 1.01rem;
}

@media (max-width: 760px) {
  .project-statistics ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* ------------ FOOTER -------------- */
footer {
  background: #22252c;
  color: var(--color-fg-light);
  padding: 42px 0 24px 0;
  box-shadow: 0 -2px 30px 0 rgba(35,182,246,0.06);
  position: relative;
  z-index: 1;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
footer nav a {
  color: var(--color-accent);
  font-size: 1rem;
  font-family: var(--font-display);
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-neon-green);
}
.footer-cta {
  margin-bottom: 8px;
}
.footer-address {
  color: var(--color-fg-light);
  font-size: 0.97rem;
  margin-bottom: 4px;
}
.footer-copy {
  color: #6dc08b;
  font-size: 0.91rem;
  margin-bottom: 0;
  opacity: 0.7;
}
@media (max-width: 700px) {
  footer .container {
    gap: 12px;
    padding: 0 6px;
  }
  .footer-cta {
    margin-bottom: 9px;
  }
}

/* ------------ BUTTONS, INTERACTIONS, MICRO-ANIMATIONS ------------- */
button, .cta-button {
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, border 0.13s, transform 0.14s;
}
button:active, .cta-button:active {
  transform: scale(0.97);
}
.cta-button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ---------- FORMS (Potential) ------------------- */
input, textarea, select {
  font-family: inherit;
  padding: 11px 16px;
  border: 1.2px solid #d1dde3;
  border-radius: 7px;
  background: var(--color-bg-light);
  color: var(--color-bg-dark);
  margin-bottom: 15px;
  margin-top: 3px;
  font-size: 1rem;
  box-shadow: none;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-accent);
  background: #fff;
}

/* --------------- COOKIE CONSENT BANNER ---------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 4000;
  width: 100vw;
  max-width: 100vw;
  background: #20232c;
  color: var(--color-fg-light);
  padding: 22px 7vw 22px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 -5px 24px 0 rgba(35,182,246,0.09);
  font-size: 1.07rem;
  border-top: 3px solid var(--color-accent);
  animation: cookieBannerIn 0.35s cubic-bezier(.3,1.4,.7,0.9);
}
@keyframes cookieBannerIn {
  from { transform: translateY(80%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 auto;
  font-size: 1.01rem;
  color: var(--color-fg-light);
}
.cookie-banner .cookie-button {
  margin-left: 0;
  border-radius: 8px;
  border: none;
  padding: 12px 19px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-right: 7px;
  transition: background 0.14s, color 0.14s, border 0.13s, transform 0.13s;
}
.cookie-banner .cookie-button.accept {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-accent);
}
.cookie-banner .cookie-button.accept:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .cookie-button.reject {
  background: #353d4a;
  color: var(--color-accent);
  border: 2px solid #535b6b;
}
.cookie-banner .cookie-button.reject:hover {
  background: #FFC85722;
  color: var(--color-primary);
}
.cookie-banner .cookie-button.settings {
  background: #181d2a;
  color: var(--color-neon-blue);
  border: 2px solid var(--color-neon-blue);
}
.cookie-banner .cookie-button.settings:hover {
  background: #24B7F622;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 4vw 18px 4vw;
    font-size: 0.98rem;
  }
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(25,28,36,0.71);
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: cookieModalOverlayIn 0.17s cubic-bezier(.3,1.4,.7,0.9);
}
@keyframes cookieModalOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* COOKIE MODAL DIALOG */
.cookie-modal {
  background: #24273a;
  color: var(--color-fg-light);
  border-radius: 21px;
  padding: 32px 30px 26px 30px;
  min-width: 320px;
  max-width: 97vw;
  box-shadow: 0 8px 48px 0 rgba(35,182,246,0.19);
  z-index: 4550;
  position: relative;
  animation: cookieModalIn 0.35s cubic-bezier(.3,1.4,.7,0.9);
}
@keyframes cookieModalIn {
  from { transform: translateY(80px) scale(.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-accent);
  cursor: pointer;
  transition: background 0.14s;
  border-radius: 6px;
  padding: 3px 7px;
}
.cookie-modal .modal-close:hover {
  background: rgba(255,200,87,0.17);
}
.cookie-modal h3 {
  color: var(--color-accent);
  margin-bottom: 12px;
  font-size: 1.23rem;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  margin-top: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 5px 0;
}
.cookie-modal .category-toggle {
  margin-left: auto;
  min-width: 40px;
}
.cookie-modal .toggle-switch {
  width: 36px;
  height: 20px;
  border-radius: 16px;
  background: #393e51;
  border: 1.1px solid #888ca0;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
  display: inline-block;
  vertical-align: middle;
}
.cookie-modal .toggle-switch.enabled {
  background: var(--color-neon-green);
  border-color: var(--color-neon-blue);
}
.toggle-switch .toggle-knob {
  position: absolute;
  top: 2.75px;
  left: 2.5px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.13s;
  box-shadow: 0 1px 5px 0 rgba(32,45,66,0.11);
}
.toggle-switch.enabled .toggle-knob {
  left: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 16px;
}
.cookie-modal .cookie-button {
  border-radius: 8px;
  border: none;
  padding: 11px 19px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-accent);
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .cookie-button.reject {
  background: #24273a;
  color: var(--color-accent);
  border: 2px solid #535b6b;
}
.cookie-modal .cookie-button.reject:hover {
  background: #FFC85722;
  color: var(--color-primary);
}
.cookie-modal .cookie-button.save {
  background: var(--color-neon-green);
  color: var(--color-fg-dark);
  border: 2px solid var(--color-accent);
}
.cookie-modal .cookie-button.save:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

@media (max-width: 490px) {
  .cookie-modal {
    min-width: unset;
    padding: 16px 7vw 16px 7vw;
  }
}

/* --------------- MEDIA QUERIES RESPONSIVE --------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 100vw;
    padding: 0 3vw;
  }
}
@media (max-width: 1000px) {
  h1, .h1 { font-size: 2.0rem; }
  h2, .h2 { font-size: 1.5rem; }
}
@media (max-width: 700px) {
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.25rem; }
  .section { padding: 26px 7px; }
}
@media (max-width: 480px) {
  .cookie-banner {
    font-size: 0.91rem;
    padding: 12px 3vw;
  }
}

/* ------------- UTILITIES --------------- */
.mt-32 { margin-top: 32px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.gap-24 { gap: 24px !important; }
.gap-16 { gap: 16px !important; }

/* ------------- HIDE CLASSES ------------- */
.hide, .hidden { display: none !important; }

/* --------- PRINT BRAND FONTS ----------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
