/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F5F6FA;
  color: #2B3A55;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #2B3A55;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #B18452;
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #2B3A55;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; }
p   { font-size: 1.05rem; margin-bottom: 16px; }

/* TYPOGRAPHY SCALE */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* BRAND COLORS & PASTEL PALETTE */
:root {
  --primary: #2B3A55;
  --secondary: #FFFFFF;
  --accent: #B18452;
  --soft-bg: #F5F6FA;
  --pastel-blue: #EEF2FB;
  --pastel-peach: #FFF5E6;
  --pastel-pink: #FDEFF2;
  --pastel-green: #E8FCF2;
  --pastel-yellow: #FFFBEA;
  --border: #E1E7EF;
  --shadow-1: 0 4px 24px rgba(43,58,85,0.09);
  --shadow-2: 0 2px 8px rgba(177,132,82,0.08);
  --text-dark: #2B3A55;
  --text-light: #6680A3;
}

body {
  background: linear-gradient(120deg, #EEF2FB 0%, #FFF5E6 100%);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

/* HEADER NAVIGATION */
header {
  width: 100%;
  background: rgba(255,255,255, 0.8);
  box-shadow: 0 1px 12px rgba(43,58,85,0.06);
  position: relative;
  z-index: 100;
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  justify-content: flex-start;
}
.main-navigation img {
  height: 44px;
  margin-right: 20px;
}
.main-navigation a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2B3A55;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.main-navigation a:hover,
.main-navigation a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}
.main-navigation .cta-primary {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-2);
  padding: 10px 26px;
  border-radius: 30px;
  transition: background 0.2s, transform 0.15s;
}
.main-navigation .cta-primary:hover,
.main-navigation .cta-primary:focus {
  background: #815f36;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 12px;
  z-index: 201;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
}
.mobile-menu-toggle:hover {
  background: #b18470;
}

/* MOBILE NAVIGATION DRAWER */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 84vw;
  max-width: 390px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 32px rgba(43,58,85,0.14);
  z-index: 2000;
  transform: translateX(105%);
  display: flex;
  flex-direction: column;
  padding: 32px 20px 20px 32px;
  transition: transform 0.33s cubic-bezier(.5,.18,.17,.95);
  will-change: transform;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: var(--primary);
  font-size: 2rem;
  border: none;
  position: absolute;
  top: 18px;
  right: 28px;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.12rem;
  padding: 10px 10px;
  border-radius: 8px;
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: background 0.14s, color 0.14s;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .main-navigation {
    gap: 14px;
    font-size: 0.97rem;
  }
}
@media (max-width: 830px) {
  .main-navigation {
    font-size: 0.92rem;
    gap: 8px;
    padding-left: 2px;
  }
  .main-navigation img {
    margin-right: 10px;
    height: 38px;
  }
}
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* GLOBAL CALLOUT BUTTON */
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  background: var(--accent);
  color: #fff;
  border-radius: 30px;
  padding: 11px 34px;
  margin-top: 14px;
  box-shadow: var(--shadow-2);
  transition: background 0.16s, color 0.16s, transform 0.13s;
  cursor: pointer;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #a6733b;
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}

/* LAYOUT SPACING (MANDATORY PATTERNS) */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 20px;
  background: var(--pastel-blue);
  box-shadow: var(--shadow-1);
  position: relative;
  padding: 30px 24px 24px 24px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 40px 0 rgba(43,58,85,0.12);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}
.content-grid, .card-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--pastel-pink);
  box-shadow: var(--shadow-1);
  color: #222;
  min-width: 0;
  border: 1px solid var(--border);
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-content p {
  color: #2B3A55;
  font-size: 1.06rem;
  line-height: 1.6;
}
.testimonial-content span {
  margin-top: 8px;
  font-style: italic;
  color: #6680A3;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO / INTRO SECTIONS */
.hero-section, .thank-you-section {
  background: linear-gradient(100deg, #EEF2FB 60%, #FDEFF2 100%);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 4px 20px rgba(200,180,211,0.05);
  position: relative;
  margin-bottom: 50px;
  padding-top: 54px;
  padding-bottom: 60px;
}
.hero-section h1 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.hero-section p {
  font-size: 1.17rem;
  color: #6680A3;
  margin-bottom: 30px;
  max-width: 520px;
}

/* FEATURES (INDEX) & TEAM */
.features-section ul,
.about-section ul,
.tipps-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-section ul li,
.about-section ul li,
.tipps-section ul li {
  background: var(--pastel-green);
  border-radius: 18px;
  padding: 32px 26px 22px 20px;
  min-width: 200px;
  min-height: 180px;
  box-shadow: var(--shadow-2);
  line-height: 1.5;
  flex: 1 1 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  transition: box-shadow 0.17s, transform 0.13s;
}
.features-section ul li:hover {
  box-shadow: 0 8px 30px 0 rgba(43,58,85,0.13);
  transform: scale(1.03) translateY(-2px);
  z-index: 2;
}
.features-section ul img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.features-section ul h3 {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 6px;
}

/* SERVICES (INDEX) */
.services-section .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.service-card {
  background: var(--pastel-yellow);
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  padding: 26px 22px 22px 22px;
  flex: 1 1 230px;
  max-width: 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border: 1px solid var(--border);
  transition: box-shadow 0.19s, transform 0.14s;
}
.service-card:hover {
  box-shadow: 0 9px 30px 0 rgba(177,132,82,0.14);
  transform: translateY(-3px) scale(1.025);
}
.service-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}
.price-tag {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 6px 16px;
  border-radius: 22px;
  margin-top: 22px;
  align-self: flex-end;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

/* TEAM LIST */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  align-items: flex-start;
  justify-content: flex-start;
}
.team-member {
  background: var(--pastel-blue);
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  padding: 20px 18px 17px 18px;
  min-width: 150px;
  flex: 1 1 180px;
  max-width: 240px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.team-member h3 {
  font-size: 1.14rem;
  margin-bottom: 7px;
  color: var(--primary);
}
.team-member p {
  font-size: 0.97rem;
  color: #6280A1;
}

/* SECTION ALTERNATING BG */
.about-section,
.benefits-section,
.about-philosophy-section,
.calculator-section,
.privacy-policy-section,
.gdpr-section,
.terms-section,
.cookie-policy-section {
  background: var(--pastel-peach);
  border-radius: 32px;
  box-shadow: 0 1px 14px rgba(177,132,82,0.07);
}

/* FAQ & STEPS */
.faq-section dl, .steps-section ol {
  margin-top: 12px;
}
.faq-section dt {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-top: 16px;
  margin-bottom: 4px;
  font-size: 1.11rem;
}
.faq-section dd {
  font-size: 1rem;
  color: #49608E;
  margin-bottom: 10px;
  margin-left: 10px;
}
.steps-section ol {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.steps-section ol li {
  display: flex;
  align-items: flex-start;
  background: var(--pastel-green);
  border-radius: 12px;
  padding: 18px 16px;
  gap: 16px;
  margin-bottom: 0;
  font-size: 1rem;
  color: #41607D;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
}
.steps-section ol img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

/* CONTACT, ADDRESS, MAP SNIPPET */
.contact-section ul {
  margin-bottom: 16px;
}
.contact-section ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #54698E;
}
.map-snippet {
  background: var(--pastel-blue);
  padding: 18px 18px 10px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(43,58,85,0.06);
  margin-top: 14px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 -4px 32px 0 rgba(200,180,82,0.13);
  border-top: 2px solid var(--accent);
  padding: 32px 14px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.37s cubic-bezier(.6,0,.25,1), opacity 0.3s;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  font-size: 1rem;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #41607D;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 22px;
  background: var(--pastel-blue);
  border: 1px solid var(--border);
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  transition: background 0.17s, color 0.15s;
  cursor: pointer;
}
.cookie-banner button.accept {
  background: var(--accent);
  color: #fff;
  border: none;
  margin-right: 8px;
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: #a6733b;
  color: #fff;
}
.cookie-banner button.reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #fde3ea;
  color: #2B3A55;
}
.cookie-banner button.settings {
  background: var(--pastel-green);
  color: var(--accent);
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: #d5f6e4;
  color: #795224;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,58,85,0.13);
  z-index: 3050;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  display: flex;
  pointer-events: auto;
}
.cookie-modal {
  min-width: 310px;
  max-width: 96vw;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 36px rgba(43,58,85,0.19);
  padding: 34px 30px 28px 30px;
  z-index: 3080;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  position: relative;
  animation: fadeInModal 0.27s cubic-bezier(.53,.16,.18,1);
}
@keyframes fadeInModal {
  0% { transform: translateY(32px) scale(0.95); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--accent);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 10px 0;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 32px;
  height: 18px;
  border-radius: 11px;
  background: #E1E7EF;
  position: relative;
  outline: none;
  transition: background 0.14s;
  cursor: pointer;
  margin-right: 4px;
}
.cookie-toggle:checked {
  background: var(--accent);
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(43,58,85,0.07);
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.14s;
}
.cookie-toggle:checked::before {
  left: 15px;
}
.cookie-category .always-on {
  display: inline-block;
  font-size: 0.98rem;
  color: #6680A3;
  margin-left: 5px;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 2px solid #E1E7EF;
  margin-top: 60px;
}
.footer-content.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 32px 14px 20px 14px;
}
.footer-content img {
  width: 52px;
  height: 52px;
}
.footer-navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-navigation a {
  color: #6680A3;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: background 0.16s, color 0.16s;
}
.footer-navigation a:hover,
.footer-navigation a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}
.footer-address {
  margin-left: auto;
  color: #9DB2D9;
  font-size: 0.98rem;
  font-style: italic;
}

@media (max-width: 860px) {
  .footer-content.container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    text-align: left;
  }
  .footer-address {
    margin-left: 0;
  }
}

/* CTA SECTIONS (BOTTOM BANNERS) */
.cta-section {
  background: var(--pastel-pink);
  border-radius: 30px;
  box-shadow: var(--shadow-2);
}
.cta-section h2 {
  color: var(--primary);
}
.cta-section p {
  color: #596c90;
}

/* MODERN LISTS */
ul.checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
ul.checklist li {
  background: var(--pastel-yellow);
  color: #41607D;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(43,58,85,0.06);
}

/* QUOTES */
blockquote {
  background: var(--pastel-peach);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 1px 8px rgba(43,58,85,0.10);
  color: #2B3A55;
  font-size: 1.17rem;
  line-height: 1.6;
  margin: 20px 0;
}

/* ANIMATION UTILITIES */
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: none; }
}

/* MICRO-INTERACTIONS */
button, .cta-primary, input[type="submit"] {
  transition: background 0.14s, box-shadow 0.14s, color 0.12s, transform 0.13s;
}
button:active, .cta-primary:active, input[type="submit"]:active {
  transform: scale(0.98);
}

/* RESPONSIVE --- MOBILE-FIRST */
@media (max-width: 1100px) {
  .container,
  .footer-content.container {
    max-width: 96vw;
    padding: 0 12px;
  }
  .content-wrapper {
    max-width: 98vw;
    padding: 0;
  }
  .features-section ul,
  .services-section .services-grid,
  .team-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .section, section {
    padding: 28px 5vw;
    margin-bottom: 34px;
  }
  .hero-section, .thank-you-section {
    padding-top: 32px;
    padding-bottom: 40px;
    border-radius: 0 0 20px 20px;
    margin-bottom: 32px;
  }
  .content-grid, .card-grid, .team-list {
    flex-direction: column;
    gap: 14px;
  }
  .features-section ul,
  .about-section ul,
  .tipps-section ul {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .team-list {
    flex-direction: column;
    gap: 12px;
  }
  .testimonials-section .testimonial-card {
    flex-direction: column;
    gap: 11px;
    min-width: 0;
  }
  .services-section .services-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-content.container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-navigation {
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 2vw;
  }
  .hero-section h1, h1 {
    font-size: 1.37rem;
    word-break: break-word;
  }
  .card, .service-card, .team-member {
    padding: 18px 8px 14px 8px;
    min-width: 0;
    max-width: none;
  }
  .section, section {
    padding: 16px 2vw;
    margin-bottom: 22px;
  }
}

/* MISC UTILS */
.sr-only {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
::selection {
  background: #C49A6C22;
}
::-webkit-scrollbar {
  width: 7px;
  background: var(--pastel-pink);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-blue);
  border-radius: 4px;
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 1px 6px rgba(200,180,82,0.03);
  margin-bottom: 16px;
  transition: border 0.13s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(181,132,82,0.09);
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ENSURE NO GRID */
/* --- END of style --- */
