/* ============================== */
/* Radiant Pathways Base 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, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #EFEFEF;
  color: #172134;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: inside;
}
img {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

/* ==================================== */
/* CSS Variables for Vibrant/Energetic  */
/* ==================================== */
:root {
  --clr-primary: #174473;
  --clr-secondary: #F5B041;
  --clr-accent: #EFEFEF;
  --clr-bg: #FFFFFF;
  --clr-dark: #172134;
  --clr-grey: #B5B5B7;
  --clr-success: #24C171;
  --clr-warning: #FFD600;
  --clr-error: #F44141;
  --clr-electric-blue: #297FFF;
  --clr-electric-coral: #FF6E3B;
  --clr-electric-pink: #FE34C6;
  --shadow-main: 0 6px 24px -4px rgba(23, 68, 115, 0.09), 0 1.5px 5px 0 rgba(245, 176, 65, 0.09);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --ff-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --ff-body: 'Roboto', Arial, sans-serif;
  --transition-main: all 0.24s cubic-bezier(.62,.08,.39,.98);
}

/* ============================== */
/* Container Utility */
/* ============================== */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================== */
/* HEADER & NAVIGATION */
/* ============================== */
header {
  width: 100%;
  background: var(--clr-primary);
  box-shadow: 0 2px 10px 0 rgba(23, 68, 115, 0.07);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
header a img {
  height: 40px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
nav a {
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color 0.15s;
}
nav a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--clr-secondary);
  border-radius: 2px;
  transition: width 0.2s;
  position: absolute;
  left: 0; bottom: -3px;
}
nav a:hover, nav a:focus {
  color: var(--clr-secondary);
}
nav a:hover::after, nav a:focus::after {
  width: 85%;
}

.cta-button {
  background: var(--clr-secondary);
  color: var(--clr-primary);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  border: none;
  padding: 10px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2.5px 14px 0 rgba(245, 176, 65, 0.14);
  margin-left: 32px;
  transition: var(--transition-main);
  position: relative;
  text-align: center;
  line-height: 1.2;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--clr-electric-blue);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(41, 127, 255, 0.15);
}

.mobile-menu-toggle {
  display: none;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  font-size: 2.2rem;
  border-radius: var(--radius-sm);
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-main);
  z-index: 810;
  margin-left: 18px;
  transition: background 0.18s;
  border: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--clr-electric-coral);
  color: #fff;
}

@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    height: 66px;
  }
}

/* ============================== */
/* MOBILE MENU */
/* ============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 100%;
  width: 100vw; height: 100vh;
  background: var(--clr-primary);
  box-shadow: -5px 0 32px 0 rgba(23,68,115,0.22);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 0 0;
  transition: transform 0.36s cubic-bezier(.34,1.56,.64,1), left 0s;
  transform: translateX(0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.32s cubic-bezier(.34,1.56,.64,1), opacity 0.15s;
}
.mobile-menu .mobile-menu-close {
  background: var(--clr-secondary);
  color: var(--clr-primary);
  font-size: 2.5rem;
  border-radius: var(--radius-lg);
  margin: 28px 24px 0 0;
  padding: 0 16px;
  align-self: flex-end;
  transition: background 0.18s, color 0.15s;
  width: 52px;
  height: 52px;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  background: var(--clr-electric-coral);
  color: #fff;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 28px;
  width: 100%;
  gap: 0;
}
.mobile-menu .mobile-nav a {
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.04em;
  padding: 20px 0;
  width: 100vw;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  transition: color 0.17s, background 0.14s;
  outline: none;
  display: block;
}
.mobile-menu .mobile-nav a:hover,
.mobile-menu .mobile-nav a:focus {
  color: var(--clr-secondary);
  background: rgba(245,176,65,0.09);
}

@media (max-width: 768px) {
  .mobile-menu {
    left: 0;
    transform: translateX(100%);
    width: 100vw;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    left: 0;
  }
}

/* ============================== */
/* SECTION - GENERAL SPACING      */
/* ============================== */
.section, .text-section, .hero-section,
.features-section, .about-short-section,
.testimonials-section, .cta-section, .faq-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (min-width: 992px) {
  .section, .text-section, .hero-section,
  .features-section, .about-short-section,
  .testimonials-section, .cta-section, .faq-section {
    margin-bottom: 80px;
    padding: 64px 0 56px 0;
  }
}

/* ============================== */
/* HERO SECTION                   */
/* ============================== */
.hero-section {
  background: linear-gradient(100deg, #297fff 0%, var(--clr-primary) 75%);
  color: #fff;
  text-align: left;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2.5px 28px 0 rgba(23,68,115,0.09);
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero-section h1 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.01em;
  line-height: 1.09;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 5px 40px rgba(41,127,255,0.15), 0 1px 0 #174473;
}
.hero-section p {
  font-size: 1.28rem;
  font-family: var(--ff-body);
  margin-bottom: 19px;
  color: #fff;
  font-weight: 500;
  line-height: 1.38;
}
.hero-section .cta-button {
  margin-left: 0;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .hero-section .content-wrapper {
    padding-left: 22px;
    max-width: 58vw;
  }
  .hero-section h1 {
    font-size: 3rem;
  }
}

/* ============================== */
/* FEATURES SECTION  (Home/Services)*/
/* ============================== */
.features-section h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  color: var(--clr-primary);
  margin-bottom: 34px;
  letter-spacing: 0.01em;
}
.features-grid, .features-section .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.feature {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-main);
  padding: 30px 20px 26px 20px;
  width: 100%;
  max-width: 320px;
  min-width: 230px;
  align-items: flex-start;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.17s, transform 0.15s;
  position: relative;
  margin-bottom: 20px;
  border-left: 6px solid var(--clr-secondary);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px var(--clr-secondary));
}
.feature h3 {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  color: var(--clr-primary);
  font-weight: 800;
  margin-bottom: 6px;
}
.feature p {
  color: var(--clr-dark);
  font-size: 1rem;
  opacity: 0.93;
  font-family: var(--ff-body);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 32px 0 rgba(245,176,65,0.17), 0 2.5px 8.5px 0 rgba(41,127,255,0.09);
  transform: translateY(-7px) scale(1.025);
  border-color: var(--clr-electric-coral);
}

/* ============================== */
/* ABOUT SHORT SECTION            */
/* ============================== */
.about-short-section h2 {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  color: var(--clr-primary);
  font-weight: 800;
  margin-bottom: 22px;
}
.about-short-section ul {
  margin-top: 18px;
  margin-bottom: 6px;
  color: var(--clr-dark);
  font-size: 1rem;
}
.about-short-section ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.about-short-section ul li::before {
  content: '\2022';
  color: var(--clr-secondary);
  position: absolute;
  left: 0;
  font-size: 1.4rem;
  top: -2px;
}

/* ============================== */
/* TESTIMONIALS                   */
/* ============================== */
.testimonials-section h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--clr-primary);
  font-weight: 900;
  margin-bottom: 24px;
}
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px 0 rgba(23,68,115,0.12);
  min-width: 270px;
  max-width: 350px;
  width: 100%;
  min-height: 178px;
  padding: 20px 22px 18px 22px;
  margin-bottom: 20px;
  gap: 20px;
  border-left: 5px solid var(--clr-primary);
  position: relative;
  transition: box-shadow 0.14s, border-color 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8.5px 32px 0 rgba(245,176,65,0.14);
  border-left-color: var(--clr-electric-coral);
  z-index: 1;
}
.testimonial-card p {
  font-size: 1.07rem;
  font-family: var(--ff-body);
  color: var(--clr-dark);
}
.star-rating {
  color: var(--clr-secondary);
  font-size: 1.25em;
  font-family: var(--ff-display);
  letter-spacing: 1.5px;
  margin-top: 8px;
}
.testimonial-client {
  font-family: var(--ff-display);
  font-weight: bold;
  font-size: 1em;
  color: var(--clr-primary);
  opacity: 0.97;
  margin-top: 7px;
}

/* ============================== */
/* CTA SECTION                    */
/* ============================== */
.cta-section {
  background: linear-gradient(95deg, var(--clr-secondary) 60%, #ff6e3b 100%);
  color: #1a2638;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main);
  text-align: center;
}
.cta-section .content-wrapper {
  gap: 25px;
  align-items: center;
}
.cta-section h2 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 2.05rem;
  color: var(--clr-primary);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(245,176,65,0.09);
}
.cta-section p {
  color: #30344b;
  font-size: 1.11rem;
  margin-bottom: 7px;
}
.cta-section .cta-button {
  margin-top: 16px;
  background: var(--clr-primary);
  color: var(--clr-secondary);
  box-shadow: 0 6px 26px 0 rgba(41,127,255,0.13);
}
.cta-section .cta-button:hover, .cta-section .cta-button:focus {
  background: var(--clr-electric-coral);
  color: #fff;
}

/* ============================== */
/* TEXT/INFO SECTIONS             */
/* ============================== */
.text-section {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-main);
  margin-bottom: 40px;
}
.text-section .content-wrapper {
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}
.text-section h1 {
  font-family: var(--ff-display);
  color: var(--clr-primary);
  font-weight: 900;
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.text-section h2 {
  font-family: var(--ff-display);
  color: var(--clr-primary);
  font-weight: 800;
  font-size: 1.36rem;
  margin: 17px 0 7px 0;
}
.text-section h3 {
  font-family: var(--ff-display);
  color: var(--clr-electric-blue);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 11px 0 7px 0;
}
.text-section p, .text-section ul, .text-section ol {
  font-family: var(--ff-body);
  color: var(--clr-dark);
  font-size: 1rem;
  margin-bottom: 11px;
  line-height: 1.7;
}
.text-section ul {
  padding-left: 14px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 6px;
  padding-left: 12px;
  position: relative;
}
.text-section ul li::before {
  content: '\2022';
  color: var(--clr-secondary);
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.2rem;
}
.text-section ol {
  padding-left: 22px;
}
.text-section ol li {
  padding-left: 0;
  margin-left: 6px;
}
.text-section a {
  color: var(--clr-electric-blue);
  text-decoration: underline;
  word-break: break-all;
}
.text-section a:hover, .text-section a:focus {
  color: var(--clr-electric-coral);
}

/* ============================== */
/* SERVICE LIST ON SERVICES PAGE  */
/* ============================== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 18px;
}
.service-list li {
  background: var(--clr-accent);
  border-left: 7px solid var(--clr-secondary);
  border-radius: var(--radius-md);
  padding: 22px 20px 16px 26px;
  box-shadow: 0 3px 16px 0 rgba(245,176,65,0.09);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 8px;
  position: relative;
}
.service-list h3 {
  color: var(--clr-primary);
  font-family: var(--ff-display);
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.service-list p {
  color: var(--clr-dark);
  font-size: 1rem;
  opacity: 0.96;
}
.service-price {
  font-family: var(--ff-display);
  font-weight: bold;
  color: var(--clr-electric-coral);
  font-size: 1.09rem;
  margin-top: 5px;
  align-self: flex-end;
  letter-spacing: 0.01em;
}

/* ============================== */
/* FAQ SECTION                    */
/* ============================== */
.faq-section h2 {
  margin-bottom: 24px;
  font-family: var(--ff-display);
  color: var(--clr-primary);
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
}
.faq-item {
  background: var(--clr-accent);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px 0 rgba(41,127,255,0.05);
  padding: 16px 18px 11px 21px;
  color: var(--clr-dark);
  transition: box-shadow 0.16s;
  margin-bottom: 10px;
}
.faq-item h3 {
  font-family: var(--ff-display);
  color: var(--clr-electric-blue);
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 1rem;
  color: var(--clr-dark);
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 9px 30px 0 rgba(41,127,255,0.16);
}

/* ============================== */
/* FOOTER                         */
/* ============================== */
footer {
  padding: 28px 0 34px 0;
  background: var(--clr-primary);
  color: #fff;
  width: 100%;
  box-shadow: 0 -4px 24px 0 rgba(23,68,115,0.07);
}
footer .container {
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.008em;
  opacity: 0.92;
  transition: color 0.13s, opacity 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--clr-secondary);
  opacity: 1;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}
.footer-brand img {
  height: 37px;
}
.footer-brand span {
  font-size: 1rem;
  font-family: var(--ff-body);
  color: #fff;
  opacity: 0.86;
}

@media (max-width: 768px) {
  .footer-nav {
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.95rem;
  }
}

/* ============================== */
/* RESPONSIVE LAYOUTS (FLEX ONLY) */
/* ============================== */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 991px) {
  .features-grid, .testimonial-carousel, .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .hero-section h1 {
    font-size: 1.4rem;
  }
  .cta-section h2, .features-section h2, .testimonials-section h2, .about-short-section h2, .faq-section h2 {
    font-size: 1.27rem;
  }
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 98vw;
      min-width: 0;
      width: 100%;
  }
  .service-list {
    gap: 14px;
  }
  .section, .text-section, .hero-section, .features-section, .about-short-section, .testimonials-section, .cta-section, .faq-section {
    padding: 26px 6px;
    margin-bottom: 34px;
  }
  .mobile-menu .mobile-nav a {
    font-size: 1.31rem;
    padding: 14px 0;
  }
}

/* ============================== */
/* BUTTONS - All Purpose */
/* ============================== */
button, .cta-button {
  transition: var(--transition-main);
}
button:active, .cta-button:active {
  transform: scale(0.98);
}

/* ============================== */
/* COOKIE CONSENT BANNER           */
/* ============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23244d;
  color: #fff;
  width: 100vw;
  z-index: 90000;
  box-shadow: 0 -3.5px 22px rgba(23,68,115,0.19);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadein-bounce 0.53s cubic-bezier(.18,1.35,.39,.97);
  font-family: var(--ff-body);
}
@keyframes fadein-bounce {
  0% { opacity: 0; transform: translateY(140px); }
  80% { opacity: 1; transform: translateY(-12px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  font-size: 0.99rem;
  margin-bottom: 4px;
  text-align: center;
}
.cookie-banner-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
  margin-top: 5px;
}
.cookie-banner button {
  font-family: var(--ff-display);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius-md);
  margin: 0 3px;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  transition: var(--transition-main);
  box-shadow: 0 1.5px 5.8px #F5B04150;
}
.cookie-banner .cookie-settings-btn {
  background: var(--clr-primary);
  color: #fff;
  border: 2px solid var(--clr-secondary);
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: var(--clr-electric-coral);
  color: #fff;
  outline: 0;
}
@media (max-width: 500px) {
  .cookie-banner {
    padding: 18px 2px 22px 2px;
    gap: 12px;
  }
  .cookie-banner-actions {
    gap: 9px;
    flex-wrap: wrap;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(23,68,115,0.7);
  z-index: 90010;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: fadein-modal 0.39s cubic-bezier(.18,1.15,.52,1);
}
@keyframes fadein-modal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 24px 28px 24px;
  box-shadow: 0 10px 44px 0 rgba(23,68,115,0.29);
  min-width: 285px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-family: var(--ff-body);
  animation: slide-in-modal 0.28s cubic-bezier(.12,1.4,.71,1) 0.02s;
}
@keyframes slide-in-modal {
  0% { transform: scale(0.82) translateY(65px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: var(--ff-display);
  color: var(--clr-primary);
  font-weight: 800;
  font-size: 1.11rem;
  margin: 0 0 8px 0;
}
.cookie-modal .cookie-cat {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.96rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-cat input[type=checkbox] {
  accent-color: var(--clr-secondary);
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-cat.essential label {
  font-weight: 700;
  color: var(--clr-primary);
}
.cookie-modal .cookie-cat label {
  font-weight: 500;
  color: var(--clr-dark);
}
.cookie-modal .modal-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .modal-close-btn {
  background: var(--clr-secondary);
  color: var(--clr-primary);
  font-family: var(--ff-display);
  border-radius: var(--radius-md);
  padding: 8px 18px;
  font-size: 1.02rem;
  font-weight: 700;
  border: none;
  transition: var(--transition-main);
}
.cookie-modal .modal-close-btn:focus, .cookie-modal .modal-close-btn:hover {
  background: var(--clr-electric-coral);
  color: #fff;
}

/* ============================== */
/* Typography Hierarchy           */
/* ============================== */
h1, .h1 { font-family: var(--ff-display); font-weight: 900; font-size: 2.2rem; letter-spacing: 0.01em; line-height: 1.16; }
h2, .h2 { font-family: var(--ff-display); font-weight: 800; font-size: 1.38rem; line-height: 1.2; }
h3, .h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.14rem; }

@media (min-width: 800px) {
 h1, .h1 { font-size: 3rem; }
 h2, .h2 { font-size: 2rem; }
 h3, .h3 { font-size: 1.18rem; }
}

/* ============================== */
/* Misc Utility Classes           */
/* ============================== */
.mt-0   { margin-top: 0    !important; }
.mt-4   { margin-top: 4px  !important; }
.mt-8   { margin-top: 8px  !important; }
.mb-0   { margin-bottom: 0 !important; }
.mb-8   { margin-bottom: 8px !important; }
.mb-18  { margin-bottom: 18px !important; }
.txt-c  { text-align: center !important; }

/* ============================== */
/* Accessibility                  */
/* ============================== */
a:focus { outline: 3px solid var(--clr-electric-coral); outline-offset: 2px; }
button:focus { outline: 3px solid var(--clr-electric-blue); outline-offset: 2px; }

/* ============================== */
/* Print Adjustments              */
/* ============================== */
@media print {
  header, .mobile-menu, footer, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .section, .text-section {
    box-shadow: none !important;
    background: #fff !important;
    padding: 0 !important;
  }
}
