/* ======= 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #194672;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
}
button, input, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
a {
  color: #194672;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FF8A38;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}

/* ======= COLOR SYSTEM ======= */
:root {
  --primary: #194672;
  --secondary: #E5EAF1;
  --accent: #FF8A38;
  --bg-light: #fff;
  --text: #194672;
  --muted: #474f59;
  --card-bg: #fff;
  --shadow: 0 4px 22px rgba(25,70,114,0.08), 0 1.5px 6px 0 rgba(255,138,56,0.12);
}

/* ======= TYPOGRAPHY ======= */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}
h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
}
h4 {
  font-size: 1.15rem;
  font-weight: 600;
}
p, li, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}
.text-section h1, .text-section h2, .text-section h3 {
  margin-top: 16px;
}
.text-section {
  max-width: 760px;
}

/* Playful headline effect */
.hero h1, .hero h2, section h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: -1.5px;
  line-height: 1.13;
  position: relative;
  animation: bouncy-in 0.85s cubic-bezier(.44,1.7,.89,1.4) 0.1s 1;
}
@keyframes bouncy-in {
  0% { transform: scale(1.1) translateY(-50px); opacity: 0; }
  55% { transform: scale(.92) translateY(14px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Fun fonts for accent */
.cta-primary, .cta-wrapper a, nav.main-nav a.cta-primary, .feature-grid .feature h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ======= CONTAINER & SPACING ======= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px 20px;
  transition: transform 0.22s cubic-bezier(.4,2.01,.32,.87), box-shadow 0.22s;
  min-width: 250px;
}
.card:hover, .card:focus {
  transform: translateY(-6px) scale(1.02) rotate(-1.2deg);
  box-shadow: 0 8px 32px rgba(25,70,114,0.17), 0 3px 12px 1px rgba(255,138,56,0.19);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  margin: 32px 0 20px 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 40px rgba(25,70,114,0.12), 0 1.5px 6px 0 rgba(255,138,56,0.08);
  font-size: 1.1rem;
  color: #18314f;
  min-width: 260px;
  position: relative;
}
.testimonial-card p {
  color: #222a37;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 4px;
  text-align: center;
}
.testimonial-card span {
  color: #666a76;
  font-size: 0.97rem;
  text-align: center;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Required feature grid style */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
.feature {
  background: var(--secondary);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.16s, box-shadow 0.16s;
  min-width: 210px;
  max-width: 260px;
  flex: 1 1 210px;
}
.feature img {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  animation: pop-in 0.5s cubic-bezier(.23,1.13,.58,.91);
}
.feature:hover, .feature:focus {
  transform: translateY(-9px) scale(1.04) rotate(-2deg);
  box-shadow: 0 12px 38px 0 rgba(255,138,56,0.09);
}
@keyframes pop-in {
  0% { transform: scale(.68); opacity: 0; }
  90% { transform: scale(1.115); }
  100% { transform: scale(1); opacity: 1; }
}
.

/* ======= HERO ======= */
.hero {
  background: var(--secondary);
  padding: 56px 0 48px 0;
  margin-bottom: 0;
  animation: hero-appear 1.1s cubic-bezier(.66,1.5,.4,.95);
}
@keyframes hero-appear {
  0% { opacity: 0; transform: translateY(-40px); }
  75% { opacity: .7; }
  100% { opacity: 1; transform: translateY(0); }
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 16px;
}
.hero p {
  font-size: 1.18rem;
  color: var(--text);
  margin-bottom: 16px;
}

/* ======= CALL TO ACTION ======= */
.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 1.16rem;
  font-weight: 800;
  border-radius: 99px;
  padding: 15px 36px;
  box-shadow: 0 2px 18px 0 rgba(255,138,56,0.13);
  border: none;
  cursor: pointer;
  letter-spacing: 1.4px;
  margin-top: 10px;
  transition: background 0.18s, transform 0.12s, box-shadow 0.2s;
  text-shadow: 0 1px 0 rgba(0,0,0,.02);
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ff994d;
  color: #fff;
  transform: scale(1.04) translateY(-3px) rotate(-2deg);
  box-shadow: 0 7px 30px 0 rgba(255,138,56,0.22);
}
.cta-wrapper {
  margin-top: 18px;
}

/* ======= BUTTONS & LINKS ======= */
button, .btn, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s, box-shadow 0.2s;
  border: none;
  font-size: 1.2rem;
  box-shadow: 0 1px 7px 0 rgba(255,138,56,0.14);
}
button:hover, .btn:hover, .mobile-menu-toggle:hover, .mobile-menu-close:hover {
  background: #ff7307;
}

/* ======= NAVIGATION ======= */
header {
  background: #fff;
  border-bottom: 3px solid var(--secondary);
  padding: 0 0 0 0;
  position: relative;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}
.logo img {
  height: 48px;
  width: auto;
  margin-right: 10px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
nav.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 1.06rem;
  transition: background 0.15s, color 0.14s, box-shadow 0.17s;
  text-decoration: none;
  margin: 0 2px;
}
nav.main-nav a.cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(255,138,56,0.13);
  margin-left: 12px;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
nav.main-nav a.cta-primary:hover, nav.main-nav a.cta-primary:focus {
  background: #ff7307;
  color: #fff;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-left: 8px;
  z-index: 1202;
  border: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform .37s cubic-bezier(.6,1.45,.55,1);
    box-shadow: 0 0 44px 0 rgba(25,70,114,0.19);
    padding: 28px 22px 22px 22px;
    overflow-y: auto;
    gap: 28px;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    background: var(--accent);
    color: #fff;
    font-size: 2.1rem;
    border-radius: 20px;
    align-self: flex-end;
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1205;
  }
  nav.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
  }
  .mobile-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.23rem;
    color: var(--primary);
    padding: 13px 14px;
    border-radius: 18px;
    background: var(--secondary);
    box-shadow: 0 2px 18px 0 rgba(25,70,114,0.04);
    margin-bottom: 6px;
    transition: background 0.17s, color 0.13s, box-shadow 0.14s;
    text-align: left;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--accent);
    color: #fff;
  }
}

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

/* =========== FOOTER =========== */
footer {
  background: var(--primary);
  padding: 44px 0 16px 0;
  color: #fff;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}
footer .footer-menu {
  display: flex;
  gap: 14px;
}
footer .footer-menu a {
  color: #fff;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-decoration: underline 1.5px rgba(255,255,255,.18);
  margin-right: 8px;
  opacity: 0.92;
}
footer .footer-menu a:hover, footer .footer-menu a:focus {
  color: var(--accent);
  text-decoration-color: var(--accent);
  opacity: 1;
}
footer .contact-short {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
footer .contact-short img {
  height: 36px;
  width: auto;
}
footer .social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
footer .social-links a {
  background: var(--bg-light);
  border-radius: 50%;
  padding: 7px;
  box-shadow: 0 2px 8px 0 rgba(25,70,114,0.08);
  transition: background 0.16s, box-shadow 0.17s;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .social-links a:hover, footer .social-links a:focus {
  background: var(--accent);
}
footer .social-links img {
  height: 27px;
  width: 27px;
}
footer .brand-claim {
  width: 100%;
  text-align: right;
  font-size: 0.97rem;
  color: #bcd3ee;
  opacity: .82;
  margin-top: 8px;
}

/* =========== USPs, LISTS, ICONS =========== */
.usp-list, .benefits-list, .benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 14px;
}
.usp-list li, .benefits-list li, .benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.09rem;
  background: var(--secondary);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
}
.usp-list img, .benefits-list img, .benefit-list img {
  height: 32px;
  width: 32px;
}

/* =========== MISC SECTIONS =========== */
.training-schedule-teaser, .stretching-tips, .running-programs, .course-levels, .class-info, .coach-insights, .trainer-profiles {
  background: var(--secondary);
  border-radius: 18px;
  padding: 16px 18px;
  margin: 18px 0 10px 0;
  box-shadow: 0 2.5px 10px 0 rgba(25,70,114,0.05);
  font-size: 1rem;
  color: var(--primary);
}

/* ======= CARD ANIMATION EFFECTS ======= */
.card, .testimonial-card, .feature {
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .feature:hover, .testimonial-card:hover {
  box-shadow: 0 13px 34px 0 rgba(255,138,56,0.09), 0 2.5px 10px 0 rgba(25,70,114,0.13);
  transform: scale(1.025) rotate(-2deg);
}

/* ======= DEFAULT RESPONSIVE FLEX/DIRECTION ======= */
@media (max-width: 900px) {
  .footer .container, footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 26px 8px;
  }
  .container {
    padding: 0 8px;
  }
  .hero {
    padding: 34px 0 32px 0;
  }
  .hero h1 {
    font-size: 1.53rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.14rem;
  }
  .feature {
    padding: 22px 10px 16px 10px;
    min-width: 100%;
    max-width: 100%;
  }
  .feature-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    padding: 18px 14px;
    min-width: 0;
  }
  .main-nav {
    display: none !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer .contact-short {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

/* ======= COOKIE CONSENT ======= */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #fff;
  box-shadow: 0 0 26px 0 rgba(25,70,114,0.19);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 10px 14px 10px;
  border-radius: 22px 22px 0 0;
  transition: transform .3s, opacity .18s;
  min-width: 240px;
  max-width: 560px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
#cookie-banner p {
  color: #194672;
  font-size: 1rem;
  margin-bottom: 6px;
  line-height: 1.6;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 2px;
}
.cookie-btn, .cookie-settings-btn, #cookie-modal .cookie-category label {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 17px;
  padding: 10px 24px;
  margin: 0 3px;
  cursor: pointer;
  font-weight: 600;
  transition: background .16s, color .13s, box-shadow 0.18s;
  box-shadow: 0 1.5px 12px 0 rgba(25,70,114,0.06);
}
.cookie-settings-btn {
  background: var(--primary);
}
.cookie-btn.accept {
  background: #44c671;
}
.cookie-btn.reject {
  background: #E2445C;
}
.cookie-btn:hover, .cookie-settings-btn:hover, #cookie-modal .cookie-category label:hover {
  background: #ff994d;
}
.cookie-btn.accept:hover {background: #36ae5e;}
.cookie-btn.reject:hover {background: #b9384a;}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 2030;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  background: rgba(25,70,114,0.15);
  animation: fadein .16s;
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal .cookie-content {
  background: #fff;
  box-shadow: 0 0 36px 0 rgba(25,70,114,0.13);
  border-radius: 18px;
  padding: 32px 24px 20px 24px;
  min-width: 280px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
#cookie-modal .cookie-content h2 {
  font-size: 1.32rem;
  color: var(--primary);
  margin-bottom: 8px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  font-size: 1.04rem;
}
#cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
}
#cookie-modal .category-essential label {
  color: #aaa;
  font-style: italic;
}
#cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 17px;
  font-size: 1.3rem;
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 2040;
}
#cookie-modal .cookie-modal-close:hover {
  background: #ff7307;
}
#cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 14px;
  justify-content: flex-end;
}
#cookie-modal .cookie-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  padding: 8px 17px;
  border-radius: 15px;
}

@media (max-width: 550px) {
  #cookie-banner { max-width: 100vw; }
  #cookie-modal .cookie-content { padding: 20px 8px 16px 8px; }
}

/* ======= FORM ELEMENTS (for Contact Forms etc.) ======= */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  background: #f5f9fd;
  border-radius: 14px;
  border: 2px solid var(--secondary);
  padding: 10px 13px;
  margin-bottom: 16px;
  font-size: 1.03rem;
  width: 100%;
  transition: border 0.14s;
}
input:focus, textarea:focus {
  border: 2px solid var(--accent);
}

/* =========== UTILITIES =========== */
.muted { color: #777; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-32 { margin-top: 32px; }
.text-center { text-align: center; }

/* =========== PLAYFUL DECORATIVE =========== */
/* Ribbon/Sticker accents for hero */
.hero::after {
  content: "Energie!";
  position: absolute;
  right: 7%; bottom: 15px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 11px 22px 16px 8px;
  padding: 7px 22px;
  transform: rotate(-3.5deg);
  box-shadow: 0 2px 10px 0 rgba(255,138,56,0.20);
  letter-spacing: 1px;
  animation: pop-in 0.64s cubic-bezier(.36,1.34,.67,1.11) .22s both;
  z-index: 5;
}
@media (max-width: 680px) {
  .hero::after{display:none;}
}

/* Playful Dot Background for Features */
.section .feature-grid {
  position: relative;
}
.section .feature-grid::after {
  content: "";
  display: block;
  position: absolute;
  right: 12px; top: -8px;
  width: 48px; height: 48px;
  background: url('data:image/svg+xml;utf8,<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><circle cx="6" cy="6" r="6" fill="%23FF8A38"/><circle cx="42" cy="6" r="6" fill="%23E5EAF1"/><circle cx="6" cy="42" r="6" fill="%23194672"/><circle cx="42" cy="42" r="6" fill="%23FF8A38"/></svg>');
  opacity: .19;
  z-index: 1;
}
@media (max-width: 600px) {
  .section .feature-grid::after {display:none;}
}

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

/* =========== ANIMATIONS & MICRO-INTERACTIONS =========== */
.card, .feature, .testimonial-card {
  transition: transform 0.17s cubic-bezier(.63,1.63,.5,.93), box-shadow 0.22s;
}
.card:hover, .feature:hover, .testimonial-card:hover {
  transform: translateY(-7px) scale(1.03) rotate(-1.6deg);
  box-shadow: 0 10px 38px 0 rgba(255,138,56,0.15),0 1.5px 6px 0 rgba(25,70,114,0.13);
}
nav a, .mobile-nav a, button, .cta-primary, .cookie-btn, .cookie-settings-btn {
  transition: color 0.17s, background 0.17s, box-shadow 0.19s, transform 0.13s;
}

/* =========== SPACING & FLEX GAPS =========== */
/* Already included as per .section, .card-container, .content-grid, .testimonial-card, .feature-item above */

/* =========== END =========== */
