/* ==========================================================
   CSS RESET & BASE STYLES (Normalize & Reset)
   ========================================================== */
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font: inherit; font-size: 100%; vertical-align: baseline; box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #FAFAFA;
  color: #3A3740;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%; height: auto; display: block;
}
a {
  color: #548CA8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #568e5e;
  text-decoration: underline;
}

button {
  background: none; border: none; outline: none; font-family: inherit;
  cursor: pointer; color: inherit; font-size: inherit;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
ul, ol {
  margin-bottom: 1em; padding-left: 1.5em;
}
table {
  border-collapse: collapse; width: 100%; margin-bottom: 1.5em;
}
th, td {
  padding: 10px 14px; min-width: 72px;
}
th {
  background: #ECECEC; color: #353B47; font-weight: 700;
}
td {
  background: #FFF9F6;
}

hr {
  border: none; border-top: 1px solid #e8e5ef; margin: 32px 0;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

/* ==========================================================
   CSS VARIABLES / SOFT PASTEL PALETTE (with fallback)
   ========================================================== */
:root {
  --color-primary: #353B47;
  --color-secondary: #8CA1A5;
  --color-accent: #F0EDE5;
  --color-pastel-pink: #F9CCD4;
  --color-pastel-mint: #D6ECE3;
  --color-pastel-blue: #C9E4F6;
  --color-pastel-yellow: #FFF5BD;
  --color-pastel-lavender: #E8DEFB;
  --color-pastel-peach: #FFE6DE;
  --color-bg-gradient: #FBF9FD;
  --color-cta: #ECE1FC;
}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--color-bg-gradient, #FBF9FD);
  color: var(--color-primary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; font-weight: 600; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 500; margin-bottom: 20px; }
h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 16px; }
h4 { font-size: 1.25rem; font-weight: 400; margin-bottom: 12px; }
h5, h6 { font-size: 1.125rem; font-weight: 400; margin-bottom: 10px; }
p, li, dt, dd {
  color: #48435b;
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
}
.subtitle, .section > h2 { color: var(--color-secondary); font-weight: 400; letter-spacing: 0.02em; }

.text-section {
  max-width: 750px;
  margin: 0 auto;
}

/* Spacing for sections and containers */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(145deg, var(--color-pastel-peach) 0%, #FFFFFF 100%);
  border-radius: 24px;
  box-shadow: 0 2px 20px 0 rgba(230, 228, 245, 0.13);
}
.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
}

/* Main nav and header */
header {
  padding: 0;
  background: linear-gradient(90deg, var(--color-pastel-blue) 0%, var(--color-pastel-mint) 100%);
  position: relative;
  box-shadow: 0 1px 10px 0 rgba(124, 124, 124, 0.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 20px;
  background: none;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 0 8px;
}
.main-nav a {
  font-family: 'Oswald', sans-serif;
  background: none;
  color: var(--color-primary);
  font-size: 1.08rem;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-pastel-blue);
  color: #29677b;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, var(--color-pastel-pink) 0%, var(--color-pastel-blue) 100%);
  color: var(--color-primary);
  border-radius: 28px;
  font-family: 'Oswald', sans-serif;
  padding: 12px 26px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(250, 169, 176, 0.12);
  border: 2px solid var(--color-pastel-pink);
  margin-left: 18px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-pastel-blue);
  color: #2c3a37;
  border-color: var(--color-primary);
  box-shadow: 0 4px 24px 0 rgba(174, 188, 215, 0.14);
}

/* Hamburger Button (Mobile Toggle) */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 201;
  color: var(--color-primary);
  background: var(--color-pastel-peach);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.2rem;
  padding: 0;
  box-shadow: 0 2px 10px 0 rgba(226,193,242,0.08);
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}

/* Mobile menu overlay & content */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: linear-gradient(125deg, var(--color-pastel-pink) 0%, var(--color-pastel-mint) 100%);
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.25s;
  transform: translateX(100%);
  opacity: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
  animation: mobileMenuOpen 0.33s cubic-bezier(0.68,-0.55,0.27,1.55);
}
@keyframes mobileMenuOpen {
  0% { opacity: 0; transform: translateX(100%); }
  100% { opacity: 1; transform: translateX(0); }
}
.mobile-menu-close {
  margin: 25px 0 15px 25px;
  font-size: 2.1rem;
  color: var(--color-primary);
  background: var(--color-pastel-yellow);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-pastel-mint);
  color: #00695f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 26px 0 0 36px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Oswald', sans-serif;
  color: var(--color-primary);
  background: none;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
  min-width: 160px;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-pastel-blue);
  color: #29677b;
}

/* Responsive Nav (Mobile) */
@media (max-width: 1020px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-right: 18px;
    margin-left: auto;
  }
  header .container {
    justify-content: flex-start;
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
  background: linear-gradient(112deg, var(--color-pastel-blue) 0%, #FFFFFF 100%);
  padding: 56px 0;
}
.hero .container {
  justify-content: center;
  align-items: center;
  min-height: 380px;
  gap: 0;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.18rem;
  color: #3A3740;
  margin-bottom: 22px;
}
.hero .cta-btn {
  margin: 0;
}

/* ==========================================================
   FLEXBOX CONTAINER CLASSES (MANDATORY PATTERNS)
   ========================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  padding: 28px 18px 22px 18px;
  background: #FFF;
  border-radius: 17px;
  box-shadow: 0 1px 10px 0 rgba(183, 180, 228, 0.09);
  min-width: 235px;
  max-width: 360px;
  flex: 1 1 310px;
}
.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: mobile-first adjustments */
@media (max-width: 768px) {
  .hero .container, .text-image-section, .content-wrapper, .card-container, .content-grid {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }
  .testimonial-card { flex-direction: column !important; align-items: flex-start; }
}

/* ==========================================================
   FEATURES, CARDS, LISTS, & CTA BANNER
   ========================================================== */
.features {
  background: linear-gradient(90deg, var(--color-pastel-peach) 0%, var(--color-pastel-mint) 100%);
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 16px 0 rgba(197, 205, 245, 0.1);
}
.features h2 {
  color: var(--color-primary);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 18px 0 16px 0;
  list-style: none;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFFBB;
  color: #353B47;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 14px;
  box-shadow: 0 1px 5px 0 rgba(198,190,228,.11);
  padding: 16px 18px;
  font-size: 1.08rem;
  min-width: 240px;
}
.feature-grid img {
  width: 32px; height: 32px;
}
.services-preview {
  background: var(--color-pastel-lavender);
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.services-preview h2 {
  color: var(--color-primary);
  margin-bottom: 18px;
}
.services-preview ul {
  list-style: disc inside;
  margin-bottom: 20px;
}
.services-preview li strong {
  color: var(--color-secondary);
  font-weight: 500;
}

.cta-banner {
  background: var(--color-cta);
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(180,176,230,0.09);
  margin-bottom: 54px;
  padding: 38px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner p {
  font-size: 1.26rem;
  color: var(--color-primary);
  margin: 0 0 0 0;
  font-family: 'Oswald', sans-serif;
  margin-right: 22px;
}
.cta-banner .cta-btn {
  margin-left: 0;
}

/* Card styles for pricing, highlights, etc. */
.pricing-info {
  background: linear-gradient(98deg, var(--color-pastel-mint) 0%, #FFF 100%);
  border-radius: 16px;
  padding: 38px 20px;
  margin-bottom: 55px;
}
.pricing-info h2 {
  color: var(--color-primary);
}

.card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 18px 0 rgba(194,190,230,0.10);
  margin-bottom: 20px;
  padding: 28px 20px;
  transition: box-shadow 0.22s, transform 0.18s;
  border: 1px solid #f4eef5;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px 0 rgba(151,198,243,0.17), 0 2px 8px 0 rgba(139,190,240,0.07);
  transform: translateY(-7px) scale(1.012);
  border-color: var(--color-pastel-blue);
}

/* Process / step list */
.process ol {
  list-style: decimal inside;
  margin-left: 0;
}
.process li {
  font-size: 1.08rem;
  color: #48435B;
  margin-bottom: 12px;
  margin-left: 0;
  line-height: 1.6;
}

/* Section titles and generic section spacing */
section {
  margin-bottom: 54px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-radius: 16px;
}
@media (max-width: 600px) {
  section {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 36px;
  }
}

/* ==========================================================
   TESTIMONIALS & REVIEW CARDS
   ========================================================== */
.testimonials {
  background: linear-gradient(97deg, var(--color-pastel-yellow) 0%, var(--color-pastel-peach) 100%);
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 48px 20px;
}
.testimonials h1 {
  font-size: 2.16rem;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 13px 0 rgba(214,192,224,0.09);
  padding: 20px 26px;
  min-width: 185px;
  max-width: 600px;
  color: #30323D;
  font-size: 1.06rem;
  border: 1px solid #f5f2e8;
}
.testimonial-card p {
  color: #353B47; font-size: 1.06rem; line-height: 1.78;
}
.testimonial-card span {
  color: #7e5da5; font-size: 0.95rem; font-family: 'Roboto', Arial, sans-serif;
}
.testimonials img[alt="Sterne"] {
  width: 24px; height: 24px; display: inline-block; margin-right: 2px;
}

/* Ensure testimonial text contrast and readability */
.testimonial-card {
  background: #fff;
  color: #353b47;
  font-weight: 500;
}
.testimonial-card p, .testimonial-card span { color: #353B47; }

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: linear-gradient(91deg, var(--color-pastel-blue) 0%, var(--color-pastel-mint) 100%);
  border-top: 2px solid #e8eef2;
  padding-top: 28px; padding-bottom: 20px;
}
footer .container {
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-nav {
  font-size: 1rem;
  color: var(--color-primary);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #4c5873;
  margin: 0 6px;
  font-family: 'Oswald', sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #7a59b9; }
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-secondary);
  font-size: 0.97rem;
  text-align: center;
}
.footer-branding img { width: 40px; height: 40px; }
.footer-branding span {
  font-size: 1.07rem; color: #6e668a; margin-bottom: 3px;
}

/* ==========================================================
   FORMS (Contact page & thank you)
   ========================================================== */
input, textarea {
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid #DAD7EE;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 16px;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus {
  border-color: var(--color-secondary);
  outline: none;
  box-shadow: 0 2px 12px 0 rgba(164,194,217,0.10);
}

/* ==========================================================
   TABLES (Prices, etc.)
   ========================================================== */
table {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 10px 0 rgba(139,190,240,0.06);
  border: 1px solid #ecebf6;
  margin-bottom: 22px;
}
thead th {
  background: #ECECEC;
  color: #353B47;
  font-size: 1.09rem;
  padding: 11px 14px;
 ||}
tbody td {
  background: #FFF9F6;
  font-size: 1.05rem;
  padding: 11px 14px;
}

/* ==========================================================
   DL FAQ Style
   ========================================================== */
dt {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-top: 16px;
}
dd {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #48435B;
  margin-left: 0;
}

/* ==========================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--color-pastel-blue) 0%, var(--color-pastel-mint) 100%);
  box-shadow: 0 -2px 22px 0 rgba(173, 168, 225, 0.13);
  z-index: 5000;
  padding: 18px 20px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 1.08rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: cookieBanner 0.52s cubic-bezier(0.6,0.8,0.4,1);
}
@keyframes cookieBanner {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #353B47; margin: 0; font-size: 1.08rem;
}
.cookie-banner .cookie-btn {
  margin: 0 5px;
  padding: 8px 18px;
  border-radius: 23px;
  border: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: var(--color-pastel-peach);
  color: #353B47;
  transition: background 0.17s, color 0.17s;
  box-shadow: 0 2px 9px rgba(235,180,194,0.09);
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-pastel-mint);
  color: #29677b;
  border: 1.5px solid #91DEB5;
}
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: var(--color-pastel-blue);
  color: #2c3a37;
}
.cookie-banner .cookie-btn.settings { background: var(--color-pastel-yellow); color: #743987; }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 7000;
  background: rgba(195,173,242,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: fadeInCookieModal 0.27s cubic-bezier(.5,.5,.3,1);
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 9px 48px 0 rgba(154,149,189,0.18);
  padding: 34px 22px 30px 22px;
  min-width: 320px; max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.38rem; font-weight: 600; color: #353B47; margin-bottom: 5px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal label {
  font-size: 1rem; color: #353B47; font-family: 'Roboto', sans-serif; font-weight: 400;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  margin-left: 2px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #CEEAF8;
  border-radius: 14px;
  transition: background 0.24s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-pastel-peach);
  box-shadow: 0 1px 10px 0 rgba(182,136,197,0.10);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  left: 3px; top: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.29s cubic-bezier(.86,0,.07,1), background 0.13s;
  box-shadow: 0 1px 3px 0 rgba(189,185,217,0.07);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(14px);
  background: var(--color-pastel-blue);
}
.cookie-modal .cookie-btn-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.cookie-modal .cookie-btn {
  min-width: 80px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 20px;
  background: var(--color-pastel-yellow);
  color: #353B47;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .close-modal:hover {
  background: var(--color-pastel-pink);
  color: #9b4065;
}

/* Modal responsive tweak */
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 95vw; padding: 20px 5px 22px 8px;
  }
}

/* ==========================================================
   MEDIA QUERIES (RESPONSIVE ADJUSTMENTS)
   ========================================================== */
@media (max-width: 900px) {
  .hero h1 { font-size: 2rem; }
  .section, .features, .services-preview, .cta-banner, .testimonials, .pricing-info {
    padding-left: 9px; padding-right: 9px;
  }
  .cta-btn { font-size: 1.05rem; }
  .features, .services-preview { min-width: unset !important; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.42rem; margin-bottom: 16px;}
  h2 { font-size: 1.19rem; margin-bottom: 14px; }
  h3 { font-size: 1rem; }
  .cta-banner p { font-size: 1rem; }
  .card, .testimonial-card, .section, .features, .services-preview, .cta-banner, .pricing-info {
    border-radius: 12px;
    padding: 20px 10px !important;
    min-width: unset;
  }
  .feature-grid li { min-width: 130px; font-size: 0.98rem; }
  .testimonial-card, .card { padding: 13px 7px; }
}
@media (max-width:500px) {
  .footer-branding span,.footer-branding div { font-size:0.85rem; }
  .footer-branding img{ width:24px; height:24px; }
  .footer-nav { font-size: .92rem; }
}
/* At least 20px gap between all content cards & sections */
.card, .testimonial-card, .section, .features, .cta-banner, .pricing-info {
  margin-bottom: 24px;
}

/* ==========================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================================== */
.cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .card, .testimonial-card {
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, border 0.19s, transform 0.17s;
}
.cta-btn:active, .cookie-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.98);
}
.card:active, .testimonial-card:active {
  transform: scale(0.995);
  box-shadow: 0 4px 18px 0 rgba(151,198,243,0.18);
}

/* ==========================================================
   UTILITY & ACCESSIBILITY
   ========================================================== */
.visually-hidden {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}
:focus-visible {
  outline:2px dashed #8CA1A5;
  outline-offset:2px;
}

/* ==========================================================
   SOFT PASTEL EFFECTS & ATMOSPHERE (DECORATIVE)
   ========================================================== */
body {
  background: linear-gradient(112deg, #fff 0%, #F9CCD4 100px, #D6ECE3 480px, #FFF5BD 900px);
}

/* Decorative absolute positioning for graphics only (never for content) */
.decorative-pastel {
  position:absolute;
  z-index:0;
  opacity:.22;
}

/* ==========================================================
   END OF CSS FILE
   ========================================================== */
