/* CTOx — Rebuilt from Figma Design */
/* Fonts: Poppins (primary), Montserrat (prices/numbers) */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&display=swap');

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:        #ff4a00;
  --orange-dark:   #df3500;
  --orange-shadow: #a73000;
  --orange-light:  #ffece4;
  --dark:          #232323;
  --dark-alt:      #292929;
  --near-black:    #2c2b30;
  --gray:          #afafaf;
  --gray-light:    #bcbcbc;
  --gray-bg:       #f7f7f7;
  --gray-bg-alt:   #f9f9f9;
  --white:         #ffffff;
  --font-primary:  'Poppins', sans-serif;
  --font-price:    'Montserrat', sans-serif;
  --max-width:     1200px;
  --header-height: 76px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-primary); cursor: pointer; }
h1, h2, h3, h4, h5 { line-height: 1.15; }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
}

/* Orange CTA button — Figma: bg #ff4a00, shadow #df3500 */
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 5px 0 var(--orange-dark);
  position: relative;
}
.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 3px 0 var(--orange-shadow);
  transform: translateY(2px);
}

/* White solid button — white bg, orange text */
.btn-white-solid {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}
.btn-white-solid:hover { background: #f3f3f3; }

/* White video button — white bg, orange text (used inside orange sections) */
.btn-white-video {
  background: var(--white);
  color: var(--orange);
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
}
.btn-white-video:hover { background: #f3f3f3; }

/* Dark outline button — used in What's Included */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--dark);
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 24px;
  text-decoration: none;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-sm { padding: 10px 22px; font-size: 14px; border-radius: 6px; }
.btn-lg { padding: 18px 40px; font-size: 17px; border-radius: 8px; }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { height: 40px; width: auto; }
.logo-img-footer { height: 32px; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  transition: color 0.2s;
}
.nav a:hover { color: var(--orange); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============ HERO ============ */
/* Figma: left side white (#f9f9f9), right side orange (#ff4a00) bg */
.hero {
  display: flex;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.hero-left {
  flex: 0 0 48%;
  background: var(--gray-bg-alt);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left-inner {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  padding: 72px 48px 72px 48px;
}

/* Trustpilot badge */
.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.tp-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.tp-stars {
  color: #00b67a;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero-left h1 {
  font-family: var(--font-primary);
  font-size: 50px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 22px;
}
.h1-orange { color: var(--orange); }

.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-trained-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

/* Right side: orange bg with laptop image */
.hero-right {
  flex: 1;
  background: var(--orange);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
/* Figma shows an ellipse glow behind the laptop */
.hero-right::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-laptop-wrap {
  position: absolute;
  left: -10%;
  bottom: 0;
  width: 115%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.hero-laptop-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom left;
  max-height: 640px;
}

/* ============ TRUST LOGOS BAR ============ */
/* Figma: bg #ffece4 (light orange) */
.trust-bar {
  width: 100%;
  overflow: hidden;
  background: var(--orange-light);
  padding: 24px 0 20px;
  text-align: center;
}
.trust-logos-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: grayscale(50%);
  opacity: 0.7;
}
.trust-bar-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
  font-weight: 400;
}

/* ============ TESTIMONIALS ============ */
/* Figma: white bg, orange-bordered cards, orange quote marks */
.testimonials-section {
  padding: 64px 0 56px;
  background: var(--white);
}
.testimonials-heading {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 40px;
}
.testimonials-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.testimonials-scroll-wrap::-webkit-scrollbar { display: none; }
.testimonials-row {
  display: flex;
  gap: 20px;
  min-width: max-content;
  padding: 4px 4px 8px;
}
.testimonial-card {
  background: rgba(249,249,249,0.2);
  border: 1px solid var(--orange);
  border-radius: 20px;
  width: 328px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.testimonial-screenshot-wrap {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.testimonial-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.testimonial-quote {
  font-size: 18px;
  color: var(--dark);
  line-height: 1.5;
  padding: 20px 24px 0;
  flex: 1;
}
.tq-orange { color: var(--orange); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 0 24px 20px;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-author span {
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
}

/* ============ VIDEO SECTION — orange bg ============ */
/* Figma: bg #ff4a00, 1090px height section */
.video-section {
  background: var(--orange);
  padding: 80px 0 64px;
}

.video-top-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.video-heading {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.video-subtext {
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
}

.video-featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.video-featured-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-featured-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.video-featured-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-featured-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.play-btn {
  position: relative;
  z-index: 3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  padding-left: 4px;
  flex-shrink: 0;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.video-featured-thumb .play-btn:hover,
.video-small-thumb .play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.hiw-video-thumb .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hiw-video-thumb .play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }

.play-btn-lg { width: 64px; height: 64px; }
.play-btn-sm { width: 40px; height: 40px; padding-left: 3px; }

.video-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.video-small-card { border-radius: 20px; overflow: hidden; }
.video-small-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-small-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.video-small-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-small-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.video-small-text {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.video-section-cta {
  text-align: center;
}
.video-trained-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-top: 14px;
}

/* ============ GET YOUR FIRST CLIENT ============ */
/* Figma: white bg section */
.first-client-section {
  padding: 80px 0;
  background: var(--white);
}
.first-client-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.first-client-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.first-client-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 20px;
}
.first-client-img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
.first-client-img-label span { font-weight: 700; }

.first-client-headline {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 28px;
}
.first-client-headline-orange { color: var(--orange); }
.first-client-headline-dark { color: var(--dark); }

.first-client-intro {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}
.first-client-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.first-client-list li {
  font-size: 18px;
  color: var(--dark);
  padding-left: 32px;
  position: relative;
  line-height: 1.5;
}
.first-client-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23ff4a00'/%3E%3Cpath d='M7 12l3.5 3.5L17 8' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ============ ONE MEMBERSHIP ORANGE BAR ============ */
/* Figma: bg #ff4a00 */
.membership-bar {
  background: var(--orange);
  padding: 56px 0;
}
.membership-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.membership-bar-left { flex: 1; }
.membership-bar-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.membership-bar-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  max-width: 520px;
}
.membership-bar-right { flex-shrink: 0; text-align: center; }
.membership-trained-text {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
  font-weight: 500;
}

/* ============ PRODUCT COLLAGE ============ */
/* Figma: continues on orange bg with program bundle image */
.product-collage {
  background: var(--orange);
  padding: 0 0 64px;
}
.product-collage-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.product-collage-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* ============ STATS SECTION ============ */
/* Figma: white bg, three orange-bordered boxes with badge pills */
.stats-section {
  padding: 64px 0;
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-box {
  border: 1px solid var(--orange);
  border-radius: 20px;
  padding: 48px 32px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.stat-number {
  font-family: var(--font-primary);
  font-size: 75px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1px;
}
/* Figma shows badge pills: #ffece4 bg, orange border, orange text */
.stat-badge {
  background: var(--orange-light);
  border: 1px solid var(--orange);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--orange);
  white-space: nowrap;
}

/* ============ WHAT'S INCLUDED ============ */
/* Figma: bg #f7f7f7 */
.whats-included {
  padding: 72px 0 80px;
  background: var(--gray-bg);
}
.included-row-full {
  margin-bottom: 24px;
}
.included-card-full {
  background: var(--white);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 440px;
}
.included-card-full-left {
  padding: 48px 48px 48px 48px;
  display: flex;
  flex-direction: column;
}
.included-card-full-right {
  position: relative;
  overflow: hidden;
}
.included-card-full-img-bg {
  background: var(--orange-light);
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px;
}
.included-card-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.included-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.included-card-half {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.included-card-half-top {
  overflow: hidden;
  height: 220px;
}
.included-card-half-img-bg {
  background: var(--orange-light);
  height: 100%;
  overflow: hidden;
  padding: 16px;
}
.included-half-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.included-card-half-body {
  padding: 32px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Shared styles for included cards */
.included-card-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}
.ic-orange { color: var(--orange); }
.ic-gray { color: var(--gray-light); }

.includes-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.includes-line {
  flex: 1;
  height: 1px;
  background: var(--dark);
  display: inline-block;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.check-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.7;
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23ff4a00'/%3E%3Cpath d='M7 12l3.5 3.5L17 8' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  background: var(--white);
}

/* Guarantee banner — full bleed orange */
.hiw-guarantee-banner {
  background: var(--orange);
  padding: 72px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-left: 80px;
  padding-right: 80px;
}
.hiw-guarantee-left { flex-shrink: 0; }
.hiw-guarantee-badge-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 50%;
}
.hiw-guarantee-text { flex: 1; max-width: 600px; }
.hiw-guarantee-text h3 {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hiw-guarantee-text h3 span { color: var(--white); }
.hiw-guarantee-text p {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
}
.hiw-guarantee-cta { flex-shrink: 0; }

/* HIW main section */
.hiw-heading-wrap {
  padding-top: 72px;
  margin-bottom: 48px;
}
.hiw-heading {
  font-size: 40px;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
}

.hiw-main-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 72px;
}

.hiw-video-thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
}
.hiw-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hiw-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.hiw-video-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  color: var(--white);
}
.hiw-label-name { font-size: 18px; font-weight: 600; display: block; }
.hiw-label-title { font-size: 15px; font-weight: 400; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.step-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-icon { width: 40px; height: 40px; flex-shrink: 0; }
.step-icon-img { width: 100%; height: 100%; object-fit: contain; }
.step-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--dark-alt);
  line-height: 1.2;
}
.step-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
}

.hiw-steps-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
}
.hiw-trained-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
}

/* ============ PRICING ============ */
/* Figma: white bg section */
.pricing {
  background: var(--white);
  padding: 72px 0;
}
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-heading {
  font-size: 40px;
  font-weight: 600;
  color: var(--dark-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: relative;
  border: none;
}

/* Featured (Launchpad) — orange top bar */
.price-card-featured {
  border: 1px solid var(--orange);
}
.price-badge-top {
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-align: center;
  padding: 6px 16px;
  text-transform: uppercase;
}

.price-card-body {
  padding: 32px 32px 20px;
}
.price-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}
.price-plan-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--orange);
}
.price-amount {
  font-family: var(--font-price);
  font-size: 35px;
  font-weight: 700;
  color: var(--dark-alt);
  line-height: 1;
}
.price-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-alt);
}

.price-divider {
  height: 1px;
  background: #eee;
  margin: 0 32px;
}
.price-includes-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 32px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
}
.price-includes-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--orange);
}
.price-includes-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 32px;
}
.price-features {
  list-style: none;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-features li {
  font-size: 14px;
  color: var(--dark);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pricing-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pricing-cta-note {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
}

/* ============ FAQ ============ */
/* Figma: white bg */
.faq {
  background: var(--white);
  padding: 72px 0;
}
.faq-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 28px;
  background: var(--gray-bg-alt);
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  color: var(--near-black);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: #f0f0f0; }
.faq-open .faq-question { background: var(--gray-bg-alt); }
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 16px;
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 20px 28px 24px;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.faq-cta-note {
  font-size: 18px;
  color: var(--dark);
}

/* ============ NEWSLETTER SECTION ============ */
/* Figma: bg #ff4a00 orange card */
.newsletter-section {
  padding: 80px 0;
  background: var(--gray-bg);
}
.newsletter-card {
  background: var(--orange);
  border-radius: 30px;
  padding: 72px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.newsletter-esc-wrap {
  flex-shrink: 0;
  width: 200px;
}
.newsletter-esc-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.newsletter-content { flex: 1; }
.newsletter-heading {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
  max-width: 600px;
}
.newsletter-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.newsletter-input {
  background: rgba(218,63,0,0.8);
  border: 1px solid var(--white);
  border-radius: 6px;
  padding: 16px 22px;
  font-family: var(--font-primary);
  font-size: 18px;
  color: var(--white);
  width: 220px;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.85); }
.newsletter-input:focus { outline: none; border-color: var(--white); }
.newsletter-submit { flex-shrink: 0; }

/* ============ FOOTER ============ */
/* Figma: #f7f7f7 bg */
.footer {
  background: var(--gray-bg);
  padding: 48px 0;
  border-top: 1px solid #e8e8e8;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }
.footer-copy {
  font-size: 13px;
  color: var(--gray);
}

/* ============ BLOG PAGES ============ */

/* --- Blog header — white variant (same as homepage, active state bold) --- */
.nav-blog a.active {
  font-weight: 700;
  color: var(--orange);
}

/* --- Blog listing hero banner --- */
.blog-hero-banner {
  background: var(--orange);
  padding: 56px 0 48px;
  overflow: hidden;
}
.blog-hero-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.blog-hero-graphic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.18;
}
.blog-hero-text {
  flex: 1;
}
.blog-hero-text h1 {
  font-size: 50px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.blog-hero-text p {
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  max-width: 480px;
}

/* --- Category filter pills bar --- */
.blog-filter-bar {
  background: var(--gray-bg-alt);
  padding: 0;
  border-bottom: 1px solid #eee;
}
.blog-filter-bar .container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 32px;
  padding-bottom: 32px;
}
.filter-pill {
  padding: 8px 22px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--orange);
  cursor: pointer;
  background: var(--white);
  color: var(--dark);
  transition: all 0.2s;
  line-height: 1.5;
}
.filter-pill:hover { background: var(--orange); color: var(--white); }
.filter-pill.active { background: var(--orange); color: var(--white); }

/* --- Blog listing grid section --- */
.blog-listing-section {
  padding: 56px 0 72px;
  background: var(--white);
}

/* --- Article cards grid --- */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.blog-cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
}

.article-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -8px rgba(0,0,0,0.15);
}

.article-card-image {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.article-category {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  line-height: 1.5;
}

.article-date {
  font-size: 14px;
  color: #4a5565;
  white-space: nowrap;
}

.article-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.article-excerpt {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.article-read-more {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  display: inline-block;
  transition: letter-spacing 0.2s;
}
.article-card:hover .article-read-more { letter-spacing: 0.3px; }

/* --- Blog pagination --- */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.pagination-page {
  font-family: var(--font-price);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-alt);
  text-decoration: none;
  padding: 4px 6px;
  min-width: 32px;
  text-align: center;
  transition: color 0.2s;
}
.pagination-page.active {
  font-weight: 900;
  color: var(--dark-alt);
}
.pagination-page:not(.active) {
  font-weight: 300;
  color: var(--dark-alt);
}
.pagination-page:hover:not(.active) { color: var(--orange); }

.pagination-ellipsis {
  font-family: var(--font-price);
  font-size: 20px;
  font-weight: 300;
  color: var(--dark-alt);
  padding: 4px 4px;
}

.pagination-prev,
.pagination-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.pagination-prev:hover,
.pagination-next:hover {
  background: var(--orange);
  color: var(--white);
}

/* --- Blog Post Page --- */

.post-hero-section {
  padding: 32px 0 40px;
  background: var(--gray-bg-alt);
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 24px;
}
.post-breadcrumb a {
  color: var(--gray);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
.post-breadcrumb a:hover { color: var(--orange); }
.post-breadcrumb span { color: var(--gray); }

.post-hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.post-hero-left { flex: 1; }

.post-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Category pill on post page */
.post-category-pill {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  margin-right: 16px;
  vertical-align: middle;
}

.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dark);
  margin-top: 4px;
}
.post-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.post-author-label { font-size: 14px; color: var(--dark); }
.post-author-label strong { font-weight: 600; }
.post-date { font-size: 14px; color: var(--gray); }

.post-hero-right {
  flex-shrink: 0;
  padding-top: 8px;
}

/* Featured image */
.post-featured-section {
  padding: 24px 0 48px;
  background: var(--gray-bg-alt);
}
.post-featured-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  max-height: 354px;
}
.post-featured-img {
  width: 100%;
  height: 354px;
  object-fit: cover;
  display: block;
}

/* Post article body */
.post-content-section {
  padding: 48px 0 60px;
  background: var(--white);
}
.post-content-layout {
  max-width: 840px;
  margin: 0 auto;
}

.post-article h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.post-article h2:first-child { margin-top: 0; }
.post-article h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin: 32px 0 12px;
}
.post-article p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}
.post-article ul, .post-article ol {
  margin: 16px 0 24px 24px;
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  list-style: disc;
}
.post-article li { margin-bottom: 8px; }
.post-article blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--orange-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}
.post-article a { color: var(--orange); font-weight: 600; }

/* Inline featured image block */
.post-inline-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 40px 0;
  align-items: start;
}
.post-inline-img-wrap {
  border-radius: 16px;
  overflow: hidden;
}
.post-inline-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.post-inline-aside h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}
.post-inline-aside p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* Related posts section */
.post-related-section {
  padding: 40px 0 60px;
  background: var(--white);
}
.blog-pagination-top {
  margin-bottom: 40px;
}
.blog-pagination--bottom {
  margin-top: 40px;
  margin-bottom: 0;
}

/* Legacy classes — kept so old markup doesn't break */
.blog-hero { padding: 60px 0 40px; background: var(--orange); color: var(--white); text-align: center; }
.blog-hero h1 { font-size: 40px; font-weight: 700; margin-bottom: 12px; }
.blog-hero p { font-size: 16px; opacity: 0.9; }
.blog-filters { padding: 24px 0; background: var(--white); border-bottom: 1px solid #eee; }
.blog-filters .container { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-tag { padding: 8px 20px; border-radius: 100px; font-size: 14px; font-weight: 500; border: 1px solid #ddd; cursor: pointer; background: var(--white); color: var(--dark); transition: all 0.2s; }
.filter-tag:hover, .filter-tag.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.blog-grid-section { padding: 48px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; display: block; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.blog-card .card-image { aspect-ratio: 16/10; background: var(--dark); display: flex; align-items: center; justify-content: center; color: #555; font-size: 13px; overflow: hidden; }
.blog-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .card-body { padding: 20px; }
.blog-card .card-category { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; letter-spacing: 0.5px; }
.blog-card .card-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.blog-card .card-body p { font-size: 14px; color: #666; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .card-meta { padding: 12px 20px; border-top: 1px solid #f0f0f0; font-size: 13px; color: var(--gray); display: flex; justify-content: space-between; }
.read-more { color: var(--orange); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; }
.read-more:hover { gap: 10px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; border: 1px solid #ddd; }
.pagination .active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.breadcrumbs { padding: 20px 0; font-size: 14px; color: var(--gray); }
.breadcrumbs a { color: var(--orange); }
.breadcrumbs span { margin: 0 8px; }
.post-header { padding: 0 0 32px; }
.post-header h1 { font-size: 40px; font-weight: 600; line-height: 1.15; margin-bottom: 16px; }
.post-meta { display: flex; gap: 16px; font-size: 14px; color: var(--gray); align-items: center; }
.post-meta .author { color: var(--dark); font-weight: 500; }
.post-featured-image { width: 100%; aspect-ratio: 21/9; background: var(--gray-bg); border-radius: 16px; margin-bottom: 40px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 14px; }
.post-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.post-content { max-width: 760px; margin: 0 auto; padding-bottom: 60px; }
.post-content h2 { font-size: 28px; font-weight: 600; margin: 40px 0 16px; }
.post-content h3 { font-size: 22px; font-weight: 600; margin: 32px 0 12px; }
.post-content p { font-size: 17px; line-height: 1.8; color: #444; margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 16px 0 24px 24px; font-size: 17px; color: #444; line-height: 1.8; list-style: disc; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote { border-left: 4px solid var(--orange); padding: 16px 24px; margin: 24px 0; background: var(--orange-light); border-radius: 0 8px 8px 0; font-style: italic; color: #555; }
.related-posts { padding: 60px 0; background: var(--gray-bg); }
.related-posts h2 { font-size: 28px; font-weight: 600; text-align: center; margin-bottom: 32px; }

/* ============ RESPONSIVE — TABLET ============ */
@media (max-width: 1024px) {
  .hero-left h1 { font-size: 40px; }
  .hero-sub { font-size: 17px; }
  .video-top-row { grid-template-columns: 1fr 1.2fr; gap: 32px; }
  .video-heading { font-size: 30px; }
  .first-client-inner { gap: 48px; }
  .first-client-headline { font-size: 32px; }
  .membership-bar-inner { gap: 32px; }
  .membership-bar-title { font-size: 30px; }
  .included-card-title { font-size: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-title { font-size: 22px; }
  .hiw-guarantee-banner { padding: 48px 40px; gap: 40px; }
  .pricing-grid { gap: 16px; }
  .blog-hero-text h1 { font-size: 40px; }
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero-left {
    flex: none;
    width: 100%;
  }
  .hero-left-inner {
    max-width: 100%;
    margin: 0;
    padding: 48px 24px 40px;
  }
  .hero-left h1 { font-size: 36px; }
  .hero-right {
    width: 100%;
    min-height: 280px;
  }
  .hero-laptop-wrap {
    position: relative;
    left: 0;
    width: 100%;
  }
  .hero-laptop-img { max-height: 280px; object-position: center top; }

  .video-top-row { grid-template-columns: 1fr; gap: 24px; }
  .video-cards-row { grid-template-columns: repeat(2, 1fr); }
  .first-client-inner { grid-template-columns: 1fr; gap: 32px; }
  .first-client-img { height: 320px; }
  .membership-bar-inner { flex-direction: column; align-items: flex-start; }
  .included-card-full { grid-template-columns: 1fr; }
  .included-card-full-right { min-height: 200px; }
  .included-row-two { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .hiw-main-row { grid-template-columns: 1fr; }
  .hiw-video-thumb { aspect-ratio: 16/9; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hiw-guarantee-banner { flex-direction: column; text-align: center; padding: 48px 24px; }
  .newsletter-card { flex-direction: column; padding: 48px 32px; }
  .newsletter-esc-wrap { width: 120px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 300;
  }
  .nav.open { display: flex; }
  .mobile-toggle { display: block; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 20px; }

  /* Blog responsive */
  .blog-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .blog-cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .post-hero-row { flex-direction: column; }
  .post-hero-right { display: none; }
  .post-inline-block { grid-template-columns: 1fr; }
  .post-title { font-size: 32px; }
  .blog-hero-text h1 { font-size: 36px; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .hero-left-inner { padding: 40px 20px; }
  .hero-left h1 { font-size: 30px; }
  .hero-sub { font-size: 16px; }
  .video-cards-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .newsletter-card { padding: 36px 20px; }
  .newsletter-heading { font-size: 28px; }
  .hiw-guarantee-banner { padding: 36px 20px; }
  .hiw-guarantee-text h3 { font-size: 28px; }
  .pricing-heading { font-size: 30px; }
  .faq-title { font-size: 30px; }
  .stat-number { font-size: 56px; }

  /* Blog responsive */
  .blog-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-cards-grid--3 { grid-template-columns: 1fr; }
  .blog-hero-text h1 { font-size: 30px; }
  .blog-hero-text p { font-size: 16px; }
  .post-title { font-size: 26px; }
  .blog-filter-bar .container { gap: 8px; padding-top: 20px; padding-bottom: 20px; }
}
