/* ════════════════════════════════════════════════════════════════
   Rushena — styles.css
   Palette: ivory, dusty rose, deep burgundy, warm gold
   ════════════════════════════════════════════════════════════════ */

/* ── Custom properties ─────────────────────────────────────── */
:root {
  --color-ivory:       #faf6f0;
  --color-cream:       #f2ebe0;
  --color-cream-dark:  #e8ddd0;
  --color-rose:        #b85068;
  --color-rose-dark:   #8c3450;
  --color-rose-light:  #e8a0b0;
  --color-burgundy:    #5c1a2e;
  --color-gold:        #c9a050;
  --color-gold-light:  #e8c880;
  --color-text:        #2c1a1a;
  --color-text-muted:  #7a5a5a;
  --color-white:       #ffffff;
  --color-border:      #d8c8c0;

  --font-heading: Georgia, "Times New Roman", Times, serif;
  --font-body:    "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(92, 26, 46, 0.08);
  --shadow-md:  0 6px 24px rgba(92, 26, 46, 0.12);
  --shadow-lg:  0 16px 48px rgba(92, 26, 46, 0.16);

  --max-width: 1100px;
  --section-py: 80px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-ivory);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════════════════════════
   Buttons
   ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s, transform 0.18s, box-shadow 0.25s;
  text-align: center;
}

.btn--primary {
  background: var(--color-rose);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(184, 80, 104, 0.35);
}
.btn--primary:hover {
  background: var(--color-rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 80, 104, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-rose);
  border: 2px solid var(--color-rose);
}
.btn--outline:hover {
  background: var(--color-rose);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════
   Header / Navigation
   ════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-burgundy);
  letter-spacing: 0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--color-text-muted); }

.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-burgundy);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ════════════════════════════════════════════════════════════════
   Hero
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-burgundy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-rushnik.jpg");
  background-size: cover;
  background-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(92, 26, 46, 0.82) 0%,
    rgba(92, 26, 46, 0.55) 50%,
    rgba(92, 26, 46, 0.25) 100%
  );
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 20px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-heading em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.5);
  margin: 0 auto;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.15); }
}

/* ════════════════════════════════════════════════════════════════
   Section shared
   ════════════════════════════════════════════════════════════════ */
section { padding: var(--section-py) 0; }

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

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-burgundy);
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════════
   About / Promise section
   ════════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--color-white);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-text .section-intro { max-width: 100%; }

.about-values {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-value-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-burgundy);
  margin-bottom: 4px;
}

.about-value-body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* ════════════════════════════════════════════════════════════════
   For whom section
   ════════════════════════════════════════════════════════════════ */
.forwhom-section {
  background: var(--color-cream);
}

.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.forwhom-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-rose-light);
  transition: box-shadow 0.25s, transform 0.25s;
}

.forwhom-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.forwhom-card-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--color-rose-light);
  line-height: 1;
  margin-bottom: 12px;
}

.forwhom-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-burgundy);
  margin-bottom: 10px;
}

.forwhom-card p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   What's included
   ════════════════════════════════════════════════════════════════ */
.curriculum-section {
  background: var(--color-white);
}

.curriculum-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.curriculum-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.curriculum-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.curriculum-item:last-child { border-bottom: none; }

.curriculum-num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1;
  min-width: 36px;
}

.curriculum-item-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-burgundy);
  margin-bottom: 6px;
}

.curriculum-item-body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   Format (how it works)
   ════════════════════════════════════════════════════════════════ */
.format-section {
  background: var(--color-burgundy);
  color: var(--color-white);
}

.format-section .section-label { color: var(--color-gold-light); }
.format-section .section-heading { color: var(--color-white); }
.format-section .section-intro { color: rgba(255,255,255,0.8); }

.format-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.format-step {
  position: relative;
  padding: 28px 24px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
}

.format-step-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-style: italic;
  color: rgba(255,255,255,0.12);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.format-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gold-light);
  margin-bottom: 10px;
}

.format-step p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   Result section
   ════════════════════════════════════════════════════════════════ */
.result-section {
  background: var(--color-cream);
}

.result-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.result-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.result-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.result-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.result-check svg { display: block; }

.result-item-text h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-burgundy);
  margin-bottom: 4px;
}

.result-item-text p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* ════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--color-white);
}

.faq-grid {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-burgundy);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.faq-question::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  font-style: italic;
  color: var(--color-rose);
  font-size: 1.15rem;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-left: 28px;
}

/* ════════════════════════════════════════════════════════════════
   CTA banner
   ════════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-rose-dark) 0%, var(--color-burgundy) 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-banner-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-banner-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════════════
   Lead Form section
   ════════════════════════════════════════════════════════════════ */
.form-section {
  background: var(--color-ivory);
}

.form-section-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-section .section-heading,
.form-section .section-intro { text-align: center; }

.form-section .section-intro { margin: 0 auto 40px; }

.lead-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-ivory);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(184, 80, 104, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #b8a8a8; }

.form-field textarea { resize: vertical; min-height: 80px; }

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--color-rose);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent a {
  color: var(--color-rose);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit { width: 100%; font-size: 1.05rem; padding: 16px 36px; }

.form-error {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(184, 80, 104, 0.08);
  border-radius: var(--radius-sm);
  color: var(--color-rose-dark);
  font-size: 0.9rem;
  border-left: 3px solid var(--color-rose);
}

/* ════════════════════════════════════════════════════════════════
   Footer
   ════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-burgundy);
  padding: 40px 0;
  color: rgba(255,255,255,0.72);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand .logo-text { color: rgba(255,255,255,0.9); font-size: 1.25rem; }

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-gold-light); }

/* ════════════════════════════════════════════════════════════════
   Cookie Banner
   ════════════════════════════════════════════════════════════════ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 28px;
  max-width: 620px;
  width: calc(100% - 32px);
  align-items: center;
  gap: 20px;
  border: 1px solid var(--color-border);
  transition: opacity 0.4s, transform 0.4s;
}

.cookie-banner--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

.cookie-banner-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

.cookie-banner-text a {
  color: var(--color-rose);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.cookie-btn--accept {
  background: var(--color-rose);
  color: var(--color-white);
}
.cookie-btn--accept:hover { background: var(--color-rose-dark); }

.cookie-btn--decline {
  background: var(--color-cream);
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
}
.cookie-btn--decline:hover { background: var(--color-cream-dark); }

/* ════════════════════════════════════════════════════════════════
   Legal pages
   ════════════════════════════════════════════════════════════════ */
.legal-page {
  background: var(--color-ivory);
}

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

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-burgundy);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-burgundy);
  margin: 36px 0 12px;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }

.legal-content a { color: var(--color-rose); text-decoration: underline; }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--color-rose);
  margin-bottom: 40px;
  transition: gap 0.2s;
}
.legal-back:hover { gap: 10px; }

/* ════════════════════════════════════════════════════════════════
   Success page
   ════════════════════════════════════════════════════════════════ */
.success-page { min-height: 100vh; display: flex; flex-direction: column; }

.success-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.success-container {
  max-width: 540px;
  text-align: center;
}

.success-icon {
  margin: 0 auto 28px;
  width: 80px;
  height: 80px;
  background: rgba(184, 80, 104, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-burgundy);
  margin-bottom: 16px;
}

.success-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.success-subtext {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

/* ════════════════════════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-py: 60px; }

  .about-grid,
  .curriculum-layout,
  .result-layout { grid-template-columns: 1fr; gap: 40px; }

  .about-image-decor { display: none; }
  .about-image-wrap img,
  .curriculum-image img,
  .result-image img { height: 320px; }
}

@media (max-width: 700px) {
  :root { --section-py: 48px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--color-ivory);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    z-index: 99;
    padding: 16px 0 24px;
  }

  .nav-menu.nav-menu--open { display: flex; }

  .nav-menu a {
    padding: 12px 28px;
    width: 100%;
    font-size: 1rem;
  }

  .header-cta { display: none; }

  .nav-toggle { display: flex; }

  .hero { min-height: 80vh; }
  .hero-content { padding: 60px 0; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .lead-form { padding: 32px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .cookie-banner { flex-direction: column; align-items: flex-start; bottom: 0; border-radius: var(--radius-md) var(--radius-md) 0 0; }

  .forwhom-grid { grid-template-columns: 1fr; }
  .format-steps { grid-template-columns: 1fr; }
}
