/* ===========================
   Verdant Traverse CSS Reset 
   =========================== */
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, menu, 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,  
main, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-color: #F9FAF3;
  color: #134347;
  min-height: 100vh;
  line-height: 1.6;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #1AA587;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffc800;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
}
li {
  margin-bottom: 10px;
}
button, .cta-button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  cursor: pointer;
}

/* ======================
   Brand Color Variables
   ====================== */
:root {
  --primary: #134347;
  --secondary: #BDC9A0;
  --accent: #F9FAF3;
  --electric-blue: #03c4ec;
  --neon-green: #1AA587;
  --sun-yellow: #ffc800;
  --focus-pink: #F43EC0;
  --bold-red: #e91e63;
  --card-bg: #fff;
  --card-shadow: 0 4px 24px 0 rgba(26,165,135,0.10);
}

/* ====================
   Typography & Layout
   ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #134347;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 1px 2px 8px rgba(3,196,236,0.10);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: var(--neon-green);
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--electric-blue);
  letter-spacing: -0.25px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 14px;
}
strong, b {
  color: var(--electric-blue);
  font-weight: bold;
}

/* ================
   Utility Classes
   ================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
}
.text-section {
  margin-bottom: 40px;
}
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 0;
  animation: pulseCTA 2.5s infinite alternate;
}
@keyframes pulseCTA {
  0% { box-shadow: 0 4px 32px 0 rgba(3,196,236,0.12); }
  100% { box-shadow: 0 4px 24px 0 rgba(244,62,192,0.07); }
}

/* Spacing Patterns & Flexbox Layouts */
.card-container, .feature-grid, .service-cards, .team-profiles, .case-studies, .resource-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .team-member, .feature-card, .case-study, .resource-item {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .contact-form-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: #fff;
  color: #181D23;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(19,67,71,0.11);
  min-width: 250px;
  max-width: 375px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px 0 rgba(26,165,135,0.18);
  transform: translateY(-4px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========
   NAV HEADER
   ========== */
header {
  background: linear-gradient(90deg, #03c4ec 0%, #134347 90%);
  box-shadow: 0 4px 20px 0 rgba(19,67,71,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
  padding: 16px 0;
}
.logo-link img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #F9FAF3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  margin: 4px auto 0;
  height: 3px;
  width: 0%;
  background-color: var(--sun-yellow);
  border-radius: 2px;
  transition: width 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--sun-yellow);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--neon-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 32px;
  padding: 12px 32px;
  box-shadow: 0 3px 14px 0 rgba(26,165,135,0.10);
  letter-spacing: 0.05em;
  outline: none;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.19s;
  margin-left: 18px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--electric-blue);
  color: #134347;
  box-shadow: 0 5px 18px 0 rgba(244,62,192,0.23);
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 2px 14px;
  border-radius: 8px;
  transition: background 0.15s;
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(3,196,236,0.16);
  color: var(--sun-yellow);
}

/* =========
   MOBILE NAV
   ========= */

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #134347 55%, #1AA587 100%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px 28px 0 0;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.87,.12,.57,.98);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #F9FAF3;
  margin-bottom: 32px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--sun-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  padding: 12px 10px;
  min-width: 160px;
  text-align: right;
  text-transform: uppercase;
  border-radius: 12px;
  transition: background 0.17s, color 0.19s;
  outline: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--focus-pink);
  color: #fff;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   HERO & SECTION STYLES
   ===================== */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 44px 0 24px 0;
  text-align: center;
}
.hero-section h1 {
  color: var(--electric-blue);
  font-size: 2.4rem;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero-section p {
  color: #134347;
  font-size: 1.20rem;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 120px;
    padding: 28px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}

/* =================
   FEATURE CARDS
   ================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(3,196,236,0.13);
  padding: 24px 22px 20px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s, transform 0.19s;
  border: 3px solid transparent;
}
.feature-card img {
  height: 52px;
  width: 52px;
  margin-bottom: 18px;
  filter: drop-shadow(0 6px 12px rgba(26,165,135,0.08));
}
.feature-card h3 {
  color: var(--electric-blue);
  font-size: 1.15rem;
  margin-bottom: 9px;
}
.feature-card p {
  color: #181D23;
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-card:hover, .feature-card:focus {
  border-color: var(--focus-pink);
  box-shadow: 0 8px 26px 0 rgba(244,62,192,0.17);
  transform: translateY(-6px) scale(1.03);
  z-index: 2;
}

/* ====================
   SERVICE CARDS
   ==================== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 22px 0 rgba(26,165,135,0.11);
  flex: 1 1 240px;
  padding: 28px 20px 18px 20px;
  min-width: 240px;
  max-width: 350px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 2px solid #eaf8f5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card img {
  height: 50px;
  width: 50px;
  margin-bottom: 13px;
}
.service-card h3 {
  color: var(--sun-yellow);
  margin-bottom: 10px;
}
.service-card p {
  color: #134347;
  margin-bottom: 10px;
}
.service-card ul {
  margin-bottom: 0;
}
.service-card .price {
  margin-top: 12px;
  background: var(--neon-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 99px;
  padding: 5px 18px;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 30px 0 rgba(26,165,135,0.2);
  transform: translateY(-7px) scale(1.04);
  border-color: var(--electric-blue);
}

/* ===============
   TEAM PROFILES
   =============== */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.team-member {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(3,196,236,0.10);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 215px;
  min-width: 180px;
  max-width: 260px;
  text-align: center;
  transition: box-shadow 0.19s;
}
.team-member img {
  height: 50px;
  width: 50px;
  margin-bottom: 13px;
  border-radius: 50%;
  background: #edf2f0;
  object-fit: cover;
}
.team-member h3 {
  color: var(--focus-pink);
  margin-bottom: 7px;
}
.team-member:hover, .team-member:focus {
  box-shadow: 0 6px 22px 0 rgba(244,62,192,0.18);
}

/* ===============
   CASE STUDIES
   =============== */
.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(3,196,236,0.11);
  padding: 22px 18px;
  flex: 1 1 260px;
  min-width: 215px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.14s;
}
.case-study h3 {
  color: var(--electric-blue);
  margin-bottom: 7px;
}
.case-study:hover, .case-study:focus {
  box-shadow: 0 6px 22px 0 rgba(26,165,135,0.16);
  transform: translateY(-4px) scale(1.02);
}
.key-metrics {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ================
   PROCESS STEPS
   ================ */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.process-step {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 13px 0 rgba(244,62,192,0.13);
  padding: 18px 16px;
  flex: 1 1 140px;
  min-width: 120px;
  max-width: 220px;
  text-align: center;
  transition: box-shadow 0.12s;
}
.process-step img {
  height: 42px;
  width: 42px;
  margin-bottom: 10px;
}
.process-step h3 {
  color: var(--sun-yellow);
}
.process-step:hover, .process-step:focus {
  box-shadow: 0 6px 18px 0 rgba(3,196,236,0.17);
}

/* ===============
   FAQ SECTION
   =============== */
.faq-section {
  margin-top: 36px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(26,165,135,0.09);
  padding: 15px 16px;
  transition: box-shadow 0.13s;
  cursor: pointer;
}
.faq-item h3 {
  color: var(--focus-pink);
  margin-bottom: 7px;
  font-size: 1.1rem;
}
.faq-item:hover, .faq-item:focus {
  box-shadow: 0 4px 15px 0 rgba(3,196,236,0.15);
}

/* ================
   RESOURCES PAGE
   ================ */
.resource-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 28px;
}
.resource-filters span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--neon-green);
  border-radius: 12px;
  padding: 8px 18px;
  background: #eaf8f5;
  cursor: pointer;
  transition: background 0.13s;
  font-size: 1rem;
}
.resource-filters span:hover, .resource-filters span:focus {
  background: var(--focus-pink);
  color: #fff;
}
.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.resource-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 13px 0 rgba(26,165,135,0.10);
  padding: 20px 18px;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 350px;
  transition: box-shadow 0.12s, transform 0.13s;
}
.resource-item h3 {
  color: var(--electric-blue);
  margin-bottom: 7px;
}
.resource-item:hover, .resource-item:focus {
  box-shadow: 0 4px 15px 0 rgba(3,196,236,0.17);
  transform: translateY(-3px) scale(1.01);
}

/* ===============
   NEWSLETTER
   =============== */
.newsletter-signup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 9px 0 rgba(244,62,192,0.09);
  padding: 22px 20px;
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.08rem;
  color: #134347;
}

/* =====================
   CLIENT LOGOS/ICONS
   ===================== */
.client-logos {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.client-logos img {
  height: 42px;
  width: auto;
  filter: grayscale(0.85) brightness(1.08);
  transition: filter 0.17s, transform 0.13s;
}
.client-logos img:hover, .client-logos img:focus {
  filter: grayscale(0) drop-shadow(0 0 7px var(--sun-yellow));
  transform: scale(1.08) rotate(-4deg);
}

/* ================
   STATISTICS BOX
   ================ */
.statistics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}
.statistics li {
  background: var(--sun-yellow);
  color: #fff;
  border-radius: 13px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

/* =============
   CONTACT PAGE
   ============= */
.contact-form-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 400px;
}
.form-fields label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--electric-blue);
  margin-bottom: 4px;
  margin-top: 10px;
}
.form-fields span {
  color: #134347;
  font-size: 0.98rem;
  margin-bottom: 5px;
}

/* =============
   FOOTER STYLING
   ============= */
footer {
  background: linear-gradient(88deg, #134347 87%, #03c4ec 100%);
  color: #F9FAF3;
  padding: 36px 0 12px 0;
  margin-top: 40px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F9FAF3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--sun-yellow);
}
.footer-copy {
  font-size: 0.94rem;
  color: #eaf8f5;
}

footer a img {
  height: 38px;
  width: auto;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
#cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100%;
  background: linear-gradient(90deg,#03c4ec 0%, #1AA587 100%);
  color: #fff;
  z-index: 10000;
  padding: 20px 14px 16px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  box-shadow: 0 -2px 24px 0 rgba(26,165,135,0.13);
  transition: transform 0.24s, opacity 0.22s;
  font-family: 'Open Sans', Arial, sans-serif;
}
#cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner .cookie-text {
  flex: 1 1 220px;
  max-width: 580px;
  font-size: 1.02rem;
  color: #fff;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 9px;
}
#cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 99px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.16s, color 0.13s, box-shadow 0.19s, transform 0.17s;
}
#cookie-banner .accept {
  background: var(--sun-yellow);
  color: #134347;
}
#cookie-banner .accept:hover, #cookie-banner .accept:focus {
  background: var(--focus-pink);
  color: #fff;
  transform: scale(1.06);
}
#cookie-banner .reject {
  background: #fff;
  color: var(--neon-green);
}
#cookie-banner .reject:hover, #cookie-banner .reject:focus {
  background: var(--bold-red);
  color: #fff;
  transform: scale(1.06);
}
#cookie-banner .settings {
  background: var(--electric-blue);
  color: #fff;
}
#cookie-banner .settings:hover, #cookie-banner .settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 700px) {
  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-actions {
    justify-content: center;
    gap: 6px;
  }
}

/* COOKIE MODAL STYLES */
#cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(19,67,71,0.55);
  z-index: 11000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
}
#cookie-modal-overlay.open {
  display: flex;
}
#cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 440px;
  padding: 36px 30px 28px 30px;
  box-shadow: 0 8px 44px 0 rgba(26,165,135,0.17), 0 1.5px 5px 0 rgba(244,62,192,0.09);
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: fadeInScale 0.34s cubic-bezier(.96,1.15,.38,1.17);
}
@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}
#cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--neon-green);
  margin-bottom: 16px;
  text-align: left;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.01rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--neon-green);
  width: 18px;
  height: 18px;
}
.cookie-category.essential label {
  color: var(--electric-blue);
}
.cookie-category.essential input[disabled] {
  opacity: 0.6;
  pointer-events: none;
}
#cookie-modal .close {
  position: absolute;
  top: 14px; right: 17px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--sun-yellow);
  cursor: pointer;
}
#cookie-modal .close:hover, #cookie-modal .close:focus {
  color: var(--focus-pink);
}
#cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
#cookie-modal .modal-actions button {
  padding: 7px 18px;
  border-radius: 99px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
}
#cookie-modal .save {
  background: var(--neon-green);
  color: #fff;
}
#cookie-modal .save:hover, #cookie-modal .save:focus {
  background: var(--electric-blue);
}
#cookie-modal .cancel {
  background: #fff;
  color: #134347;
  border: 2px solid var(--secondary);
}
#cookie-modal .cancel:hover, #cookie-modal .cancel:focus {
  color: var(--electric-blue);
  border-color: var(--electric-blue);
}

/* =============
   RESPONSIVE
   ============= */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 990px) {
  .card-container, .feature-grid, .service-cards, .team-profiles, .case-studies, .resource-list {
    gap: 18px;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .card-container, .feature-grid, .service-cards, .team-profiles, .case-studies, .resource-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 38px;
  }
  .card, .service-card, .feature-card, .case-study, .resource-item, .team-member, .testimonial-card {
    min-width: unset;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .cta-section {
    padding-top: 16px;
    padding-bottom: 14px;
  }
  .contact-form-section, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 12px;
  }
  .statistics ul {
    flex-direction: column;
    gap: 9px;
  }
  .client-logos {
    gap: 12px;
  }
}
@media (max-width: 560px) {
  html {
    font-size: 15px;
  }
  header, footer {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-wrapper {
    padding-left: 5px;
    padding-right: 5px;
  }
  #cookie-modal {
    max-width: 94vw;
    padding: 18px 8px 18px 10px;
  }
}

/* ===============
   MISC / RESETS
   =============== */
::-webkit-scrollbar {
  width: 8px;
  background: #eaf8f5;
}
::-webkit-scrollbar-thumb {
  background: #1AA587;
  border-radius: 12px;
}
::selection {
  background: #F43EC0;
  color: #fff;
}
input:focus, textarea:focus, select:focus, button:focus {
  outline: 2.5px solid var(--electric-blue);
  outline-offset: 2px;
}

/* ===== FOCUS/ACCESSIBILITY ===== */
a:focus, button:focus, .cta-button:focus {
  outline: 2.5px solid var(--focus-pink);
  outline-offset: 2px;
}

/* Hide outline if not accessible using mouse */
:focus:not(:focus-visible) {
  outline: none;
}

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