/* ============================================================
   POPDANCE — styles.css
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink:       #D4306A;
  --pink-dark:  #A81F52;
  --purple:     #6C1F8A;
  --purple-dark:#3D0A52;
  --night:      #110820;
  --night-mid:  #1E0E30;
  --light:      #FFF5FB;
  --white:      #FFFFFF;
  --text:       #1A0A2E;
  --muted:      #8A6A9A;
  --border:     #E8D4F0;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(100,0,80,.10);
  --shadow:     0 6px 24px rgba(100,0,80,.14);
  --shadow-lg:  0 16px 48px rgba(100,0,80,.18);
  --transition: .25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212,48,106,.35);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,48,106,.45);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--pink);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--night);
}
.header__logo span { color: var(--pink); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.header__nav a:hover { color: var(--pink); }

.header__cta { margin-left: 16px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
  transition: transform .25s, opacity .25s;
}
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}
.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--pink); }
.mobile-nav .btn { margin-top: 8px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--night);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center 20%;
  opacity: .45;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,8,32,.98) 0%,
    rgba(17,8,32,.80) 40%,
    rgba(17,8,32,.30) 75%,
    rgba(17,8,32,.05) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,48,106,.18);
  border: 1px solid rgba(212,48,106,.35);
  color: #FF6BA8;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.4); }
}

.hero__title {
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--pink);
}

.hero__text {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__note {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  margin-top: 20px;
}

/* ============================================================
   FOR WHOM
   ============================================================ */
.forwhom {
  padding: 96px 0;
  background: var(--light);
}

.forwhom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.forwhom__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.forwhom__content .section-label { display: block; margin-bottom: 12px; }

.forwhom__title { margin-bottom: 20px; }

.forwhom__intro {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.forwhom__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.forwhom__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.forwhom__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.forwhom__item-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
}
.forwhom__item-text span {
  font-size: .85rem;
  color: var(--muted);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.howworks {
  padding: 96px 0;
  background: var(--white);
}

.howworks__header {
  text-align: center;
  margin-bottom: 64px;
}
.howworks__header .section-label { display: block; margin-bottom: 12px; }
.howworks__header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 16px auto 0;
}

.howworks__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.howworks__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.6% + 20px);
  right: calc(16.6% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--pink), var(--purple));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(212,48,106,.35);
}

.step h3 { margin-bottom: 10px; }
.step p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* ============================================================
   WHAT YOU GET (outcomes)
   ============================================================ */
.outcomes {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--night) 0%, var(--night-mid) 100%);
  position: relative;
  overflow: hidden;
}
.outcomes::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,48,106,.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.outcomes__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.outcomes__header .section-label { color: #FF6BA8; }
.outcomes__header h2 { color: var(--white); margin-bottom: 16px; }
.outcomes__header p { color: rgba(255,255,255,.6); max-width: 500px; margin: 0 auto; }

.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.outcome-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), background var(--transition);
}
.outcome-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.10);
}

.outcome-card__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.outcome-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.outcome-card p {
  color: rgba(255,255,255,.56);
  font-size: .9rem;
  line-height: 1.6;
}

/* ============================================================
   PROGRAM / COURSE FORMAT
   ============================================================ */
.program {
  padding: 96px 0;
  background: var(--light);
}

.program__header {
  text-align: center;
  margin-bottom: 64px;
}
.program__header .section-label { display: block; margin-bottom: 12px; }
.program__header h2 { margin-bottom: 16px; }
.program__header p { color: var(--muted); max-width: 540px; margin: 0 auto; }

.program__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.program__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.program__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.feature:hover { transform: translateX(6px); }

.feature__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 7px;
}

.feature strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.feature p {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.55;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 96px 0;
  background: var(--white);
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}
.faq__header .section-label { display: block; margin-bottom: 12px; }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item.open { box-shadow: var(--shadow-sm); }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  transition: background var(--transition);
}
.faq__question:hover { background: var(--light); }
.faq__item.open .faq__question { background: var(--light); color: var(--pink); }

.faq__arrow {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: transform var(--transition), background var(--transition);
  color: var(--text);
}
.faq__item.open .faq__arrow {
  transform: rotate(45deg);
  background: var(--pink);
  color: white;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__answer p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.leadform {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--night) 0%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
}
.leadform::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,48,106,.15) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  pointer-events: none;
}

.leadform__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.leadform__inner .section-label { color: #FF6BA8; }
.leadform__inner h2 { color: var(--white); margin-bottom: 14px; }
.leadform__inner > p {
  color: rgba(255,255,255,.62);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.65;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form__label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

.form__input {
  padding: 15px 18px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form__input::placeholder { color: rgba(255,255,255,.35); }
.form__input:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,.12);
}
.form__input.error { border-color: #FF6B6B; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__consent {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin-top: 4px;
}
.form__consent a {
  color: rgba(255,255,255,.65);
  text-decoration: underline;
}
.form__consent a:hover { color: #FF6BA8; }

.form__submit {
  margin-top: 8px;
}
.form__submit .btn {
  width: 100%;
  padding: 17px;
  font-size: 1.05rem;
}

.form__error {
  font-size: .8rem;
  color: #FF6B6B;
  display: none;
}
.form__error.visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--night);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .footer__logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.footer__brand .footer__logo span { color: var(--pink); }
.footer__brand p {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  line-height: 1.6;
}

.footer__col h4 {
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul li a {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--pink); }

.footer__col address {
  font-style: normal;
  color: rgba(255,255,255,.38);
  font-size: .82rem;
  line-height: 1.8;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  color: rgba(255,255,255,.28);
  font-size: .82rem;
}
.footer__bottom a {
  color: rgba(255,255,255,.38);
  font-size: .82rem;
  transition: color var(--transition);
}
.footer__bottom a:hover { color: var(--pink); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 820px;
  background: var(--night-mid);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner.hidden { display: none; }

.cookie-banner p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  line-height: 1.55;
  flex: 1;
}
.cookie-banner a {
  color: var(--pink);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--pink);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background var(--transition);
}
.cookie-btn-accept:hover { background: var(--pink-dark); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: .9rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}
.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.75);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding: 80px 0 96px;
}

.legal-page__header {
  background: linear-gradient(135deg, var(--night) 0%, var(--night-mid) 100%);
  padding: 72px 0 56px;
  margin-bottom: 0;
}
.legal-page__header h1 { color: var(--white); margin-bottom: 12px; }
.legal-page__header p { color: rgba(255,255,255,.55); font-size: 1rem; }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 40px 0 14px;
  color: var(--text);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: .95rem;
}
.legal-content a { color: var(--pink); text-decoration: underline; }
.legal-content ul {
  padding-left: 20px;
  list-style: disc;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content address {
  font-style: normal;
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--text);
  font-size: .9rem;
  line-height: 1.9;
  border-left: 4px solid var(--pink);
  margin-top: 24px;
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--night) 0%, var(--night-mid) 100%);
  text-align: center;
  padding: 40px 24px;
}

.success-page__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(212,48,106,.4);
  animation: popIn .5s cubic-bezier(.175,.885,.32,1.275);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.success-page h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.success-page p {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.success-page__logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255,255,255,.3);
  margin-top: 48px;
  letter-spacing: -.02em;
}
.success-page__logo span { color: var(--pink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .header__nav, .header__cta { display: none; }
  .header__burger { display: flex; }

  .forwhom__grid, .program__grid { grid-template-columns: 1fr; gap: 40px; }
  .forwhom__image, .program__image { max-height: 360px; aspect-ratio: 16/9; }
  .program__grid { direction: rtl; }
  .program__grid > * { direction: ltr; }

  .howworks__steps { grid-template-columns: 1fr; gap: 32px; }
  .howworks__steps::before { display: none; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .hero__content { padding: 60px 0; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .form__row { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; bottom: 16px; }
  .cookie-banner__actions { width: 100%; flex-direction: column; }
  .cookie-btn-accept, .cookie-btn-decline { width: 100%; text-align: center; padding: 12px; }
  .footer__bottom { justify-content: center; text-align: center; }
}
