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

:root {
  --green-dark: #1F4B2E;
  --green-mid: #2E6B44;
  --green-light: #EAF2EC;
  --amber: #C47A1A;
  --amber-dark: #A0620F;
  --amber-light: #FDF3E3;
  --cream: #F5EDD9;
  --cream-light: #FBF8F2;
  --brown-dark: #3D2409;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --text-light: #888;
  --white: #FFFFFF;
  --border: #E0D8CC;
  --shadow: 0 2px 16px rgba(31, 75, 46, 0.08);
  --shadow-md: 0 4px 32px rgba(31, 75, 46, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1120px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream-light);
  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; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--cream);
}

.section--dark {
  background: var(--green-dark);
  color: var(--white);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.section-title--white {
  color: var(--white);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-subtitle--white {
  color: rgba(255,255,255,0.75);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 122, 26, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}

.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-outline--white {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline--white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
}

.header__logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

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

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.header__nav a:hover {
  color: var(--green-dark);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream-light);
  z-index: 99;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  background: var(--cream-light);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.hero__decor {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 122, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 80px 0;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-light);
  border: 1px solid rgba(196, 122, 26, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero__kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--amber);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero__hint {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
}

.hero__image-wrap {
  position: relative;
}

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

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero__badge-text {
  font-size: 13px;
  color: var(--text-muted);
}

.hero__badge-text strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

.for-whom__header {
  text-align: center;
  margin-bottom: 56px;
}

.for-whom__header .section-subtitle {
  margin: 0 auto;
}

.for-whom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.for-whom__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.for-whom__card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.for-whom__card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.for-whom__card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

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

.format__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.format__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.format__feature-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.format__feature h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
}

.format__feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.program__header {
  margin-bottom: 56px;
}

.program__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 740px;
}

.program__step {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 40px;
}

.program__step:last-child {
  padding-bottom: 0;
}

.program__step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.program__step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.program__step-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 8px;
}

.program__step:last-child .program__step-line {
  display: none;
}

.program__step-body {
  padding-top: 8px;
}

.program__step-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.program__step-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.program__step-tag {
  display: inline-block;
  margin-top: 12px;
  background: var(--green-light);
  color: var(--green-mid);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

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

.about__image-col {
  position: relative;
}

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

.about__stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 100px;
}

.about__stat--1 {
  top: 32px;
  right: -24px;
}

.about__stat--2 {
  bottom: 40px;
  left: -24px;
}

.about__stat-num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--green-dark);
  display: block;
}

.about__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

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

.about__text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.about__quote {
  border-left: 3px solid var(--amber);
  padding-left: 20px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin: 8px 0;
}

.results__header {
  margin-bottom: 56px;
}

.results__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.results__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
}

.results__item-icon {
  width: 40px;
  height: 40px;
  background: rgba(196, 122, 26, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.results__item-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.results__item-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.faq__header {
  margin-bottom: 48px;
}

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

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

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq__question:hover .faq__q-text {
  color: var(--green-dark);
}

.faq__q-text {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  transition: color 0.2s;
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}

.faq__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--green-dark);
  transition: stroke 0.2s;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--green-dark);
}

.faq__item.is-open .faq__icon svg {
  stroke: var(--white);
}

.faq__item.is-open .faq__q-text {
  color: var(--green-dark);
}

.faq__answer {
  display: none;
  padding: 0 4px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.apply {
  background: linear-gradient(135deg, var(--green-dark) 0%, #163526 100%);
}

.apply__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.apply__info {
  padding-top: 8px;
}

.apply__info .section-label {
  color: rgba(196, 122, 26, 0.9);
}

.apply__info .section-title {
  color: var(--white);
}

.apply__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-top: 16px;
}

.apply__promises {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apply__promise {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.apply__promise::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(196, 122, 26, 0.2);
  border: 1.5px solid rgba(196, 122, 26, 0.5);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-7' stroke='%23C47A1A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.apply__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form__group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--cream-light);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46, 107, 68, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 90px;
}

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

.form__consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--green-mid);
}

.form__consent label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.form__consent a {
  color: var(--green-mid);
  text-decoration: underline;
}

.form__submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
}

.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 300px;
}

.footer__company {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__company span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer__col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer__col ul a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 620px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.16);
  padding: 24px 28px;
  z-index: 200;
  display: none;
  border: 1px solid var(--border);
}

.cookie-banner.is-visible {
  display: block;
  animation: slideUp 0.35s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.cookie-banner__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-banner__text a {
  color: var(--green-mid);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner__accept {
  padding: 10px 24px;
  font-size: 14px;
}

.cookie-banner__decline {
  padding: 10px 20px;
  font-size: 14px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-sans);
  color: var(--text-muted);
  transition: all 0.2s;
}

.cookie-banner__decline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.legal-page {
  padding-top: 68px;
  min-height: 100vh;
  background: var(--cream-light);
}

.legal-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 60px 0;
}

.legal-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}

.legal-content {
  padding: 60px 0 80px;
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 40px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

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

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}

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

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-mid);
}

.legal-back:hover {
  text-decoration: underline;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--cream-light);
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.success-card__icon {
  width: 72px;
  height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 28px;
}

.success-card h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.success-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.success-card__back {
  margin-top: 36px;
  display: inline-flex;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.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; }
.fade-in-delay-5 { transition-delay: 0.5s; }

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__kicker { display: inline-flex; }
  .hero__image-wrap { max-width: 560px; margin: 0 auto; }
  .format__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__image-col { max-width: 480px; }
  .apply__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .header__nav { display: none; }
  .header__actions .btn { display: none; }
  .header__burger { display: flex; }
  .for-whom__grid { grid-template-columns: 1fr; gap: 20px; }
  .format__features { grid-template-columns: 1fr; }
  .results__list { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .apply__form-wrap { padding: 28px 24px; }
  .hero__badge { left: 0; bottom: -16px; }
  .about__stat--1 { right: 0; }
  .about__stat--2 { left: 0; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}

@media (max-width: 480px) {
  .success-card { padding: 40px 24px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; text-align: center; }
}
