/* ----------------------------------
   CSS RESET & NORMALIZE
   ---------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  background: #F8F8F8;
  color: #383958;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
a {
  color: #1B2040;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #C9B965;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 18px;
}
li + li {
  margin-top: 8px;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1B2040;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}
p {
  margin-bottom: 18px;
  font-size: 1.0625rem;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ----------------------------------
   LAYOUT & SECTIONS
   ---------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.text-section {
  align-items: flex-start;
  background: #FDF7FB;
  border-radius: 24px;
  padding: 32px 20px;
  box-shadow: 0 1px 12px rgba(120, 120, 140, 0.04);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(180, 186, 235, 0.07);
  margin-bottom: 20px;
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Utility Spacing */
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ----------------------------------
   NAVIGATION
   ---------------------------------- */
header {
  background: #F8F8F8;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0 2px 16px rgba(165,163,201,0.07);
  margin-bottom: 18px;
  padding-top: 12px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
.main-nav a {
  padding: 10px 8px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #383958;
  border-radius: 16px;
  transition: background 0.16s, color 0.13s;
}
.main-nav a.cta-btn {
  background: linear-gradient(90deg, #F9E7E7 0%, #F1F9F9 100%);
  color: #1B2040;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 18px;
  padding: 12px 26px;
  margin-left: 8px;
  box-shadow: 0 1px 9px rgba(201,185,101,0.12);
  border: 1px solid #E9E7D7;
  transition: background 0.23s, color 0.16s;
}
.main-nav a.cta-btn:hover,
.main-nav a.cta-btn:focus {
  background: #FEEECF;
  color: #C9B965;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #C9B965;
  background: #F4F2FF;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 16px;
  border-radius: 7px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: #C9B965;
  font-size: 2rem;
  border: none;
  border-radius: 11px;
  margin-left: auto;
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FCF8EE;
}

@media (max-width: 1024px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.98rem;
  }
  .main-nav a {
    padding: 8px 3px;
  }
}
@media (max-width: 850px) {
  .main-nav a:not(.cta-btn), .main-nav img {
    display: none;
  }
  .main-nav a.cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ----------------------------------
   MOBILE MENU OVERLAY (SLIDE-IN)
   ---------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(247,248,251,0.97);
  box-shadow: 0 4px 38px rgba(70,65,110, 0.07);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.44s cubic-bezier(.66,-0.01,.29,1.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 6px 0;
  background: none;
  color: #C9B965;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 11px;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FCF5D3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  padding: 12px 36px 36px 36px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 13px 0;
  color: #232341;
  border-radius: 16px;
  width: 100%;
  transition: background 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF6DC;
  color: #C9B965;
}

/* ----------------------------------
   HERO & SECTIONS
   ---------------------------------- */
.hero, section {
  margin-bottom: 60px;
  padding: 40px 0 20px 0;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: linear-gradient(145deg, #FCFBFF 60%, #EFF6FF 100%);
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(200, 180, 255, 0.07);
  padding: 20px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 350px;
}
.feature-item img {
  width: 33px;
  height: 33px;
  margin-bottom: 7px;
  border-radius: 9px;
  box-shadow: 0 0 0 5px #FFF6DC55;
  background: #fff8ee;
}
.feature-item h3 {
  font-size: 1.18rem;
  color: #1B2040;
  margin-bottom: 4px;
}
.feature-item p {
  color: #4C5469;
  font-size: 1.07rem;
}

/* ----------------------------------
   TEASER & SERVICE LISTS
   ---------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-teaser {
  background: #FFF;
  border-radius: 17px;
  box-shadow: 0 1px 10px rgba(180, 200, 201, 0.06);
  padding: 22px 20px 16px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 322px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
  border-left: 5px solid #F1F8FF;
  transition: box-shadow 0.14s, border-color 0.1s;
}
.service-teaser strong {
  color: #C9B965;
  font-size: 1.15rem;
  font-weight: 700;
}
.service-teaser:hover {
  box-shadow: 0 6px 22px rgba(201,185,101,0.10);
  border-left-color: #FDECBC;
}

.usp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.usp-badges span {
  background: #F6F1FC;
  color: #8879A5;
  border-radius: 10px;
  padding: 5px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 0 8px #F8EDFF75;
}

/* ----------------------------------
   CTA BUTTONS
   ---------------------------------- */
.cta-btn {
  background: linear-gradient(90deg, #FFEAE9 0%, #FBF2FA 100%);
  color: #1B2040;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  padding: 15px 38px;
  border: none;
  border-radius: 19px;
  box-shadow: 0 2px 11px rgba(201,185,101,0.13);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 16px;
  transition: background 0.17s, color 0.16s, box-shadow 0.18s;
  cursor: pointer;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FEEECF;
  color: #C9B965;
  box-shadow: 0 6px 22px rgba(201,185,101,0.22);
}

/* ----------------------------------
   TESTIMONIALS
   ---------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #FFFFFFCC;
  color: #22223A;
  border-radius: 17px;
  box-shadow: 0 3px 26px rgba(170,180,190,0.08);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 660px;
}
.testimonial-card p {
  color: #232341;
  font-size: 1.13rem;
  text-align: center;
  margin-bottom: 6px;
}
.testimonial-meta {
  color: #B29D70;
  font-size: 0.98rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-align: center;
}

/* Accessibility: High contrast for testimonial text */
.testimonial-card,
.testimonial-card p,
.testimonial-meta {
  background: #FFF;
  color: #1B2040;
}

/* ----------------------------------
   FOOTER
   ---------------------------------- */
footer {
  background: #FCFBFF;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -2px 16px rgba(220,205,255,0.07);
  margin-top: 48px;
  padding: 38px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}
footer img {
  height: 37px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.footer-nav a {
  color: #645484;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C9B965;
}
footer p {
  color: #443F6A;
  font-size: 0.97rem;
}

/* ----------------------------------
   COOKIE CONSENT BANNER
   ---------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FCF9F7;
  color: #393755;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  box-shadow: 0 -2px 24px rgba(212,190,92,0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 16px 14px 18px;
  z-index: 12000;
  transition: transform 0.3s cubic-bezier(.54,-0.03,.33,1.17), opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(200%);
  opacity: 0.1;
  pointer-events: none;
}
.cookie-banner .cookie-msg {
  flex: 1 1 320px;
  max-width: 600px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 13px;
  padding: 9px 16px;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn.accept {
  background: #FFEAC8;
  color: #1B2040;
}
.cookie-btn.reject {
  background: #F8E8ED;
  color: #775D8C;
}
.cookie-btn.settings {
  background: #EFF5FE;
  color: #716A98;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(0.95);
  background: #F6EDFF;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  background: #FFF9EB;
  color: #1B2040;
  box-shadow: 0 6px 44px rgba(162,145,88,0.11);
  border-radius: 30px;
  z-index: 13000;
  min-width: 310px;
  max-width: 98vw;
  padding: 34px 28px 24px 28px;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s, transform 0.32s cubic-bezier(.67,.01,.73,1.05);
  display: none;
}
.cookie-modal.open {
  display: block;
  opacity: 1;
}
.cookie-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
}
.cookie-modal .modal-close {
  background: none;
  color: #C9B965;
  border: none;
  font-size: 1.45rem;
  cursor: pointer;
  border-radius: 9px;
  padding: 3px 10px;
  transition: background 0.12s;
}
.cookie-modal .modal-close:focus, .cookie-modal .modal-close:hover {
  background: #FDEDDE;
}
.cookie-cat-list {
  margin-bottom: 18px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}
.cookie-cat-label {
  flex: 1 1 100px;
  font-size: 1.02rem;
  font-family: 'Montserrat', sans-serif;
  color: #46394B;
}
.cookie-toggle {
  width: 40px;
  height: 20px;
  border-radius: 10px;
  background: #E2E3FA;
  position: relative;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #C9B965;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2.2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0 1px 3px rgba(120,120,120,0.15);
  transition: left 0.16s cubic-bezier(.5,1.6,.73,1.3);
}
.cookie-toggle:checked::before {
  left: 22px;
}
.cookie-cat[disabled] .cookie-toggle {
  background: #E0E0E0;
  cursor: not-allowed;
}
.cookie-cat[disabled] .cookie-toggle::before {
  background: #CCC;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* ----------------------------------
   MISC ELEMENTS & TYPOGRAPHY
   ---------------------------------- */
section .container {
  padding-top: 0;
  padding-bottom: 0;
}

section h1, section h2 {
  background: linear-gradient(90deg, #F4F9F7 40%, #FCF6FF 100%);
  border-radius: 12px;
  display: inline-block;
  padding: 2px 14px;
}

ol {
  margin-bottom: 18px;
  padding-left: 1.45em;
}
ol li {
  margin-bottom: 9px;
}

/* icon-text pairs */
p img, .contact-info img {
  margin-right: 7px;
  margin-bottom: -3px;
  height: 22px;
  vertical-align: middle;
}

/* ----------------------------------
   RESPONSIVE FLEXBOX SPACING
   ---------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding: 0 10px;
  }
}
@media (max-width: 850px) {
  .section, section {
    margin-bottom: 48px;
    padding: 32px 10px;
  }
  .feature-grid, .service-list, .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .text-image-section,
  .feature-grid,
  .service-list,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }
  .main-nav {
    flex-direction: row;
    gap: 7px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .card, .feature-item, .service-teaser {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 18px 11px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .section, section {
    padding: 16px 2px;
  }
  .footer-nav {
    gap: 9px;
    font-size: 0.88rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 6px 8px 8px;
  }
  .cookie-modal {
    padding: 16px 9px 11px 12px;
    border-radius: 17px;
  }
}

/* ----------------------------------
   PASTEL "SOFT" PALETTE MODIFIERS
   ---------------------------------- */
body {
  background: linear-gradient(120deg, #FDF7FB 0%, #F4F9F7 49%, #F8F8F8 100%);
}
section, .section {
  background: #FDF7FBEE;
  box-shadow: 0 2px 17px rgba(255,216,220,0.055);
}
.card, .feature-item, .service-teaser {
  transition: box-shadow 0.18s, background 0.18s;
}
.card:hover, .feature-item:hover, .service-teaser:hover {
  background: #FFF9FC;
  box-shadow: 0 8px 18px rgba(222,180,218,0.13);
}

/****************************************
  DREAMY MICRO-INTERACTIONS & ANIMATION
*****************************************/
.cta-btn, .cookie-btn, .main-nav a, .footer-nav a {
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
}
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.13s, transform 0.17s;
}
.card:active, .feature-item:active, .testimonial-card:active {
  transform: scale(0.97);
  box-shadow: 0 3px 7px #ECD6A533;
}

@media (hover: hover) {
  .card:hover, .feature-item:hover, .service-teaser:hover {
    box-shadow: 0 10px 44px #E3CEDD44;
  }
}

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