/* ========================================
   VideoRep — 511 Video Funnel Page
   Frese-inspired premium landing page
   ======================================== */

/* -----------------------------------------
   1. CSS Variables
   ----------------------------------------- */
:root {
  --f-header: #0a1628;
  --f-paragraph: #0a1628b3;
  --f-blue: #1e71e7;
  --f-blue-dark: #0b3d91;
  --f-blue-hover: #1a63cc;
  --f-neutral: #f8fcff;
  --f-white: #ffffff;
  --f-black: #000000;
  --f-success: #059669;
  --f-shadow: 0 24px 24px -12px #0000000d;
  --f-shadow-sm: 0 10px 30px #0000000d;
  --f-shadow-lg: 0 40px 120px #0000000d;
  --f-radius-pill: 100px;
  --f-radius-lg: 30px;
  --f-radius-md: 20px;
  --f-radius-sm: 15px;
  --f-radius-xs: 8px;
  --f-font: 'Plus Jakarta Sans', sans-serif;
  --f-container: 1230px;
}

/* -----------------------------------------
   2. Reset & Base
   ----------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-font);
  font-size: 18px;
  line-height: 135%;
  color: var(--f-paragraph);
  background: var(--f-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

/* -----------------------------------------
   3. Container
   ----------------------------------------- */
.f-container {
  max-width: var(--f-container);
  margin: 0 auto;
  padding: 0 40px;
}

/* -----------------------------------------
   4. Typography
   ----------------------------------------- */
.f-h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: var(--f-white);
}

.f-h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: var(--f-header);
}

.f-h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: var(--f-header);
}

.f-h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: var(--f-header);
}

.f-h5 {
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--f-header);
}

.f-h6 {
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--f-header);
}

.f-p {
  font-size: 18px;
  line-height: 145%;
  color: var(--f-paragraph);
}

.f-p-large {
  font-size: 20px;
  line-height: 145%;
}

.f-p-small {
  font-size: 15px;
  line-height: 145%;
}

.f-center { text-align: center; }
.f-white { color: var(--f-white); }
.f-muted { color: var(--f-paragraph); }
.f-max-500 { max-width: 500px; }
.f-max-600 { max-width: 600px; }
.f-max-700 { max-width: 700px; }
.f-max-800 { max-width: 800px; }
.f-max-900 { max-width: 900px; }
.f-mx-auto { margin-left: auto; margin-right: auto; }

/* -----------------------------------------
   5. Sub-header Badges
   ----------------------------------------- */
.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--f-white);
  border-radius: var(--f-radius-lg);
  padding: 12px 18px;
  box-shadow: var(--f-shadow-sm);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.f-badge__text {
  background: linear-gradient(90deg, var(--f-blue), var(--f-blue-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero badge variant — glass on dark */
.f-badge--hero {
  background: #ffffff0d;
  border: 0.5px solid #ffffff1a;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: none;
}

.f-badge--hero .f-badge__text {
  background: none;
  -webkit-text-fill-color: #ffffffcc;
  color: #ffffffcc;
}

/* -----------------------------------------
   6. Buttons
   ----------------------------------------- */
.f-btn-wrapper {
  display: inline-flex;
  background: #ffffff1a;
  border-radius: var(--f-radius-pill);
  padding: 3px;
  transition: transform 0.3s ease;
}

.f-btn-wrapper:hover {
  transform: translateY(-3px);
}

.f-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--f-blue);
  color: var(--f-white);
  border-radius: var(--f-radius-pill);
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--f-font);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.f-btn:hover {
  background: var(--f-blue-hover);
}

.f-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* White button on dark backgrounds */
.f-btn--white {
  background: var(--f-white);
  color: var(--f-header);
}

.f-btn--white:hover {
  background: #f0f4f8;
}

/* Outline variant */
.f-btn--outline {
  background: transparent;
  border: 2px solid var(--f-blue);
  color: var(--f-blue);
}

.f-btn--outline:hover {
  background: var(--f-blue);
  color: var(--f-white);
}

/* Full-width on dark CTA card */
.f-btn--full {
  width: 100%;
  justify-content: center;
}

/* -----------------------------------------
   7. Section Base
   ----------------------------------------- */
.f-section {
  padding: 100px 0;
  position: relative;
}

.f-section--neutral {
  background: var(--f-neutral);
}

.f-section--dark {
  background: var(--f-header);
}

.f-section--no-pad-top {
  padding-top: 0;
}

.f-section--no-pad-bottom {
  padding-bottom: 0;
}

.f-vertical-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.f-vertical-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 60px;
}

.f-divider {
  width: 100%;
  height: 1px;
  background: #0a16280d;
  margin: 100px 0;
}

.f-divider--light {
  background: #ffffff1a;
}

/* -----------------------------------------
   8. Navbar
   ----------------------------------------- */
.f-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.f-nav--scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.f-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-nav__logo svg {
  width: 36px;
  height: 36px;
}

.f-nav__logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--f-white);
  letter-spacing: -0.02em;
}

.f-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  background: #ffffff1a;
  border-radius: var(--f-radius-pill);
  padding: 5px;
}

.f-nav__link {
  color: #ffffffb3;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--f-radius-pill);
  transition: all 0.3s ease;
}

.f-nav__link:hover,
.f-nav__link--active {
  color: var(--f-white);
  background: #ffffff0d;
}

.f-nav__cta {
  display: inline-flex;
}

.f-nav__cta .f-btn {
  padding: 12px 24px;
  font-size: 15px;
}

/* Mobile menu toggle */
.f-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.f-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--f-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
.f-nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--f-header);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 20px;
}

.f-nav__mobile.active {
  display: flex;
}

.f-nav__mobile a {
  color: var(--f-white);
  font-size: 24px;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid #ffffff1a;
}

.f-nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--f-white);
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
}

/* -----------------------------------------
   9. Hero
   ----------------------------------------- */
.f-hero {
  background: linear-gradient(0deg, var(--f-blue-dark), var(--f-blue) 50%, var(--f-header));
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.f-hero__badge {
  margin-bottom: 24px;
}

.f-hero__heading {
  margin-bottom: 16px;
}

.f-hero__subtitle {
  font-size: 20px;
  line-height: 145%;
  color: #ffffffcc;
  max-width: 700px;
  margin: 0 auto 50px;
}

.f-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  margin-bottom: 40px;
}

.f-hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
}

.f-hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.f-hero__bullet-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  margin-top: 2px;
}

.f-hero__bullet-icon svg {
  width: 25px;
  height: 25px;
}

.f-hero__bullet-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--f-white);
  line-height: 140%;
}

.f-hero__video {
  position: relative;
  z-index: 5;
}

.f-hero__video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--f-radius-md);
  border: 5px solid #ffffff26;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.f-hero__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.f-hero__cta {
  display: flex;
  justify-content: center;
}

/* Decorative background circle */
.f-hero__bg-circle {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
  height: 960px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff08 0%, transparent 70%);
  pointer-events: none;
}

/* -----------------------------------------
   10. Logo Strip
   ----------------------------------------- */
.f-logos {
  padding: 60px 0;
  background: var(--f-neutral);
  overflow: hidden;
}

.f-logos__label {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a162859;
  margin-bottom: 30px;
}

.f-logos__track-wrapper {
  position: relative;
}

.f-logos__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 2;
  pointer-events: none;
}

.f-logos__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--f-neutral), transparent);
}

.f-logos__fade--right {
  right: 0;
  background: linear-gradient(-90deg, var(--f-neutral), transparent);
}

.f-logos__track {
  display: flex;
  gap: 60px;
  animation: f-logo-scroll 30s linear infinite;
  width: max-content;
  align-items: center;
}

.f-logos__track:hover {
  animation-play-state: paused;
}

.f-logos__logo {
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.f-logos__logo:hover {
  opacity: 0.8;
}

@keyframes f-logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -----------------------------------------
   11. Problems — Stacking Cards
   ----------------------------------------- */
.f-problems {
  padding: 100px 0;
  background: var(--f-neutral);
}

.f-problems__grid {
  display: grid;
  grid-template-columns: 2.75fr 2.5fr;
  gap: 80px;
  align-items: start;
}

.f-problems__left {
  position: sticky;
  top: 100px;
}

.f-problems__left .f-h2 {
  max-width: 500px;
  margin-bottom: 16px;
}

.f-problems__left .f-p {
  max-width: 490px;
  margin-bottom: 30px;
}

.f-problems__cards {
  display: grid;
  row-gap: 20px;
}

.f-problem-card {
  background: var(--f-white);
  border-radius: var(--f-radius-md);
  padding: 30px;
  box-shadow: var(--f-shadow);
  position: sticky;
  transition: transform 0.3s ease;
}

.f-problem-card:nth-child(1) { top: 100px; }
.f-problem-card:nth-child(2) { top: 110px; }
.f-problem-card:nth-child(3) { top: 120px; }
.f-problem-card:nth-child(4) { top: 130px; }
.f-problem-card:nth-child(5) { top: 140px; }

.f-problem-card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--f-neutral);
  border-radius: var(--f-radius-xs);
}

.f-problem-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--f-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f-problem-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--f-header);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.f-problem-card__text {
  font-size: 17px;
  line-height: 150%;
  color: var(--f-paragraph);
  max-width: 465px;
}

/* -----------------------------------------
   12. What You Get — Benefits Grid
   ----------------------------------------- */
.f-benefits {
  padding: 100px 0;
  background: var(--f-white);
}

.f-benefits__layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.f-benefits__left {
  position: sticky;
  top: 100px;
  flex-shrink: 0;
  max-width: 380px;
}

.f-benefits__left .f-h2 {
  max-width: 380px;
  margin-bottom: 16px;
}

.f-benefits__left .f-p {
  max-width: 350px;
  margin-bottom: 30px;
}

.f-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
  flex: 1;
}

.f-benefit-item__icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--f-white);
  border-radius: var(--f-radius-sm);
  padding: 12px;
  box-shadow: var(--f-shadow-sm);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-benefit-item__icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--f-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f-benefit-item__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--f-header);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.f-benefit-item__text {
  font-size: 17px;
  line-height: 150%;
  color: var(--f-paragraph);
}

/* -----------------------------------------
   13. Testimonials — Dark Video Section
   ----------------------------------------- */
.f-testimonials {
  background: linear-gradient(0deg, #0a1628ee, #0a1628), url('../assets/images/Eric\ Presnall\ In\ Studio.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.f-testimonials .f-h2 {
  color: var(--f-white);
}

.f-testimonials .f-p {
  color: #ffffffb3;
}

.f-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.f-testimonial-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--f-radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.f-testimonial-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.f-testimonials__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.f-quote-card {
  background: #ffffff0a;
  border: 1px solid #ffffff15;
  border-radius: var(--f-radius-md);
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.f-quote-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.f-quote-card__stars svg {
  width: 18px;
  height: 18px;
  fill: #fbbf24;
}

.f-quote-card__text {
  font-size: 16px;
  font-style: italic;
  line-height: 160%;
  color: #ffffffcc;
  margin-bottom: 20px;
}

.f-quote-card__author {
  font-size: 15px;
  font-weight: 700;
  color: var(--f-white);
}

.f-quote-card__role {
  font-size: 14px;
  color: #ffffff80;
  margin-top: 2px;
}

/* -----------------------------------------
   14. Process Timeline
   ----------------------------------------- */
.f-timeline {
  padding: 100px 0;
  background: var(--f-white);
}

.f-timeline__content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Vertical line */
.f-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0a16281a;
  border-radius: var(--f-radius-pill);
  transform: translateX(-50%);
}

.f-timeline__item {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  padding: 40px 0;
  position: relative;
}

/* Alternating content */
.f-timeline__item:nth-child(odd) .f-timeline__visual {
  grid-column: 1;
  justify-self: end;
  padding-right: 30px;
}

.f-timeline__item:nth-child(odd) .f-timeline__circle {
  grid-column: 2;
}

.f-timeline__item:nth-child(odd) .f-timeline__text {
  grid-column: 3;
  padding-left: 30px;
}

.f-timeline__item:nth-child(even) .f-timeline__text {
  grid-column: 1;
  text-align: right;
  padding-right: 30px;
}

.f-timeline__item:nth-child(even) .f-timeline__circle {
  grid-column: 2;
}

.f-timeline__item:nth-child(even) .f-timeline__visual {
  grid-column: 3;
  padding-left: 30px;
}

.f-timeline__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--f-white);
  box-shadow: var(--f-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  position: relative;
  z-index: 2;
}

.f-timeline__circle-bg {
  background: var(--f-white);
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.f-timeline__number {
  font-size: 24px;
  font-weight: 800;
  color: var(--f-blue);
}

.f-timeline__visual-card {
  background: var(--f-white);
  border-radius: var(--f-radius-md);
  box-shadow: var(--f-shadow);
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-timeline__visual-card svg {
  width: 80px;
  height: 80px;
  stroke: var(--f-blue);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f-timeline__heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--f-header);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.f-timeline__desc {
  font-size: 17px;
  line-height: 150%;
  color: var(--f-paragraph);
}

/* -----------------------------------------
   15. Sample Videos
   ----------------------------------------- */
.f-samples {
  padding: 100px 0;
  background: var(--f-neutral);
}

.f-samples__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.f-sample-card {
  background: var(--f-white);
  border-radius: var(--f-radius-md);
  overflow: hidden;
  box-shadow: var(--f-shadow);
}

.f-sample-card__video {
  position: relative;
  padding-top: 56.25%;
}

.f-sample-card__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.f-sample-card__body {
  padding: 24px;
}

.f-sample-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--f-blue);
  margin-bottom: 6px;
}

.f-sample-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--f-header);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.f-sample-card__text {
  font-size: 15px;
  line-height: 150%;
  color: var(--f-paragraph);
}

/* -----------------------------------------
   16. Advantages — Card List
   ----------------------------------------- */
.f-advantages {
  padding: 100px 0;
  background: var(--f-white);
}

.f-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.f-advantage-card {
  background: var(--f-white);
  border-radius: var(--f-radius-md);
  padding: 24px;
  box-shadow: var(--f-shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.f-advantage-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-advantage-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--f-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f-advantage-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--f-header);
  margin-bottom: 4px;
}

.f-advantage-card__text {
  font-size: 15px;
  line-height: 145%;
  color: var(--f-paragraph);
}

/* Dark CTA card */
.f-advantage-card--cta {
  background: linear-gradient(135deg, #04122b, #113681);
  grid-column: span 1;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.f-advantage-card--cta:hover {
  transform: scale(1.03);
}

.f-advantage-card--cta .f-advantage-card__title {
  color: var(--f-white);
  font-size: 22px;
}

.f-advantage-card--cta .f-advantage-card__text {
  color: #ffffffb3;
}

/* -----------------------------------------
   17. Choose Your Path
   ----------------------------------------- */
.f-choose {
  padding: 100px 0;
  background: var(--f-neutral);
}

.f-choose__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}

.f-choose-card {
  border-radius: var(--f-radius-md);
  padding: 40px;
  box-shadow: var(--f-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.f-choose-card--primary {
  background: var(--f-white);
  border: 3px solid var(--f-blue);
}

.f-choose-card--dark {
  background: linear-gradient(135deg, #04122b, #113681);
}

.f-choose-card__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--f-header);
  letter-spacing: -0.02em;
}

.f-choose-card--dark .f-choose-card__title {
  color: var(--f-white);
}

.f-choose-card__text {
  font-size: 18px;
  line-height: 150%;
  color: var(--f-paragraph);
  flex: 1;
}

.f-choose-card--dark .f-choose-card__text {
  color: #ffffffb3;
}

.f-choose-card__btn {
  margin-top: 10px;
}

/* -----------------------------------------
   18. About Eric — CTA Banner
   ----------------------------------------- */
.f-about {
  padding: 100px 0;
  background: var(--f-white);
}

.f-about__text {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.f-about__text .f-p {
  margin-bottom: 16px;
}

.f-about__banner {
  position: relative;
  border-radius: var(--f-radius-lg);
  overflow: hidden;
  border: 5px solid var(--f-white);
  box-shadow: var(--f-shadow-lg);
  background: linear-gradient(90deg, #0a1628ee, #1e71e7aa), url('../assets/images/Eric\ Presnall\ In\ Studio.png');
  background-size: cover;
  background-position: center;
  padding: 60px;
}

.f-about__banner-content {
  max-width: 600px;
}

.f-about__banner .f-h3 {
  color: var(--f-white);
  margin-bottom: 16px;
}

.f-about__banner .f-p {
  color: #ffffffcc;
  margin-bottom: 30px;
}

/* -----------------------------------------
   19. FAQ Accordion
   ----------------------------------------- */
.f-faq {
  padding: 100px 0;
  background: var(--f-neutral);
}

.f-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.f-faq-item {
  background: var(--f-white);
  border-radius: var(--f-radius-lg);
  padding: 20px 32px;
  box-shadow: var(--f-shadow-lg);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.f-faq-item:hover {
  transform: translateY(-2px);
}

.f-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.f-faq-item__question-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--f-header);
  letter-spacing: -0.02em;
  line-height: 130%;
  flex: 1;
}

.f-faq-item__toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 8px 18px #0000000d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--f-white);
  transition: transform 0.3s ease;
}

.f-faq-item__toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--f-blue);
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.f-faq-item.active .f-faq-item__toggle svg {
  transform: rotate(45deg);
}

.f-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.f-faq-item.active .f-faq-item__answer {
  max-height: 500px;
  padding-bottom: 10px;
}

.f-faq-item__answer-text {
  font-size: 17px;
  line-height: 170%;
  color: var(--f-paragraph);
  max-width: 90%;
  padding-top: 8px;
}

/* -----------------------------------------
   20. Footer
   ----------------------------------------- */
.f-footer {
  background: var(--f-header);
  padding: 60px 0 40px;
}

.f-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.f-footer__brand {
  max-width: 300px;
}

.f-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.f-footer__logo svg {
  width: 32px;
  height: 32px;
}

.f-footer__logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--f-white);
}

.f-footer__desc {
  font-size: 15px;
  line-height: 160%;
  color: #ffffffb3;
  margin-bottom: 24px;
}

.f-footer__column-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--f-white);
  margin-bottom: 16px;
}

.f-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-footer__link {
  font-size: 15px;
  color: #ffffffb3;
  transition: color 0.3s ease;
}

.f-footer__link:hover {
  color: var(--f-white);
}

.f-footer__bottom {
  border-top: 1px solid #ffffff1a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f-footer__copy {
  font-size: 14px;
  color: #ffffff66;
}

/* -----------------------------------------
   21. Scroll Reveal Animations
   ----------------------------------------- */
.f-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.f-reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.f-reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.f-reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.f-reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.f-stagger > *:nth-child(1) { transition-delay: 0s; }
.f-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.f-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.f-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.f-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.f-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* -----------------------------------------
   22. Responsive — Tablet (768px)
   ----------------------------------------- */
@media (max-width: 1024px) {
  .f-container { padding: 0 30px; }
  .f-section { padding: 80px 0; }

  .f-h1 { font-size: 44px; }
  .f-h2 { font-size: 38px; }
  .f-h3 { font-size: 30px; }
  .f-h4 { font-size: 26px; }
  .f-h5 { font-size: 22px; }
  .f-h6 { font-size: 20px; }

  /* Nav */
  .f-nav__links { display: none; }
  .f-nav__cta { display: none; }
  .f-nav__toggle { display: flex; }

  /* Hero */
  .f-hero { padding: 120px 0 60px; }
  .f-hero__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .f-hero__bullets { max-width: 100%; }

  /* Problems */
  .f-problems__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .f-problems__left {
    position: relative;
    top: 0;
  }

  /* Benefits */
  .f-benefits__layout {
    flex-direction: column;
    gap: 40px;
  }
  .f-benefits__left {
    position: relative;
    top: 0;
    max-width: 100%;
  }

  /* Timeline */
  .f-timeline__line { display: none; }
  .f-timeline__item {
    grid-template-columns: 60px 1fr;
    gap: 0 20px;
  }
  .f-timeline__item:nth-child(odd) .f-timeline__visual,
  .f-timeline__item:nth-child(even) .f-timeline__visual {
    display: none;
  }
  .f-timeline__item:nth-child(odd) .f-timeline__circle,
  .f-timeline__item:nth-child(even) .f-timeline__circle {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .f-timeline__item:nth-child(odd) .f-timeline__text,
  .f-timeline__item:nth-child(even) .f-timeline__text {
    grid-column: 2;
    text-align: left;
    padding: 0;
  }

  /* Samples */
  .f-samples__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Advantages */
  .f-advantages__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Testimonials */
  .f-testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto 60px;
  }
  .f-testimonials__quotes {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Choose */
  .f-choose__cards {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .f-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

/* -----------------------------------------
   23. Responsive — Mobile (480px)
   ----------------------------------------- */
@media (max-width: 480px) {
  .f-container { padding: 0 20px; }
  .f-section { padding: 60px 0; }

  .f-h1 { font-size: 34px; }
  .f-h2 { font-size: 30px; }
  .f-h3 { font-size: 26px; }
  .f-h4 { font-size: 22px; }

  .f-hero { padding: 100px 0 50px; }

  .f-btn {
    padding: 16px 24px;
    font-size: 16px;
  }

  /* Problems */
  .f-problem-card { position: relative; top: 0 !important; }

  /* Benefits grid */
  .f-benefits__grid {
    grid-template-columns: 1fr;
  }

  /* Advantages */
  .f-advantages__grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .f-faq-item { padding: 16px 20px; }
  .f-faq-item__question-text { font-size: 18px; }
  .f-faq-item__toggle { width: 38px; height: 38px; }

  /* About banner */
  .f-about__banner { padding: 30px; }

  /* Footer */
  .f-footer__top {
    grid-template-columns: 1fr;
  }

  /* Timeline */
  .f-timeline__item {
    grid-template-columns: 50px 1fr;
  }
  .f-timeline__circle {
    width: 50px;
    height: 50px;
  }
}

/* -----------------------------------------
   25. Funnel Visual Section
   ----------------------------------------- */
.f-funnel-section {
  padding: 100px 0;
  background: var(--f-neutral);
}

.f-funnel-visual {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.f-funnel-visual__icon {
  width: 72px;
  height: 72px;
  background: var(--f-blue);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(30, 113, 231, 0.3);
}

.f-funnel-visual__icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.f-funnel-visual__title {
  font-size: 44px;
  font-weight: 800;
  color: var(--f-header);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.f-funnel-visual__subtitle {
  font-size: 28px;
  font-weight: 700;
  color: var(--f-header);
  margin-bottom: 50px;
}

.f-funnel-visual__subtitle span {
  position: relative;
}

.f-funnel-visual__subtitle span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--f-blue);
  border-radius: 2px;
}

/* Funnel graphic */
.f-funnel-graphic {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.f-funnel-layer {
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--f-white);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.f-funnel-layer:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(30, 113, 231, 0.25);
}

.f-funnel-layer--1 {
  width: 100%;
  background: linear-gradient(135deg, #a5b4fc, #818cf8);
}

.f-funnel-layer--2 {
  width: 78%;
  background: linear-gradient(135deg, #818cf8, #6366f1);
}

.f-funnel-layer--3 {
  width: 58%;
  background: linear-gradient(135deg, #6366f1, var(--f-blue));
}

.f-funnel-layer--4 {
  width: 40%;
  background: linear-gradient(135deg, var(--f-blue), var(--f-blue-dark));
}

.f-funnel-annotation {
  position: absolute;
  left: -10px;
  bottom: 40px;
  font-size: 22px;
  font-weight: 800;
  color: var(--f-header);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}

.f-funnel-annotation svg {
  width: 30px;
  height: 30px;
  stroke: var(--f-header);
  fill: none;
  stroke-width: 2.5;
}

/* -----------------------------------------
   26. Data / Stats Section
   ----------------------------------------- */
.f-data-section {
  padding: 100px 0;
  background: var(--f-white);
}

.f-data-visual {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.f-data-visual__title {
  font-size: 44px;
  font-weight: 800;
  color: var(--f-header);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.f-data-visual__subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--f-paragraph);
  margin-bottom: 50px;
}

.f-data-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 60px;
}

.f-data-card {
  background: var(--f-white);
  border: 2px solid #e5e7eb;
  border-radius: var(--f-radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--f-shadow);
  transition: transform 0.3s ease;
}

.f-data-card:hover {
  transform: translateY(-4px);
}

.f-data-card__icon {
  margin: 0 auto 16px;
}

.f-data-card__icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--f-blue);
  fill: none;
  stroke-width: 1.5;
}

.f-data-card__number {
  font-size: 56px;
  font-weight: 800;
  color: var(--f-header);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.f-data-card__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--f-header);
  margin-bottom: 4px;
}

.f-data-card__source {
  font-size: 14px;
  color: var(--f-paragraph);
}

.f-data-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--f-paragraph);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
}

.f-data-arrow svg {
  width: 32px;
  height: 32px;
  stroke: var(--f-header);
  fill: none;
  stroke-width: 2;
}

.f-data-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.f-data-flow__step {
  font-size: 32px;
  font-weight: 800;
  color: var(--f-header);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.f-data-flow__step--highlight {
  color: var(--f-blue);
  position: relative;
}

.f-data-flow__arrow {
  font-size: 28px;
  color: var(--f-paragraph);
}

/* -----------------------------------------
   27. Tabbed Video Showcase
   ----------------------------------------- */
.f-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.f-tabs__btn {
  padding: 14px 28px;
  border: 2px solid #e5e7eb;
  border-radius: var(--f-radius-pill);
  background: var(--f-white);
  font-family: var(--f-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--f-paragraph);
  cursor: pointer;
  transition: all 0.3s ease;
}

.f-tabs__btn:hover {
  border-color: var(--f-blue);
  color: var(--f-blue);
}

.f-tabs__btn.active {
  background: var(--f-blue);
  border-color: var(--f-blue);
  color: var(--f-white);
}

.f-tabs__panel {
  display: none;
}

.f-tabs__panel.active {
  display: block;
}

.f-tabs__stat {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--f-neutral);
  border-radius: var(--f-radius-md);
}

.f-tabs__stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--f-blue);
  letter-spacing: -0.03em;
}

.f-tabs__stat-label {
  font-size: 16px;
  color: var(--f-paragraph);
  font-weight: 500;
}

/* -----------------------------------------
   28. CTA Divider / Banner
   ----------------------------------------- */
.f-cta-divider {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--f-header), #113681);
  text-align: center;
}

.f-cta-divider__text {
  font-size: 26px;
  font-weight: 700;
  color: var(--f-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.f-cta-divider__sub {
  font-size: 17px;
  color: #ffffffb3;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------
   29. Improved Guarantee
   ----------------------------------------- */
.f-guarantee {
  padding: 100px 0;
  background: var(--f-white);
}

.f-guarantee__card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 2px solid #059669;
  border-radius: var(--f-radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.f-guarantee__card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.f-guarantee__shield {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.f-guarantee__shield svg {
  width: 80px;
  height: 80px;
}

.f-guarantee__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--f-header);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.f-guarantee__text {
  font-size: 18px;
  line-height: 170%;
  color: var(--f-paragraph);
  max-width: 650px;
  margin: 0 auto 30px;
}

.f-guarantee__terms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.f-guarantee__term {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #059669;
  justify-content: center;
}

.f-guarantee__term svg {
  width: 22px;
  height: 22px;
  stroke: #059669;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* -----------------------------------------
   30. Simplified Timeline
   ----------------------------------------- */
.f-process {
  padding: 100px 0;
  background: var(--f-white);
}

.f-process__steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Vertical line */
.f-process__steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--f-blue), var(--f-blue-dark));
  border-radius: 3px;
}

.f-process__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 50px;
  position: relative;
}

.f-process__step:last-child {
  padding-bottom: 0;
}

.f-process__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--f-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(30, 113, 231, 0.3);
}

.f-process__circle-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--f-white);
}

.f-process__content {
  background: var(--f-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--f-radius-md);
  padding: 30px;
  box-shadow: var(--f-shadow);
  transition: transform 0.3s ease;
}

.f-process__content:hover {
  transform: translateY(-3px);
}

.f-process__step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--f-header);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.f-process__step-text {
  font-size: 17px;
  line-height: 160%;
  color: var(--f-paragraph);
  margin-bottom: 12px;
}

.f-process__step-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--f-blue);
}

.f-process__step-detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--f-blue);
  fill: none;
  stroke-width: 2;
}

/* -----------------------------------------
   31. Expanded Testimonials Grid
   ----------------------------------------- */
.f-testimonials__written-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* -----------------------------------------
   Additional Responsive for new components
   ----------------------------------------- */
@media (max-width: 1024px) {
  .f-data-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 60px;
  }
  .f-data-arrow {
    transform: rotate(90deg);
  }
  .f-data-arrow svg {
    transform: rotate(0deg);
  }
  .f-funnel-visual__title { font-size: 34px; }
  .f-data-visual__title { font-size: 34px; }
  .f-guarantee__terms {
    grid-template-columns: 1fr;
  }
  .f-testimonials__written-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .f-tabs__nav {
    gap: 6px;
  }
  .f-tabs__btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .f-funnel-annotation {
    position: relative;
    left: auto;
    bottom: auto;
    justify-content: center;
    margin-top: 12px;
  }
  .f-funnel-visual__title { font-size: 26px; }
  .f-funnel-visual__subtitle { font-size: 20px; }
  .f-data-visual__title { font-size: 26px; }
  .f-data-card__number { font-size: 44px; }
  .f-data-flow__step { font-size: 22px; }
  .f-guarantee__card { padding: 30px 20px; }
  .f-guarantee__title { font-size: 28px; }
  .f-cta-divider__text { font-size: 22px; }
  .f-process__steps::before { left: 20px; }
  .f-process__step { grid-template-columns: 40px 1fr; gap: 16px; }
  .f-process__circle { width: 40px; height: 40px; }
  .f-process__circle-number { font-size: 16px; }
}

/* -----------------------------------------
   32. Reduced Motion
   ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .f-reveal,
  .f-reveal--left,
  .f-reveal--right {
    opacity: 1;
    transform: none;
  }
}
