:root {
  --orange: #ff7a00;
  --orange-dark: #cc6200;
  --orange-light: #fff3e6;
  --blue: #1a5fa8;
  --blue-light: #ebf2fb;
  --amber: #c47a1a;
  --amber-light: #fdf3e3;
  --text: #1c1c1a;
  --text-muted: #6b6b66;
  --text-faint: #a8a8a3;
  --bg: #fafaf8;
  --card: #ffffff;
  --border: #e8e6e0;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  60% {
    opacity: 0;
    transform: scale(1.14);
  }
}

.fade-up {
  animation: fade-up 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.34s;
}

.delay-4 {
  animation-delay: 0.48s;
}

.delay-5 {
  animation-delay: 0.62s;
}

.urgency {
  align-items: center;
  background: #1a1a18;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  gap: 6px 10px;
  justify-content: center;
  padding: 11px 5%;
  text-align: center;
  text-decoration: none;
}

.urgency strong,
.urgency b {
  color: var(--orange);
}

.urgency b {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header nav {
  align-items: center;
  display: flex;
  height: 66px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: none;
  padding: 0 42px;
  width: 100%;
}

.brand img {
  width: 172px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-left: auto;
}

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

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

.nav-links .nav-cta {
  background: var(--orange);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  transition: background 0.2s, transform 0.15s;
}

.nav-links .nav-cta:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-1px);
}

.hero-wrap,
.section,
.how-inner,
.pricing-inner,
.testi-inner {
  margin: 0 auto;
  max-width: 1160px;
  padding-left: 6%;
  padding-right: 6%;
}

.hero {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 420px;
  padding: 88px 0 72px;
}

.hero-copy {
  max-width: 560px;
}

.hero-eyebrow {
  align-items: center;
  background: var(--orange-light);
  border-radius: 20px;
  color: var(--orange);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
  padding: 5px 14px;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  animation: pulse-ring 1.8s ease-out infinite;
  background: var(--orange);
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 7px;
  width: 7px;
}

h1,
.section-title,
.course-head h3,
.course-price strong,
.results-grid strong,
.price-card strong,
.cta-section h2,
.footer-logo {
  font-family: var(--serif);
}

h1 {
  font-size: clamp(38px, 4.5vw, 56px);
  letter-spacing: -0.6px;
  line-height: 1.08;
  margin-bottom: 22px;
}

h1 em {
  color: var(--orange);
  font-style: italic;
}

.hero-highlight {
  color: var(--orange);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 480px;
}

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

.btn-primary,
.btn-cta {
  background: var(--orange);
  border: 0;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--orange);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 6px 48px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hero-card-top {
  align-items: center;
  background: linear-gradient(135deg, #fff5ec, #ffe8cc);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 264px;
  justify-content: center;
}

.prof-avatar {
  align-items: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.prof-avatar {
  height: 96px;
  position: relative;
  width: 96px;
}

.prof-avatar img {
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  display: block;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.prof-avatar::after {
  animation: pulse-ring 2s ease-out infinite;
  border: 2px solid var(--orange);
  border-radius: 50%;
  content: "";
  inset: -8px;
  opacity: 0.25;
  position: absolute;
}

.prof-name {
  font-size: 15px;
  font-weight: 700;
}

.prof-role-small {
  color: var(--text-muted);
  font-size: 12px;
}

.hero-card-body {
  padding: 22px 26px;
}

.hero-quote {
  border-left: 3px solid var(--orange);
  color: var(--text-muted);
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
  padding-left: 14px;
}

.hero-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.hero-stats div {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.hero-stats span {
  color: var(--text-faint);
  display: block;
  font-size: 11px;
  margin-top: 2px;
}

.trust {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  justify-content: center;
  padding: 16px 6%;
}

.trust-item {
  align-items: center;
  color: var(--text-muted);
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 9px;
}

.trust-item::before {
  background: var(--orange);
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 7px;
  width: 7px;
}

.testi-section {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 88px 0;
}

.section {
  padding-bottom: 88px;
  padding-top: 88px;
}

.section-tag {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1.13;
  margin-bottom: 14px;
  max-width: 720px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
}

.section-sub {
  margin-bottom: 52px;
}

.courses-grid,
.steps-grid,
.results-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

.courses-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.course-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}

.course-card:hover {
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.course-head {
  padding: 28px 28px 22px;
}

.course-head-fq {
  background: var(--blue-light);
}

.course-head-mat {
  background: var(--amber-light);
}

.course-icon {
  align-items: center;
  border-radius: 13px;
  display: flex;
  height: 50px;
  justify-content: center;
  margin-bottom: 16px;
  width: 50px;
}

.course-icon svg {
  fill: none;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  width: 24px;
}

.course-icon-fq,
.btn-fq {
  background: var(--blue);
}

.course-icon-mat,
.btn-mat {
  background: var(--amber);
}

.course-head h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 4px;
}

.course-head p,
.course-note,
.course-body li {
  color: var(--text-muted);
}

.course-head p,
.course-note {
  font-size: 13px;
}

.course-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 28px 28px;
}

.course-price {
  align-items: baseline;
  display: flex;
  gap: 10px;
  margin-bottom: 4px;
}

.course-price strong {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.course-price span {
  color: var(--text-muted);
  font-size: 14px;
}

.course-note {
  color: var(--text-faint);
  margin-bottom: 26px;
}

.course-body ul,
.price-card ul {
  list-style: none;
}

.course-body ul {
  margin-bottom: 24px;
}

.course-body li {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  font-size: 14px;
  gap: 10px;
  padding: 9px 0;
}

.course-body li:last-child {
  border-bottom: 0;
}

.course-body li::before {
  background: var(--orange);
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 6px;
  width: 6px;
}

.btn-course,
.btn-outline,
.btn-price {
  border-radius: 11px;
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 24px;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, opacity 0.2s, transform 0.15s;
  width: 100%;
}

.btn-course {
  color: #fff;
  margin-top: auto;
}

.btn-course:hover,
.btn-price:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  margin-top: 10px;
  padding: 11px;
}

.btn-outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.how-section {
  background: var(--text);
  padding: 88px 0;
}

.how-inner .section-title {
  color: #fff;
}

.how-inner .section-sub {
  color: rgba(255, 255, 255, 0.45);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 28px 22px;
}

.step span {
  color: rgba(255, 122, 0, 0.25);
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 9px;
}

.step p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.72;
}

.results-grid {
  grid-template-columns: repeat(3, 1fr);
}

.results-grid article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
}

.results-grid strong {
  color: var(--orange);
  display: block;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}

.results-grid span {
  color: var(--text-muted);
  display: block;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-section {
  background: var(--bg);
  padding: 88px 0;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--orange);
}

.featured-tag {
  background: var(--orange);
  border-radius: 20px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  left: 50%;
  letter-spacing: 0.5px;
  padding: 4px 16px;
  position: absolute;
  top: -13px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-name {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.price-card > span {
  color: var(--text-faint);
  display: block;
  font-size: 13px;
  margin-bottom: 26px;
}

.price-card li {
  align-items: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  font-size: 13px;
  gap: 10px;
  padding: 8px 0;
}

.price-card li::before {
  color: var(--orange);
  content: "✓";
  font-weight: 800;
}

.price-card li:last-child {
  border-bottom: 0;
}

.price-card ul {
  margin-bottom: 28px;
}

.btn-price {
  border: 0;
  margin-top: auto;
}

.btn-price-solid {
  background: var(--orange);
  color: #fff;
}

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

.btn-price-outline:hover {
  border-color: var(--text-muted);
}

.testi-section {
  overflow: hidden;
}

.testi-slider {
  margin-left: auto;
  margin-right: auto;
  margin-top: 52px;
  max-width: 1160px;
  overflow: hidden;
  padding-left: 6%;
  position: relative;
}

.testi-slider::before,
.testi-slider::after {
  bottom: 0;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 80px;
  z-index: 2;
}

.testi-slider::before {
  background: linear-gradient(to right, var(--card), transparent);
  left: 0;
}

.testi-slider::after {
  background: linear-gradient(to left, var(--card), transparent);
  right: 0;
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  flex: 0 0 340px;
  padding: 28px;
}

.stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-card p {
  color: var(--text);
  font-size: 15px;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 22px;
}

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

.testi-author span {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 16px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.testi-author strong {
  display: block;
  font-size: 14px;
}

.testi-author small {
  color: var(--text-faint);
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
  padding-right: 6%;
}

.testi-dot {
  background: var(--border);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: background 0.3s, transform 0.2s;
  width: 8px;
}

.testi-dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

.cta-section {
  background: var(--orange);
  padding: 96px 6%;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1.12;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin-bottom: 36px;
}

.btn-cta {
  background: #fff;
  border: 0;
  border-radius: 12px;
  color: var(--orange);
  cursor: pointer;
  display: inline-block;
  font-weight: 800;
  padding: 16px 38px;
}

.btn-cta:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.signup-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.22s ease;
  z-index: 80;
}

.signup-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.signup-backdrop {
  background: rgba(28, 28, 26, 0.58);
  inset: 0;
  position: absolute;
}

.signup-card {
  background: var(--card);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  max-height: calc(100vh - 48px);
  max-width: 560px;
  overflow-y: auto;
  padding: 34px;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.22s ease;
  width: min(100%, 560px);
  z-index: 1;
}

.signup-modal.is-open .signup-card {
  transform: translateY(0);
}

.signup-close {
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 38px;
}

.signup-card h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 10px;
}

.signup-card > p:not(.section-tag) {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.signup-form {
  display: grid;
  gap: 16px;
}

.form-hp {
  display: none;
}

.form-row {
  display: grid;
  gap: 7px;
  text-align: left;
}

.form-row label {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.form-row input,
.form-row select {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--text);
  min-height: 48px;
  padding: 0 14px;
  width: 100%;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
  outline: 0;
}

.btn-form-submit {
  background: var(--orange);
  border: 0;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  margin-top: 8px;
  padding: 15px 24px;
}

.btn-form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  min-height: 22px;
  text-align: center;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: #146c43;
}

body.modal-open {
  overflow: hidden;
}

footer {
  align-items: center;
  background: var(--text);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 44px 6%;
}

.footer-logo {
  color: #fff;
  font-size: 22px;
}

.footer-logo span {
  color: var(--orange);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.82);
}

footer p {
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero {
    gap: 40px;
    grid-template-columns: 1fr;
    padding: 60px 0 48px;
  }

  .hero-card {
    max-width: 420px;
  }

  .courses-grid,
  .steps-grid,
  .results-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .trust {
    gap: 14px 18px;
  }
}

@media (max-width: 560px) {
  .signup-modal {
    padding: 14px;
  }

  .signup-card {
    border-radius: 18px;
    max-height: calc(100vh - 28px);
    padding: 28px 20px 22px;
  }

  .signup-card h2 {
    font-size: 30px;
    padding-right: 42px;
  }

  .hero-wrap,
  .section,
  .how-inner,
  .pricing-inner,
  .testi-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand img {
    width: 148px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-actions,
  .hero-actions .btn-primary {
    width: 100%;
  }

  .btn-primary {
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .how-section,
  .pricing-section,
  .testi-section,
  .section {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .course-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .testi-slider {
    padding-left: 20px;
  }

  .testi-card {
    flex-basis: min(320px, calc(100vw - 40px));
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}
