/* =========================================================
   Google Fonts
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800;900&display=swap');

/* =========================================================
   Reset + Base
========================================================= */
html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================================================
   Root Scope
========================================================= */
#bfv-regular,
#bfv-regular * {
  box-sizing: border-box;
}

#bfv-regular {
  --ink: #F8F8F8;
  --muted: #C0C0C0;
  --bg: #000;
  --panel: #101010;
  --line: #1E1E1E;
  --accent: #D4AF37;
  --accent-2: #FFD84D;
  --brand-purple: #A98BFF;
  --shadow-glow: 0 12px 40px rgba(212, 175, 55, .35);

  color: var(--ink);
  background: var(--bg);
  font-family: 'Barlow Semi Condensed', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.4;
}

/* Headings default = Barlow */
#bfv-regular h1,
#bfv-regular h2,
#bfv-regular h3,
#bfv-regular .caps {
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 800;
  color: #fff;
  font-family: 'Barlow Semi Condensed', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 24px);
}

.band-fw {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* =========================================================
   CTA Styles (Inter)
========================================================= */
#bfv-regular .bfv-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background: linear-gradient(180deg, #F4D057 0%, #E4B73A 100%);
  border: 1px solid rgba(0, 0, 0, .25);
  box-shadow: 0 10px 30px rgba(244, 208, 87, .35), 0 2px 0 rgba(0, 0, 0, .15) inset;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

#bfv-regular .bfv-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(244, 208, 87, .45), 0 2px 0 rgba(0, 0, 0, .12) inset;
}

#bfv-regular .bfv-cta:active {
  transform: translateY(-1px);
}

#bfv-regular .bfv-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: none;
  text-decoration: none;
  background: #0C0C0C;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

#bfv-regular .bfv-cta-outline-purple {
  border: 2px solid var(--brand-purple);
  color: var(--brand-purple);
}

#bfv-regular .bfv-cta-outline-yellow {
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
}

#bfv-regular .bfv-cta-outline:hover {
  transform: translateY(-2px);
}

#bfv-regular .cinema .bfv-cta {
  border-radius: 8px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 24px 50px rgba(244, 208, 87, .28), 0 2px 0 rgba(0, 0, 0, .15) inset;
}

/* =========================================================
   Scroll Reveal
========================================================= */
[data-reveal] {
  opacity: 0;
  transform: var(--r-transform, translateY(16px));
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="fade-in"]   { --r-transform: translateY(0); }
[data-reveal="fade-up"]   { --r-transform: translateY(16px); }
[data-reveal="fade-down"] { --r-transform: translateY(-16px); }
[data-reveal="fade-left"] { --r-transform: translateX(-16px); }
[data-reveal="fade-right"]{ --r-transform: translateX(16px); }
[data-reveal="zoom-in"]   { --r-transform: scale(.96); }

[data-reveal] {
  transition-delay: var(--r-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   HERO
========================================================= */
#bfv-regular .hero {
  position: relative;
  min-height: min(82vh, 760px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

#bfv-regular .hero .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#bfv-regular .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(46% 46% at 50% 42%, rgba(0,0,0,.18) 0%, rgba(0,0,0,.56) 55%, rgba(0,0,0,.86) 100%);
  pointer-events: none;
}

#bfv-regular .hero .content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding: clamp(16px, 3vw, 32px);
}

#bfv-regular .hero h1 {
  font-family: 'Barlow Semi Condensed', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.06;
  margin: 0 0 12px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}

#bfv-regular .hero p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: #C0C0C0;
  font-weight: 600;
  font-size: clamp(14px, 1.9vw, 17px);
  max-width: min(680px, 90vw);
  margin: 0 auto 26px;
}

#bfv-regular .hero .bfv-cta {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
}

/* =========================================================
   TRUSTED
========================================================= */
#bfv-regular .trusted {
  padding: 36px 0 22px;
  background: #000;
}

#bfv-regular .trusted h2 {
  font-size: clamp(18px, 2.2vw, 22px);
  text-align: center;
  margin: 0 0 4px;
}

#bfv-regular .trusted .sub {
  color: #d7d7d7;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
  font-size: clamp(13.5px, 1.8vw, 16px);
  text-transform: none;
  letter-spacing: 0;
}

#bfv-regular .marquee {
  overflow: hidden;
  position: relative;
}

#bfv-regular .marquee .track {
  display: flex;
  width: max-content;
  animation: bfv-scroll 60s linear infinite;
}

#bfv-regular .marquee .brand {
  display: inline-block;
  margin-right: 50px;
  padding: 10px 20px;
  color: #F8F8F8;
  font-weight: 800;
  opacity: .8;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .06em;
  transition: transform .2s ease, opacity .2s ease;
}

#bfv-regular .marquee .brand:hover {
  transform: translateY(-3px);
  opacity: 1;
}

@keyframes bfv-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   PROBLEMS
========================================================= */
#bfv-regular .pains {
  padding: 60px 0 48px;
  background: var(--bg);
}

.pains .head {
  text-align: center;
  margin-bottom: 32px;
}

.pains .head h2 {
  font-size: clamp(32px, 3.8vw, 56px) !important;
  margin: 0 0 8px;
  font-weight: 800 !important;
  line-height: 1.1;
}

.pains .head .sub {
  color: #fff !important;
  text-transform: none;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: clamp(15px, 2.2vw, 20px);
}

.pains .grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pains .card {
  grid-column: span 4;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  will-change: transform;
}

.pains .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(183, 148, 255, .25);
  border-color: rgba(185, 154, 255, .35);
}

.pains .card .problem {
  font-size: 22px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 800;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  min-height: 64px;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1100px) {
  .pains .card .problem {
    min-height: 0;
    display: block;
  }
}

.pains .card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pains .card li {
  color: #D7D7D7;
  line-height: 1.6;
  margin: 14px 0;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.pains .card li::before {
  content: "- ";
  position: absolute;
  left: 0;
  top: 0;
  color: #B99AFF;
  font-weight: 800;
}

.pains .hi {
  color: #fff;
  font-weight: 700;
}

/* =========================================================
   HELP BAND
========================================================= */
#bfv-regular .help {
  padding: 40px 0 44px;
  background: #000;
  text-align: center;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

#bfv-regular .help h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 10px;
}

#bfv-regular .help p {
  color: #A9A9B2;
  margin: 0 0 18px;
  text-transform: none;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

#bfv-regular .help .bfv-cta-outline-purple {
  margin-top: 4px;
}

/* =========================================================
   SOLUTIONS
========================================================= */
#bfv-regular .solutions {
  padding: 72px 0;
  background: #0B0B0D;
  color: var(--ink);
}

.solutions .head {
  text-align: center;
  margin-bottom: 28px;
}

.solutions .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #A9A9B2;
  border: 1px solid #1C1C22;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
}

.solutions h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.08;
  margin: 14px 0 8px;
}

.solutions .sub {
  color: #A9A9B2;
  font-size: 16px;
  max-width: 760px;
  margin: 0 auto 16px;
  text-transform: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.solutions .grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.solutions .card {
  grid-column: span 4;
  background: linear-gradient(180deg, #16161B 0%, #0F0F13 100%);
  border: 1px solid #1C1C22;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solutions .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  border-color: #24242E;
}

.solutions .media {
  aspect-ratio: 16/10;
  background: #0D0D11;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.solutions .media[data-img]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center/cover no-repeat var(--img);
  filter: saturate(1.05) contrast(1) brightness(.9);
}

.solutions .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.35) 100%);
}

.solutions .body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.solutions .kicker {
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
}

.solutions .title {
  font-weight: 900;
  font-size: 18px;
  margin: 0;
}

.solutions .desc {
  color: #A9A9B2;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

.solutions .desc b {
  color: #fff;
  font-weight: 800;
}

.solutions .cta-wrap {
  text-align: center;
  margin-top: 24px;
}

.solutions .bfv-cta-outline-yellow {
  font-size: 16px;
}

/* =========================================================
   RESULTS
========================================================= */
#bfv-regular .results {
  padding: 60px 0 48px;
  background: #000;
}

.results .results-heading {
  text-align: center;
  margin-bottom: 32px;
  font-size: clamp(32px, 3.8vw, 56px) !important;
  font-weight: 800 !important;
  line-height: 1.1;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-family: 'Barlow Semi Condensed', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.results .grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.results .card {
  grid-column: span 4;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  will-change: transform;
}

.results .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(183, 148, 255, .25);
  border-color: rgba(185, 154, 255, .35);
}

.results .cat {
  font-size: 22px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 800;
  color: #B99AFF;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.results .metric {
  font-size: clamp(22px, 2.8vw, 32px);
  color: #F8F8F8;
  font-weight: 900;
  margin: 10px 0;
  line-height: 1.12;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.results .desc {
  color: #D7D7D7;
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.results .cta-under {
  text-align: center;
  margin-top: 34px;
}

@media (max-width: 1100px) {
  .results .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .results .card { grid-column: span 1; }
}

@media (max-width: 720px) {
  .results .grid { grid-template-columns: 1fr; gap: 18px; }
  .results .card { grid-column: span 1; min-height: 300px; }
}

/* =========================================================
   SERVICES
========================================================= */
#bfv-regular .services {
  padding: 64px 20px;
  background: #000;
}

.services .wrap {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.services .title {
  font-size: clamp(36px, 5.2vw, 68px);
  margin: 0 0 12px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.04;
}

.services .subtitle {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #9CA3AF;
  text-transform: none;
  margin: 0 auto 44px;
  max-width: 860px;
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.services .card {
  background: #151515;
  padding: 42px 34px;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  border: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .45);
  border-color: rgba(212, 175, 55, .28);
}

.services .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, .6));
}

.services h3 {
  font-size: 24px;
  margin: 0 0 14px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-family: 'Barlow Semi Condensed', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.services .card p {
  color: #AEB1B7;
  margin: 0 0 18px;
  line-height: 1.6;
  font-size: 15px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.services .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.services .feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #D1D5DB;
  margin: 12px 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.services .feature-list li::before {
  content: "\2714";
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
  color: var(--accent-2);
}

.services .cta-below {
  text-align: center;
  margin-top: 22px;
}

/* =========================================================
   CINEMA STRIP
========================================================= */
#bfv-regular .cinema {
  background: #000;
  padding: 10px 0 30px;
}

#bfv-regular .cinema .wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8px;
  text-align: center;
}

.cinema .grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 15px !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  justify-items: center !important;
  justify-content: center !important;
}

.cinema .item {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 0;
  margin: 0 !important;
  width: 100% !important;
  max-width: 260px !important;
}

.cinema .item img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
}

.cinema .cta-bottom {
  margin-top: 38px;
}

/* Responsive for cinema */
@media (max-width: 1100px) {
  .cinema .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    max-width: 600px !important;
  }
}

@media (max-width: 720px) {
  .cinema .grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    max-width: 320px !important;
  }
}

/* =========================================================
   WHY CHOOSE (Features)
========================================================= */
#bfv-regular .features {
  padding: 60px 0 48px;
  background: #000;
  text-align: center;
}

.features .wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.features .title {
  text-align: center;
  margin-bottom: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(32px, 3.8vw, 56px) !important;
  line-height: 1.1;
  color: #fff !important;
  font-family: 'Barlow Semi Condensed', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  animation: titleGlow 3s ease-in-out infinite alternate;
  user-select: none;
}

@keyframes titleGlow {
  0%   { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); }
  100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)); }
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  justify-items: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.features .card {
  grid-column: span 4;
  background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 28px 26px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, .10);
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(50px);
  animation: cardFadeIn .8s ease forwards;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease, background .4s ease;
  will-change: transform;
  cursor: default;
  user-select: none;
}

.features .card:nth-child(1) { animation-delay: .1s; }
.features .card:nth-child(2) { animation-delay: .2s; }
.features .card:nth-child(3) { animation-delay: .3s; }
.features .card:nth-child(4) { animation-delay: .4s; }
.features .card:nth-child(5) { animation-delay: .5s; }
.features .card:nth-child(6) { animation-delay: .6s; }

@keyframes cardFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.features .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left .6s ease;
  pointer-events: none;
}

.features .card:hover::before {
  left: 100%;
}

.features .card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(212, 175, 55, .45);
  box-shadow: 0 25px 50px rgba(212, 175, 55, .15), 0 0 30px rgba(212, 175, 55, .10);
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
}

.features .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, .6));
  animation: iconFloat 4s ease-in-out infinite;
  user-select: none;
  flex-shrink: 0;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}

.features .card h3 {
  font-family: 'Barlow Semi Condensed', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  margin: 0 0 12px;
  color: #FAFAFA;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color .3s ease;
}

.features .card:hover h3 {
  color: #D4AF37;
}

.features .card p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  transition: color .3s ease;
}

.features .card:hover p {
  color: #ddd;
}

@media (max-width: 1100px) {
  .features .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .features .card { grid-column: span 1; min-height: 260px; }
}

@media (max-width: 720px) {
  .features .grid { grid-template-columns: 1fr; gap: 18px; }
  .features .card { grid-column: span 1; min-height: 240px; padding: 24px 20px; }
  .features .card:hover { transform: translateY(-5px) scale(1.01); }
  .features .icon { width: 40px; height: 40px; margin-bottom: 15px; }
  .features .card h3 { font-size: 16px; }
  .features .card p  { font-size: 13px; }
}

/* =========================================================
   TESTIMONIALS
========================================================= */
#bfv-regular .testimonials {
  padding: 80px 20px;
  text-align: center;
}

.testimonials .title {
  font-size: clamp(26px, 3.2vw, 42px);
  margin-bottom: 36px;
}

.testimonials .grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 24px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  justify-content: center !important;
  justify-items: center !important;
}

.testimonials .card {
  background: #1a1a1a;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, .18);
  box-shadow: 0 15px 30px rgba(212, 175, 55, .10);
  transition: all .25s ease;
  text-align: left;
  width: 100% !important;
  max-width: 380px !important;
}

.testimonials .card:hover {
  border-color: rgba(212, 175, 55, .42);
  box-shadow: 0 20px 40px rgba(212, 175, 55, .14);
}

.testimonials .text {
  color: #ddd;
  text-transform: none;
  line-height: 1.65;
  font-size: 16px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.testimonials .author {
  font-weight: 900;
  color: var(--accent-2);
  margin-top: 10px;
}

/* =========================================================
   Responsive Wrappers (Other Sections)
========================================================= */
@media (max-width: 1100px) {
  .pains .grid     { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .solutions .card { grid-column: span 6; }
  .services .grid  { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .features .grid  { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cinema .grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .services .grid { grid-template-columns: 1fr; gap: 20px; }
  .features .grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee .track { animation: none; }
  .pains .card,
  .solutions .card,
  .results .card,
  .services .card,
  .features .card,
  #bfv-regular .portfolio .item {
    transition: none;
  }
}

/* =========================================================
   Hide Cal.com Branding
========================================================= */
#my-cal-inline-15min [data-testid*="powered"],
#my-cal-inline-15min [class*="powered"],
#my-cal-inline-15min a[href*="cal.com"]:not([href*="/15min"]),
#my-cal-inline-15min .cal-branding,
#my-cal-inline-15min .powered-by {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
}

/* =========================================================
   Portfolio / Services Overrides
========================================================= */
/* Allow the portfolio to expand; defeat any parent height/overflow */
#bfv-regular #bfv-portfolio {
  overflow: visible !important;
  height: auto !important;
}

/* Let services breathe + neutralize any parent clipping */
#bfv-regular #bfv-services {
  overflow: visible !important;
  height: auto !important;
}

/* â€”â€” Namespaced so PageFly can't touch it â€”â€” */
#bfv-regular #bfv-services {
  padding: 64px 20px;
  background: #000;
}

#bfv-regular #bfv-services .srv-wrap {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* Headline: Barlow, uppercase, tight */
#bfv-regular #bfv-services .srv-title {
  font-family: 'Barlow Semi Condensed', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.04;
  margin: 0 0 12px;
}

/* Subhead: Inter, sentence case */
#bfv-regular #bfv-services .srv-sub {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #9CA3AF;
  text-transform: none;
  margin: 0 auto 44px;
  max-width: 860px;
}

/* Grid */
#bfv-regular #bfv-services .srv-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 32px !important;
  align-items: stretch;
}

@media (max-width: 1100px) {
  #bfv-regular #bfv-services .srv-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 900px) {
  #bfv-regular #bfv-services .srv-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Card */
#bfv-regular #bfv-services .srv-card {
  position: relative;
  overflow: hidden;
  background: #151515;
  padding: 42px 34px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  color: #E5E7EB;
  text-align: center;
}

/* Animated top gold line */
#bfv-regular #bfv-services .srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

#bfv-regular #bfv-services .srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .45);
  border-color: rgba(212, 175, 55, .28);
}

#bfv-regular #bfv-services .srv-card:hover::before {
  transform: scaleX(1);
}

/* Icon â€” force true center */
#bfv-regular #bfv-services .srv-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, .6));
  flex-shrink: 0;
}

#bfv-regular #bfv-services .srv-icon svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

/* Card heading */
#bfv-regular #bfv-services .srv-card h3 {
  font-family: 'Barlow Semi Condensed', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 14px;
}

/* Paragraph */
#bfv-regular #bfv-services .srv-card p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #AEB1B7;
  line-height: 1.6;
  font-size: 15px;
  margin: 0 0 18px;
}

/* Feature checklist â€” left-aligned but centered as a block */
#bfv-regular #bfv-services .srv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

#bfv-regular #bfv-services .srv-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #D1D5DB;
  margin: 12px 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}

#bfv-regular #bfv-services .srv-list li::before {
  content: "\2714";
  color: #FFD84D;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}

/* CTA below */
#bfv-regular #bfv-services .srv-cta {
  text-align: center;
  margin-top: 22px;
}

#bfv-regular #bfv-services .srv-cta .bfv-cta-outline {
  border-radius: 8px;
}

/* =========================================================
   Portfolio (Collision-proof)
========================================================= */
#bfv-regular #bfv-portfolio {
  padding: 64px 0;
  background: #000;
  isolation: isolate;
}

#bfv-regular #bfv-portfolio .pf-head {
  text-align: center;
  margin-bottom: 40px;
}

#bfv-regular #bfv-portfolio .pf-title {
  font-size: clamp(28px, 3.2vw, 42px);
  margin: 0 0 8px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-family: 'Barlow Semi Condensed', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

#bfv-regular #bfv-portfolio .pf-sub {
  color: #9CA3AF;
  font-weight: 600;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Grid that can't be overridden by PageFly flex rules */
#bfv-regular #bfv-portfolio .pf-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-rows: 1fr !important;
  gap: 24px !important;
  max-width: 1200px;
  margin: 40px auto 0;
  --pf-reset: none;
}

#bfv-regular #bfv-portfolio .pf-grid > * {
  flex: 0 0 auto !important;
  max-width: none !important;
  width: 100% !important;
}

/* Card */
#bfv-regular #bfv-portfolio .pf-card {
  position: relative;
  display: block !important;
  cursor: pointer;
  text-decoration: none;
  width: 100% !important;
  min-width: 0 !important;
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #121212, #1f1f1f);
  border-radius: 15px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  border: 2px solid transparent;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Fallback for older browsers (keeps height) */
@supports not (aspect-ratio: 1 / 1) {
  #bfv-regular #bfv-portfolio .pf-card::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
}

#bfv-regular #bfv-portfolio .pf-media {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: translateZ(0);
}

#bfv-regular #bfv-portfolio .pf-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .9));
  transform: translateY(100%);
  transition: transform .3s ease;
  font-weight: 700;
}

#bfv-regular #bfv-portfolio .pf-card:hover .pf-overlay {
  transform: translateY(0);
}

#bfv-regular #bfv-portfolio .pf-cat {
  font-size: 13px;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

#bfv-regular #bfv-portfolio .pf-title2 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 700;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

#bfv-regular #bfv-portfolio .pf-result {
  font-size: 13px;
  color: #D1D5DB;
  font-weight: 600;
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hover */
#bfv-regular #bfv-portfolio .pf-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(212, 175, 55, .2);
  border-image: linear-gradient(135deg, #D4AF37, #FFD700) 1;
}

/* Responsive */
@media (max-width: 1024px) {
  #bfv-regular #bfv-portfolio .pf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  #bfv-regular #bfv-portfolio .pf-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #bfv-regular #bfv-portfolio .pf-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

/* =========================================================
   Centered, Collision-proof Grids
========================================================= */
#bfv-regular .testimonials .t-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 380px));
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
  max-width: calc(3 * 380px + 2 * 24px);
}

@media (max-width: 1200px) {
  #bfv-regular .testimonials .t-grid {
    grid-template-columns: repeat(2, minmax(0, 380px));
    max-width: calc(2 * 380px + 24px);
  }
}

@media (max-width: 800px) {
  #bfv-regular .testimonials .t-grid {
    grid-template-columns: minmax(0, 360px);
    max-width: 360px;
  }
}

#bfv-regular .cinema .c-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 260px));
  gap: 15px;
  justify-content: center;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  #bfv-regular .cinema .c-grid {
    grid-template-columns: repeat(2, minmax(0, 280px));
  }
}

@media (max-width: 720px) {
  #bfv-regular .cinema .c-grid {
    grid-template-columns: minmax(0, 300px);
  }
}

#bfv-regular .cinema .c-item {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  width: 100%;
  max-width: 260px;
}

#bfv-regular .cinema .c-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}