/* =======================
   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 {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F8F6FA;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #0A2740;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
ul, ol {
  list-style: none;
}
a {
  color: #5AB9A8;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #0A2740;
}
:root {
  --primary: #0A2740;
  --secondary: #5AB9A8;
  --accent: #F8EAD7;
  --pastel-blue: #C3DEF3;
  --pastel-green: #D8F9E7;
  --pastel-pink: #FAE5F1;
  --pastel-yellow: #FFF7D6;
  --pastel-mint: #AAF1E2;
}

/*===============================
       TYPOGRAPHY
===============================*/
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}
p, li, .footer-copy, .footer-tagline, .testimonial-meta, .note {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
}
strong, b {
  font-weight: 600;
}
.subheadline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/*===============================
         STRUCTURE & LAYOUT
===============================*/
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Cards, Grid Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(90, 185, 168, 0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  min-width: 260px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(90, 185, 168, 0.16);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(10,39,64, 0.10);
  font-size: 1.05rem;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(90,185,168,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*===============================
        HEADER/NAVIGATION
===============================*/
header {
  background: var(--accent);
  box-shadow: 0 1px 10px 0 rgba(200,200,200,0.05);
  padding: 0;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 16px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 1rem;
  position: relative;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.main-nav .cta-primary {
  background: var(--secondary);
  color: #fff;
  padding: 7px 22px;
  border-radius: 18px;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(90,185,168,0.09);
  transition: background 0.2s, color 0.2s;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: var(--primary);
  color: #fff;
  outline: none;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
  background: rgba(90,185,168,0.06);
}
.mobile-menu-toggle {
  background: var(--secondary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 8px 17px 6px 12px;
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px 0 rgba(90,185,168,0.13);
  z-index: 31;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary);
}

/*===============================
   MOBILE NAVIGATION OVERLAY
===============================*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 99;
  transform: translateX(102%);
  transition: transform 0.33s cubic-bezier(.69,.01,.19,.99);
  display: flex;
  flex-direction: column;
  padding: 0 0 58px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.3rem;
  padding: 16px 30px 10px 10px;
  cursor: pointer;
  z-index: 101;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding: 30px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 500;
  border-radius: 10px;
  padding: 11px 0 11px 5px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-mint);
  color: var(--secondary);
}
.mobile-menu {
  box-shadow: 0 0 22px 7px rgba(90,185,168,0.08);
}

/*==================================
      HERO SECTION & LANDING CTA
==================================*/
.hero {
  background: linear-gradient(120deg, var(--pastel-blue) 60%, var(--pastel-mint) 100%);
  min-height: 325px;
  padding-bottom: 50px;
  border-radius: 0 0 88px 0;
  box-shadow: 0 10px 48px 0 rgba(90,185,168,0.06);
}
.hero .container {
  justify-content: center;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 52px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 22px;
  margin-top: 12px;
  box-shadow: 0 2px 12px 0 rgba(90,185,168,0.10);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(10,39,64,0.13);
  outline: none;
}

/*===============================
      FEATURES & CARDS
===============================*/
.features {
  background: var(--pastel-blue);
  border-radius: 40px;
  box-shadow: 0 4px 32px 0 rgba(162,211,255,0.13);
}
.features .content-wrapper > h2 {
  margin-bottom: 18px;
  text-align: center;
}
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 28px;
  margin-top: 10px;
}
.feature {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(162,211,255,0.11);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.feature:hover {
  box-shadow: 0 8px 32px 0 rgba(90,185,168,0.17);
}
.features-benefits {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 12px;
}

/*===============================
        ABOUT & VALUES
===============================*/
.about-short, .about, .values, .certifications {
  background: var(--pastel-pink);
  border-radius: 40px;
  box-shadow: 0 2px 24px 0 rgba(250,229,241,0.09);
}
.usps, .value-list, .certification-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.partner-logos {
  display: flex;
  gap: 30px;
  margin-top: 15px;
  align-items: center;
}
.partner-logos img {
  height: 42px;
  filter: grayscale(0.3) opacity(0.75);
  transition: filter 0.15s;
}
.partner-logos img:hover {
  filter: grayscale(0) opacity(1);
}

/*===============================
         TESTIMONIALS
===============================*/
.testimonials {
  background: var(--pastel-yellow);
  border-radius: 40px;
  box-shadow: 0 4px 32px 0 rgba(255,247,214,0.14);
}
.testimonial-card {
  background: #fff;
  color: #21233d;
  border-left: 6px solid var(--secondary);
  padding: 28px 26px 20px 22px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(90,185,168,0.10);
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 500;
  color: #33334b;
  font-size: 1.08em;
  margin-bottom: 10px;
}
.testimonial-meta {
  color: #54707c;
  font-size: 0.97em;
  font-weight: 500;
}

/*===============================
         CONTACT & FOOTER
===============================*/
footer {
  background: var(--accent);
  box-shadow: 0 -2px 12px 0 rgba(90,185,168,0.08);
  font-size: 1rem;
  padding-top: 44px;
  padding-bottom: 18px;
}
.footer-main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 10px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.footer-brand img {
  height: 40px;
}
.footer-tagline {
  color: var(--primary);
  font-size: 1.02rem;
  margin-top: 6px;
  margin-bottom: 4px;
  font-weight: 500;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--secondary);
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.96rem;
  color: var(--primary);
  margin-bottom: 5px;
}
.footer-contact img {
  width: 18px; height: 18px;
}
.footer-copy {
  font-size: 0.97rem;
  color: #7a898f;
  margin-top: 30px;
  text-align: left;
}

/*===============================
      CONTACT PAGE/CTA
===============================*/
.contact-cta, .help-contact, .short-info {
  background: var(--pastel-mint);
  border-radius: 40px;
  box-shadow: 0 2px 24px 0 rgba(170,241,226,0.10);
}
.contact-cta .content-wrapper,
.short-info .content-wrapper,
.help-contact .content-wrapper {
  align-items: center;
  text-align: center;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.contact-details img {
  width: 20px; height: 20px;
  vertical-align: middle;
}
.note {
  color: #54707c;
  font-size: 0.96rem;
  margin-top: 14px;
}

/*===============================
     PRICING TABLE & LISTS
===============================*/
.price-table {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 24px;
  margin-top: 7px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(90,185,168,0.12);
}
.price-table th {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04em;
  font-weight: 600;
  padding: 13px 16px;
}
.price-table td {
  background: #fff;
  color: var(--primary);
  font-size: 1.03em;
  font-weight: 400;
  padding: 13px 16px;
  border-bottom: 1px solid #f3efef;
}
.price-table tr:last-child td {
  border-bottom: none;
}

/*===============================
           PROCESS STEPS
===============================*/
.process {
  background: var(--pastel-blue);
  border-radius: 40px;
  box-shadow: 0 2px 22px 0 rgba(195,222,243,0.10);
}
.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
}
.steps-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #fff;
  border-radius: 18px;
  padding: 12px 20px;
  font-size: 1.06rem;
  color: var(--primary);
  box-shadow: 0 2px 10px 0 rgba(90,185,168,0.08);
  transition: box-shadow 0.13s;
}
.steps-list li img {
  width: 21px;
  height: 21px;
}
.steps-list li:hover {
  box-shadow: 0 4px 17px 0 rgba(90,185,168,0.17);
}

/*==============================
         BENEFIT GRID
==============================*/
.benefits, .benefit-grid {
  background: var(--pastel-pink);
  border-radius: 28px;
  box-shadow: 0 2px 10px 0 rgba(250,229,241,0.09);
  padding: 35px 0 10px 0;
}
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  justify-content: space-between;
}
.benefit {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 8px 0 rgba(90,185,168,0.07);
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 250px;
  padding: 18px 18px 12px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s;
}
.benefit:hover {
  box-shadow: 0 6px 18px 0 rgba(90,185,168,0.12);
}

/*===============================
  Stadt/Region: Service Areas
===============================*/
.service-areas, .special-services {
  background: var(--pastel-green);
  border-radius: 40px;
  box-shadow: 0 2px 18px 0 rgba(216,249,231,0.13);
}
.map-snippet {
  margin: 18px 0 20px 0;
  text-align: center;
}
.map-snippet img {
  width: 80px;
  height: 80px;
}
.neighborhoods-list, .services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.03em;
}

/*===============================
           LEGAL TEXTS
===============================*/
.legal {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 1px 10px 0 rgba(90,185,168,0.05);
}
.text-section {
  margin-top: 8px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section h2 {
  font-size: 1.17rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 16px;
  margin-bottom: 2px;
}

/*===============================
          FAQ LISTS
===============================*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(90,185,168,0.07);
  padding: 14px 20px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-size: 1.01rem;
  line-height: 1.56;
  margin-bottom: 10px;
}

/*===============================
         THANK YOU SECTION
===============================*/
.thank-you {
  background: var(--pastel-yellow);
  border-radius: 40px;
  box-shadow: 0 4px 32px 0 rgba(255,247,214,0.14);
}
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}

/*===============================
      COOKIE CONSENT BANNER
===============================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 5100;
  background: #fff;
  box-shadow: 0 -1px 18px 0 rgba(90,185,168,0.18);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 20px;
  transition: transform 0.28s;
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  color: var(--primary);
  font-size: 1.01rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-right: 18px;
  max-width: 700px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 15px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--primary);
  color: #fff;
  outline: none;
}
.cookie-decline {
  background: #dedede;
  color: var(--primary);
}
.cookie-decline:hover, .cookie-decline:focus {
  background: #bfcbe4;
  color: var(--primary);
  outline: none;
}
.cookie-settings {
  background: var(--pastel-mint);
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--accent);
  color: var(--secondary);
  outline: none;
}

/*===============================
    COOKIE PREFERENCES MODAL
===============================*/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5200;
  background: rgba(10, 39, 64, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 97vw;
  width: 370px;
  box-shadow: 0 2px 40px 0 rgba(90, 185, 168, 0.16);
  padding: 32px 24px 23px 24px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: cookie-modal-anim 0.32s cubic-bezier(.32,1.22,.11,.93);
}
@keyframes cookie-modal-anim {
  from { opacity: 0; transform: translateY(50px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
}
.cookie-category.always-enabled label {
  font-weight: 700;
  opacity: 0.7;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .modal-actions button {
  padding: 9px 20px;
  font-size: 1rem;
  border-radius: 13px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 15px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 2;
  transition: color 0.15s;
}
.cookie-modal-close:hover {
  color: var(--secondary);
}

/*===============================
   SELECTORS FOR FLEX CLASSES
===============================*/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/*===============================
        RESPONSIVE DESIGN
===============================*/
@media (max-width: 1120px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid, .benefit-grid, .partner-logos {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.45rem; }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero .container {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .benefit-grid, .steps-list {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-main {
    flex-direction: column;
    gap: 10px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 8px;
  }
  .mobile-menu {
    padding-bottom: 42px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1, .h1 { font-size: 1.3rem; }
  h2, .h2 { font-size: 1.08rem; }
  .container { padding: 0 3px; }
  .card { padding: 16px 8px; }
  .testimonial-card, .faq-list li {
    padding: 11px 7px;
    font-size: 0.98rem;
  }
  .hero {
    border-radius: 0 0 40px 0;
    min-height: 180px;
  }
  .section, section {
    padding: 18px 2px;
    margin-bottom: 32px;
  }
  .benefit, .feature {
    min-width: 0; max-width: 99vw;
    padding: 12px 7px;
  }
  .footer-brand img { height: 34px; }
  .footer-tagline { font-size: 0.9rem; }
}

/*===============================
     SMOOTH INTERACTIONS
===============================*/
.cta-primary, .cookie-banner button, .main-nav a, .feature, .benefit, .faq-list li, .testimonial-card, .steps-list li, .card, .mobile-nav a {
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.16s;
}
.cta-primary:active, .main-nav .cta-primary:active {
  transform: scale(0.98);
}
.feature:active, .benefit:active, .testimonial-card:active {
  transform: scale(0.99);
}

::-webkit-input-placeholder { color: #bfcbe4; }
::-moz-placeholder { color: #bfcbe4; }
:-ms-input-placeholder { color: #bfcbe4; }
::placeholder { color: #bfcbe4; }

/* FOCUS OUTLINES for accessibility */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}

/* User selection, slightly softened for dreamy feel */
::selection {
  background: var(--pastel-pink);
  color: var(--primary);
}

/* Hide elements visually */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
