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

:root {
  --bg: #0f0520;
  --bg-card: #180d30;
  --bg-secondary: #13082a;
  --primary: #e8437a;
  --primary-dark: #c93568;
  --primary-glow: rgba(232, 67, 122, 0.3);
  --text: #f0ecf7;
  --muted: #8b7fa8;
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.12);
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;
  --container: 1200px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 2rem;
  height: 3.25rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 40px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 60px rgba(232, 67, 122, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
  height: 3.75rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-label .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(15, 5, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}

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

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.nav__links button {
  transition: color 0.2s;
}

.nav__links button:hover {
  color: var(--text);
}

.nav__cta {
  display: none;
}

.nav__toggle {
  padding: 0.25rem;
  color: var(--text);
}

.nav__toggle svg {
  display: block;
}

.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile button {
  text-align: left;
  padding: 0.875rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: background 0.2s;
}

.nav__mobile button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav__mobile .mobile-cta {
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.nav__mobile .btn {
  width: 100%;
  height: 3.5rem;
  font-size: 1.125rem;
  border-radius: 0.875rem;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: flex; }
  .nav__toggle { display: none; }
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

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

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(15, 5, 32, 0.75) 40%, rgba(15, 5, 32, 0.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  padding: 4rem 0 3rem;
}

.hero__title {
  font-size: clamp(2.75rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #f06292 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .hero__actions { flex-direction: row; }
}

.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section__sub {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}

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

@media (min-width: 1024px) {
  .for-whom__grid { grid-template-columns: 1fr 1fr; }
}

.for-whom__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.for-whom__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.for-whom__check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.125rem;
  border-radius: 50%;
  background: rgba(232, 67, 122, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-whom__check svg {
  width: 0.875rem;
  height: 0.875rem;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.for-whom__img-wrap {
  position: relative;
}

.for-whom__glow {
  position: absolute;
  inset: 0;
  background: var(--primary);
  filter: blur(100px);
  opacity: 0.15;
  border-radius: 50%;
}

.for-whom__img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  aspect-ratio: 4/5;
}

@media (min-width: 1024px) {
  .for-whom__img-frame { aspect-ratio: 1; }
}

.for-whom__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.for-whom__badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(12px);
}

.for-whom__badge .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.for-whom__badge .label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.format__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .format__grid { grid-template-columns: repeat(3, 1fr); }
}

.format__card {
  background: rgba(24, 13, 48, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}

.format__card:hover {
  background: var(--bg-card);
  border-color: rgba(232, 67, 122, 0.3);
}

.format__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.format__card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.format__card p {
  color: var(--muted);
  line-height: 1.7;
}

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

@media (min-width: 1024px) {
  .mentor__grid { grid-template-columns: 1fr 1fr; }
}

.mentor__img-wrap {
  position: relative;
}

.mentor__img-frame {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.mentor__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor__glow {
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  width: 16rem;
  height: 16rem;
  background: var(--primary);
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.mentor__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
}

.mentor__bio {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.review-card__stars svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: var(--primary);
  stroke: none;
}

.review-card__text {
  font-size: 1.0625rem;
  color: rgba(240, 236, 247, 0.85);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-card__author {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.review-card__name {
  font-weight: 700;
  color: var(--text);
}

.review-card__role {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.faq__list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 1.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-item__q:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(232, 67, 122, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
}

.faq-item__icon svg {
  width: 0.875rem;
  height: 0.875rem;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.3s;
}

.faq-item.open .faq-item__icon {
  background: var(--primary);
}

.faq-item.open .faq-item__icon svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-item__a {
  display: none;
  padding: 0 1.75rem 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.open .faq-item__a {
  display: block;
}

.lead-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 75rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .lead-section__grid { grid-template-columns: 1fr 1fr; }
}

.lead-section__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.lead-section__title .highlight {
  color: var(--primary);
}

.lead-section__sub {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.lead-section__perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-section__perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(240, 236, 247, 0.85);
}

.lead-section__perk svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .form-card { padding: 3.5rem; }
}

.form-card__glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 16rem;
  height: 16rem;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.08;
  pointer-events: none;
}

.form-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form-card .sub {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-field input {
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  background: rgba(15, 5, 32, 0.6);
  border: 1px solid var(--border-light);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input::placeholder {
  color: rgba(139, 127, 168, 0.5);
}

.form-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 67, 122, 0.15);
}

.form-field .error {
  display: none;
  font-size: 0.8125rem;
  color: #f87171;
  margin-top: 0.375rem;
}

.form-field.has-error input {
  border-color: #f87171;
}

.form-field.has-error .error {
  display: block;
}

.form-submit {
  width: 100%;
  height: 4rem;
  border-radius: 0.875rem;
  background: var(--primary);
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px var(--primary-glow);
}

.form-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 50px rgba(232, 67, 122, 0.45);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-submit svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.form-submit:not(:disabled):hover svg {
  transform: translateX(3px);
}

.form-agree {
  font-size: 0.75rem;
  color: rgba(139, 127, 168, 0.6);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-agree a {
  text-decoration: underline;
  transition: color 0.2s;
}

.form-agree a:hover {
  color: var(--text);
}

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__logo {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 1rem;
}

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

.footer__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 22rem;
  margin-bottom: 1.5rem;
}

.footer__legal-info {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.9;
}

.footer__col h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col ul li a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

@media (min-width: 640px) {
  .cookie-banner { padding: 1.5rem; }
}

.cookie-banner__inner {
  max-width: 52rem;
  margin: 0 auto;
  background: rgba(24, 13, 48, 0.95);
  border: 1px solid var(--border-light);
  border-radius: 1.25rem;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
  }
}

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

.cookie-banner__text a {
  color: var(--primary);
  transition: opacity 0.2s;
}

.cookie-banner__text a:hover {
  opacity: 0.8;
}

.cookie-banner__btn {
  flex-shrink: 0;
  padding: 0.625rem 1.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}

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

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

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

.page-hero {
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
  background: var(--bg);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
  padding-bottom: 6rem;
}

.legal-content .date {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.375rem;
}

.legal-content strong {
  color: var(--text);
}

.success-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.success-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
}

.success-card {
  max-width: 38rem;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .success-card { padding: 5rem 4rem; }
}

.success-card__top-glow {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 16rem;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.success-card__icon {
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(232, 67, 122, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-card__icon svg {
  width: 2.75rem;
  height: 2.75rem;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-card h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.success-card p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.success-card .btn {
  border: 1px solid var(--border-light);
  color: var(--text);
}

.success-card .btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
  .for-whom__badge {
    bottom: -1.25rem;
    left: -0.5rem;
  }
  .section { padding: 4rem 0; }
}
