/* ==== CSS RESET & NORMALIZE ==== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1FAEE;
  color: #222;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* ==== CSS VARIABLES (with fallbacks) ==== */
:root {
  --color-primary: #1D3557;
  --color-secondary: #F1FAEE;
  --color-accent: #E63946;
  --color-accent-dark: #A41623;
  --color-blue-vivid: #457B9D;
  --color-electric-yellow: #FFF600;
  --color-electric-pink: #FE019A;
  --color-electric-aqua: #14F4FE;
  --color-dark: #20223A;
  --color-bg-card: #ffffff;
  --color-bg-section: #F1FAEE;
  --color-bg-hero: #FFFFFF;
  --color-shadow: rgba(30,41,59,0.08);

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ==== TYPOGRAPHY ==== */
body {
  font-family: var(--font-body), Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #222;
  background: var(--color-bg-section, #F1FAEE);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1.5px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.55rem;
}
h4 {
  font-size: 1.25rem;
}
p, ul, ol, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
}
strong {
  color: var(--color-accent);
  font-weight: bold;
}
small {
  font-size: 0.92em;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
}

/* ==== CONTAINER & LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: 18px;
  box-shadow: 0 6px 24px var(--color-shadow);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    padding: 0;
    max-width: 100%;
  }
}

/* ==== HEADER & NAV ==== */
header {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(10, 30, 48, 0.08);
  z-index: 100;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.4px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-electric-yellow);
  border-bottom: 2px solid var(--color-electric-yellow);
}

.cta.primary {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 34px;
  font-size: 1.07rem;
  margin-left: 10px;
  box-shadow: 0 3px 16px var(--color-shadow);
  letter-spacing: 1px;
  border: none;
  transition: background 0.18s, box-shadow 0.2s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-accent-dark);
  box-shadow: 0 6px 24px var(--color-shadow);
  color: var(--color-electric-yellow);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-electric-yellow);
  color: var(--color-primary);
  border-radius: 60px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.18s, color 0.18s;
  z-index: 1200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(25, 25, 38, 0.96);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(.4,.9,.28,0.97);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.6rem;
  margin: 28px 16px 18px 16px;
  align-self: flex-end;
  border: none;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-electric-yellow);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: bold;
  padding: 16px 0;
  color: var(--color-electric-aqua);
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
  width: 100%;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-electric-yellow);
}

@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
}

/* ==== HERO SECTION ==== */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, var(--color-electric-yellow) 0%, #fff 100%);
  padding: 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.7rem;
  letter-spacing: -2px;
  text-shadow: 0 6px 15px rgba(230,57,70,0.04);
}
.hero p {
  font-size: 1.25rem;
  color: var(--color-dark);
}
.hero .cta.primary {
  background: var(--color-electric-pink);
  color: #fff;
  font-size: 1.13rem;
  font-weight: 800;
  margin-top: 18px;
  box-shadow: 0 6px 24px rgba(230,57,70,0.17);
  border: none;
  letter-spacing: 1px;
  transition: background 0.19s;
}
.hero .cta.primary:hover, .hero .cta.primary:focus {
  background: var(--color-accent-dark);
  color: var(--color-electric-yellow);
}
@media (max-width: 768px) {
  .hero .container { min-height: 160px; }
  .hero h1 { font-size: 1.6rem; }
  .hero {
    margin-bottom: 32px;
    padding: 0 0 24px 0;
  }
}

/* ==== FEATURES ==== */
.features .content-wrapper {
  gap: 26px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 14px var(--color-shadow);
  padding: 30px 24px 22px 24px;
  min-width: 220px;
  min-height: 180px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 7px solid var(--color-electric-pink);
  transition: box-shadow 0.18s, transform 0.14s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid li img {
  width: 38px;
  margin-bottom: 9px;
}
.feature-grid li strong {
  font-size: 1.18rem;
  color: var(--color-primary);
}
.feature-grid li:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 7px 32px #FE019A22;
}

@media (max-width: 992px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li {
    min-width: 140px;
    min-height: 120px;
    width: 100%;
    padding: 20px 12px 15px 16px;
  }
}

/* ==== SERVICES HIGHLIGHT ==== */
.services-highlight .content-wrapper ul,
.services .content-wrapper ul {
  margin-bottom: 22px;
  padding-left: 16px;
  color: #223;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.services-highlight .content-wrapper ul li::before,
.services .content-wrapper ul li::before {
  content: '✔';
  color: var(--color-electric-pink);
  margin-right: 8px;
  font-size: 1rem;
  font-weight: bold;
}
.services-highlight .cta, .services .cta {
  background: var(--color-electric-aqua);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.09rem;
  border-radius: 35px;
  padding: 14px 34px;
  margin-top: 10px;
  box-shadow: 0 5px 19px #14F4FE44;
  transition: background 0.17s, color 0.18s;
  border: none;
}
.services-highlight .cta:hover, .services .cta:hover {
  background: var(--color-primary);
  color: var(--color-electric-yellow);
}

/* ==== SERVICES CARDS ==== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 22px var(--color-shadow);
  padding: 28px 24px 18px 24px;
  min-width: 220px;
  min-height: 170px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  position: relative;
  border-bottom: 7px solid var(--color-electric-yellow);
  transition: box-shadow 0.18s, transform 0.15s;
}
.service-card h2 {
  font-size: 1.18rem;
  margin-bottom: 5px;
  color: var(--color-accent);
}
.service-card strong {
  color: var(--color-primary);
  font-weight: bold;
}
.service-card:hover {
  transform: scale(1.025) translateY(-3px);
  box-shadow: 0 10px 40px #FE019A22;
  border-bottom-color: var(--color-electric-pink);
}

@media (max-width: 991px) {
  .service-cards {
    flex-direction: column;
    gap: 15px;
  }
  .service-card {
    min-width: 120px;
    min-height: 110px;
    padding: 14px 7px 9px 12px;
  }
}

/* ==== TESTIMONIALS ==== */
.testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 22px var(--color-shadow);
  min-width: 220px;
  flex: 1 1 300px;
  position: relative;
  margin-bottom: 20px;
  border-left: 7px solid var(--color-electric-aqua);
  transition: box-shadow 0.17s, border-left-color 0.13s;
}
.testimonial-card p {
  color: #223;
  font-size: 1.05rem;
  font-family: var(--font-body);
}
.testimonial-meta {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 13px 36px #14F4FE33;
  border-left-color: var(--color-electric-pink);
}

@media (max-width: 992px) {
  .testimonials .testimonial-list {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    min-width: 100px;
    padding: 12px 7px 9px 12px;
  }
}

/* ==== COMMON BUTTON STYLES ==== */
.cta, .cta.primary {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  padding: 12px 28px;
  border: none;
  border-radius: 33px;
  cursor: pointer;
  box-shadow: 0 3px 16px var(--color-shadow);
  transition: background 0.17s, color 0.18s;
  margin-top: 12px;
  letter-spacing: 1px;
}
.cta {
  background: var(--color-electric-yellow);
  color: var(--color-primary);
  box-shadow: 0 5px 14px #FFF60028;
}
.cta:hover, .cta:focus {
  background: var(--color-primary);
  color: var(--color-electric-yellow);
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 16px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
footer a {
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.19s;
}
footer a:hover, footer a:focus {
  color: var(--color-electric-yellow);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer .text-section {
  margin-top: 12px;
}
footer small {
  color: #FFF;
  opacity: 0.82;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-nav {
    gap: 11px;
    margin-top: 12px;
  }
}

/* ==== UTILITY CLASSES & FLEX-LAYOUTS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 22px var(--color-shadow);
  padding: 18px 16px;
  transition: box-shadow 0.13s;
}
.card:hover {
  box-shadow: 0 12px 32px #FE019A24;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
@media (max-width: 900px) {
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* ==== FAQ & TEXT SECTIONS ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.faq-section {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-section h2 {
  color: var(--color-electric-pink);
  font-size: 1.25rem;
}
.faq-section h3 {
  color: var(--color-electric-aqua);
  font-size: 1.07rem;
  font-weight: 700;
}
.faq-section a {
  color: var(--color-accent);
  text-decoration: underline;
}
.faq-section a:hover {
  color: var(--color-electric-pink);
}

/* ==== GUIDE STEPS & LISTS ==== */
.steps ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: 24px;
}
.steps ol li {
  position: relative;
  padding-left: 12px;
  color: #223;
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .steps ol { margin-left: 4px; }
}

/* ==== CALLOUTS ==== */
.callout {
  background: var(--color-electric-aqua);
  border-radius: 14px;
  box-shadow: 0 4px 21px #14F4FE33;
  margin-bottom: 40px;
  margin-top: 17px;
}
.callout h3 {
  color: var(--color-accent-dark);
  margin-bottom: 1px;
}
.callout p {
  color: var(--color-primary);
  font-weight: 600;
}

/* ==== CONTACT & THANK YOU ==== */
.contact-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 11px #457B9D22;
  padding: 17px 13px;
  margin-bottom: 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.thank-you .content-wrapper {
  align-items: center;
  gap: 18px;
  padding: 48px 0;
}
.thank-you h1 {
  color: var(--color-electric-pink);
}

/* ==== PRIVACY & COOKIE POLICY ==== */
.privacy-policy,
.gdpr,
.terms,
.cookie-policy {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 14px var(--color-shadow);
  padding: 32px 20px 16px 20px;
  margin-bottom: 42px;
}
.privacy-policy h2, .cookie-policy h2, .gdpr h2, .terms h2 {
  color: var(--color-electric-aqua);
  margin-top: 19px;
}
.privacy-policy ul, .gdpr ul, .terms ul, .cookie-policy ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.privacy-policy ul li::before, .gdpr ul li::before, .terms ul li::before, .cookie-policy ul li::before {
  content: '• ';
  color: var(--color-electric-pink);
  font-weight: bold;
  margin-right: 4px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  padding: 24px 12px 18px 12px;
  box-shadow: 0 -4px 22px #1D355744;
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  justify-content: center;
  transition: transform 0.37s, opacity 0.37s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-msg {
  font-size: 1.06rem;
  flex: 3 1 280px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex: 2 1 192px;
}
.cookie-consent-banner button {
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 23px;
  border: none;
  padding: 8px 16px;
  font-size: 1rem;
  margin-right: 0;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.18s;
}
.cookie-consent-banner .accept {
  background: var(--color-electric-aqua);
  color: var(--color-primary);
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: var(--color-electric-yellow);
  color: var(--color-primary);
}
.cookie-consent-banner .reject {
  background: var(--color-accent);
  color: #fff;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: var(--color-electric-pink);
  color: #fff;
}
.cookie-consent-banner .settings {
  background: #fff;
  color: var(--color-dark);
  border: 1.5px solid var(--color-primary);
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 6px 14px 6px;
    align-items: stretch;
  }
  .cookie-consent-banner .cookie-actions {
    flex-direction: column;
    gap: 11px;
    width: 100%;
  }
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,41,59,0.53);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 15px;
  box-shadow: 0 9px 40px #E6394633;
  padding: 34px 23px 20px 23px;
  width: 95vw;
  max-width: 420px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: cookie-modal-in 0.55s cubic-bezier(.38,1.47,.54,0.98);
}
@keyframes cookie-modal-in {
  from { transform: translateY(120px) scale(0.91); opacity: .2; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 7px;
  color: var(--color-electric-pink);
  font-size: 1.25rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  padding: 10px 0;
  border-bottom: 1px solid #E9EAEF;
}
.cookie-category label {
  font-weight: 700;
  font-size: 1.011rem;
  color: var(--color-primary);
}
.cookie-category .toggle {
  width: 46px;
  height: 26px;
  background: #E9EAEF;
  border-radius: 13px;
  position: relative;
  transition: background 0.22s;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
}
.cookie-category .toggle[data-checked="true"], .cookie-category .toggle.selected {
  background: var(--color-electric-pink);
}
.cookie-category .toggle-indicator {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px #E6394620;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.18s;
}
.cookie-category .toggle[data-checked="true"] .toggle-indicator,
.cookie-category .toggle.selected .toggle-indicator {
  left: 22px;
  background: var(--color-electric-yellow);
}
.cookie-category .cookie-essential {
  color: #888;
  font-size: .92em;
  font-weight: normal;
  margin-left: 21px;
  opacity: 0.88;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .modal-actions button {
  padding: 8px 18px;
  border-radius: 21px;
  border: none;
  font-family: var(--font-display);
  font-size: 0.99rem;
  font-weight: 700;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-modal .modal-actions .save {
  background: var(--color-electric-pink);
  color: #fff;
}
.cookie-modal .modal-actions .save:hover, .cookie-modal .modal-actions .save:focus {
  background: var(--color-accent-dark);
  color: var(--color-electric-yellow);
}
.cookie-modal .modal-actions .cancel {
  background: #f1faee;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-modal .modal-actions .cancel:hover, .cookie-modal .modal-actions .cancel:focus {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 18px 8px 12px 8px;
    max-width: 99vw;
  }
}

/* ==== INTERACTIVITY & MICRO-INTERACTIONS ==== */
a, button {
  transition: 
    background 0.18s,
    color 0.18s,
    box-shadow 0.18s,
    transform 0.18s,
    border 0.15s;
}
.card, .service-card, .feature-grid li, .testimonial-card {
  transition: 
    box-shadow 0.18s, 
    transform 0.13s, 
    border-left-color 0.12s,
    border-bottom-color 0.12s;
}
.card:active, .service-card:active, .feature-grid li:active, .testimonial-card:active {
  transform: scale(0.99);
}

/* ==== SCROLLBAR ==== */
body, .mobile-menu {
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) #e7eaf9;
}
body::-webkit-scrollbar {
  width: 8px;
  background: #f2f5fc;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-electric-pink);
  border-radius: 10px;
}

/* ===== VIBRANT ENERGETIC SPOTS (DECORATIVE) ==== */
.hero, .feature-grid li, .testimonial-card, .service-card, .card {
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  left: -60px; top: -60px;
  width: 180px; height: 180px;
  background: var(--color-electric-aqua);
  opacity: 0.13;
  border-radius: 90px;
  filter: blur(18px);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  right: -50px; bottom: -40px;
  width: 120px; height: 120px;
  background: var(--color-electric-pink);
  opacity: 0.07;
  border-radius: 60px;
  filter: blur(12px);
  z-index: 0;
}

@media (max-width: 900px) {
  .hero::before, .hero::after { display: none; }
}

/* ==== RESPONSIVE BREAKPOINTS ==== */
@media (max-width: 599px) {
  .container, .content-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .feature-grid,
  .service-cards,
  .testimonial-list,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .section,
  .privacy-policy, .gdpr, .terms, .cookie-policy {
    padding: 14px 2px;
    margin-bottom: 22px;
  }
}
