/* ========================================
CSS CUSTOM PROPERTIES
======================================== */
:root
{
  --color-primary: #38A891;
  --color-primary-dark: #2C8B77;
  --color-primary-light: #E8F5F1;
  --color-primary-lighter: #F2FAF7;
  --color-accent: #E8613C;
  --color-accent-hover: #D4522E;
  --color-accent-light: #FFF0EC;
  --color-text: #1A1A2E;
  --color-text-secondary: #555B6E;
  --color-text-muted: #000000;
  --color-bg: #FAFBFC;
  --color-white: #FFFFFF;
  --color-surface: #F4F5F7;
  --color-border: #E2E4E9;
  --color-border-light: #ECEEF2;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* ========================================
RESET & BASE
======================================== */
*,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
  }
  body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img {
    max-width: 100%;
    display: block;
  }

  a {
    color: var(--color-primary-dark);
    text-decoration: none;
  }

  a:hover {
    color: var(--color-accent);
  }
  /* ========================================
  TYPOGRAPHY
  ======================================== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.1rem;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}
/* ========================================
LAYOUT
======================================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: 800px;
}
section {
  padding: 5rem 0;
}
/* ========================================
STICKY TOP BANNER
======================================== */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-text);
  color: var(--color-white);
  padding: 0.65rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}
.top-banner span {
  opacity: 0.6;
}
.top-banner strong {
  font-weight: 600;
}
.top-banner__cta {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.3rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease;
  display: inline-block;
}
.top-banner__cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-1px);
}
.top-banner__spots {
  background: rgba(56, 168, 145, 0.25);
  color: #90FFE9;
  padding: 0.15rem 0.6rem;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
/* ========================================
HERO SECTION
======================================== */
.hero {
  margin-top: 48px;
  padding: 6rem 0 5rem;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 168, 145, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 97, 60, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero__badge {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero__date-badge {
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}
.hero h1 {
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}
.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero__details {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}
.hero__detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
/* ========================================
BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  border: none;
  text-decoration: none;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(232, 97, 60, 0.25), 0 1px 2px rgba(232, 97, 60, 0.15);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 97, 60, 0.3), 0 2px 4px rgba(232, 97, 60, 0.15);
}
.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  background: var(--color-primary-lighter);
}
.btn--large {
  padding: 1.05rem 2.5rem;
  font-size: 1.05rem;
}
.btn .arrow {
  transition: transform 0.2s ease;
}
.btn:hover .arrow {
  transform: translateX(3px);
}
.btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
/* ========================================
VALUE PROPOSITION GRID
======================================== */
.values {
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg);
  transition: all 0.3s var(--ease-out);
}
.value-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(56, 168, 145, 0.08);
  transform: translateY(-3px);
}
.value-card__icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}
.value-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}
.value-card p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
/* ========================================
TESTIMONIALS
======================================== */
.testimonials {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(144, 255, 233, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}
.testimonials .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.testimonials h2 {
  color: var(--color-white);
  margin-bottom: 3rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
}
.testimonial-card__quote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.5rem;
  color: rgba(255, 255, 255, 0.3);
  margin-right: 0.15rem;
}
.testimonial-card__author {
  font-weight: 600;
  font-size: 0.92rem;
}
.testimonial-card__role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
/* ========================================
AGENDA / WORKSHOP DETAILS
======================================== */
.agenda {
  background: var(--color-white);
}
.agenda__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.agenda__header p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}
.agenda__timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.agenda__timeline::before {
  content: '';
  position: absolute;
  left: 89px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border-light);
}
.agenda-item {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  position: relative;
}
.agenda-item + .agenda-item {
  border-top: none;
}
.agenda-item__time {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  min-width: 80px;
  text-align: right;
  padding-top: 0.15rem;
  font-variant-numeric: tabular-nums;
}
.agenda-item__dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2.5px solid var(--color-primary);
  margin-top: 0.35rem;
  position: relative;
  z-index: 1;
}
.agenda-item--break .agenda-item__dot {
  border-color: var(--color-border);
  background: var(--color-surface);
}
.agenda-item__content {
  flex: 1;
  padding-bottom: 0.5rem;
}
.agenda-item__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.agenda-item__desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}
.agenda-item--break .agenda-item__title {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}
.agenda-item--highlight .agenda-item__dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(56, 168, 145, 0.15);
}
.agenda-item--highlight .agenda-item__title {
  color: var(--color-primary-dark);
}
/* ========================================
TARGET AUDIENCE
======================================== */
.audience {
  background: var(--color-bg);
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.audience-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-border-light);
  transition: all 0.25s var(--ease-out);
}
.audience-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(56, 168, 145, 0.06);
}
.audience-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.audience-card h4 {
  font-size: 0.95rem;
  line-height: 1.35;
}
/* ========================================
WHAT'S INCLUDED
======================================== */
.included {
  background: var(--color-white);
}
.included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
}
.included-item__check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-top: 0.1rem;
}
.included-item h4 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}
.included-item p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
/* ========================================
PRICING CTA
======================================== */
.pricing {
  background: var(--color-bg);
  text-align: center;
}
.pricing__card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 16px;
  border: 2px solid var(--color-primary);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(56, 168, 145, 0.1);
}
.pricing__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}
.pricing__badge {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.pricing__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing__vat {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}
.pricing__spots {
  font-size: 0.92rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 2rem;
}
.pricing__features {
  text-align: left;
  list-style: none;
  margin-bottom: 2rem;
}
.pricing__features li {
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing__features li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.pricing__card .btn {
  width: 100%;
  justify-content: center;
}
/* ========================================
TRAINER
======================================== */
.trainer {
  background: var(--color-white);
}
.trainer__content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}
.header__photo {
  width: 600px;
  height: 600px;
  border-radius: 12px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}
.header__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainer__photo {
  width: 240px;
  height: 280px;
  border-radius: 12px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}
.trainer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trainer__info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.trainer__role {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.trainer__bio {
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.trainer__credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trainer__credentials li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}
.trainer__credentials li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}
/* ========================================
SPECIAL REQUESTS
======================================== */
.special {
  background: var(--color-primary-lighter);
  border-top: 1px solid var(--color-primary-light);
  border-bottom: 1px solid var(--color-primary-light);
}
.special__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.special-card {
  text-align: center;
}
.special-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.special-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.special-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}
.special-card a {
  font-weight: 600;
}
/* ========================================
FAQ
======================================== */
.faq {
  background: var(--color-white);
}
.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--color-border-light);
}
.faq__item summary {
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after {
  content: '\2212';
}
.faq__item summary:hover {
  color: var(--color-primary-dark);
}
.faq__item__answer {
  padding: 0 0 1.25rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 600px;
}
/* ========================================
LEGAL
======================================== */
.legal {
  background: var(--color-surface);
  padding: 3rem 0;
}
.legal .container--narrow {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.legal h3 {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}
.legal p + p {
  margin-top: 0.5rem;
}
.legal a {
  color: var(--color-text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* ========================================
FOOTER
======================================== */
.footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 4rem 0 2rem;
  text-align: center;
}
.footer h2 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.footer__subtitle {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.footer__btn {
  margin-bottom: 3rem;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.45);
}
.footer__links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer__copy {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}
/* ========================================
EARLY BIRD COMPONENT
======================================== */
.early-bird {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
}

.early-bird::before {
  content: '\1F525'; /* fire emoji */
  font-size: 0.9em;
}

/* In the hero section — below the CTA */
.hero .early-bird {
  margin-top: 1rem;
  font-size: 0.88rem;
}

/* In the pricing card — between badge and price */
.pricing .early-bird {
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

/* Dark background variant (footer) */
.early-bird--dark {
  background: rgba(232, 97, 60, 0.2);
  color: #FF8A65;
}

/* In the sticky banner */
.top-banner .early-bird {
  background: rgba(232, 97, 60, 0.25);
  color: #FFB199;
  padding: 0.15rem 0.6rem;
  font-size: 0.78rem;
  border-radius: 3px;
}

/* Strikethrough styling — make it look intentional */
.pricing__amount strike,
.btn strike,
.footer strike {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.65em;
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 0.15em;
}

/* ========================================
RESPONSIVE
======================================== */
@media(max-width: 1024px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media(max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }
  .hero {
    padding: 4rem 0 3.5rem;
  }
  .hero__details {
    gap: 1rem;
  }
  .values__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .agenda__timeline::before {
    left: 5px;
  }
  .agenda-item {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-left: 1.75rem;
  }
  .agenda-item__time {
    min-width: auto;
    text-align: left;
    width: 100%;
    padding-left: 0;
  }
  .agenda-item__dot {
    position: absolute;
    left: 0;
    top: 1.5rem;
  }
  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .included__grid {
    grid-template-columns: 1fr;
  }
  .trainer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .trainer__photo {
    width: 100%;
    max-width: 280px;
    height: 300px;
  }
  .special__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pricing__card {
    padding: 2rem 1.5rem;
  }
  .top-banner {
    font-size: 0.8rem;
    gap: 0.5rem 1rem;
    padding: 0.5rem 1rem;
  }
}
@media(max-width: 480px) {
  .audience__grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .pricing__amount {
    font-size: 2.8rem;
  }
}
/* ========================================
ANIMATIONS
======================================== */
@media(prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  }
  .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-in-delay-1 {
    transition-delay: 0.1s;
  }

  .fade-in-delay-2 {
    transition-delay: 0.2s;
  }

  .fade-in-delay-3 {
    transition-delay: 0.3s;
  }

  .fade-in-delay-4 {
    transition-delay: 0.4s;
  }
}
