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

/* Load the local display font used across headings and brand elements */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('./BricolageGrotesque-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --orange: #E8501A;
  --orange-dark: #c43d10;
  --orange-light: #f47346;
  --blue-soft: #A8C4DC;
  --blue-dark: #2C6FAC;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-mid: #e0e0e0;
  --gray-text: #555555;
  --dark: #1a1a1a;
  --font-brand: 'Bricolage Grotesque', 'Arial Black', 'Impact', sans-serif;
  --font-body: 'Bricolage Grotesque', 'Georgia', 'Times New Roman', serif;
  --font-ui: system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ========== HERO ========== */
.hero {
  background: var(--orange);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__right::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -120px;
  width: 320px;
  height: 320px;
  background: var(--blue-soft);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.85;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.brand-badge {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 48px;
  opacity: 0.9;
}

.brand-badge__sup {
  font-family: var(--font-brand);
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.brand-badge__name {
  font-family: var(--font-brand);
  color: var(--white);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -0.5px;
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-brand);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: bold;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.hero__headline em {
  font-style: normal;
  color: #ffcc99;
}

.hero__sub {
  font-family: var(--font-brand);
  font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(255,255,255,0.9);
  font-weight: bold;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  line-height: 1.3;
}

.hero__desc {
  font-family: var(--font-ui);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 48px;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: bold;
  padding: 20px 48px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.hero__guarantee {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ========== SECTION GENERIC ========== */
section { padding: 100px 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: bold;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

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

.section-body {
  font-family: var(--font-ui);
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.8;
  max-width: 640px;
}

/* ========== SOCIAL PROOF BAR ========== */
.proof-bar {
  background: var(--dark);
  padding: 28px 0;
}

.proof-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof-item__num {
  font-family: var(--font-brand);
  font-size: 32px;
  color: var(--orange);
  font-weight: bold;
  letter-spacing: -1px;
}

.proof-item__label {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ========== PROBLEM ========== */
.problem {
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.problem::after {
  content: '?';
  font-family: var(--font-brand);
  font-size: 400px;
  color: rgba(0,0,0,0.04);
  position: absolute;
  right: -60px;
  top: -60px;
  line-height: 1;
  font-weight: bold;
  pointer-events: none;
}

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

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.pain-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
}

.pain-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.highlight-box {
  background: var(--orange);
  color: var(--white);
  padding: 48px;
  border-radius: 4px;
  position: relative;
}

.highlight-box::before {
  content: '';
  width: 80px;
  height: 80px;
  background: var(--blue-soft);
  border-radius: 50%;
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.5;
}

.highlight-box__quote {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.highlight-box__body {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ========== WHAT YOU LEARN ========== */
.learn { background: var(--white); }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.module-card {
  border: 1.5px solid var(--gray-mid);
  border-radius: 6px;
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.module-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.module-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(232,80,26,0.12);
}

.module-card:hover::after { transform: scaleX(1); }

.module-card__num {
  font-family: var(--font-brand);
  font-size: 48px;
  color: var(--blue-soft);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.module-card__title {
  font-family: var(--font-brand);
  font-size: 18px;
  color: var(--dark);
  font-weight: bold;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.module-card__desc {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ========== FOR WHOM ========== */
.for-whom {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.for-whom::before {
  content: '';
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--blue-soft);
  opacity: 0.06;
  position: absolute;
  right: -150px;
  top: -150px;
}

.for-whom .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.whom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.whom-list li {
  display: flex;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  align-items: flex-start;
}

.whom-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========== ABOUT ========== */
.about {
  background: var(--white);
  overflow: hidden;
}

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

.about__photo-bg {
  background: var(--blue-soft);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

.about__photo-circle {
  width: 100px;
  height: 100px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  bottom: -30px;
  right: -30px;
}

.about__name {
  font-family: var(--font-brand);
  font-size: 42px;
  color: var(--dark);
  font-weight: bold;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.about__title {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.about__bio {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.credential {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--gray-text);
}

.credential::before {
  content: '✓';
  color: var(--orange);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

.about__social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border: 1.5px solid var(--orange);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
}

/* ========== PILLARS ========== */
.pillars { background: var(--gray-light); }

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

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 40px;
}

.pillar {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.pillar__icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
}

.pillar__icon::after {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--blue-soft);
  border-radius: 50%;
  position: absolute;
  bottom: -5px;
  right: -5px;
  opacity: 0.7;
}

.pillar__title {
  font-family: var(--font-brand);
  font-size: 19px;
  color: var(--dark);
  font-weight: bold;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.pillar__desc {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
}

.pillars__visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillars__circle-lg {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pillars__circle-text {
  font-family: var(--font-brand);
  font-size: 80px;
  color: var(--white);
  font-weight: bold;
  letter-spacing: -4px;
}

.pillars__circle-dot {
  width: 16px;
  height: 16px;
  background: var(--blue-soft);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 20px;
}

.pillars__circle-sm {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--blue-soft);
  position: absolute;
  bottom: 20px;
  right: -20px;
  opacity: 0.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--orange);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  position: absolute;
  left: -100px;
  bottom: -100px;
}

.cta-section::after {
  content: '';
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--blue-soft);
  opacity: 0.25;
  position: absolute;
  right: 80px;
  top: -60px;
}

.cta-section .container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-section .section-title {
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 20px;
}

.cta-section .section-body {
  color: rgba(255,255,255,0.85);
  margin: 0 auto 48px;
  text-align: center;
  max-width: 500px;
}

.cta-price-wrap { margin-bottom: 40px; }

.cta-price-label {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cta-price {
  font-family: var(--font-brand);
  font-size: 64px;
  color: var(--white);
  font-weight: bold;
  letter-spacing: -2px;
  line-height: 1;
}

.cta-price-sub {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

.btn-primary--dark {
  background: var(--dark);
  color: var(--white);
  font-size: 20px;
  padding: 22px 60px;
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-brand);
  font-weight: bold;
  border-radius: 6px;
  letter-spacing: -0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.btn-primary--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.35);
}

.cta-trust {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-trust span::before { content: '✓ '; }

/* ========== FOOTER ========== */
footer {
  background: #111;
  padding: 60px 0 40px;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-badge__sup,
.footer-brand .brand-badge__name { color: rgba(255,255,255,0.8); }

.footer-brand p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 12px;
}

.footer-col__title {
  font-family: var(--font-brand);
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__right { display: none; }
  .hero__left { padding: 60px 32px; }
  .hero__headline { line-height: 1.05; letter-spacing: -1px; }
  .hero__sub { margin-bottom: 24px; }
  .hero__desc { max-width: none; margin-bottom: 32px; }
  .btn-primary,
  .btn-primary--dark {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
  }
  .hero__cta-group { width: 100%; }
  .problem .container,
  .for-whom .container,
  .about .container,
  .pillars .container { grid-template-columns: 1fr; gap: 48px; }
  .about .container { gap: 40px; }
  .about__social { flex-wrap: wrap; }
  .proof-bar .container { gap: 24px 28px; }
  .proof-item { min-width: 120px; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .pillars__visual { height: 320px; }
  .pillars__circle-lg {
    width: 230px;
    height: 230px;
  }
  .pillars__circle-text { font-size: 62px; }
  footer .container { grid-template-columns: 1fr; gap: 32px; }
  .proof-divider { display: none; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 24px; }
  .brand-badge { margin-bottom: 32px; }
  .brand-badge__name { font-size: 24px; }
  .section-title {
    line-height: 1.1;
    letter-spacing: -1px;
  }
  .section-body {
    font-size: 16px;
    line-height: 1.7;
  }
  .cta-price { font-size: clamp(44px, 11vw, 64px); }
  .cta-trust {
    gap: 12px;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero__left { padding: 48px 24px; }
  .hero__eyebrow { letter-spacing: 2px; }
  .hero__headline {
    font-size: clamp(34px, 11vw, 46px);
    margin-bottom: 10px;
  }
  .hero__sub {
    font-size: clamp(16px, 6vw, 22px);
    line-height: 1.35;
  }
  .hero__desc { font-size: 15px; }
  .proof-item__num { font-size: 28px; }
  .proof-item__label { font-size: 11px; }
  .modules-grid { grid-template-columns: 1fr; }
  .module-card { padding: 28px 24px; }
  .highlight-box { padding: 32px 24px; }
  .highlight-box__quote { font-size: 20px; }
  .about__name { font-size: clamp(32px, 10vw, 42px); }
  .about__bio { font-size: 15px; }
  .social-link {
    width: 100%;
    justify-content: center;
  }
  .cta-price-wrap { margin-bottom: 28px; }
  .cta-trust {
    flex-direction: column;
    align-items: flex-start;
  }
  .pillars__visual {
    height: 260px;
    margin-top: 8px;
  }
  .pillars__circle-lg {
    width: 180px;
    height: 180px;
  }
  .pillars__circle-text {
    font-size: 46px;
    letter-spacing: -2px;
  }
  .pillars__circle-sm {
    width: 96px;
    height: 96px;
    right: 0;
  }
  .container { padding: 0 24px; }
}
