:root {
  --black: #101010;
  --red: #e91f2a;
  --cream: #f7f2ea;
  --white: #ffffff;
  --text: #252525;
  --muted: #6f6f6f;
  --gold: #c6a466;
  --border: #e7e1d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 145px;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.25s;
}

.nav a:hover::after {
  width: 100%;
}

.header-btn,
.btn-primary,
.btn-outline {
  padding: 13px 22px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--red);
}

.header-btn,
.btn-primary {
  background: var(--red);
  color: white;
}

.btn-outline {
  color: var(--black);
  background: transparent;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
}

.hero {
  min-height: 100vh;
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(233, 31, 42, 0.1), transparent 28%),
    linear-gradient(120deg, #f7f2ea 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2 {
  font-family: "Lora", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin: 0;
}

h1 {
  font-size: clamp(56px, 7vw, 90px);
  max-width: 760px;
}

h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
  margin: 28px 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.hero-stats div {
  border-left: 2px solid var(--red);
  padding-left: 14px;
}

.hero-stats strong {
  display: block;
  font-size: 24px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.hero-note {
  position: absolute;
  right: -20px;
  top: 20px;
  font-size: 120px;
  color: var(--red);
  opacity: 0.16;
}

.section {
  padding: 105px 0;
}

.light {
  background: var(--white);
}

.cream {
  background: var(--cream);
}

.dark {
  background: var(--black);
  color: white;
}

.dark p,
.dark li {
  color: #d8d8d8;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 34px;
  min-height: 250px;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}

.card span {
  color: var(--red);
  font-weight: 800;
}

.card h3,
.step h3,
.price-card h3 {
  font-size: 24px;
  margin: 20px 0 12px;
}

.card p,
.step p,
.price-card p {
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 70px;
  align-items: center;
}

.reverse {
  grid-template-columns: 1fr 0.95fr;
}

.split-image img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.14);
}

.split-content p {
  line-height: 1.8;
  font-size: 17px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}

.check-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.check-list li::before {
  content: "✓";
  color: var(--red);
  margin-right: 10px;
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.step {
  padding: 34px;
  border-right: 1px solid var(--border);
}

.step:last-child {
  border-right: 0;
}

.step b {
  color: var(--red);
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mini-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.mini-list strong {
  color: var(--red);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  padding: 34px;
  position: relative;
}

.price-card.featured {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.price-card.featured p,
.price-card.featured li {
  color: #d7d7d7;
}

.price-card small {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.price-card ul {
  padding-left: 18px;
  line-height: 2;
}

.price-card a {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 20px;
  background: var(--red);
  color: white;
  font-weight: 700;
}

.register-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  align-items: start;
}

.register-form {
  background: white;
  padding: 34px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 16px 18px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #111111;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;

  outline: none;
  appearance: none;
  -webkit-appearance: none;

  transition: 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: #9a9a9a;
  font-weight: 500;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}

textarea {
  resize: vertical;
}

.register-form button {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: white;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.register-form button {
  height: 56px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.faq-list {
  max-width: 850px;
}

details {
  background: white;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  padding: 20px 24px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
}

details p {
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  background: #070707;
  color: white;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer img {
  width: 120px;
  filter: brightness(0) invert(1);
}

.sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .nav,
  .header-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav.active {
    display: flex;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }

  .hero-grid,
  .split,
  .reverse,
  .register-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .timeline,
  .pricing {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-image img,
  .split-image img {
    height: 420px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }

  .sticky-cta {
    display: block;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99;
    background: var(--red);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.course-card {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px;
  min-height: 250px;
  transition: 0.25s;
}

.course-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
}

.course-card span {
  color: var(--red);
  font-weight: 800;
}

.course-card h3 {
  font-size: 24px;
  margin: 18px 0 12px;
}

.course-card p {
  color: var(--muted);
  line-height: 1.7;
}

.featured-course {
  grid-column: span 4;
  background: var(--black);
  color: white;
}

.featured-course p {
  color: #d7d7d7;
}

.fomo-box {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}

.fomo-box > span {
  display: block;
  color: #d9d9d9;
  margin-bottom: 16px;
}

.countdown {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.countdown div {
  min-width: 86px;
  padding: 16px 12px;
  background: white;
  color: var(--black);
  text-align: center;
  border-bottom: 3px solid var(--red);
}

.countdown b {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.countdown small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.fomo-box p {
  margin: 0;
  color: #d9d9d9;
}

.fomo-box strong {
  color: white;
}

.register-form {
  position: relative;
}

.form-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 13px;
  background: rgba(233, 31, 42, 0.1);
  color: var(--red);
  border: 1px solid rgba(233, 31, 42, 0.25);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.form-note {
  margin: 14px 0 0;
  color: #3f3f3f;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 900px) {
  .course-grid {
    grid-template-columns: 1fr;
  }

  .course-card,
  .featured-course {
    grid-column: auto;
  }

  .countdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .countdown div {
    min-width: auto;
  }

  .header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.header-cta-wrap .header-btn {
  display: inline-flex;
  padding: 9px 10px;
  font-size: 11px;
  white-space: nowrap;
}

.mini-countdown {
  padding: 6px 7px;
  font-size: 10px;
}

.mini-countdown span {
  display: none;
}

.mini-countdown b {
  font-size: 10px;
  letter-spacing: 0.2px;
}

.menu-btn {
  margin-left: 4px;
  font-size: 24px;
}
}

@media (max-width: 900px) {
  .logo img {
    width: 92px;
  }

  .header-inner {
    height: 72px;
  }

  .nav.active {
    top: 72px;
  }
}

.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(233, 31, 42, 0.22);
  background: rgba(233, 31, 42, 0.06);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.mini-countdown span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.mini-countdown b {
  font-size: 12px;
  letter-spacing: 0.4px;
}

.mini-countdown::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: liveDot 1s infinite;
}

@keyframes liveDot {
  50% {
    opacity: 0.35;
  }
}

```css id="2w8n4q"
.footer {
  background: #090909;
  color: white;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 480px;
  color: #bdbdbd;
  line-height: 1.9;
}

.footer-contact h3 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 24px;
  font-family: "Lora", serif;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d7d7d7;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s;
}

.footer-contact a:hover {
  color: white;
  padding-left: 6px;
}

.footer-contact i {
  width: 18px;
  color: var(--red);
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 24px;
  color: #999;
  font-size: 14px;
}

@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding-top: 55px;
    padding-bottom: 90px;
  }

}
 
