:root {
  --bg-1: #eff5fb;
  --bg-2: #dfe9f5;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --primary: #0c4da2;
  --primary-dark: #09356f;
  --accent: #1b83ff;
  --accent-soft: rgba(27, 131, 255, 0.12);
  --text: #172033;
  --muted: #5b667c;
  --line: rgba(12, 77, 162, 0.14);
  --success: #0d7c55;
  --danger: #ff6b6b;
  --shadow: 0 20px 55px rgba(11, 33, 77, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(27, 131, 255, 0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(12, 77, 162, 0.2), transparent 32%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  padding: 106px 18px 42px;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(16px);
  z-index: 0;
  pointer-events: none;
}

body::before {
  width: 260px;
  height: 260px;
  top: -70px;
  right: -60px;
  background: rgba(27, 131, 255, 0.18);
}

body::after {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -90px;
  background: rgba(12, 77, 162, 0.16);
}

.page {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), var(--max));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 32px rgba(11, 33, 77, 0.12);
}

.brand {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.topbar-actions {
  display: flex;
  gap: 10px;
}

.topbar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 22px rgba(27, 131, 255, 0.2);
}

.topbar-button--outline {
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(12, 77, 162, 0.12);
  box-shadow: none;
}

.floating-register {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d7c55, #16a36f);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(13, 124, 85, 0.34);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-register:hover,
.floating-register:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(13, 124, 85, 0.42);
}

.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  animation: floatUp 0.7s ease both;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.88fr;
  gap: 30px;
  padding: 46px 42px;
  background:
    linear-gradient(135deg, rgba(12, 77, 162, 0.98), rgba(20, 122, 255, 0.94)),
    #0c4da2;
  color: #fff;
}

.hero-copy {
  display: grid;
  align-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 1.02;
}

.hero p {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 54ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.box-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
  margin-bottom: 8px;
}

.price-spotlight {
  position: relative;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.limited-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.88rem;
  font-weight: 700;
}

.price {
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.price-currency {
  margin: 8px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.price-text {
  margin: 18px 0 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
}

.price-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.8;
}

.cta-register,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.primary-action,
.cta-register {
  color: #fff;
  background: linear-gradient(135deg, #0d7c55, #16a36f);
  box-shadow: 0 14px 28px rgba(13, 124, 85, 0.26);
}

.secondary-action {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-action--light {
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(12, 77, 162, 0.12);
}

.cta-register {
  margin-top: 18px;
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible,
.cta-register:hover,
.cta-register:focus-visible,
.topbar-button:hover,
.topbar-button:focus-visible {
  transform: translateY(-2px);
}

.content {
  padding: 36px 42px 42px;
  display: grid;
  gap: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 255, 0.98));
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quick-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(11, 33, 77, 0.06);
}

.quick-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.1rem;
}

.quick-card span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.section-heading--compact {
  text-align: left;
  max-width: none;
  margin: 0 0 18px;
}

.section-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.modality-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(12, 77, 162, 0.12);
  box-shadow: 0 14px 30px rgba(11, 33, 77, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.modality-card:hover,
.modality-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 33, 77, 0.12);
}

.modality-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.modality-content {
  padding: 18px;
}

.modality-tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(27, 131, 255, 0.1);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modality-content h3 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.modality-content p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.learning-flow,
.benefits-panel,
.register-panel {
  background: var(--panel-strong);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(11, 33, 77, 0.06);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.flow-card {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fbff, #eef5ff);
  border: 1px solid rgba(12, 77, 162, 0.12);
}

.flow-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.3rem;
}

.flow-card h3 {
  margin: 0 0 10px;
  color: var(--primary-dark);
}

.flow-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-chips span {
  display: inline-flex;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(27, 131, 255, 0.08);
  border: 1px solid rgba(27, 131, 255, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
}

.register-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(12, 77, 162, 0.96), rgba(27, 131, 255, 0.92));
  color: #fff;
}

.register-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.register-copy p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.register-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero,
  .quick-info,
  .modalities-grid,
  .flow-grid,
  .register-panel {
    grid-template-columns: 1fr;
  }

  .modalities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-panel {
    display: grid;
  }

  .register-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding: 92px 12px 88px;
  }

  .topbar {
    top: 10px;
    width: calc(100% - 16px);
    padding: 10px 12px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .topbar-actions {
    gap: 8px;
  }

  .hero {
    padding: 28px 18px;
    gap: 20px;
  }

  .content {
    padding: 22px 16px 24px;
  }

  .quick-card,
  .learning-flow,
  .benefits-panel,
  .register-panel,
  .price-spotlight {
    padding: 18px;
  }

  .hero-actions,
  .register-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action,
  .cta-register,
  .floating-register {
    width: 100%;
  }

  .modalities-grid,
  .flow-grid,
  .quick-info {
    grid-template-columns: 1fr;
  }

  .modality-card img {
    height: 200px;
  }

  .price {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }
}
