/* ================================================================
   DokumentenMeister Berlin – playful_dynamic Style CSS 
   =================================================================
   ALL FLEXBOX, NO GRID! Responsive, animated, colorful, playful & modern.
   Brand: #254157, #A1B5C9, #F0F6FA with playful energetic accents.
   Fonts: Montserrat (display), Roboto (body)
   ================================================================ */

/* ===================== CSS RESET / NORMALIZE =================== */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F0F6FA;
  color: #254157;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
*::selection {
  background: #fff175;
  color: #254157;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #218ee9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fa6932;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ====================== BRAND COLOR ACCENTS ===================== */
:root {
  --color-primary: #254157;
  --color-secondary: #A1B5C9;
  --color-accent: #F0F6FA;
  --color-bright-1: #FFDC35;
  --color-bright-2: #4EE2C1;
  --color-bright-3: #FF73A1;
  --color-bright-4: #63A7FF;
  --color-neutral-900: #222831;
  --color-neutral-50: #ffffff;
  --brand-shadow: 0 4px 20px rgba(53,67,124,0.08), 0 1.5px 6px rgba(245,157,95,0.10);
  --focus-outline: 2px solid #FFDC35;
}

/* Fallback for root vars */
@media (prefers-color-scheme: dark) {
  :root {
    --color-accent: #e6eef6;
    --color-secondary: #b7cbe1;
  }
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: #254157;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.13;
}
h1 {
  font-size: 2.5rem; /*40px*/
}
h2 {
  font-size: 2rem; /*32px*/
}
h3 {
  font-size: 1.375rem; /*22px*/
}
h4 {
  font-size: 1.18rem; /*~19px*/
}
p, li, td {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem; /*16px*/
  line-height: 1.6;
  color: #254157;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
}

/* Playful typed text effect for hero headline */
.hero h1, .thank-you h1, .about h1, .section h1, .section h2 {
  position: relative;
  z-index: 1;
  animation: playful-bounce 0.9s cubic-bezier(0.7,0.25,0.3,1.25) 0.1s 1 both;
}
@keyframes playful-bounce {
  0% {transform:translateY(24px) scale(0.92);opacity:0;}
  80% {transform:translateY(-7px) scale(1.02);opacity:1;}
  100% {transform:translateY(0) scale(1.0);opacity:1;}
}

/* ===================== LAYOUT CONTAINERS ===================== */
.container {
  width: 100%;
  max-width: 1260px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 32px 16px 32px 16px;
  box-shadow: none;
}
section.accent {
  background: var(--color-accent);
}

@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
    padding: 0 14px;
  }
  .section, section {
    padding: 28px 7px;
  }
}
@media (max-width: 768px) {
  .section, section {
    padding: 22px 2vw;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* =================== FLEX WRAPPERS / SPACING ================== */
.features-grid,
.benefits-grid,
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.card {
  background: #fff;
  border-radius: 20px 8px 24px 14px;
  box-shadow: var(--brand-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  min-width: 230px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 34px rgba(80,180,255,0.13),0 2px 10px rgba(255,220,53,0.09);
  transform: translateY(-6px) scale(1.024);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 10px rgba(77,166,250,0.12);
  margin-bottom: 22px;
  min-width: 230px;
  border-left: 7px solid #FFDC35;
  position: relative;
  transition: box-shadow 0.22s, border 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 33px rgba(246,103,110,0.15), 0 2px 8px rgba(255,220,53,0.11);
  border-left: 7px solid #fa6932;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  gap: 15px;
  border-radius: 18px 42px 18px 22px;
  box-shadow: 0 2px 14px rgba(39,180,255,0.10);
  padding: 26px 22px 18px 22px;
  width: 225px;
  min-height: 220px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.16s;
}
.feature-item:hover {
  box-shadow: 0 5px 34px rgba(255,135,163,0.15), 0 2px 8px rgba(255,220,53,0.12);
  transform: translateY(-7px) scale(1.03);
}
.benefit-item {
  background: #fff;
  color: #254157;
  border-radius: 16px 12px 22px 6px;
  padding: 18px 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(80,180,255,0.08),0 1px 4px rgba(250,105,50,0.10);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
}

@media (max-width: 850px) {
  .features-grid,
  .benefits-grid,
  .card-container,
  .card-grid {
    gap: 16px;
  }
  .feature-item, .card {
    width: 100%;
    min-width: 150px;
  }
}
@media (max-width: 600px) {
  .features-grid, .benefits-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item, .card {
    width: 100%;
    min-width: 110px;
    padding: 18px 14px 15px 14px;
  }
}

/* =============== HEADER / NAVIGATION =============== */
header {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 3px 20px rgba(38,65,87,0.09);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
  position: relative;
}
header img {
  height: 46px;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 36px;
}
.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 12px;
  padding: 8px 18px;
  transition: background 0.18s, color 0.14s;
  letter-spacing: 0.03em;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFDC35;
  color: #254157;
}
.cta-primary {
  background: #fa6932;
  color: #fff;
  border-radius: 16px 8px 24px 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 13px 32px;
  margin-left: 8px;
  transition: background 0.18s, box-shadow 0.22s, color 0.20s, transform 0.13s;
  border: none;
  display: inline-block;
  box-shadow: 0 2px 9px rgba(255,93,103,0.10);
  cursor: pointer;
  outline: none;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 #fff5, 0 2px 5px #fa693266;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFDC35;
  color: #254157;
  box-shadow: 0 4px 30px rgba(255,220,53,0.23);
  transform: translateY(-3px) scale(1.02);
  text-shadow: none;
}
.mobile-menu-toggle {
  display: none;
  background: #FFDC35;
  color: #254157;
  border: none;
  padding: 8px 14px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 18px;
  box-shadow: 0 2px 7px rgba(255,220,53,0.12);
  transition: background 0.18s, color 0.14s;
}
.mobile-menu-toggle:focus {
  outline: var(--focus-outline);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 11px;
    margin-left: 5px;
  }
  .cta-primary {
    padding: 11px 17px;
    margin-left: 2px;
    font-size: 0.97rem;
  }
  header img {
    height: 36px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    display: none;
  }
}

/* ============== MOBILE MENU ============== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #254157ee;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px 20px 20px;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.78,.08,.26,1.09);
  box-shadow: 7px 0 32px rgba(50,80,150,0.13);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: #fa6932;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-bottom: 32px;
  box-shadow: 0 1.5px 8px rgba(255,93,103,0.11);
  cursor: pointer;
  transition: background 0.18s, color 0.14s;
}
.mobile-menu-close:hover {
  background: #FFDC35;
  color: #254157;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-left: 12px;
  margin-top: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 12px;
  padding: 11px 16px 11px 6px;
  background: transparent;
  transition: background 0.16s, color 0.13s;
  min-width: 180px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #FFDC35;
  color: #254157;
  outline: none;
}

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

/* ================ HERO / CTA ================ */
.hero {
  background: linear-gradient(115deg, #FFDC35 7%, #4EE2C1 59%, #F0F6FA 95%);
  border-radius: 0 0 54px 54px / 0 0 32px 32px;
  padding-bottom: 70px;
  box-shadow: 0 8px 32px rgba(105,210,251,0.09);
  margin-bottom: 64px;
  animation: hero-entrance 0.7s cubic-bezier(.65,-0.09,.47,1.19) 0.13s both;
}
@keyframes hero-entrance {
  0% { opacity:0; transform: translateY(-60px) scale(0.92); }
  80% { opacity:0.95; transform: translateY(8px) scale(1.026); }
  100% { opacity:1; transform: translateY(0) scale(1); }
}
.hero h1 {
  color: #254157;
  font-size: 2.4rem;
}
.hero p {
  color: #254157;
  margin-top: 12px;
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.5;
}
.hero .cta-primary {
  margin-top: 26px;
  font-size: 1.13rem;
  padding: 15px 36px;
  box-shadow: 0 2px 16px rgba(255,220,53,0.14);
}
@media (max-width:600px){
  .hero {
    padding-bottom: 40px;
    border-radius: 0 0 20px 20px / 0 0 12px 12px;
    margin-bottom: 28px;
  }
  .hero h1{
    font-size:1.35rem;
  }
}

/************ BADGES ************/
.badges {
  display: flex;
  gap: 19px;
  margin-top: 12px;
}
.badges img {
  height: 40px;
  filter: drop-shadow(0 2px 6px #ffcd4d66);
}

/******** SERVICELIST ********/
.service-list, .faq-list, .benefits-list, .language-list ul, .team-list, .success-stories blockquote, .contact-details, .address-details {
  margin-bottom: 18px;
}
.service-list li, .faq-list li, .benefits-list li, .language-list li {
  background: linear-gradient(90deg,#FFDC35 0, #fff 100%);
  color: #254157;
  border-radius: 11px 6px 13px 10px;
  padding: 11px 17px 11px 14px;
  margin-bottom: 11px;
  font-size: 1.06rem;
  box-shadow: 0 2px 6px rgba(255,220,53,0.10);
}
.language-list h3, .workflow-steps h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #fa6932;
}
.language-list ul {
  padding-left: 2px;
}

/********* TEAM LIST *********/
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}
.team-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(36,65,87,0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  min-width: 190px;
}
.team-initials {
  background: #FF73A1;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.09rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 8px #FF73A133;
  margin-right: 3px;
  letter-spacing: 0.01em;
}

/*********** QUALIFICATIONS ***********/
.qualifications {
  margin-top: 20px;
}
.qualifications h3 {
  color: #218ee9;
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.qualifications ul li {
  background: #F0F6FA;
  color: #254157;
  border-left: 5px solid #218ee9;
  border-radius: 0 7px 7px 0;
  margin-bottom: 7px;
  padding: 8px 14px 8px 12px;
  box-shadow: 0 1px 7px #218ee961;
  font-size: 1rem;
  list-style: none;
}

/************ CTA SECTION ************/
.cta {
  background: #63A7FF;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  padding-bottom: 52px;
  box-shadow: 0 2px 12px rgba(99,167,255,0.12);
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
}
.cta .cta-primary {
  margin-top: 13px;
  font-size: 1.16rem;
}
@media (max-width: 700px) {
  .cta {
    padding-bottom: 22px;
  }
  .cta h2 {
    font-size: 1.19rem;
  }
}

/********* CONTACT SHORTFORM ********/
.contact-shortform p {
  color: #fff;
  margin-bottom: 4px;
}

/********************* FOOTER *********************/
footer {
  background: #254157;
  color: #fff;
  padding: 32px 0 15px;
  border-radius: 42px 42px 0 0 / 18px 18px 0 0;
  box-shadow: 0 -8px 32px rgba(38,65,87,0.05);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  gap: 22px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  letter-spacing: 0.023em;
  border-radius: 8px;
  padding: 8px 13px;
  transition: background 0.17s,color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFDC35;
  color: #254157;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/******************* LEGAL, FAQ, MAP, THANKS *******************/
.legal, .faq, .map, .thank-you, .about, .contact {
  background: #fff;
  border-radius: 36px 14px 24px 32px;
  box-shadow: 0 2px 20px rgba(36,65,87,0.08);
  margin-bottom: 48px;
  min-height: 240px;
  padding: 35px 24px 24px 24px;
}
.legal h1,.thank-you h1, .about h1 {
  margin-top: 7px;
}
.legal ul {
  margin-top: 18px;
}
.legal ul li {
  margin-bottom: 8px;
  color: #254157;
}
.address-details p {
  margin: 0 0 8px;
}
.map .map-embed {
  background: #F0F6FA;
  padding: 21px;
  border-radius: 14px 35px 12px 18px;
  margin-top: 10px;
}

/********************* TABLES **********************/
.price-table {
  margin-top: 22px;
}
.price-table table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px #A1B5C933;
  overflow: hidden;
}
.price-table td {
  padding: 13px 10px;
  color: #254157;
  border-bottom: 1px solid #F0F6FA;
}
.price-table tr:last-child td {
  border-bottom: none;
}

/******************** TESTIMONIALS *******************/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 25px 0 18px 0;
}
.testimonial-meta {
  color: #A1B5C9;
  font-size: 0.98rem;
  margin-top: 2px;
  font-style: italic;
}
.ratings-summary {
  margin-top: 16px;
  font-size: 1rem;
  color: #218ee9;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}

/*********** QUOTE/SUCCESS STORIES ***********/
.success-stories {
  margin-top: 30px;
  background: #FFDC35;
  border-radius: 24px 12px 20px 8px;
  box-shadow: 0 8px 24px #FFDC351a;
  padding: 16px 23px 18px;
  color: #254157;
}
.success-stories blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-style: italic;
  color: #254157;
  margin-bottom: 8px;
}
.success-stories span {
  color: #A1B5C9;
  font-size: .95rem;
}

/***************** BADGE & ACCENT ANIMATION ********************/
section.accent, .cta, .hero, .feature-item, .card {
  animation: accent-pop 0.8s cubic-bezier(.7,.22,.3,1.09) 0.16s both;
}
@keyframes accent-pop {
  0% { opacity:0; transform:scale(0.94) translateY(18px); }
  90% { opacity:.98; transform:scale(1.012) translateY(-6px); }
  100% { opacity:1; transform:scale(1) translateY(0); }
}

/* ===================== BUTTONS ======================== */
button, .cta-primary, input[type=button], input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1.5px 10px #FFD95C22;
  transition: background 0.18s, color 0.13s, box-shadow 0.15s, transform 0.14s;
}
button:focus,
.cta-primary:focus,
.mobile-menu-close:focus {
  outline: var(--focus-outline);
}

/***************** RESPONSIVE ALIGNMENTS *****************/
@media (max-width: 768px) {
  .content-grid, .features-grid, .card-container, .card-grid, .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column; align-items: flex-start;
    gap: 14px;
  }
}

/***************** SPACING, SHADOWS, EFFECTS *****************/
.section, section, .card, .feature-item {
  margin-bottom: 60px;
}
.card, .feature-item, .testimonial-card {
  box-shadow: var(--brand-shadow);
}
.card, .testimonial-card, .feature-item {
  border-radius: 18px;
}

/***************** MICRO-INTERACTIONS *****************/
.card, .feature-item, .testimonial-card {
  transition: transform 0.17s, box-shadow 0.19s;
  will-change: box-shadow, transform;
}
.card:hover, .feature-item:hover {
  transform: translateY(-7px) scale(1.02);
}

/******************** COOKIE CONSENT BANNER ********************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width:100vw;
  background: #fff;
  color: #254157;
  box-shadow: 0 -3px 18px #2541571a;
  z-index: 2200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 17px 25px 17px 15px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: cookie-slideup 0.50s cubic-bezier(.72,.22,.48,1.07) 0.14s both;
  flex-wrap: wrap;
}
@keyframes cookie-slideup {
  0% {opacity:0;transform: translateY(70px);}
  100% {opacity:1;transform: translateY(0);}
}
.cookie-banner button {
  margin-left:10px;
  margin-right:6px;
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 14px 7px 17px 7px;
}
.cookie-accept {
  background: #FFDC35;
  color: #254157;
  font-weight: 700;
  box-shadow: 0 1px 7px #FFDC3566;
}
.cookie-accept:hover {
  background: #fa6932;
  color: #fff;
}
.cookie-reject {
  background: #FF73A1;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 1px 7px #FF73A144;
}
.cookie-reject:focus, .cookie-reject:hover {
  background: #254157;
  color: #FF73A1;
}
.cookie-settings {
  background: #4EE2C1;
  color: #254157;
  font-weight: 700;
  box-shadow: 0 1px 7px #4EE2C144;
}
.cookie-settings:focus, .cookie-settings:hover {
  background: #63A7FF;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 10px 12px 10px;
    font-size: 0.95rem;
  }
  .cookie-banner button {
    margin-top: 8px;
    margin-left: 0;
  }
}

/***************** COOKIE MODAL ******************/
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #254157cc;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity:0;
  pointer-events:none;
  transition: opacity .23s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: #254157;
  border-radius: 22px;
  max-width: 380px;
  width: calc(100vw - 34px);
  box-shadow: 0 10px 44px #25415744, 0 3px 15px #ffdc3528;
  padding: 30px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  text-align:left;
  animation: cookie-pop .35s cubic-bezier(.82,.09,.42,1.1) 0.04s both;
}
@keyframes cookie-pop {
  from { transform: scale(0.83) translateY(30px); opacity:0.7; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  color: #fa6932;
}
.cookie-modal-list {
  margin: 16px 0 10px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  flex: 1;
  font-size: 1.03rem;
}
.cookie-toggle {
  width: 38px;
  height: 21px;
  border-radius: 20px;
  background: #FFDC35;
  position:relative;
  display: inline-block;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
  box-shadow: 0 1px 3px #25415777;
}
.cookie-toggle input:checked + .slider {
  left: 19px;
  background: #fa6932;
}
.cookie-category.essential label {
  color:#4EE2C1;
  font-weight:700;
}
.cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-content .cookie-close {
  background: #fa6932;
  color: #fff;
  border: none;
  font-size: 1.3rem;
  border-radius: 12px;
  width: 35px;
  height: 35px;
  align-self: flex-end;
  box-shadow: 0 2px 8px #fa693266;
  margin-bottom: 7px;
  cursor: pointer;
}
.cookie-modal-content .cookie-close:hover {
  background: #FFDC35;
  color: #254157;
}

/******************** HELPER / UTILITY CLASSES ********************/
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mb-0 {margin-bottom: 0!important;}
.mb-20 {margin-bottom: 20px!important;}
.mt-0 {margin-top: 0!important;}
.mt-24 {margin-top: 24px;}
.gap-8 {gap:8px;}
.gap-12 {gap:12px;}
.gap-20 {gap:20px;}

/*************** FOCUS RING ACCESSIBILITY ***************/
a:focus, button:focus, input:focus {
  outline: var(--focus-outline);
  outline-offset: 2px;
  z-index: 2;
}

/*************** SCROLLBAR STYLES ***************/
body::-webkit-scrollbar,
.section::-webkit-scrollbar {
  width: 11px;
  background: #F0F6FA;
}
body::-webkit-scrollbar-thumb {
  background: #A1B5C9;
  border-radius: 11px;
}

/**************** MORE FLEXBOX PATTERNS ***************/
.badges, .features-grid, .team-list, .footer-nav, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}

/**************** PRINT ***************/
@media print {
  header, footer, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff;
    color: #111;
  }
}
