/* RESET & GENERAL NORMALIZATION */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #204861;
  background: #E3E6EB;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

/* BRAND COLORS */
:root {
  --primary: #295A7A;
  --secondary: #E3E6EB;
  --primary-dark: #204861;
  --accent: #FDB833;
  --bg: #fff;
  --elec-cyan: #09D9D3;
  --elec-pink: #EA38A7;
  --elec-violet: #7C3AED;
  --grey-100: #F8FAFB;
}
/* Fallbacks */
body, .bg-white { background: var(--secondary, #E3E6EB); }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  color: var(--primary-dark);
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  color: var(--elec-violet);
}
h3 {
  font-size: 1.3rem;
  color: var(--accent);
}
h4, h5, h6 {
  color: var(--primary);
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  h3 {
    font-size: 1.1rem;
  }
}
p, ul, ol, li, blockquote, span, label {
  font-size: 1rem;
  color: #204861;
}
blockquote {
  color: var(--primary-dark);
  background: var(--grey-100);
  border-left: 5px solid var(--accent);
  padding: 12px 22px;
  border-radius: 12px;
  margin-bottom: 8px;
  font-style: italic;
  box-shadow: 0 1px 8px 0 #faeec0a6;
}
strong { font-weight: 700; }

/* HEADER & NAVIGATION */
header {
  background: var(--bg);
  box-shadow: 0 4px 24px 0 rgba(41,90,122, 0.06), 0 1.5px 0 0 var(--accent);
  position: relative;
  z-index: 100;
  padding-top: 6px;
  padding-bottom: 6px;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  min-height: 74px;
}
.logo img {
  height: 48px;
}
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.main-nav a {
  color: var(--primary-dark);
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--accent);
  color: var(--elec-pink);
}
/* CTA Button in Header */
.cta.primary {
  background: var(--accent);
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 11px 32px;
  border-radius: 999px;
  box-shadow: 0 2px 12px 0 #9af9e5b0;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  border: 2.5px solid var(--accent);
  margin-left: 16px;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--elec-cyan);
  color: var(--elec-violet);
  box-shadow: 0 4px 24px 0 #ea38a79a;
  transform: scale(1.04);
}
header .cta.primary { margin-left: auto; }

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 2.1rem;
  padding: 5px 16px;
  border-radius: 11px;
  margin-left: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 #d7ccfcba;
  z-index: 140;
  transition: background 0.15s, color 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--elec-pink);
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.61,.36,0,1.05);
  box-shadow: -8px 0 32px 0 #ea38a73a;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 24px;
  padding-bottom: 42px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: #fff;
  color: var(--primary-dark);
  border-radius: 50%;
  padding: 2px 13px;
  border: 2.5px solid var(--elec-violet);
  cursor: pointer;
  margin-left: auto;
  margin-right: 25px;
  margin-bottom: 27px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover {
  background: var(--elec-violet);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding-left: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.mobile-nav a {
  color: var(--primary-dark);
  padding: 9px 0;
  border-bottom: 2.5px solid transparent;
  border-radius: 4px;
  transition: background 0.16s, color 0.16s;
  width: 100%;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--elec-pink);
  color: #fff;
}

/* Hide desktop nav on mobile; show burger */
@media (max-width: 1024px) {
  .main-nav, header .cta.primary { display: none!important; }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(67deg, var(--elec-cyan) 0%, var(--secondary) 57%, var(--elec-pink) 100%);
  min-height: 340px;
  box-shadow: 0 0 0 0 #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
}
.hero .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 620px;
}
.hero h1 {
  color: var(--primary-dark);
  font-size: 2.6rem;
  line-height: 1.15;
  text-shadow: 0px 2px 0 var(--accent),0 4px 16px #09d9d3a8;
}
.hero p {
  font-size: 1.28rem;
  color: var(--elec-violet);
  font-weight: 500;
  margin-bottom: 10px;
}
.hero .cta.primary {
  font-size: 1.18rem;
  padding: 14px 38px;
  border-radius: 24px;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 10px 32px 10px;
  }
  .hero .content-wrapper { max-width: 100%; }
  .hero h1 { font-size: 1.45rem; }
  .hero p { font-size: 1.07rem; }
}

/* SECTIONS & FLEXBOX LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 32px 0 #bfcbe047;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .section { padding: 23px 7px; margin-bottom: 36px; border-radius: 16px; }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 13px 0 #7c3aed21;
  padding: 27px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 280px;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 #ea38a7a5;
  transform: translateY(-4px) scale(1.023);
  z-index: 3;
}

/* Service List Basic */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 14px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.service-list > div {
  flex: 1 1 270px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 #ea38a729;
  padding: 24px 18px 18px 18px;
  min-width: 265px;
  min-height: 202px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  margin-bottom: 20px;
  border: 2.2px solid var(--accent);
  transition: box-shadow 0.18s, border 0.14s, transform 0.14s;
}
.service-list > div:hover {
  box-shadow: 0 6px 26px 0 #09d9d384;
  border-color: var(--elec-cyan);
  transform: scale(1.03);
}
.service-list h3, .service-list h2 {
  color: var(--elec-violet);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
}
.service-list p { font-size: 1rem; }
.service-list strong { color: var(--elec-pink); font-size: 1.11rem; }

/* BLOG LIST */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 14px;
}
.blog-list > div {
  flex: 1 1 275px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 15px 0 #ae38a721;
  padding: 22px 15px 15px 18px;
  min-width: 230px;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.blog-list > div:hover {
  box-shadow: 0 6px 22px 0 #09d9d363;
  transform: translateY(-3px) scale(1.021);
}
.read-more {
  font-family: 'Montserrat', sans-serif;
  color: var(--elec-violet);
  font-weight: 700;
  border-bottom: 1.7px dashed var(--elec-violet);
  margin-top: 9px;
  transition: color 0.19s, border 0.18s;
}
.read-more:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* CARD AND GRID LAYOUT */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* TESTIMONIAL CARD */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 2px 20px 0 #7c3aed20;
  margin-bottom: 20px;
  border: 2px solid var(--elec-violet);
  flex: 1 1 330px;
  min-width: 235px;
  max-width: 100%;
  transition: box-shadow 0.15s, border 0.16s, transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px 0 #ea38a733;
  border-color: var(--elec-cyan);
  transform: scale(1.025);
}
.testimonial-card blockquote {
  margin-bottom: 0;
  background: none;
  border: none;
  color: #204861;
  font-style: normal;
  box-shadow: none;
  font-size: 1.08rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--elec-pink);
  font-weight: 700;
}
.testimonial-card div {
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 2.5px;
  margin-left: auto;
}

/* BUTTONS AND CTAS */
.cta.secondary {
  background: var(--elec-pink);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 30px;
  border-radius: 999px;
  border: 2.5px solid var(--elec-pink);
  box-shadow: 0 2px 12px 0 #295a7a38;
  transition: background 0.17s, color 0.17s, border 0.14s, transform 0.13s;
  margin-top: 12px;
  cursor: pointer;
  display: inline-block;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--elec-cyan);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: scale(1.045);
}

/* SHARED SPACING RULES */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section { margin-bottom: 36px; padding: 20px 7px; }
}

.card, .testimonial-card, .service-list > div, .blog-list > div {
  margin-bottom: 20px;
}

/* TABLES (if any) */
table {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 #bfcbe021;
}
th, td {
  padding: 13px 10px;
  text-align: left;
}
tr:nth-child(even) {
  background: #faeec057;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 30px 0 24px 0;
  border-top: 3.5px solid var(--accent);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.36rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-brand img {
  height: 38px;
}
.footer-contact {
  font-size: 1rem;
  max-width: 350px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.55;
}
footer strong { color: var(--accent); }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: color 0.16s;
  font-size: 1rem;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  width: 36px;
  height: 36px;
  justify-content: center;
  transition: background 0.16s;
}
.footer-social a:hover {
  background: var(--elec-cyan);
}
.footer-social img {
  width: 22px;
  height: 22px;
  filter: grayscale(1) brightness(0.7);
  transition: filter 0.16s;
}
.footer-social a:hover img {
  filter: none;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* MAP LOCATION BLOCK */
.map-location {
  background: var(--elec-cyan);
  color: var(--primary-dark);
  padding: 14px 24px;
  border-radius: 12px;
  margin-top: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 14px 0 #09d9d33a;
}
.map-location a {
  color: var(--elec-pink);
  text-decoration: underline;
}
.map-location a:hover {
  color: var(--accent);
}

/* FAQ LISTS */
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
  list-style: disc inside;
}
ul li, ol li {
  font-size: 1rem;
  margin-bottom: 11px;
  color: var(--primary-dark);
  line-height: 1.5;
}
ul li strong { color: var(--elec-violet); }

/* CONTACT INFO */
.contact-info {
  background: var(--elec-violet);
  color: #fff;
  border-radius: 13px;
  padding: 17px 20px;
  margin-bottom: 14px;
  box-shadow: 0 2px 14px 0 #7c3aed34;
}
.contact-info p, .contact-info strong { color: #fff; }
.contact-info strong { font-weight: 800; }

/* ANIMATIONS, TRANSITIONS, MICRO-INTERACTIONS */
*:focus {
  outline: 3px solid var(--accent);
  outline-offset: 1.5px;
  transition: outline 0.13s;
}
.cta, .cta.primary, .cta.secondary, .read-more, .footer-nav a, .main-nav a, .mobile-menu-toggle, .mobile-menu-close, .footer-social a {
  transition: background 0.18s, color 0.18s, border 0.17s, box-shadow 0.15s, transform 0.13s, outline 0.13s;
  cursor: pointer;
}

/* RESPONSIVE FLEX ADJUSTMENTS */
@media (max-width: 992px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .service-list, .blog-list, .card-container, .content-grid {
    gap: 16px;
  }
  .service-list > div, .blog-list > div {
    flex: 1 1 210px;
    min-width: 188px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .service-list, .blog-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 15px 10px;
  }
  .service-list > div, .blog-list > div, .card {
    min-width: 0;
    width: 100%;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 15px; right: 15px; bottom: 15px;
  z-index: 13000;
  background: #fff;
  color: var(--primary-dark);
  border-radius: 26px;
  box-shadow: 0 8px 32px 0 #2048611a;
  padding: 24px 22px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border: 2.5px solid var(--accent);
  font-size: 1.13rem;
  animation: fadeInUp 0.35s cubic-bezier(.61,.36,0,1.05);
}
.cookie-consent-banner.hide {
  display: none;
}
.cookie-consent-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  padding: 10px 26px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  font-size: 1.02rem;
  margin-right: 8px;
  transition: background 0.18s, border 0.15s, color 0.17s, transform 0.12s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary-dark);
}
.cookie-btn.accept:hover {
  background: var(--elec-cyan);
  color: var(--elec-violet);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--elec-pink);
  border-color: var(--elec-pink);
}
.cookie-btn.reject:hover {
  background: var(--elec-pink);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary-dark);
  border-color: var(--accent);
}
.cookie-btn.settings:hover {
  background: var(--accent);
  color: var(--elec-violet);
}

/* Cookie Modal Popup */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 13300;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,72,97,0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.27s linear;
}
.cookie-modal {
  background: #fff;
  color: var(--primary-dark);
  border-radius: 18px;
  box-shadow: 0 8px 38px 0 #ea38a736;
  max-width: 430px;
  padding: 34px 26px 20px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDown 0.33s cubic-bezier(.61,.36,0,1.05);
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: #fff;
  color: var(--elec-pink);
  border: 2px solid var(--elec-pink);
  font-size: 1.5rem;
  padding: 2px 11px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.14s, color 0.15s;
}
.cookie-modal-close:hover {
  background: var(--elec-pink);
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.09rem;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 700;
  color: var(--primary);
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: #E3E6EB;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  transition: background 0.16s;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--elec-cyan);
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transition: left 0.14s, background 0.14s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-slider {
  left: 19px;
  background: var(--elec-pink);
}
.cookie-category.essential .cookie-toggle {
  background: var(--accent);
}
.cookie-category.essential label { color: var(--accent); }
.cookie-category.essential .cookie-toggle-slider {
  background: var(--primary);
}
.cookie-category.essential .cookie-toggle[aria-checked="true"] .cookie-toggle-slider {
  background: var(--primary-dark);
}

@media (max-width: 600px) {
  .cookie-modal {
    max-width: 99vw;
    padding: 20px 7px 14px 7px;
    font-size: 0.96rem;
  }
  .cookie-consent-banner {
    font-size: 0.97rem;
    padding: 15px 9px 10px 9px;
    border-radius: 12px;
    left: 2vw; right: 2vw;
  }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(35px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-40px); }
  80% { opacity: 0.7; }
  100% { opacity: 1; transform: translateY(0); }
}

/************************************************************
 * VIBRANT ENERGETIC STYLE EXTRAS
 ***********************************************************/
/* Electric lines & background blurs as pseudo elements */
.hero::after {
  content: '';
  position: absolute;
  top: 35%;
  right: -90px;
  width: 200px;
  height: 400px;
  background: linear-gradient(155deg, var(--elec-violet) 50%, var(--accent) 90%);
  opacity: 0.07;
  filter: blur(24px);
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  left: -70px;
  top: 5%;
  width: 160px;
  height: 320px;
  background: linear-gradient(120deg, var(--elec-pink) 0%, var(--elec-cyan) 100%);
  opacity: 0.13;
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

.section::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 70px;
  width: 140px;
  height: 140px;
  background: linear-gradient(120deg, var(--elec-cyan), var(--accent));
  opacity: 0.09;
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
}
.section {
  position: relative;
  z-index: 2;
}

/************************************************************
 * UTILITIES
 ***********************************************************/
.hide { display: none!important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.bg-white { background: #fff!important; }
.bg-primary { background: var(--primary)!important; color: #fff!important; }
.bg-accent { background: var(--accent)!important; color: var(--primary)!important; }
.bg-cyan { background: var(--elec-cyan)!important; color: var(--primary-dark)!important; }
.rounded { border-radius: 999px!important; }

/************************************************************
 * THANK-YOU PAGE SPECIAL EFFECT
 ***********************************************************/
@keyframes pop {
  0% { transform: scale(0.98); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.thankyou-content {
  animation: pop 0.86s cubic-bezier(.36,1.78,.23,-0.9);
}

/************************************************************
 * PRINT OPTIMIZATION
 ***********************************************************/
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-backdrop { display: none!important; }
  main, .container { width: 100%!important; padding: 0!important; }
  body { background: #fff; color: #000; }
}
