/* RESET & BASE ------------------------------- */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F7FA;
  color: #13334C;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
header .primary-cta {
  color: #fff !important;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #13334C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EFC729;
}
ul, ol {
  margin-left: 18px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.39rem;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}
/* Brand color helpers */
:root {
  --brand-primary: #13334C;
  --brand-secondary: #EFC729;
  --brand-accent: #F7F7FA;
  --fun-cyan: #17D0C2;
  --fun-pink: #FF55AA;
  --fun-blue: #60A6FB;
  --fun-orange: #FF8547;
  --fun-lavender: #7250FF;
  --fun-green: #2BD05B;
}

/* CONTAINER & FLEX LAYOUTS ------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(23, 208, 194, 0.07);
}
.section:last-child {
  margin-bottom: 0;
}

/* HERO ------------------- */
.hero {
  margin-bottom: 60px;
  background: linear-gradient(92deg, #FF55AA 0%, #60A6FB 100%);
  color: #13334C;
  border-radius: 0 0 64px 0;
  box-shadow: 0 8px 24px 0 rgba(97,166,251,0.10);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 2.7rem;
  line-height: 1.13;
  margin-bottom: 10px;
  text-shadow: 1px 2px 12px rgba(19,51,76,0.07);
}
.hero .subheadline {
  font-size: 1.19rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #EFC729;
  margin-bottom: 22px;
}
.hero .primary-cta {
  margin-top: 10px;
  background: #EFC729;
  color: #13334C;
}
@media (max-width: 768px) {
  .hero .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero {
    border-radius: 0 0 30px 0;
  }
  h1 {
    font-size: 1.7rem;
  }
}

/* HEADER/NAVIGATION -------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(19,51,76,0.05);
  border-radius: 0 0 34px 0;
  padding: 0;
  z-index: 30;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px 12px 16px;
}
header img {
  height: 48px;
  margin-right: 18px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #13334C;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EFC729;
  color: #13334C;
}
.primary-cta,
.secondary-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  background: #13334C;
  color: #fff;
  transition: background .2s, color .2s, transform .16s;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(31, 89, 175, 0.06);
  margin-left: 10px;
  display: inline-block;
  position: relative;
}
.primary-cta:hover, .primary-cta:focus {
  background: #EFC729;
  color: #13334C;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}
.secondary-cta {
  background: #EFC729;
  color: #13334C;
  margin-top: 20px;
  font-weight: 700;
  border: 2px solid #13334C;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #13334C;
  color: #fff;
  border-color: #EFC729;
  transform: translateY(-2px) scale(1.04) rotate(2deg);
}

/* MOBILE MENU ------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #17D0C2;
  color: #13334C;
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 22px rgba(23, 208, 194, 0.09);
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FF55AA;
  color: #fff;
  outline: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 98vw;
  background: #fff;
  box-shadow: -2px 0 18px 0 rgba(19,51,76,0.13);
  z-index: 200;
  transform: translateX(110%);
  transition: transform 0.33s cubic-bezier(0.71,0,0.36,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  padding-top: 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FF55AA;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-right: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(255,85,170,0.11);
  margin-bottom: 14px;
  z-index: 111;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #17D0C2;
  color: #13334C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #13334C;
  padding: 9px 0;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EFC729;
  color: #13334C;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER ------------------------------------ */
footer {
  background: #13334C;
  color: #fff;
  padding: 44px 0 0 0;
  border-radius: 48px 0 0 0;
  margin-top: 70px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-bottom: 13px;
  justify-content: center;
}
.footer-nav a {
  color: #EFC729;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 6px 10px;
  border-radius: 5px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF55AA;
  background: rgba(255,255,255,0.10);
}
.footer-legal {
  margin-top: 8px;
  text-align: center;
  font-size: .98rem;
  color: #e0e0e6;
  padding-bottom: 18px;
}

/* FLEXBOX SECTIONS/MANDATORY LAYOUTS --------- */
.card-container, .feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.section, .about, .legal, .faq-section, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(255,85,170,0.11), 0 1.5px 6px rgba(19,51,76,0.08);
  border-left: 8px solid #17D0C2;
  position: relative;
  min-width: 0;
  transition: box-shadow .18s, border-left-color .12s;
  font-size: 1.1rem;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 44px rgba(255,85,170,0.18);
  border-left-color: #FF55AA;
}
.testimonial-name {
  font-size: 1rem;
  color: #FF55AA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-left: auto;
  letter-spacing: 0.01em;
  text-shadow: 1px 1px 6px rgba(255,85,170,0.06);
  white-space: nowrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F7FA;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(248, 176, 68, .08);
  padding: 24px 20px 20px 20px;
  min-width: 225px;
  max-width: 340px;
  flex: 1 1 230px;
  position: relative;
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 6px 28px 0 rgba(255,133,71,0.11);
  background: #FFF7E3;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 5px;
  animation: feature-pop 0.8s cubic-bezier(.7,1.6,.36,1) both;
}
@keyframes feature-pop {
  0%   {transform: scale(0.8) rotate(-11deg); opacity:0;}
  100% {transform: scale(1) rotate(0); opacity:1;}
}
.service-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 18px 0 rgba(23, 208, 194, 0.08);
  min-width: 210px;
  max-width: 330px;
  flex: 1 1 200px;
  padding: 23px 18px 25px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 6px solid #60A6FB;
  transition: border-color 0.18s, box-shadow .18s;
  position: relative;
}
.service-card:hover {
  border-color: #FF55AA;
  box-shadow: 0 8px 24px rgba(23,208,194,0.14);
}
.service-card h3 {
  color: #13334C;
  font-size: 1.18rem;
  margin-bottom: 5px;
}
.service-card strong {
  background: #EFC729;
  color: #13334C;
  border-radius: 8px;
  padding: 2px 9px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 5px;
  display: inline-block;
}

/***** FAQ ACCORDION *****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(23, 208, 194, 0.06);
  padding: 22px 20px;
  cursor: pointer;
  border-left: 6px solid #13334C;
  transition: box-shadow 0.2s, border-left-color 0.2s;
}
.faq-item:hover, .faq-item:focus {
  border-left-color: #17D0C2;
  box-shadow: 0 6px 24px 0 rgba(23, 208, 194, 0.16);
}
.faq-item h3 {
  font-size: 1.13rem;
  margin-bottom: 8px;
  color: #13334C;
}
.faq-item p {
  font-size: 1rem;
  color: #7250FF;
}

/***** CARDS & TEXTUALS *****/
.text-section {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 1.06rem;
  line-height: 1.76;
  color: #13334C;
  background: none;
  padding: 0;
}
.text-section ul {
  margin: 12px 0 12px 18px;
  padding: 0;
  list-style: disc;
}
.text-section li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/***** STEPS (ABLAUF) *****/
.step-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 14px;
}
.step {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 14px;
  min-width: 170px;
  max-width: 240px;
  box-shadow: 0 2px 18px 0 rgba(112, 160, 251, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-left: 6px solid #FF8547;
  transition: border-color 0.16s, box-shadow 0.16s;
  margin-bottom: 20px;
}
.step img {
  width: 38px;
  height: 38px;
  margin-bottom: 3px;
}
.step:hover {
  border-left: 6px solid #FF55AA;
  box-shadow: 0 6px 30px 0 rgba(255,85,170,0.09);
}

/***** CTA SECTION *****/
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta .primary-cta {
  margin: 0 auto;
  font-size: 1.16rem;
  min-width: 200px;
  letter-spacing: 0.04em;
  animation: cta-bounce 1.2s cubic-bezier(.7,1.6,.36,1) backwards;
}
@keyframes cta-bounce {
  0% { transform: scale(0.8); opacity: 0.6; }
  60% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); }
}

/***** LEGAL SECTIONS *****/
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 10px rgba(19,51,76,0.09);
  padding: 38px 18px 30px 18px;
}
.legal h1, .legal h2 {
  color: #13334C;
}
.legal a {
  color: #FF55AA;
}
.legal a:hover, .legal a:focus {
  color: #13334C;
  text-decoration: underline;
}

/***** THANK YOU PAGE *****/
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 40px 0;
}
.thank-you h1 {
  color: #FF55AA;
}
.thank-you p {
  font-size: 1.19rem;
  color: #13334C;
  margin-bottom: 32px;
}

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #13334C;
  color: #fff;
  z-index: 10001;
  padding: 23px 18px 18px 18px;
  box-shadow: 0 -3px 20px 0 rgba(31, 89, 175, 0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  animation: cookie-slide-up .6s cubic-bezier(.36,.4,0,.99);
}
@keyframes cookie-slide-up { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-consent-banner-message {
  flex: 2 1 320px;
  font-size: 1.02rem;
}
.cookie-button {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  padding: 10px 19px;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  margin-right: 10px;
  font-size: 1rem;
  background: #EFC729;
  color: #13334C;
  box-shadow: 0 2px 10px rgba(239,199,41,0.09);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.13s;
}
.cookie-button:last-child {
  margin-right: 0;
}
.cookie-button.accept {
  background: #17D0C2;
  color: #13334C;
}
.cookie-button.reject {
  background: #FF55AA;
  color: #fff;
}
.cookie-button:focus, .cookie-button:hover {
  background: #FF55AA;
  color: #fff;
  transform: scale(1.06);
}
.cookie-button.settings {
  background: #13334C;
  color: #EFC729;
  border: 2px solid #EFC729;
}
.cookie-button.settings:hover, .cookie-button.settings:focus {
  background: #FF8547;
  color: #fff;
  border-color: #FF55AA;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 15px;
    padding: 13px 8px;
  }
  .cookie-consent-banner-message {
    font-size: 0.97rem;
  }
}

.cookie-consent-modal {
  display: none;
  position: fixed;
  z-index: 11000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(19,51,76,0.75);
  justify-content: center;
  align-items: center;
}
.cookie-consent-modal.open {
  display: flex;
  animation: cookie-modal-fadein 0.4s cubic-bezier(0.44,.99,.36,1);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-consent-modal-content {
  background: #fff;
  color: #13334C;
  border-radius: 18px;
  padding: 34px 23px 27px 23px;
  min-width: 298px;
  max-width: 370px;
  box-shadow: 0 8px 48px rgba(239,199,41,0.12), 0 2.5px 13px rgba(19,51,76,0.13);
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: cookie-modal-pop 0.35s cubic-bezier(.5, 1.5, .6, 1) both;
}
@keyframes cookie-modal-pop {
  0% { transform: scale(0.7) translateY(23px); opacity: 0.66; }
  100% { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal-title {
  font-size: 1.31rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #13334C;
  font-weight: 700;
}
.cookie-modal-category {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal-category-toggle {
  width: 36px;
  height: 20px;
  border-radius: 15px;
  background: #17D0C2;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  flex-shrink: 0;
  border: none;
  outline: none;
  margin-right: 8px;
}
.cookie-modal-category-toggle.off {
  background: #ccc;
}
.cookie-modal-category-toggle .toggle-knob {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s;
}
.cookie-modal-category-toggle.on .toggle-knob {
  left: 18px;
}
.cookie-modal-desc {
  font-size: 0.98rem;
  color: #13334C;
}
.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: #FF55AA;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1.12rem;
  padding: 7px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  align-self: flex-end;
  transition: background .14s, color .12s;
  margin-bottom: 0;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #13334C;
  color: #EFC729;
}

/* RESPONSIVE (MOBILE-FIRST) ------------------ */
@media (max-width: 900px) {
  .footer-nav {
    gap: 12px;
    font-size: 0.98rem;
  }
  .main-nav a, .main-nav .primary-cta {
    font-size: .99rem;
    padding: 8px 8px;
  }
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .hero .container, .section .container, .legal .container {
    padding-right: 5px; padding-left: 5px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .service-list, .feature-grid, .step-timeline {
    gap: 13px;
  }
  .card-container, .content-grid {
    gap: 10px;
  }
}
@media (max-width: 670px) {
  .footer-nav {
    flex-direction: column;
    gap: 0.5em;
    align-items: flex-start;
    padding-left: 10px;
  }
  header .container {
    flex-direction: row;
    gap: 4px;
    padding: 10px 6px;
  }
  .section, .about, .legal, .faq-section, .contact {
    padding: 17px 4px;
    margin-bottom: 32px;
    border-radius: 8px;
  }
  .card, .service-card, .feature-item, .testimonial-card, .faq-item {
    margin-bottom: 14px;
    min-width: 140px;
    padding-left: 7px;
    padding-right: 7px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .cookie-consent-modal-content {
    min-width: 90vw;
    max-width: 97vw;
    padding: 10vw 2vw 8vw 2vw;
  }
}

/* ANIMATIONS & INTERACTIONS ----------------- */
button, .primary-cta, .secondary-cta, .cookie-button, .mobile-menu-close {
  outline: none;
  transition: transform 0.13s, box-shadow 0.18s, background 0.16s, color 0.16s;
}
button:focus,
.primary-cta:focus,
.secondary-cta:focus,
.cookie-button:focus,
.mobile-menu-close:focus {
  box-shadow: 0 0 0 3px #EFC72988;
}

/* [SCROLLBAR: fun color for playful design] */
::-webkit-scrollbar {
  width: 11px;
  background: #F7F7FA;
}
::-webkit-scrollbar-thumb {
  background: #FF55AA;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #17D0C2;
}

/* PLAYFUL EXTRAS: Colorful SVG icon highlight backgrounds */
.feature-item img, .step img {
  background: linear-gradient(135deg, #EFC729 0%, #17D0C2 100%);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 14px rgba(255,85,170,0.08);
  background-size: 200% 200%;
}

/* FUN FONTS for playful, dynamic look */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: none;
  font-weight: 800;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.17rem;
  letter-spacing: 0.025em;
}
.footer-nav a, .main-nav a, .mobile-nav a, .cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* UTILITY CLASSES (spacing, flex) ----------- */
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 22px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.d-flex { display: flex !important; }
.flex-row { flex-direction: row !important; }
.flex-col { flex-direction: column !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }

/* HIDE [JS] UTILITY FOR MENUS/MODALS -------- */
[hidden], .hidden { display: none !important; }
