/* CSS RESET & NORMALIZE (mobile-first) */
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;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  color: #222;
  background: #F3F5F6;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  transition: background 0.35s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #163047;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #87A922;
  outline-offset: 4px;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}

/* BRAND FONTS & TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 800;
  color: #163047;
  margin-bottom: 18px;
  text-rendering: geometricPrecision;
}
h1 {
  font-size: 2.6rem;
  letter-spacing: -1.5px;
  line-height: 1.16;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, .faq-answer, .testimonial-author {
  font-size: 1rem;
  color: #1d263b;
}

/* CREATIVE ARTISTIC STYLE */
:root {
  --primary: #163047;
  --secondary: #87A922;
  --accent: #F3F5F6;
  --art-red: #EC4067;
  --art-blue: #31A2AC;
  --art-yellow: #FFB400;
  --art-purple: #A259F7;
}

body {
  /* Soft off-white with subtle paper pattern */
  background: var(--accent);
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 2px 30px 0 rgba(22,48,71,0.17);
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 40px 0 rgba(136,169,34,0.16), 0 2px 20px 0 rgba(236,64,103,0.08);
  transform: translateY(-8px) scale(1.015);
}
.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) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #FDFDFD;
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 rgba(49,162,172,0.11);
  margin-bottom: 24px;
  border-left: 7px solid var(--art-purple);
  transition: box-shadow 0.23s, border-color 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 42px 0 rgba(172,90,247,0.15);
  border-color: var(--secondary);
}
.testimonial-rating img {
  width: 28px;
  height: 28px;
  display: inline-block;
  margin-right: 2px;
}
.testimonial-author {
  font-weight: bold;
  color: #163047;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 15px 0 rgba(136,169,34,0.12);
  padding: 24px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.22s, border 0.23s;
  border-bottom: 4px solid var(--art-yellow);
}
.feature-item img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 10px #FFB40033);
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 28px 0 rgba(236,64,103,0.13);
  border-bottom: 4px solid var(--secondary);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff; /* Keeps navbar crisp */
  box-shadow: 0 2px 12px 0 rgba(136,169,34,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
}
.main-navigation img {
  height: 40px;
  width: auto;
  margin-right: 12px;
}
.main-navigation a {
  position: relative;
  padding: 7px 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #163047;
  border-radius: 19px;
  transition: background 0.21s, color 0.21s;
}
.main-navigation a:not(.btn-primary):hover,
.main-navigation a:not(.btn-primary):focus {
  background: var(--secondary);
  color: #fff;
}
.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  padding: 12px 28px;
  border-radius: 26px;
  box-shadow: 0 5px 18px 0 rgba(136,169,34,0.12);
  margin-left: 6px;
  font-size: 1.1rem;
  text-shadow: 0 1px 0 #0001;
  transition: background 0.22s, box-shadow 0.22s, color 0.19s;
  cursor: pointer;
  letter-spacing: 0.7px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--art-purple);
  color: #fff;
  box-shadow: 0 3px 30px 0 rgba(172,90,247,0.13);
}
.btn-secondary {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 22px;
  margin-top: 8px;
  font-size: 1rem;
  transition: background 0.22s, box-shadow 0.22s, color 0.19s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--art-red);
  color: #fff;
  box-shadow: 0 3px 14px 0 rgba(236,64,103,0.12);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(105deg, #FDFDFD 70%, #87A922 100%);
  border-radius: 0 0 48px 48px;
  padding-top: 54px;
  padding-bottom: 54px;
  margin-bottom: 60px;
  box-shadow: 0 15px 60px 0 rgba(136,169,34,0.07);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero h1 {
  color: #163047;
  font-size: 2.3rem;
}
.hero p {
  margin-bottom: 18px;
  font-size: 1.18rem;
}
@media (min-width: 600px) {
  .hero h1 {
    font-size: 2.9rem;
  }
  .hero p {
    font-size: 1.23rem;
  }
}

/* --- SECTIONS --- */
.features {
  background: #fff;
  border-radius: 28px;
  margin-bottom: 60px;
  box-shadow: 0 3px 41px 0 rgba(22,48,71,.05);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .features .feature-grid {
    justify-content: flex-start;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.cta-section, .contact-cta, .pricing-cta, .thank-you-section {
  background: linear-gradient(92deg, #A259F7 15%, #87A922 85%);
  padding: 40px 24px;
  border-radius: 28px;
  color: #fff;
  margin-bottom: 40px;
  box-shadow: 0 4px 32px 0 rgba(140,70,240,0.10);
  text-align: center;
}
.cta-section .btn-primary,
.contact-cta .btn-primary,
.pricing-cta .btn-primary,
.thank-you-section .btn-primary {
  background: #fff;
  color: #163047!important;
  margin-top: 18px;
}
.cta-section .btn-primary:hover,
.contact-cta .btn-primary:hover,
.pricing-cta .btn-primary:hover,
.thank-you-section .btn-primary:hover {
  background: var(--secondary);
  color: #fff!important;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* --- FAQ Accordion --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.faq-item {
  background: linear-gradient(90deg, #fff 80%, #31A2AC1A 100%);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 1px 13px 0 rgba(49,162,172,0.09);
  cursor: pointer;
  transition: box-shadow 0.21s, background 0.12s;
  position: relative;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-answer {
  display: none;
  color: #163047;
  font-size: 1rem;
  padding-top: 4px;
}
.faq-item.open .faq-answer {
  display: block;
  animation: faqDrop 0.32s cubic-bezier(.7,.3,.24,1.4);
}
@keyframes faqDrop {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 3px 28px 0 rgba(22,48,71,0.09);
  background: linear-gradient(96deg, #FFF, #A259F711 80%);
}

.quick-contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  margin: 20px 0;
}
.quick-contact .btn-primary {
  margin: 0;
}

/* --- PRICING TABLE --- */
.pricing-table table {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(136,169,34,0.11);
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 26px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 17px 14px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #F3F5F6;
}
.pricing-table th {
  background: #163047;
  color: #fff;
  font-size: 1.06rem;
  letter-spacing: 1px;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.package-descriptions ul {
  list-style: disc;
  margin-bottom: 8px;
}
.package-descriptions li {
  margin-bottom: 6px;
}

/* --- CONTACT DETAILS --- */
.contact-details {
  list-style: none;
  margin-bottom: 24px;
  margin-top: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
  font-size: 1.07rem;
}
.contact-details img {
  width: 26px;
  height: 26px;
}
.map-snippet {
  background: #F8F9FB;
  border-left: 6px solid var(--art-blue);
  padding: 16px 22px;
  font-size: 1.07rem;
  color: #163047;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* --- COOKIES & PRIVACY --- */
.privacy-policy, .gdpr-section, .cookie-policy, .terms-section {
  background: #fff;
  padding: 42px 28px;
  border-radius: 19px;
  margin-bottom: 62px;
  box-shadow: 0 2px 20px 0 rgba(22,48,71,.08);
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(70deg, #163047 85%, #87A922 100%);
  padding: 40px 0 32px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 24px 0 rgba(22,48,71,0.10);
  color: #fff;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 30px;
}
.footer-navigation a {
  color: #fff;
  opacity: 0.86;
  font-size: 1rem;
  transition: color 0.17s, opacity 0.23s;
  padding: 6px 8px;
  border-radius: 9px;
}
.footer-navigation a:hover,
.footer-navigation a:focus {
  color: #FFB400;
  opacity: 1;
  background: #fff2;
}
.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
}
.footer-brand img {
  height: 48px;
  border-radius: 14px;
  background: #fff;
  padding: 5px 12px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  font-size: 1.02rem;
  margin-left: 12px;
  text-align: left;
}

@media (max-width: 900px) {
  .footer-brand {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-contact {
    margin-left: 0;
    align-items: center;
  }
  .footer-navigation {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .footer-navigation {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.97rem;
  }
  .footer-brand img {
    height: 39px;
  }
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: block;
  background: var(--secondary);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 7px 16px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.21s, color 0.16s;
  z-index: 105;
  position: absolute;
  right: 22px;
  top: 20px;
  box-shadow: 0 2px 12px 0 rgba(22,48,71,0.05);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--art-blue);
  color: #fff;
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.main-navigation {
  /* Hide navigation if not enough room (mobile) */
}
@media (max-width: 1024px) {
  .main-navigation {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(92deg,#163047 75%,#A259F7 100%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.7,.22,.25,1.04);
  box-shadow: 0 0 50px 0 rgba(22,48,71,0.32);
  opacity: 0.98;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 32px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 211;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFB400;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 36px 32px;
  margin-top: 29px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  font-weight: 700;
  opacity: 0.89;
  border-radius: 13px;
  padding: 8px 14px;
  transition: background 0.21s, color 0.17s, opacity 0.23s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
  opacity: 1;
}

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

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #163047;
  color: #fff;
  padding: 22px 18px 22px 18px;
  z-index: 2500;
  box-shadow: 0 -1px 22px 0 rgba(22,48,71,0.24);
  border-radius: 22px 22px 0 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  font-size: 1.03rem;
  opacity: 0.97;
  animation: cookieBannerFadeIn 0.65s cubic-bezier(.71,.16,.41,.98);
}
@keyframes cookieBannerFadeIn {
  0% { opacity:0; transform: translateY(100px); }
  100% { opacity: 0.97; transform: translateY(0); }
}
.cookie-consent-banner .cookie-btn {
  margin-right: 9px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.cookie-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  padding: 10px 22px;
  margin-left: 9px;
  cursor: pointer;
  outline: none;
  background: var(--secondary);
  color: #163047;
  box-shadow: 0 1px 7px 0 rgba(136,169,34,0.14);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--art-red);
  color: #fff;
  margin-left: 0;
}
.cookie-btn.settings {
  background: var(--form-accent, var(--art-blue));
  color: #fff;
  margin-left: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--art-yellow);
  color: #163047;
  box-shadow: 0 3px 20px 0 rgba(255,180,0,0.20);
}

@media (max-width: 900px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 16px 12px;
    font-size: 0.96rem;
  }
  .cookie-btn {
    margin: 7px 6px 6px 0;
  }
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 3100;
  background: #fff;
  width: 95vw;
  max-width: 420px;
  padding: 38px 27px 23px 27px;
  border-radius: 18px;
  box-shadow: 0 10px 54px 0 rgba(49,162,172,0.16);
  transform: translate(-50%, -55%) scale(0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.21s, transform 0.19s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  animation: cookieModalIn 0.41s cubic-bezier(.62,.08,.4,1.35);
}
@keyframes cookieModalIn {
  0% {opacity:0; transform: scale(0.85) translate(-50%,-62%);}
  100% { opacity:1; transform: scale(1) translate(-50%,-50%);}
}
.cookie-modal h3 {
  font-size: 1.21rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 1.03rem;
}
.cookie-modal .cookie-toggle {
  padding: 7px 15px;
  border-radius: 13px;
  background: #F3F5F6;
  border: 1.2px solid #A259F7;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.99rem;
  color: #163047;
  margin-left: 12px;
  transition: background 0.14s, color 0.18s;
}
.cookie-modal .cookie-toggle.active,
.cookie-modal .cookie-toggle:active {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal .cookie-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 19px;
  background: none;
  border: none;
  color: #A259F7;
  font-size: 2.1rem;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #EC4067;
}

/* --- ARTISTIC DETAILS & UNIQUE ELEMENTS --- */
/* Subtle creative decorative shapes */
.hero:before, .hero:after {
  content: '';
  position: absolute;
  border-radius: 100%;
  opacity: 0.085;
  pointer-events: none;
  z-index: 0;
}
.hero:before {
  width: 280px; height: 280px;
  background: var(--art-purple);
  left: -80px;
  top: -60px;
}
.hero:after {
  width: 190px; height: 190px;
  background: var(--art-yellow);
  right: -60px;
  top: 90px;
}
.features:before {
  content: '';
  position: absolute;
  border-radius: 100%;
  width: 180px;
  height: 180px;
  background: var(--art-blue);
  top: 40px;
  right: -90px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}
.testimonials:before {
  content: '';
  position: absolute;
  left: -50px;
  top: 26px;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background: var(--art-red);
  opacity: 0.07;
  z-index: 0;
}

/* --- UTILITY CLASSES & RESPONSIVE --- */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 28px 5px;
  }
}
@media (max-width: 600px) {
  section, .section, .cta-section, .privacy-policy, .cookie-policy, .gdpr-section, .terms-section, .about-company, .contact-info, .faq-section, .thank-you-section {
    padding: 22px 4px !important;
  }
  .card-container, .content-grid, .features .feature-grid {
    flex-direction: column !important;
    gap: 17px !important;
  }
  .testimonial-card {
    padding: 17px;
  }
  .feature-item {
    max-width: 100%;
  }
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 13px;
  border-radius: 7px;
  border: 1px solid #A259F799;
  background: #fff;
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.18s, background 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
  background: #F3F5F6;
  outline: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* --- TABLES & LISTS --- */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 13px;
  border-bottom: 1px solid #E8EDF3;
}
th {
  background-color: var(--primary);
  color: #fff;
}

/* --- VISUAL HIERARCHY (CREATIVE_ARTISTIC) --- */
.values ul,
.benefit-highlights ul,
.timeline-overview ul,
.support-points ul {
  list-style: square;
  margin-left: 22px;
  margin-bottom: 10px;
}
.values li,
.benefit-highlights li,
.timeline-overview li,
.support-points li {
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

/* --- MISC --- */
.text-section {
  margin-bottom: 20px;
}
::-webkit-scrollbar {
  width: 8px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/* --- HIDE SCROLL FOR OVERLAY --- */
body.menu-open {
  overflow: hidden;
}

/* --- ANIMATIONS --- */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.22s, color 0.13s, box-shadow 0.19s, transform 0.09s;
}
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.18s, border 0.22s, transform 0.13s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  transform: translateY(-5px) scale(1.012);
}

/* --- Z-INDEX LAYERS --- */
header, .main-navigation { z-index: 100; }
.mobile-menu { z-index: 200; }
.cookie-consent-banner { z-index: 2500; }
.cookie-modal { z-index: 3100; }

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