/* =============================
   CSS RESET & BASELINE NORMALIZATION
   ============================= */
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; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; background: #F4EEE6; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; outline: none; border: none; background: none; }
:root {
  --primary: #20435C;
  --secondary: #8FB16D;
  --accent: #F4EEE6;
  --brand-orange: #F8B045;
  --brand-pink: #F76E91;
  --brand-purple: #6C63FF;
  --brand-shadow: rgba(32,67,92,0.10);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --shadow-md: 0 4px 16px var(--brand-shadow);
}

/* =============================
   BRAND TYPOGRAPHY
   ============================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic&display=swap');
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  background: var(--accent);
  font-size: 16px;
  line-height: 1.7;
}
h1, .hero h1, .cta h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--brand-pink);
  margin-bottom: 10px;
}
p, li, span, a {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
}
strong { font-weight: 700; }
.text-section ul { padding-left: 20px; }
.text-section ul li { list-style: disc; margin-bottom: 8px; }

/* Artistic Font for headings */
h1, h2, h3 {
  letter-spacing: 0.03em;
  text-shadow: 1px 2px 3px #ece0d4, 0 2px 10px rgba(32,67,92,0.06);
}

/* =============================
   LAYOUT HELPERS
   ============================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(32,67,92,0.16);
  transform: translateY(-3px) scale(1.03);
}
.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;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(140,177,109,0.06);
  margin-bottom: 20px;
  max-width: 350px;
  min-width: 220px;
  border-left: 6px solid var(--brand-pink);
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonial-card .star-rating {
  color: var(--brand-orange);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card .testimonial-name {
  color: var(--secondary);
  font-weight: bold;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(140,177,109,0.12);
  transform: translateY(-2px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Artistic SVG decoration - sample, adjust for more throughout site */
.section {
  position: relative;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 12px;
  left: 18px;
  width: 60px;
  height: 60px;
  background: url('../assets/pattern-splash.svg') no-repeat center/contain;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  background: #fff;
  border-bottom: 2px solid var(--brand-orange);
  box-shadow: 0 2px 20px rgba(32,67,92,0.07);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  min-height: 80px;
  flex-wrap: wrap;
  gap: 20px;
}
.logo {
  margin-right: 24px;
  padding: 12px 0 12px 0;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 24px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-start;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border 0.15s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-pink);
  border-bottom: 2px solid var(--brand-pink);
}

.button-primary {
  display: inline-flex;
  align-items: center;
  background: var(--brand-pink);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(247,110,145,0.10);
  padding: 12px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  border: none;
  margin-left: 22px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.17s;
}
.button-primary:hover,
.button-primary:focus {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-1px) scale(1.045);
  box-shadow: 0 7px 20px rgba(248,176,69,0.18);
}

.mobile-menu-toggle {
  display: none;
  background: var(--brand-orange);
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  padding: 6px 18px;
  cursor: pointer;
  z-index: 120;
  transition: background 0.19s, color 0.1s;
  margin-left: auto;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-purple);
  color: #fff;
}

@media (max-width: 1080px) {
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 800px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
}
/* Mobile Nav Styles */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .button-primary {
    font-size: 0.98rem;
    margin-left: 6px;
    padding: 11px 18px;
  }
}

/* =============================
   MOBILE MENU
   ============================= */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  z-index: 200;
  background: rgba(32,67,92,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 28px;
  transform: translateX(110%);
  transition: transform 0.5s cubic-bezier(0.52, -0.02, 0.85, 0.98);
  pointer-events: none;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  margin-top: 2px;
  margin-bottom: 36px;
  font-size: 2.1rem;
  color: #fff;
  background: var(--brand-orange);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.17s;
}
.mobile-menu-close:hover {
  background: var(--brand-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 0 0 20px 0;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: color 0.15s, border-color 0.16s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  border-bottom: 2px solid var(--brand-orange);
  color: var(--brand-orange);
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================
   HERO SECTION
   ============================= */
.hero {
  background: linear-gradient(100deg, #F4EEE6 75%, #f8b04517 100%);
  padding: 68px 0 56px 0;
  min-height: 330px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.hero::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; right: 0;
  width: 160px; height: 160px;
  background: url('../assets/pattern-blob.svg') no-repeat center/cover;
  opacity: 0.18;
  z-index: 2;
  pointer-events: none;
}
.hero .content-wrapper {
  min-height: 210px;
  align-items: flex-start;
  gap: 28px;
  z-index: 3;
  position: relative;
}
.hero h1 { color: var(--brand-purple); }
.hero p {
  color: var(--primary);
  font-size: 1.16rem;
}
.hero .button-primary {
  background: var(--secondary);
  color: #fff;
}
.hero .button-primary:hover {
  background: var(--brand-pink);
}

/* =============================
   FEATURES (uses .feature-grid for cards)
   ============================= */
.features {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 18px rgba(247,110,145,0.09);
  margin-bottom: 60px;
  padding: 32px 0 32px 0;
  position: relative;
}
.features h2 { color: var(--secondary); }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(111,124,45,0.08);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.16s;
  border-left: 5px solid var(--brand-purple);
  position: relative;
}
.feature-grid li:hover {
  box-shadow: 0 8px 32px rgba(140,177,109,0.16);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  width: 38px; height: 38px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(2px 2px 0 var(--brand-orange));
}
.feature-grid h3 {
  font-size: 1.14rem;
  color: var(--brand-purple);
  margin-bottom: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* =============================
   CTA SECTION
   ============================= */
.cta {
  margin: 45px 0 0 0;
  background: var(--brand-orange);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(248,176,69,0.10);
  position: relative;
}
.cta h2 {
  color: #fff;
  letter-spacing: 0.03em;
  font-size: 2rem;
  margin-bottom: 6px;
  text-shadow: 0 3px 8px rgba(32,67,92,0.16);
}
.cta p {
  color: #fff;
  font-size: 1.13rem;
}
.cta .button-primary {
  background: #fff;
  color: var(--brand-orange);
}
.cta .button-primary:hover {
  background: var(--primary);
  color: #fff;
}

/* =============================
   TESTIMONIALS
   ============================= */
.testimonials {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 18px rgba(32,67,92,0.04);
  margin: 45px 0 60px 0;
  padding: 32px 0;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  box-shadow: 0 2px 11px rgba(32,67,92,0.06);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 200px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 5px solid var(--brand-orange);
  color: var(--primary);
  background-clip: padding-box;
  /* Extra for contrast */
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1rem;
}
.testimonial-card .testimonial-name {
  margin-top: 10px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card .star-rating {
  margin-top: 3px;
  color: var(--brand-orange);
  font-size: 1.12rem;
}
@media (max-width: 900px) {
  .testimonials .content-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
  }
}

/* =============================
   ABOUT & POLICY TEXT SECTIONS
   ============================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--primary);
}
.text-section ul {
  margin-left: 16px;
}
.policy {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px rgba(32,67,92,0.07);
  padding: 38px 28px;
  margin: 40px 0;
}
.policy h1, .policy h2 {
  color: var(--brand-purple);
}
.policy ul li {
  list-style: disc;
  margin-left: 18px;
  margin-bottom: 7px;
}

/* =============================
   CONTACT SECTION
   ============================= */
.contact {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 16px rgba(32,67,92,0.07);
  padding: 38px 28px;
}
.contact img {
  margin-right: 8px;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.contact strong {
  color: var(--brand-orange);
}
.contact a {
  color: var(--brand-purple);
  text-decoration: underline;
}

/* =============================
   FOOTER STYLES
   ============================= */
footer {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: 60px 0 0 0;
  padding: 32px 0 19px 0;
  box-shadow: 0 -2px 24px rgba(32,67,92,0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer a img {
  margin-bottom: 5px;
}
.footer-nav {
  display: flex;
  gap: 18px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.12s, border-color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--brand-orange);
  border-bottom: 2px solid var(--brand-orange);
}
.footer-contact {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #ebeade;
  font-size: 0.97rem;
  align-items: center;
  justify-content: center;
}
.footer-contact img {
  margin-bottom: -3px;
  margin-right: 4px;
  filter: brightness(0) invert(1);
  vertical-align: middle;
}
.footer-contact span{
  color: white;
}
/* =============================
   BUTTONS & LINKS
   ============================= */
.button-primary, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn {
  outline: none;
  border: none;
}
.button-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-btn:focus {
  box-shadow: 0 0 6px 0 var(--brand-orange) !important;
  outline: 2px solid var(--brand-orange);
}

/* =============================
   FLEX RESPONSIVE MEDIA QUERIES
   ============================= */
@media (max-width: 1100px) {
  .feature-grid, .content-grid, .card-container {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .hero, .features, .testimonials, .cta, .policy, .contact {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .text-section, .policy .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid, .card-container, .content-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    padding: 33px 0 27px 0;
    min-height: 180px;
  }
  .cta {
    margin: 28px 0 0 0;
    border-radius: var(--radius-md);
    padding: 24px 0;
  }
  .features, .testimonials, .policy, .contact {
    border-radius: var(--radius-md);
    padding: 22px 0 18px 0;
  }
}
@media (max-width: 545px) {
  .container {
    padding: 0 8px;
  }
  h1, .hero h1 { font-size: 1.33rem; }
  h2, .cta h2 { font-size: 1.08rem; }
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbe7;
  color: var(--primary);
  box-shadow: 0 -2px 20px rgba(32,67,92,0.13);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  gap: 30px;
  flex-wrap: wrap;
  animation: cookieSlideIn 0.5s ease;
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__info {
  flex: 1 1 340px;
  color: var(--primary);
  font-size: 1.02rem;
  margin-right: 18px;
}
.cookie-btn {
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  margin-left: 8px;
  font-weight: 700;
  background: var(--secondary);
  color: #fff;
  transition: background 0.18s, color 0.12s, transform 0.13s;
  cursor: pointer;
  border: none;
}
.cookie-btn[aria-selected='true'], .cookie-btn:focus {
  outline: 2px solid var(--brand-orange);
}
.cookie-btn.cookie-accept {
  background: var(--brand-orange);
  color: #fff;
}
.cookie-btn.cookie-accept:hover {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-btn.cookie-reject {
  background: #ececec;
  color: var(--primary);
}
.cookie-btn.cookie-reject:hover {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-settings-btn {
  background: var(--brand-purple);
  color: #fff;
}
.cookie-settings-btn:hover {
  background: var(--primary);
}

@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 13px;
  }
  .cookie-btn { margin-left: 0; margin-bottom: 7px; }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%) scale(0.99);
  z-index: 99999;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 56px rgba(32,67,92,0.15);
  min-width: 300px; max-width: 98vw;
  min-height: 180px;
  padding: 40px 30px 32px 30px;
  animation: modalIn 0.45s cubic-bezier(0.68,-0.25,0.265,1.55);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%,20%) scale(0.85); }
  to { opacity: 1; transform: translate(-50%, -55%) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.26rem;
  color: var(--brand-purple);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  margin-bottom: 18px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: bold;
  color: var(--primary);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--brand-orange);
  width: 22px; height: 22px;
  margin-right: 6px;
}
.cookie-toggle {
  width: 36px; height: 18px;
  border-radius: 12px;
  background: #ececec;
  position: relative;
  transition: background 0.16s;
  cursor: pointer;
  margin-right: 11px;
  display: flex;
  align-items: center;
}
.cookie-toggle input[type=checkbox] {
  display: none;
}
.cookie-toggle .toggle-slider {
  background: var(--brand-orange);
  width: 18px; height: 18px;
  border-radius: 50%;
  transform: translateX(2px);
  transition: background 0.19s, transform 0.17s;
}
.cookie-toggle input:checked + .toggle-slider {
  background: var(--brand-purple);
  transform: translateX(16px);
}

.cookie-modal .cookie-category.essential label {
  color: var(--secondary);
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 24px;
}
.cookie-modal .cookie-settings-btn {
  padding: 11px 22px;
  background: var(--brand-pink);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-md);
  font-size: 1.04rem;
}
.cookie-modal .cookie-settings-btn:hover {
  background: var(--secondary);
  color: #fff;
}

.cookie-modal-close {
  position: absolute;
  top: 18px; right: 23px;
  background: none;
  color: var(--brand-pink);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover { color: var(--brand-orange); }

@media (max-width: 525px) {
  .cookie-modal {
    padding: 21px 10px 18px 10px;
    min-width: 210px;
  }
  .cookie-modal .cookie-modal-actions {
    flex-direction: column;
    gap: 11px;
  }
}

/* =============================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================= */
.button-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.2s, color 0.15s, box-shadow 0.15s, transform 0.13s;
}
.feature-grid li, .card, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.16s;
}
.button-primary:active, .cookie-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  opacity: 0.92;
  transform: scale(0.98);
}
.section, .features, .testimonials, .cta {
  transition: box-shadow 0.23s, background 0.15s;
}

/* =============================
   UTILITIES & SPACING
   ============================= */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.gap-20 { gap: 20px !important; }
.no-select { user-select: none; }

/* Avoid overlap/overflow */
h1, h2, h3, h4, h5, h6, .cta h2 {
  word-break: break-word;
}

/* End of CSS */
