/* ===================== RESET & BASE ===================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: unset;
  background: none;
  border: none;
  outline: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* ===================== BRAND VARIABLES ===================== */
:root {
  --color-primary: #143255;
  --color-secondary: #E9EAE0;
  --color-accent: #F8C145;
  --color-pink: #FF54A6;
  --color-green: #00D29F;
  --color-blue: #22A7F2;
  --color-light: #FFFFFF;
  --color-dark: #181C24;
  --color-neutral: #F4F8FB;
  --color-error: #EB5160;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;

  --radius: 18px;
  --shadow: 0 4px 16px 0 rgba(20,50,85,0.07), 0 1.5px 6px 0 rgba(204,182,255,0.13);
  --shadow-card: 0 2px 8px 0 rgba(20,50,85,0.14), 0 2px 12px 0 rgba(255,217,122,0.09);
  --transition: 0.18s cubic-bezier(0.56,0.1,0.2,1.01);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-neutral);
  min-height: 100vh;
}

/* ===================== TYPOGRAPHY ===================== */
h1, .hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.3rem;
  letter-spacing: -1px;
  color: var(--color-primary);
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 2px 3px 0 var(--color-accent),0px 2px 12px rgba(255,84,166,0.08);
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--color-primary);
  line-height: 1.22;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--color-blue);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
}
p, ul li, ol li, span, label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.7;
}
ul, ol {
  padding-left: 22px;
}
strong {
  color: var(--color-primary);
  font-weight: 700;
}
.core-values, .quick-facts, .qualifications {
  margin: 10px 0 18px 0;
}
.core-values li, .quick-facts li, .qualifications li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
}
.core-values li::before, .quick-facts li::before, .qualifications li::before {
  content: '★';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-size: 1em;
  top: 2px;
}
.motto {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-pink);
  background: var(--color-secondary);
  display: inline-block;
  padding: 2px 16px;
  border-radius: 15px;
  margin-top: 5px;
  margin-bottom: 12px;
}

/* ===================== UTILITIES & SPACING ===================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--color-light);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 24px 20px 20px 20px;
  min-width: 270px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-0.7deg);
  box-shadow: 0 8px 36px 0 rgba(20,50,85,0.17), 0 2px 12px 3px rgba(248,193,69,0.13);
}
.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;
  background: var(--color-secondary);
  border-radius: calc(var(--radius) - 6px);
  box-shadow: 0 2px 12px 0 rgba(20,50,85,0.11);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  font-size: 1.09rem;
  font-family: var(--font-body);
}
.testimonial-card p {
  color: var(--color-dark);
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: var(--color-blue);
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-light);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  min-height: 180px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: visible;
}
.feature-item:hover {
  box-shadow: 0 8px 30px 0 rgba(0,210,159,0.12), 0 2px 16px 2px rgba(248,193,69,0.14);
  transform: translateY(-5px) scale(1.04);
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #ff54a612);
}

/* ===================== HEADER, NAVIGATION ===================== */
header {
  background: var(--color-light);
  box-shadow: 0 1px 12px 0 rgba(20,50,85,0.08);
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0 0 6px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
}
.logo img {
  width: 135px;
  height: auto;
  vertical-align: middle;
  opacity: 1;
  transition: opacity .2s ease-in;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 4px 10px 3px 10px;
  border-radius: 8px;
  background: none;
  color: var(--color-primary);
  font-size: 1.04rem;
  position: relative;
  transition: color .17s, background .17s;
}
.main-nav a.active,
.main-nav a:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 10px 28px;
  margin-left: 18px;
  border-radius: 24px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(255,84,166,0.11);
  cursor: pointer;
  outline: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  border: 2px solid var(--color-accent);
}
.cta-button:hover,
.cta-button:focus {
  background: var(--color-pink);
  color: var(--color-light);
  box-shadow: 0 4px 16px 0 rgba(255,84,166,0.25), 0 2px 4px 0 rgba(20,50,85,0.07);
  border: 2px solid var(--color-pink);
  transform: scale(1.05) rotate(-1.5deg);
}
.secondary-cta {
  display: inline-flex;
  align-items: center;
  background: var(--color-blue);
  color: var(--color-light);
  padding: 8px 18px;
  border-radius: 20px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0 1.5px 7px 0 rgba(34,167,242,0.18);
  transition: background .17s, transform .17s;
}
.secondary-cta:hover {
  background: var(--color-green);
  color: var(--color-dark);
  transform: scale(1.03) rotate(1.5deg);
}

/* ===================== BURGER MENU (MOBILE) ===================== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-pink);
  color: var(--color-light);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 8px;
  transition: background .14s;
  z-index: 120;
  cursor: pointer;
}
.mobile-menu-toggle:active {
  background: var(--color-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-secondary);
  box-shadow: -2px 0 22px 0 rgba(34,167,242,0.12);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
  transition: transform .37s cubic-bezier(.61,.26,0.01,1), opacity .2s linear;
}
.mobile-menu-close {
  background: var(--color-accent);
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 20px 0 0 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: background .17s;
  z-index: 150;
}
.mobile-menu-close:hover {
  background: var(--color-pink);
  color: var(--color-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 40px 0 0 33px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-primary);
  padding: 6px 8px;
  border-radius: 10px;
  margin-bottom: 7px;
  font-weight: 700;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover {
  background: var(--color-pink);
  color: var(--color-light);
}

/* ===================== HERO SECTION ===================== */
.hero {
  background: linear-gradient(120deg, var(--color-accent) 35%, #FF54A6 100%);
  background-color: var(--color-accent);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 240px;
  justify-content: center;
}
.hero .content-wrapper {
  padding: 26px 0 20px 0;
  align-items: flex-start;
  gap: 10px;
  max-width: 550px;
  z-index: 2;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.4rem;
  line-height: 1.08;
  text-shadow: 2px 3px 0 var(--color-blue),0px 2px 12px rgba(255,84,166,0.12);
}
.hero p {
  color: var(--color-dark);
  font-size: 1.18rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero .cta-button {
  margin-top: 5px;
}

/* ===================== FEATURES GRID ===================== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.features .feature-item {
  flex: 1 1 210px;
  max-width: 254px;
}

/* ===================== ABOUT & LEGAL ===================== */
.about ul, .features ul, .membership-models ul, .areas ul {
  margin-top: 3px;
  margin-bottom: 14px;
}

.legal {
  margin-top: 28px;
  margin-bottom: 60px;
  background: var(--color-light);
  border-radius: var(--radius);
  padding: 40px 20px;
  box-shadow: var(--shadow-card);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--color-neutral);
  margin-top: 30px;
  margin-bottom: 60px;
  padding: 40px 0 24px 0;
}
.testimonials .testimonial-card {
  margin-bottom: 22px;
  background: var(--color-secondary);
  box-shadow: 0 2px 14px 0 rgba(34,167,242,0.07);
  border: 2.5px dashed var(--color-accent);
  animation: fadeInUp .98s cubic-bezier(.43,.77,0,1);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px) scale(.96) }
  100% { opacity: 1; transform: translateY(0) scale(1) }
}

/* ===================== CTA (CALL TO ACTION) ===================== */
.cta {
  background: var(--color-pink);
  background-color: var(--color-pink);
  border-top-right-radius: 70px;
  border-bottom-left-radius: 60px;
  padding: 44px 0 30px 0;
  margin-bottom: 60px;
  text-align: left;
  box-shadow: 0 8px 50px 0 rgba(255,84,166,0.13);
}
.cta h2 {
  color: var(--color-light);
  font-size: 2rem;
}
.cta p {
  color: var(--color-light);
  font-size: 1.08rem;
}
.cta .cta-button {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 2px 10px 0 rgba(20,50,85,0.10);
  border: 2px solid var(--color-accent);
}
.cta .cta-button:hover {
  background: var(--color-green);
  border: 2px solid var(--color-green);
  color: var(--color-dark);
}

/* ===================== TEAM SECTION ===================== */
.team-intro .trainer-profiles {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 28px;
}
.trainer-profile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 16px 16px;
  min-width: 220px;
  min-height: 180px;
  margin-bottom: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 6px solid var(--color-blue);
  overflow: visible;
}
.trainer-profile:hover {
  box-shadow: 0 6px 22px 0 rgba(0,210,159,0.13), 0 2px 18px 4px rgba(255,84,166,0.07);
  transform: rotate(-2deg) scale(1.03);
}
.trainer-profile h3 {
  margin-bottom: 6px;
  color: var(--color-primary);
}

/* ===================== CONTACT & INFO ===================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.07rem;
  color: var(--color-dark);
}
.map-placeholder {
  background: var(--color-secondary);
  border-radius: 13px;
  padding: 16px;
  margin-top: 10px;
  color: var(--color-primary);
  font-weight: 600;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 26px 0 19px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 36px;
  align-items: flex-start;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01rem;
  transition: color .17s;
}
.footer-links a:hover {
  color: var(--color-pink);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .99rem;
  color: var(--color-secondary);
  min-width: 190px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 8px #f8c14533);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-brand img {
  width: 56px;
}
.footer-brand span {
  color: var(--color-accent);
  font-size: 0.98rem;
}

/* ===================== SECTION SPACING (RULES) ===================== */
section:not(.hero):not(.legal):not(.thankyou) {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================== THANK YOU PAGES ===================== */
.thankyou {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--color-light);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 rgba(248,193,69,0.06);
}
.thankyou h1 {
  color: var(--color-green);
  font-size: 2rem;
}
.thankyou .cta-button {
  margin-top: 14px;
}

/* ===================== COOKIE CONSENT BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0 -3px 18px 0 rgba(20,50,85,0.18);
  z-index: 9999;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 1.04rem;
  animation: cookie-slidein .8s cubic-bezier(.46,.63,0,1);
}
@keyframes cookie-slidein {
  0% { opacity: 0; transform: translateY(120px) }
  80% { opacity: 1; transform: translateY(-8px) }
  100% { opacity: 1; transform: translateY(0) }
}
.cookie-banner__text {
  flex: 1 1 230px;
  color: var(--color-secondary);
}
.cookie-banner__buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 10px;
  padding: 8px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-right: 0;
  cursor: pointer;
  box-shadow: 0 2.5px 10px 0 rgba(248,193,69,0.24);
  transition: background .18s, color .18s, transform .18s;
}
.cookie-banner button:hover {
  background: var(--color-pink);
  color: var(--color-light);
  transform: scale(1.05);
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-green);
  color: var(--color-light);
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 10100;
  background: rgba(20,50,85,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .17s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
  transition: opacity .23s;
}
.cookie-modal__content {
  background: var(--color-light);
  border-radius: 22px;
  box-shadow: 0 8px 40px 0 rgba(20,50,85,0.17);
  padding: 38px 30px 26px 30px;
  max-width: 420px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popin .44s cubic-bezier(.53,.72,0,1.08);
}
@keyframes popin {
  0% {transform: scale(.83) translateY(120px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal__header {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal__section {
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-secondary);
  border-radius: 22px;
  transition: background .16s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--color-green);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 15px; width: 15px;
  left: 4px; top: 3.5px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: transform .22s, background .13s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(16px);
  background: var(--color-accent);
}
.cookie-modal__footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 1024px) {
  .hero .container {
    min-height: 160px;
  }
  .features .feature-grid {
    gap: 18px;
  }
  .team-intro .trainer-profiles {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .footer-brand, .footer-brand img {
    align-items: flex-start;
    width: 36px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 850px) {
  .features .feature-grid,
  .card-container,
  .content-grid,
  .team-intro .trainer-profiles {
    flex-direction: column;
    gap: 23px;
  }
  .feature-item,
  .card,
  .trainer-profile {
    min-width: unset;
    max-width: 99vw;
    width: 100%;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container, header .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 12px;
  }
  section { padding: 28px 7px; }
  .section {padding: 30px 10px; margin-bottom: 32px;}
  .hero .container { padding: 0 4px; }
  .hero { padding-bottom: 30px; min-height: 180px; border-bottom-left-radius: 40px;}
  .hero h1 { font-size: 1.6rem; margin-bottom: 10px; }
  .main-nav { display: none; }
  .cta-button { margin-left: 6px; padding: 8px 16px; }
  .mobile-menu-toggle { display: flex; }
  .features .feature-grid { flex-direction: column; gap: 18px; }
  .feature-item { min-width: unset; max-width: 100%; padding: 18px; }
  .text-image-section { flex-direction: column; gap: 14px; }
  .trainer-profile { min-width: unset; }
  .footer-contact, .footer-links { margin-bottom: 8px; }
  .footer-brand img { width: 40px; }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .hero { border-bottom-left-radius: 22px; min-height: 120px; }
  .hero h1 { font-size: 1.14rem; }
  .cta, .section, .legal { padding: 14px 3px; margin-bottom: 24px; }
  .content-wrapper { gap: 7px; }
  .feature-item, .card, .testimonial-card, .trainer-profile { padding: 14px 7px 11px 8px; }
  .testimonial-card { gap: 10px; font-size: .99rem;}
  .footer-brand img { width: 32px; }
}

/* ===================== MICRO-ANIMATIONS ===================== */
a, button, .card, .feature-item, .testimonial-card, .secondary-cta, .cta-button {
  transition: box-shadow .17s, transform .18s, background .17s, color .17s, border-color .17s;
}
.card, .feature-item, .testimonial-card, .team-profile {
  will-change: transform, box-shadow;
}

/* ===================== PLAYFUL ELEMENTS - DECORATIVE ===================== */
.card::before, .feature-item::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  top: -13px; left: -16px;
  width: 35px; height: 35px;
  background: var(--color-pink);
  opacity: .09;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(2.5px);
}
.card::after, .feature-item::after, .testimonial-card::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px; right: -12px;
  width: 16px; height: 16px;
  background: var(--color-accent);
  opacity: .14;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.7px);
}

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