/* === CSS RESET and BASE 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;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background: #FDFDF8;
  color: #1E2232;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}
a {
  color: #276B3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5CB28;
}

/* === BRAND COLORS === */
:root {
  --primary: #276B3B;
  --secondary: #F5CB28;
  --accent: #FFFFFF;
  --emerald: #23BA78;
  --electric-blue: #18A6F2;
  --energy-pink: #E52973;
  --gray-bg: #F9F9F5;
  --text-dark: #1E2232;
  --card-shadow: 0 4px 24px rgba(40, 120, 60, 0.07);
  --card-radius: 20px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.375rem; /* 38px */
  color: var(--primary);
  margin-bottom: 18px;
}
h2 {
  font-size: 1.875rem; /* 30px */
  color: var(--energy-pink);
  margin-bottom: 14px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  color: var(--primary);
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem; /* 18px */
}
p, li, dt, dd {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
}
strong {
  font-weight: bold;
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.125rem; }
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, 
.hero-section, 
.features-section, 
.services-section, 
.process-section, 
.cta-banner-section, 
.case-studies-section, 
.team-section, 
.sustainability-section, 
.about-section, 
.blog-intro-section, 
.faq-highlight-section, 
.faq-section, 
.legal-section, 
.contact-section, 
.confirmation-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-bg);
  border-radius: var(--card-radius);
}

@media (max-width: 768px) {
  .section,
  .hero-section, .features-section, .services-section, .process-section, .cta-banner-section, .case-studies-section, .team-section, .sustainability-section, .about-section, .blog-intro-section, .faq-highlight-section, .faq-section, .legal-section, .contact-section, .confirmation-section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
}

/* === CARD CONTAINER AND CARD === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 20px;
  flex: 1 1 290px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(23, 186, 120, 0.19);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}

/* === FLEX GRIDS & UTILS === */
.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, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HERO SECTION === */
.hero-section {
  background: linear-gradient(-8deg, #F5CB28 30%, #18A6F2 120%);
  color: var(--primary);
  display: flex;
  align-items: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 44px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 620px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.hero-section h1 {
  color: var(--primary);
  text-shadow: 0 2px 10px rgba(245, 203, 40, 0.06);
}
.hero-section p {
  font-size: 1.125rem;
  color: var(--text-dark);
}

/* === NAVIGATION HEADER === */
header {
  background: var(--accent);
  box-shadow: 0 2px 10px rgba(40, 80, 63, 0.04);
  position: relative;
  z-index: 111;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.17s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--energy-pink);
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.09rem;
  color: #fff;
  background: var(--primary);
  padding: 13px 32px;
  border: none;
  border-radius: 28px;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: 0 3px 14px 0 rgba(40, 120, 60, 0.13);
  text-align: center;
  transition: background 0.22s, color 0.22s, transform 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--energy-pink);
  color: var(--secondary);
  transform: scale(1.045);
}
.btn-secondary {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--electric-blue);
  padding: 11px 24px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  min-width: 162px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(24,166,242,0.09);
  transition: background 0.22s, transform 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.03);
}

/* HIDE Hamburger by default on desktop */
.mobile-menu-toggle {
  display: none;
}

/* === MOBILE NAVIGATION === */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1021;
    padding: 6px 10px;
    margin-left: auto;
    transition: color 0.18s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    color: var(--energy-pink);
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2222;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.82,.02,.25,1);
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  box-shadow: 0 0 0 9999px rgba(30,34,50, 0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.5rem;
  margin-left: auto;
  margin-top: 16px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--energy-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--primary);
  padding: 8px 0;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--energy-pink);
  padding-left: 4px;
}
@media (min-width: 992px) {
  .mobile-menu { display: none; }
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: #fff;
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 36px 18px 20px 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.85;
  transition: opacity 0.15s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: var(--secondary);
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1rem;
}
.footer-branding img {
  height: 30px;
  width: auto;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    text-align: left;
  }
}

/* === FEATURES (Index) === */
.features-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 16px;
}
.features-section .feature-grid li {
  flex: 1 1 215px;
  background: var(--accent);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 24px 20px 20px 20px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.15s;
}
.features-section .feature-grid li:hover {
  box-shadow: 0 8px 36px rgba(245,203,40,0.17);
  transform: scale(1.045);
  z-index: 1;
}
.features-section .feature-grid img {
  width: 48px; height: 48px;
  margin-bottom: 8px;
}
.features-section h3 {
  color: var(--energy-pink);
  font-size: 1.17rem;
}
.features-section p {
  font-size: 1rem;
}

@media (max-width: 992px) {
  .features-section .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .features-section .feature-grid li {
    min-width: unset;
  }
}

/* === SERVICES === */
.services-section .service-list, .services-main-section .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 22px 0;
}
.services-section .service-list li, 
.services-main-section .services-grid li {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 24px 18px 22px 18px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.21s;
}
.services-section .service-list li:hover, 
.services-main-section .services-grid li:hover {
  box-shadow: 0 12px 36px rgba(24,166,242,0.09);
  transform: translateY(-7px) scale(1.03);
  z-index: 1;
}
.services-section .service-list img,
.services-main-section .services-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
}
.services-section .service-price,
.services-main-section .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  background: #E9FFE1;
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 0.98rem;
  margin-top: 6px;
  align-self: flex-end;
}
@media (max-width: 992px) {
  .services-section .service-list, .services-main-section .services-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* === PROCESS (Step List) === */
.process-section .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  list-style: none;
  margin: 34px 0 0 0;
  counter-reset: procstep;
}
.process-section .step-list li {
  background: var(--accent);
  flex: 1 1 214px;
  min-width: 160px;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 26px 16px 18px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  transition: box-shadow .19s, transform .18s;
}
.process-section .step-list li:hover {
  transform: scale(1.04);
  box-shadow: 0 7px 28px rgba(39,107,59,0.15);
}
.process-section .step-list li img {
  width: 40px; height: 40px;
  margin-bottom: 5px;
}
.process-section .step-list strong {
  color: var(--primary);
}
@media (max-width: 992px) {
  .process-section .step-list {
    gap: 18px;
    flex-direction: column;
  }
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: #fff6ea;
  border: 2px solid #fff2d5;
  margin-bottom: 60px;
  padding: 38px 20px 36px 20px;
  border-radius: 24px;
}
.testimonials-section h2 {
  color: var(--primary);
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  box-shadow: 0 5px 24px rgba(39,107,59,0.11);
  border: 1.5px solid #E2F6D7;
  border-left: 6px solid var(--primary);
  border-radius: var(--card-radius);
  padding: 20px 28px;
  margin-bottom: 24px;
  min-width: 200px;
  max-width: 520px;
  color: var(--text-dark);
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-style: italic;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2D2E30;
  font-weight: 500;
}
.testimonial-card span {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
}
.testimonial-card .stars {
  font-size: 1.29rem;
  color: #F5CB28;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 15px 8px;
    max-width: 100%;
  }
}

/* === CTA BANNER === */
.cta-banner-section {
  background: linear-gradient(-7deg, #22BF7D 0%, #18A6F2 100%);
  color: #fff;
  padding: 44px 20px 38px 20px;
  border-radius: 26px;
  text-align: center;
  margin-bottom: 60px;
}
.cta-banner-section h2 {
  color: #fff;
  font-size: 2rem;
}
.cta-banner-section p {
  color: #fffbe2;
  font-size: 1.14rem;
  margin-bottom: 16px;
}
.cta-banner-section .btn-primary {
  margin: 0 auto; margin-top: 14px;
  background: var(--secondary);
  color: var(--primary);
}
.cta-banner-section .btn-primary:hover {
  background: var(--energy-pink);
  color: #fff;
}
@media (max-width: 768px) {
  .cta-banner-section {
    padding: 28px 6px 25px 6px;
  }
}

/* === CASE STUDIES LIST === */
.case-studies-section .case-study-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
}
.case-studies-section .case-study-list li {
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 1px 13px rgba(245,203,40,0.08);
  padding: 26px 22px 17px 22px;
  font-size: 1.02rem;
}
.case-studies-section .case-study-list h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.09rem;
}

/* === BLOG & FAQ HIGHLIGHT SECTIONS (nasveti) === */
.blog-intro-section .blog-overview {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.blog-intro-section .blog-overview li {
  flex: 1 1 240px;
  min-width: 170px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 1px 13px rgba(23,186,120,0.09);
  padding: 16px 18px 12px 18px;
}
@media (max-width: 992px) {
  .blog-intro-section .blog-overview {
    flex-direction: column;
    gap: 16px;
  }
}
.faq-highlight-section .faq-snippets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.faq-highlight-section dt {
  font-family: 'Montserrat';
  font-weight: 700;
  color: var(--energy-pink);
  font-size: 1rem;
}
.faq-highlight-section dd {
  margin-left: 0;
  margin-bottom: 7px;
  color: var(--primary);
}

.faq-highlight-section .btn-secondary {
  margin-top: 16px;
}

/* === FAQ SECTION (pogosta-vprasanja.html) === */
.faq-section .question-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-section .question-list dt {
  font-family: 'Montserrat';
  color: var(--energy-pink);
  font-size: 1.07rem;
  margin-bottom: 4px;
}
.faq-section .question-list dd {
  color: var(--primary);
  font-size: 1rem;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}
.quick-links a {
  color: var(--electric-blue);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.18s;
}
.quick-links a:hover, .quick-links a:focus {
  color: var(--primary);
}

/* === ABOUT, TEAM, SUSTAINABILITY (about.html) === */
.text-section {
  margin-bottom: 20px;
}
.text-section ul {
  padding-left: 18px;
  margin-top: 11px;
}
.text-section li {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .text-section {
    margin-bottom: 13px;
  }
}

/* === CONTACT PAGE === */
.contact-section .text-section {
  margin-bottom: 10px;
}
.contact-section a {
  color: var(--energy-pink);
  transition: color 0.15s;
}
.contact-section a:hover { color: var(--primary); }

.contact-map {
  background: #f9ffef;
  padding: 14px 12px;
  border-radius: 16px;
  margin-top: 10px;
}

/* === LEGAL / POLICY PAGES === */
.legal-section .text-section {
  background: #F7FAEB;
  border-radius: 12px;
  padding: 18px 15px;
  margin-bottom: 6px;
}

/* === THANK YOU / CONFIRMATION === */
.confirmation-section {
  text-align: center;
}
.confirmation-section h1 {
  color: var(--energy-pink);
  margin-bottom: 20px;
}
.confirmation-section p {
  color: var(--primary);
}
.confirmation-section .btn-primary {
  margin-top: 26px;
}

/* === ANIMATIONS - microinteractions === */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.16s, color 0.13s, transform 0.18s;
}
.card, .features-section .feature-grid li, .services-section .service-list li, .services-main-section .services-grid li, .process-section .step-list li {
  transition: box-shadow 0.18s, transform 0.17s;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  z-index: 9999;
  padding: 22px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 28px rgba(23,107,59,0.09);
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1rem;
  animation: cookie-pop 0.6s cubic-bezier(.45,.65,.44,.97);
}
@keyframes cookie-pop {
  0% {transform: translateY(100%); opacity:0;}
  80% {transform: translateY(-13px); opacity:.7;}
  100% {transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  flex: 2 1 230px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .btn-cookie {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 21px;
  padding: 10px 25px;
  font-size: 1rem;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.16s, color 0.17s;
}
.cookie-banner .btn-accept {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .btn-accept:hover,
.cookie-banner .btn-accept:focus {
  background: var(--energy-pink);
  color: var(--secondary);
}
.cookie-banner .btn-reject {
  background: var(--energy-pink);
  color: #fff;
}
.cookie-banner .btn-reject:hover,
.cookie-banner .btn-reject:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .btn-settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .btn-settings:hover,
.cookie-banner .btn-settings:focus {
  background: var(--electric-blue);
  color: #fff;
}
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 8px 13px 10px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 8px;
  }
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(28,28,36, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.11);
  transition: opacity 0.36s, transform 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 16px;
  width: 95vw;
  max-width: 410px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 12px 54px rgba(23,107,59, 0.11);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-modal-in 0.45s cubic-bezier(.36,1.94,.37,.99);
}
@keyframes cookie-modal-in {
  0% {transform: translateY(30%) scale(0.8); opacity:0;}
  100% {transform: translateY(0) scale(1); opacity:1;}
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cookie-modal-title {
  font-family: 'Montserrat'; font-weight: bold;
  color: var(--energy-pink);
  font-size: 1.2rem;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  margin-left: auto;
  transition: color 0.15s;
}
.cookie-modal-close:hover {
  color: var(--energy-pink);
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 18px 0;
}
.cookie-pref-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-pref-label {
  font-family: 'Montserrat';
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}
.cookie-pref-switch {
  margin-left: auto;
}
input[type="checkbox"].cookie-switch {
  accent-color: var(--primary);
  width: 24px;
  height: 24px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
}
input[disabled].cookie-switch {
  filter: grayscale(0.95) opacity(0.7);
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  align-items: center;
}
.cookie-modal .btn-cookie {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .btn-cookie:hover {
  background: var(--energy-pink);
  color: var(--secondary);
}
@media (max-width: 400px) {
  .cookie-modal-dialog {
    padding: 18px 8px 12px 8px;
  }
}

/* === MISC === */
ul, ol {
  margin-left: 20px;
  margin-bottom: 14px;
}
li {
  margin-bottom: 8px;
}
dt {
  font-weight: bold;
}

/* === REMOVE LIST STYLES AS NEEDED === */
.feature-grid, .service-list, .services-grid, .case-study-list, .blog-overview {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* === FOCUS STYLES FOR ACCESSIBILITY === */
a, button, input, .btn-primary, .btn-secondary, .btn-cookie {
  outline: none;
}
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .btn-cookie:focus {
  box-shadow: 0 0 0 3px var(--secondary), 0 0 0 5px var(--primary);
}

/* === SELECTION === */
::selection {
  background: var(--secondary);
  color: var(--primary);
}

/* === SCROLLBAR / OVERRIDE === */
::-webkit-scrollbar { width: 9px; background: #eee; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 12px; }

/* === PRINT OVERRIDES (Not visible) === */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}

/* ---------------- END OF FUZESTREAM STYLES ---------------- */
