@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #FAF6F0;
  --surface: #F2E9DF;
  --surface-alt: #EDE0D4;
  --border: #DDD0C0;
  --border-light: #EDE0D4;
  --text: #2A1A0E;
  --text-mid: #5A3D2B;
  --text-soft: #8A6E5A;
  --primary: #B86432;
  --primary-dark: #95481E;
  --primary-light: #D4895A;
  --accent: #6D8E5F;
  --accent-dark: #527046;
  --white: #FFFFFF;
  --header-h: 72px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { line-height: 1.75; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: #F0E8DF;
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.visible {
  transform: translateY(0);
}

#cookie-banner p {
  flex: 1;
  min-width: 200px;
}

#cookie-banner a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: var(--primary-dark);
}

.btn-cookie-decline {
  background: transparent;
  color: #BCA898;
  border: 1px solid #5A4A3A;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-cookie-decline:hover {
  border-color: #8A7060;
  color: #D0C0B0;
}

.site-header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.site-logo span {
  color: var(--primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--text);
}

.btn-nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.btn-nav-cta:hover {
  background: var(--primary-dark) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hero {
  padding: 0;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 6vw, 5rem) clamp(1.25rem, 8vw, 6rem);
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.hero h1 {
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 25%);
}

.for-whom {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.for-whom-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.for-whom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.for-whom-image:hover img {
  transform: scale(1.03);
}

.cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.card-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 2px;
}

.card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
}

.card-item p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.program {
  background: var(--bg);
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.skill-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

.skill-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.skill-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.process {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border);
}

.step {
  padding: 0 1rem;
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.step p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.about {
  background: var(--bg);
}

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

.about-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(42, 26, 14, 0.8) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.about-content blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-mid);
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
  line-height: 1.7;
}

.about-content p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.fact {
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 2px;
}

.fact strong {
  display: block;
  font-size: 1.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.fact span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.faq {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: flex-start;
}

.faq-sidebar h2 {
  margin-bottom: 1rem;
}

.faq-sidebar p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.faq-sidebar .btn-primary {
  font-size: 0.95rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.faq-icon span {
  display: block;
  width: 10px;
  height: 1px;
  background: var(--text-mid);
  position: relative;
  transition: background 0.2s;
}

.faq-icon span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 10px;
  height: 1px;
  background: var(--text-mid);
  transition: opacity 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-item.open .faq-icon span {
  background: var(--white);
}

.faq-item.open .faq-icon span::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.75;
}

.lead-form {
  background: var(--text);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.lead-form::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(184, 100, 50, 0.12);
  pointer-events: none;
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.form-intro .section-label {
  color: var(--primary-light);
}

.form-intro h2 {
  color: var(--bg);
  margin-bottom: 1rem;
}

.form-intro p {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.97rem;
}

.form-intro ul {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-intro li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(250, 246, 240, 0.8);
}

.form-intro li::before {
  content: '—';
  color: var(--primary-light);
  flex-shrink: 0;
}

.form-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2.5rem;
}

.form-card h3 {
  font-size: 1.2rem;
  color: var(--bg);
  margin-bottom: 0.4rem;
}

.form-card .form-subtitle {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.5);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(250, 246, 240, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  font-size: 0.97rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--bg);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: rgba(250, 246, 240, 0.3);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
}

.form-group select option {
  background: var(--text);
  color: var(--bg);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.5);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent label a {
  color: rgba(250, 246, 240, 0.7);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

.site-footer {
  background: #1E1008;
  color: rgba(250, 246, 240, 0.6);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-brand .site-logo {
  color: rgba(250, 246, 240, 0.9);
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-brand .legal-details {
  margin-top: 1rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.35);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.4);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.55);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: rgba(250, 246, 240, 0.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.3);
}

.success-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--bg);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.success-page p {
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.legal-page {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 5rem;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.84rem;
  color: var(--text-soft);
  margin-bottom: 3rem;
}

.legal-body h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal-body h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}

.legal-body p {
  color: var(--text-mid);
  margin-bottom: 0.75rem;
  font-size: 0.93rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-body ul li {
  color: var(--text-mid);
  font-size: 0.93rem;
  margin-bottom: 0.3rem;
}

.legal-body a {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .for-whom-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    order: 1;
    padding: 3.5rem clamp(1.25rem, 5vw, 3rem);
    max-width: 100%;
  }

  .hero-image {
    order: 0;
    aspect-ratio: 16/9;
    max-height: 55vw;
  }

  .hero-image::after {
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 30%);
  }

  .for-whom-grid,
  .about-grid,
  .lead-form-inner,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-sidebar {
    max-width: 480px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-steps::before {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }

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

  .site-nav a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

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

  .about-facts {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-card {
    padding: 1.75rem 1.25rem;
  }

  .program-header {
    flex-direction: column;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
