/* ==========================
   CSS RESET & BASELINE
   ========================== */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F5F7FB;
  color: #16315B;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #16315B;
  text-decoration: none;
  transition: color .18s cubic-bezier(.57,.01,.46,1.01);
}
a:focus {
  outline: 2px solid #4EE1B5;
}
/* ==========================
   TYPOGRAPHY
   ========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  color: #16315B;
  line-height: 1.12;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, ul, ol, blockquote, .brand-contact, .privacy-notice, .confirmation-message {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
  letter-spacing: 0.5px;
}
blockquote {
  font-style: italic;
  background: #4EE1B5;
  color: #16315B;
  font-family: 'Montserrat', sans-serif;
  border-left: 8px solid #16315B;
  padding: 24px 24px 24px 32px;
  margin: 24px 0;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(22,49,91,0.10);
}

/* ==========================
   BRAND COLORS
   ========================== */
:root {
  --color-primary: #16315B;
  --color-secondary: #4EE1B5;
  --color-accent: #F5F7FB;
  --color-dark: #1A2330;
  --color-body-bg: #F5F7FB;
}

/* ==========================
   LAYOUT CONTAINERS
   ========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 34px 12px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 27px 8px;
    margin-bottom: 32px;
  }
}
/* ==========================
   NAVIGATION
   ========================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(22,49,91,0.07);
  position: relative;
  z-index: 997;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav > a img {
  width: 140px;
  height: auto;
  margin-right: 28px;
  vertical-align: middle;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  color: #16315B;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.16s, border 0.17s;
  font-size: 1rem;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #4EE1B5;
  border-bottom: 2.5px solid #4EE1B5;
  background: none;
  outline: none;
}
.cta-btn {
  display: inline-block;
  background: #4EE1B5;
  color: #16315B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 40px;
  border: none;
  padding: 12px 28px;
  margin-left: 28px;
  font-size: 1.13rem;
  box-shadow: 0 2px 27px 0 rgba(78,225,181,0.12);
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #16315B;
  color: #4EE1B5;
  box-shadow: 0 4px 32px 0 rgba(22,49,91,0.10);
}

/* ==========================
   MOBILE NAVIGATION
   ========================== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  color: #16315B;
  font-size: 2.2rem;
  padding: 8px 16px;
  z-index: 1003;
  border-radius: 8px;
  transition: background 0.13s;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #4EE1B5;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #16315B;
  color: #fff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.67,.05,.54,1.03);
  min-width: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #4EE1B5;
  font-size: 2.2rem;
  border: none;
  padding: 18px 20px 2px 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  width: 100%;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4EE1B5;
  color: #16315B;
}
@media (max-width: 1080px) {
  .container, .main-nav {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 18px;
  }
  .main-nav > a img {
    width: 118px;
  }
  .cta-btn {
    margin-left: 14px;
  }
}
@media (max-width: 860px) {
  .main-nav ul {
    gap: 12px;
    font-size: 0.96rem;
  }
  .main-nav > a img {
    width: 110px;
  }
}
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 20px;
  }
  .main-nav {
    min-height: 64px;
    height: 64px;
    padding: 0 10px;
  }
}
@media (max-width: 540px) {
  .mobile-nav {
    padding-left: 12px;
  }
  .brand-contact {
    font-size: 0.98rem;
  }
}

/* ==========================
   FOOTER
   ========================== */
footer {
  background: #16315B;
  color: #fff;
  padding: 34px 0 16px 0;
  margin-top: 60px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
  padding-left: 0;
}
.footer-menu li a {
  color: #4EE1B5;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-decoration: underline;
  transition: color 0.17s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-menu li a:hover, .footer-menu li a:focus {
  color: #fff;
}
.brand-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  justify-content: center;
  font-size: 1rem;
  padding-bottom: 0;
}
.brand-contact a {
  color: #4EE1B5;
  font-weight: 700;
  transition: color 0.19s;
}
.brand-contact a:hover, .brand-contact a:focus {
  color: #fff;
}

/* ==========================
   MAIN LAYOUT PATTERNS
   ========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(22,49,91,0.09);
  padding: 32px;
  transition: transform 0.17s, box-shadow 0.19s;
}
.card:hover, .card:focus-within {
  transform: translateY(-7px) scale(1.012);
  box-shadow: 0 6px 32px 0 rgba(78,225,181,0.20);
}
.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;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(22,49,91,0.09);
  min-width: 240px;
  max-width: 520px;
  flex: 1 1 260px;
  color: #16315B;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.testimonial-card p {
  font-size: 1.18rem;
  line-height: 1.55;
  font-weight: 700;
}
.testimonial-card span {
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2330;
  font-weight: 800;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px 0 rgba(78,225,181,0.15), 0 1.5px 4px 0 rgba(22,49,91,0.06);
  transform: translateY(-6px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========================
   GRIDS & FLEX GROUPS
   ========================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-left: 0;
  list-style: none;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(22,49,91,0.10);
  flex: 1 1 250px;
  max-width: 340px;
  min-width: 220px;
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.14s, transform 0.16s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 34px 0 rgba(78,225,181,0.15);
  transform: translateY(-8px) scale(1.01);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}
.feature-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.feature-grid p {
  font-size: 1rem;
}
.service-cards-grid,.service-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 260px;
  max-width: 350px;
  min-width: 200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px 0 rgba(22,49,91,0.09);
  padding: 28px 20px 24px 22px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.14s;
  border-left: 7px solid #4EE1B5;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 8px 28px 0 rgba(78,225,181,0.13);
  transform: translateY(-8px) scale(1.01);
}
.service-card h3 {
  font-size: 1.24rem;
}
.service-card .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #4EE1B5;
  margin-top: 3px;
}

.values-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-left: 0;
  list-style: none;
  margin-bottom: 12px;
}
.values-list li {
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 1.5px 7px 0 rgba(22,49,91,0.08);
}
.values-list img {
  width: 32px;
  height: 32px;
}
/* Case Study Cards */
.case-study-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.case-study-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px 0 rgba(22,49,91,0.09);
  padding: 28px 16px 19px 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 370px;
  margin-bottom: 16px;
  border-top: 7px solid #4EE1B5;
}
/* Article Lists */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.article-list article {
  flex: 1 1 240px;
  max-width: 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px 0 rgba(22,49,91,0.09);
  padding: 26px 18px 18px 22px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.14s;
  border-left: 7px solid #4EE1B5;
}
.article-list article h3 {
  font-size: 1.19rem;
}
.article-list article a {
  margin-top: 8px;
  color: #16315B;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.19s;
}
.article-list article a:hover {
  color: #4EE1B5;
}
/* Feature List */
.feature-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  padding-left: 0;
  margin-bottom: 10px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 7px 0 rgba(22,49,91,0.07);
  padding: 14px 18px;
  min-width: 180px;
  font-weight: 700;
  color: #16315B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
}
.feature-list img {
  width: 28px;
  height: 28px;
}
.client-logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 6px;
}
.client-logo-list img {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(22,49,91,0.09);
  padding: 11px;
}
.trust-indicators {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 4px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #16315B;
}
.trust-indicators img {
  width: 32px;
}

/* Topic Filters */
.topic-filters {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0 10px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.topic-filters span {
  font-weight: 900;
  font-size: 1.07rem;
  color: #16315B;
}
.topic-filters button {
  background: #4EE1B5;
  color: #16315B;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(78,225,181,0.10);
  transition: background 0.13s, color 0.15s;
}
.topic-filters button:hover, .topic-filters button:focus {
  background: #16315B;
  color: #4EE1B5;
}

/* Process Steps */
.process-steps {
  counter-reset: steps;
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.process-steps li {
  counter-increment: steps;
  position: relative;
  padding-left: 48px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 7px 0 rgba(22,49,91,0.07);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #16315B;
  font-size: 1.05rem;
  padding-top: 14px;
  padding-bottom: 14px;
  min-width: 180px;
}
.process-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 900;
  background: #4EE1B5;
  color: #16315B;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================
   SLIDERS & TESTIMONIALS
   ========================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.testimonial-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 14px 0 4px 0;
}
.testimonial-quotes blockquote {
  flex: 1 1 260px;
  background: #fff;
  color: #16315B;
  border-left: 8px solid #4EE1B5;
  box-shadow: 0 2px 16px 0 rgba(22,49,91,0.09);
  padding: 24px 14px 24px 32px;
  border-radius: 12px;
  font-size: 1.08rem;
}
.testimonial-quotes span {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #1A2330;
  margin-top: 10px;
  font-size: 1rem;
}

/* ==========================
   CONFIRMATION MESSAGE
   ========================== */
.confirmation-message {
  background: #4EE1B5;
  color: #16315B;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(22,49,91,0.06);
  padding: 27px 32px 22px 36px;
  margin-top: 24px;
  margin-bottom: 14px;
}

/* ==========================
   PRIVACY NOTICE
   ========================== */
.privacy-notice {
  font-size: 0.97rem;
  background: #F5F7FB;
  border-left: 4px solid #4EE1B5;
  color: #16315B;
  padding: 10px 18px;
  border-radius: 6px;
  margin-top: 12px;
}

/* ==========================
   RESPONSIVE DESIGN
   ========================== */
@media (max-width: 1250px) {
  .feature-grid, .service-cards-grid, .service-card-grid, .case-study-cards, .testimonial-slider, .values-list, .article-list {
    gap: 18px;
  }
  .card, .service-card, .case-study-card, .testimonial-card, .article-list article {
    padding: 20px 12px 18px 14px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-cards-grid, .service-card-grid, .case-study-cards, .testimonial-slider, .article-list {
    gap: 16px;
  }
  .card, .service-card, .case-study-card, .testimonial-card, .article-list article {
    min-width: 160px;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .testimonial-card {
    padding: 20px 8px;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-cards-grid, .service-card-grid, .case-study-cards, .testimonial-slider, .article-list, .values-list {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .testimonial-slider,
  .testimonial-quotes {
    flex-direction: column;
    gap: 18px;
  }
  .topic-filters {
    gap: 7px;
    flex-wrap: wrap;
  }
}
@media (max-width: 420px) {
  .footer-menu, .brand-contact {
    font-size: 0.97rem;
    flex-direction: column;
    gap: 6px;
  }
}

/* ==========================
   MICRO-INTERACTIONS & FX
   ========================== */
button, .cta-btn, .topic-filters button, .mobile-menu-toggle {
  transition: background 0.2s, color 0.17s, box-shadow 0.19s, border 0.14s;
}
a {
  transition: color 0.18s, border 0.12s;
}
.card, .service-card, .testimonial-card, .case-study-card, .article-list article {
  transition: box-shadow 0.16s, transform 0.13s;
}

/* ==========================
   COOKIE CONSENT BANNER
   ========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  background: #16315B;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: center;
  padding: 22px 30px 16px;
  z-index: 1100;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 0 32px 0 rgba(22,49,91,0.20);
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
  transition: opacity 0.31s, transform 0.37s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-text {
  flex: 4 1 260px;
  margin-right: 8px;
}
.cookie-banner-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  outline: none;
  transition: background 0.15s, color 0.16s, box-shadow 0.17s;
}
.cookie-accept {
  background: #4EE1B5;
  color: #16315B;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #fff;
  color: #16315B;
  box-shadow: 0 2px 22px 0 rgba(78,225,181,0.20);
}
.cookie-reject {
  background: #fff;
  color: #16315B;
  border: 1.5px solid #16315B;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #4EE1B5;
  color: #16315B;
}
.cookie-settings {
  background: transparent;
  color: #4EE1B5;
  border: 1.5px solid #4EE1B5;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #4EE1B5;
  color: #16315B;
  box-shadow: 0 1.5px 12px 0 rgba(78,225,181,0.10);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    padding: 20px 8px 18px 10px;
    gap: 16px;
    font-size: 0.97rem;
  }
  .cookie-banner-text {
    margin-right: 0;
    text-align: left;
  }
  .cookie-banner-btns {
    gap: 7px;
  }
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,49,91,0.70);
  z-index: 1101;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #16315B;
  border-radius: 20px;
  box-shadow: 0 4px 48px 0 rgba(22,49,91,0.20);
  padding: 38px 42px;
  max-width: 400px;
  width: 93vw;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  animation: modal-in 0.43s cubic-bezier(.4,1.7,.7,1) 1;
}
@keyframes modal-in {
  0% { transform: translateY(40px) scale(.96); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #16315B;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #4EE1B5;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category label {
  font-weight: 700;
}
.cookie-category-toggle {
  margin-left: auto;
}
.cookie-toggle-input[type="checkbox"] {
  width: 40px;
  height: 20px;
  appearance: none;
  background: #E0E9F0;
  border-radius: 14px;
  border: none;
  outline: none;
  position: relative;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-toggle-input[type="checkbox"]:checked {
  background: #4EE1B5;
}
.cookie-toggle-input[type="checkbox"]:before {
  content: '';
  position: absolute;
  top: 2.5px; left: 4px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(22,49,91,0.11);
  transition: left 0.19s;
}
.cookie-toggle-input[type="checkbox"]:checked:before {
  left: 21px;
}
.cookie-category input[disabled], .cookie-category-toggle[disabled] {
  opacity: 0.62;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 9px 20px;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.16s;
}
.cookie-modal-actions .cookie-accept {
  background: #4EE1B5;
  color: #16315B;
}
.cookie-modal-actions .cookie-reject {
  background: #fff;
  color: #16315B;
  border: 1.5px solid #16315B;
}
.cookie-modal-actions .cookie-accept:hover, .cookie-modal-actions .cookie-accept:focus {
  background: #16315B;
  color: #4EE1B5;
}
.cookie-modal-actions .cookie-reject:hover, .cookie-modal-actions .cookie-reject:focus {
  background: #4EE1B5; color: #16315B;
}

/* ==========================
   SCROLLBARS & SELECTION
   ========================== */
::-webkit-scrollbar {
  width: 10px;
  background: #F5F7FB;
}
::-webkit-scrollbar-thumb {
  background: #4EE1B5;
  border-radius: 7px;
}
::selection {
  background: #4EE1B5;
  color: #16315B;
}

/* ==========================
   HIGH CONTRAST / ACCESSIBILITY (TESTIMONIALS, CARDS)
   ========================== */
.testimonial-card, .testimonial-card *, .testimonial-quotes blockquote, .testimonial-quotes blockquote * {
  color: #16315B !important;
  background: #fff !important;
}
/* Ensure review text readable */

/* ==========================
   UTILITY CLASSES
   ========================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.rounded-md { border-radius: 13px !important; }
.shadow-md { box-shadow: 0 2px 14px 0 rgba(22,49,91,0.12) !important; }
.text-center { text-align: center !important; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================
   END OF CSS
   ========================== */