/* ------------------- CSS RESET & NORMALIZATION ------------------- */
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, 
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #181F29;
  color: #D3ECF7;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: 100%; }
img { max-width: 100%; display: block; }

/* ------------------- BRAND & UI VARIABLES ------------------- */
:root {
  --primary: #255972;
  --secondary: #68B3B8;
  --accent: #F1FAF9;
  --dark-bg: #181F29;
  --card-bg: #202839;
  --header-bg: #19223b;
  --footer-bg: #1c2536;
  --text-main: #D3ECF7;
  --text-on-light: #1a222b;
  --heading-gradient: linear-gradient(90deg, #68B3B8 0%, #47e6e6 80%, #255972 100%);
  --neon: #52ffe6;
  --danger: #ff4b7d;
  --shadow-default: 0 4px 32px 0 rgba(36,153,237,0.07), 0 1.5px 8px 0 rgba(104,179,184,0.10);
  --shadow-card: 0 2px 16px 0 rgba(57,205,251,0.13);
  --radius-s: 10px;
  --radius: 18px;
  --transition: .25s cubic-bezier(.63,.16,.28,1);
}

/* ------------------- GLOBAL LAYOUT & CONTAINERS ------------------- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1200px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ------------------- TYPOGRAPHY ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
}
h1 {
  font-size: 2.2rem;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 10px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: var(--secondary);
}
h3 {
  font-size: 1.2rem;
  color: var(--neon);
  margin-bottom: 4px;
}
h4, h5, h6 {
  color: var(--accent);
}
p, ul, li {
  font-size: 1rem;
  color: var(--text-main);
}
strong, b { color: #fff; font-weight: 700; }
small { font-size: 0.90em; color: var(--accent); }

/* ------------------- HEADER ------------------- */
header {
  background: var(--header-bg);
  box-shadow: 0 2px 8px 0 rgba(36,153,237,0.07);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
  position: relative;
}
header img {
  height: 43px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--text-main);
  font-weight: 500;
  padding: 6px 0;
  font-size: 1rem;
  position: relative;
  transition: color var(--transition);
}
.main-nav a:not(.btn-primary):after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--secondary);
  border-radius: 2px;
  transition: width 0.23s;
  margin: 0 auto;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--neon);
}
.main-nav a:hover:after, .main-nav a.active:after {
  width: 40%;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 10px 32px;
  border-radius: var(--radius);
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 24px 0 rgba(104,179,184,0.12);
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), transform var(--transition);
  margin-left: 10px;
  position: relative;
}
.btn-primary {
  background: var(--neon);
  color: var(--primary);
  box-shadow: 0 0 18px 0 rgba(82,255,230,0.25), 0 1.5px 8px 0 rgba(104,179,184,0.17);
  border: 2px solid var(--secondary);
  text-shadow: 0 1px 7px #fff6;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: var(--primary);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 0 20px var(--neon);
}
.btn-secondary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(37,89,114,0.18);
  border: 2px solid var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  color: var(--secondary);
  background: #233c51;
  transform: translateY(-1px) scale(1.03);
}

/* Burger mobile menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--neon);
  color: var(--primary);
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 8px rgba(100,255,230,0.13);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* ------------------- MOBILE MENU ------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background: rgba(24,31,41,0.97);
  box-shadow: 0 10px 64px 0 #0007;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 60;
  transform: translateX(-110%);
  transition: transform 0.37s cubic-bezier(.7,.2,0,1.03);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #fff;
  cursor: pointer;
  padding: 18px 24px 2px 0;
  margin-right: 10px;
  transition: color .2s;
  z-index: 100;
}
.mobile-menu-close:hover { color: var(--neon); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 40px 0 0 32px;
  padding-bottom: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.32rem;
  color: #fff;
  padding: 7px;
  border-radius: var(--radius-s);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: var(--secondary);
  color: var(--primary);
}

/* ------------------- HERO & SECTION STYLES ------------------- */
.hero, .about-philosophy, .thankyou-section {
  background: linear-gradient(
    120deg, #202839 0%, #255972 85%, #181F29 100%
  );
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 2px 18px 0 rgba(104,179,184,0.10);
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  padding: 54px 0 45px 0;
  min-height: 340px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero p {
  color: #d3ecf7;
  margin-bottom: 22px;
  max-width: 550px;
  font-size: 1.15em;
}

/* CTA Sections */
.cta, .cta-offer, .cta-pricing-offer, .cta-faq, .cta-contact {
  background: #212f43;
  border-radius: var(--radius-s);
  box-shadow: 0 2px 16px var(--card-bg), 0 0 .5px #1E3744 inset;
  margin-bottom: 40px;
}
.cta .content-wrapper, .cta-offer .content-wrapper, .cta-pricing-offer .content-wrapper, .cta-faq .content-wrapper, .cta-contact .content-wrapper {
  align-items: center;
  gap: 16px;
  text-align: center;
}

/* ------------------- FEATURES & CARDS ------------------- */
.features .feature-grid,
.partners .partner-list,
.card-container,
.service-list .service-list-tabs,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature, .service, .partner {
  background: var(--card-bg);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
  padding: 28px 20px 22px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 325px;
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 20px;
}
.feature:hover, .service:hover, .partner:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 32px 0 var(--neon);
}
.feature img, .partner img {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px var(--neon));
}
.feature h3, .partner span {
  color: var(--neon);
}
.service-list .service {
  margin-right: 20px;
}

/* Feature Items Flex Pattern */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Card Container Pattern */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius-s);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 2px 32px var(--neon);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* ------------------- TESTIMONIALS ------------------- */
.testimonials .content-wrapper,
.customer-case-studies .testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 22px 20px 22px;
  background: #f7fbfc;
  color: var(--text-on-light);
  border-radius: var(--radius);
  box-shadow: 0 2.5px 16px #bedbe3cc;
  min-width: 250px;
  max-width: 390px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  color: #19293a;
  font-weight: 500;
  font-size: 1.17em;
  text-align: center;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 1em;
  align-self: flex-end;
}
.testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  left: 14px;
  top: 14px;
  width: 21px;
  height: 21px;
  background: url('../assets/icons/icon-star.svg') no-repeat center center/contain;
  filter: drop-shadow(0 0 3px #47e6e6);
  opacity: .18;
}

/* For testimonials and review section text contrast */
.testimonials .testimonial-card,
.customer-case-studies .testimonial-card {
  background: #f7fbfc;
  color: #1a222b;
}

/* ------------------- TABS FOR SERVICE LIST ------------------- */
.service-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
}
.service-category-tabs li {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--secondary);
  font-weight: 600;
  border-radius: var(--radius-s);
  background: #22364a;
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 2px 10px #0000000c;
  transition: background var(--transition), color var(--transition);
}
.service-category-tabs li.active, .service-category-tabs li:hover {
  color: var(--primary);
  background: var(--neon);
}
.service-detail-list h2 {
  color: var(--secondary);
  margin-top: 20px;
  margin-bottom: 8px;
}

/* ------------------- FAQ ACCORDION ------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #1a2235;
  border-radius: var(--radius-s);
  box-shadow: 0 1.5px 8px #68b3b840;
  padding: 22px 24px 18px 22px;
  margin-bottom: 10px;
}
.faq-item h2, .faq-item h3 {
  color: var(--secondary);
  font-size: 1.18em;
  margin-bottom: 6px;
  cursor: pointer;
}
.faq-item p {
  color: #e7faff;
  font-size: 1em;
  line-height: 1.5;
}

/* ------------------- PRICING TABLE ------------------- */
.pricing-table {
  width: 100%;
  background: var(--card-bg);
  color: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px #6dd5f6
  ;
  margin-bottom: 24px;
  border-collapse: collapse;
  font-size: 1em;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid #202839;
}
.pricing-table th {
  color: var(--neon);
  font-weight: 700;
  background: #19223b;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-notes {
  color: var(--accent);
  font-size: 1.05em;
  margin-bottom: 18px;
}
.included-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-bottom: 24px;
}
.included-services li {
  background: #1a2235;
  padding: 9px 16px;
  border-radius: var(--radius-s);
  color: #70ebf6;
  font-weight: 500;
  min-width: 155px;
}

/* ------------------- PARTNERS ------------------- */
.partners .partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.partner {
  background: #27394d;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  min-width: 200px;
  max-width: 380px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.partner img {
  width: 40px;
  filter: drop-shadow(0 0 8px var(--neon));
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}
.partner span {
  color: #fff;
  font-weight: 500;
}
.partner small {
  color: #d3ecf7;
}

/* ------------------- ABOUT PAGE - TEAM BIOS, VALUES ------------------- */
.value-list, .team-bios {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.value-list li, .team-bios li {
  background: #1a2235;
  border-radius: var(--radius-s);
  padding: 17px 18px 15px 22px;
  color: #def8ff;
  font-size: 1.06em;
  margin-bottom: 10px;
  box-shadow: 0 1.5px 7px #47e6e63e;
  transition: box-shadow var(--transition);
}
.value-list li strong {
  color: var(--neon);
}

.about-team .team-bios li {
  border-left: 4px solid var(--secondary);
}

/* ------------------- CONTACT PAGE ------------------- */
.contact-info-section .content-wrapper {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-info-display {
  background: #243348;
  border-radius: var(--radius-s);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  min-width: 255px;
  max-width: 390px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 13px;
  line-height: 1.7;
}
.contact-info-display h2 {
  color: var(--neon);
  margin-bottom: 10px;
}
.contact-info-display a {
  color: var(--neon);
  text-decoration: none;
  font-weight: 500;
}
.contact-info-display img {
  width: 20px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline;
}
.contact-request-instructions {
  flex: 1 1 260px;
  min-width: 240px;
  background: #1a2235;
  border-radius: var(--radius-s);
  padding: 28px 23px;
  color: var(--accent);
  box-shadow: 0 2px 14px #47e6e61d;
}
.contact-request-instructions h3 {
  color: var(--neon);
  margin-bottom: 8px;
}

/* ------------------- FOOTER ------------------- */
footer {
  background: var(--footer-bg);
  color: var(--accent);
  padding: 20px 0 0 0;
  border-top: 1px solid #223b38;
  box-shadow: 0 -2px 12px #20283986;
  position: relative;
  z-index: 10;
}
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px 14px;
  padding: 20px 10px 12px 10px;
}
footer img {
  width: 46px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.footer-nav a:hover {
  color: var(--neon);
  text-decoration: underline;
}
.contact-info {
  color: #9fe5fc;
  font-size: 0.99em;
  line-height: 1.75;
}
.contact-info img {
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline;
}

/* ------------------- MISC GENERAL ------------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
}
/* Pattern classes */
.card, .feature, .testimonial-card, .service, .faq-item {
  margin-bottom: 20px;
}

/* ------------- TABLES ------------- */
table {
  border-collapse: collapse;
  width: 100%;
}

/* ------------- Responsive Media Queries ------------- */
@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .feature, .service, .partner { min-width: 180px; }
}
@media (max-width: 900px) {
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .container { max-width: 96vw; padding-left: 6vw; padding-right: 6vw; }
  .content-wrapper, .testimonials .content-wrapper, .partners .partner-list, .feature-grid, .card-container, .service-list-tabs, .included-services, .about-team .team-bios {
    flex-direction: column;
    gap: 20px;
    align-items: stretch !important;
  }
  .customer-case-studies .testimonials-list, .faq-accordion {
    flex-direction: column;
    gap: 20px;
    align-items: stretch !important;
  }
  .feature, .service, .partner {
    min-width: 90vw;
    max-width: 100vw;
    margin-right: 0;
    padding: 20px 12px;
  }
  .section, section {
    padding: 30px 6vw;
    margin-bottom: 34px;
  }
  footer img {
    width: 36px;
  }
  .text-image-section,
  .contact-info-section .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .contact-info-display,
  .contact-request-instructions {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 20px 14px;
  }
  .partner { flex-direction: column; gap: 10px; text-align: center; align-items: center; }
}
@media (max-width: 560px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.10rem; }
  .btn-primary, .btn-secondary { padding: 10px 12px; font-size: 0.95rem; }
  .section, section { padding: 22px 2vw; }
  .pricing-table th, .pricing-table td { padding: 9px 5px; font-size: 0.98em; }
  .card, .feature, .testimonial-card, .faq-item {
    padding: 14px 7px 14px 11px;
  }
}

/* ------------------- ANIMATIONS & TRANSITIONS ------------------- */
.card, .feature, .testimonial-card, .faq-item, .service, .partner {
  transition: box-shadow var(--transition), transform var(--transition);
}
a, button, .btn-primary, .btn-secondary {
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), border var(--transition), transform var(--transition);
}

/* ------------------- COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 90;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(24, 31, 41, 0.98);
  color: #f7fbfc;
  padding: 28px 12px 19px 12px;
  box-shadow: 0 -2px 24px #47e6e62a;
  font-size: 1.01em;
  border-radius: var(--radius) var(--radius) 0 0;
  animation: cookie-slide-in 0.41s cubic-bezier(.83,.03,.47,1.02);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 0;
  margin-right: 24px;
}
.cookie-banner__btns {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  border-radius: var(--radius-s);
  padding: 9px 18px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  margin-left: 2px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
}
.cookie-accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-accept:hover { background: var(--neon); color: var(--primary); }
.cookie-reject {
  background: #425b6d;
  color: #fff;
}
.cookie-reject:hover { background: var(--danger); color: #fff; }
.cookie-settings {
  background: transparent;
  border: 2px solid var(--neon);
  color: var(--neon);
}
.cookie-settings:hover {
  background: var(--neon);
  color: var(--primary);
}

/* ------------------- COOKIE MODAL ------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(24, 31, 41, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #1a2235;
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 29px 22px 29px;
  min-width: 300px;
  max-width: 96vw;
  box-shadow: 0 7px 48px #20abb652;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: none;
  background: none;
  font-size: 2.1rem;
  color: var(--neon);
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal__close:hover {
  color: var(--danger);
}
.cookie-modal h3 {
  color: var(--neon);
  font-size: 1.18em;
  margin-bottom: 8px;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal label {
  flex: 1 1 0;
  font-size: 1em;
}
.cookie-modal input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-essential[disabled] + label:after {
  content: ' (Immer aktiviert)';
  color: var(--secondary);
  font-size: 0.95em;
}

/* ------------------- THANK YOU PAGE ------------------- */
.confirmation-message, .next-steps {
  color: var(--neon);
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

/* ------------------- MISC INTERACTIONS ------------------- */
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}
input, textarea, select {
  border-radius: var(--radius-s);
  border: 1.6px solid #266e90;
  padding: 11px 9px;
  margin-bottom: 13px;
  background: #1a2235;
  color: #e3f5fa;
  font-family: inherit;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--neon);
  background: #233c51;
}

/* ------------------- Body Scroll Lock when Modal/Menu Open ------------------- */
body.menu-open, body.modal-open {
  overflow: hidden;
}

/* ------------------- Additional Utilities ------------------- */
.text-section { margin-bottom: 16px; }

::-webkit-selection, ::selection {
  background: var(--secondary);
  color: #19223b;
}

/* END OF CSS */
