/* ── Hero ── */
.hero-section {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 50%, #e8eaff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 720px;
  display: flex;
  align-items: center;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-fade-scale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
.hero-title span {
  position: relative;
  display: inline-block;
}
.hero-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.08em;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4F47E5, #6C63FF);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-draw 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards,
             underline-loop 5s ease-in-out 2.7s infinite;
}
@keyframes underline-draw {
  to { transform: scaleX(1); }
}
@keyframes underline-loop {
  0%, 100% { transform: scaleX(1); transform-origin: left; }
  40% { transform: scaleX(0); transform-origin: right; }
  50% { transform: scaleX(0); transform-origin: left; }
  90% { transform: scaleX(1); transform-origin: left; }
}
.hero-description {
  font-size: 1.18rem;
  line-height: 1.8;
  color: #5a5a6e;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  opacity: 0;
  animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}
.btn-hero {
  background: linear-gradient(135deg, #4F47E5 0%, #6C63FF 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: hero-fade-scale 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
.btn-hero i {
  display: inline-block;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-width 0.3s ease, transform 0.3s ease;
  transform: translateX(-4px);
}
.btn-hero:hover {
  background: #ffffff;
  color: #4F47E5;
  transform: translateY(-2px);
  box-shadow: none;
  border: 1.5px solid #4F47E5;
}
.btn-hero:hover i {
  opacity: 1;
  max-width: 20px;
  transform: translateX(0);
}
.hero-trust-strip {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #3a3a5c;
  font-weight: 600;
  padding: 0 24px;
  border-right: 1px solid rgba(79, 71, 229, 0.2);
}
.hero-trust-item:last-child {
  border-right: none;
}
.hero-trust-item i {
  color: #4F47E5;
  font-size: 1.15rem;
  line-height: 1;
  vertical-align: middle;
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}
@media (max-width: 991px) {
  .hero-section { padding: 160px 0 90px; min-height: auto; }
  .hero-title { font-size: 2.6rem; }
}
@media (max-width: 768px) {
  .hero-section { padding: 160px 0 100px; text-align: center; min-height: auto; }
  .hero-title { font-size: 2rem; line-height: 1.35; }
  .hero-description { max-width: 100%; font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
  .btn-hero { padding: 14px 28px; font-size: 0.92rem; }
  .hero-trust-strip { flex-wrap: nowrap; gap: 0; margin-top: 36px; justify-content: center; display: none; }
  .hero-trust-item { font-size: 0.72rem; padding: 0 12px; border-right: 1px solid rgba(79, 71, 229, 0.2); }
  .hero-trust-item:last-child { border-right: none; }
  .hero-wave svg { height: 30px; }
}
@media (max-width: 480px) {
  .hero-section { padding: 160px 0 90px; }
  .hero-title { font-size: 1.6rem; }
  .hero-title span::after { height: 2px; }
  .hero-description { font-size: 0.9rem; }
  .hero-trust-strip { gap: 0; }
  .hero-trust-item { font-size: 0.65rem; padding: 0 8px; gap: 4px; }
  .hero-trust-item i { font-size: 0.85rem; }
  .btn-hero { padding: 12px 24px; font-size: 0.88rem; }
}

/* ── Split Section ── */
.split-section {
  padding: 100px 0;
  background: #f8f9fc;
}
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.split-card {
  border-radius: 16px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.split-card--problem {
  background: #ffffff;
  border: 1.5px solid #e8eaf0;
}
.split-card--solution {
  background: linear-gradient(135deg, #4F47E5 0%, #3B35C0 100%);
}
.split-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.split-card--problem .split-eyebrow { color: #4F47E5; }
.split-card--solution .split-eyebrow { color: rgba(255,255,255,0.7); }
.split-card--problem .split-headline {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a2e;
  margin-bottom: 20px;
}
.split-card--solution .split-headline {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
}
.split-card--problem .split-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a5a6e;
  margin: 0;
}
.split-card--solution .split-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0;
}
.split-card--problem::before {
  content: '?';
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-size: 10rem;
  font-weight: 800;
  color: rgba(79, 71, 229, 0.08);
  line-height: 1;
  animation: split-question 4s ease-in-out infinite;
}
.split-card--solution::before {
  content: '\2713';
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  animation: split-check 4s ease-in-out 0.5s infinite;
}
@keyframes split-question {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
  25% { transform: translateY(-16px) rotate(6deg); opacity: 0.8; }
  50% { transform: translateY(0) rotate(-4deg); opacity: 0.4; }
  75% { transform: translateY(-10px) rotate(3deg); opacity: 0.9; }
}
@keyframes split-check {
  0%, 100% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.18) rotate(5deg); }
  60% { transform: scale(0.88) rotate(-3deg); }
}
.split-card--problem {
  opacity: 0;
  animation: split-card-left 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.split-card--solution {
  opacity: 0;
  animation: split-card-right 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
@keyframes split-card-left {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes split-card-right {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 768px) {
  .split-section { padding: 60px 0; }
  .split-cards { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .split-card { padding: 32px 24px; min-height: auto; }
  .split-card--problem .split-headline,
  .split-card--solution .split-headline { font-size: 1.25rem; }
  .split-card--problem .split-body,
  .split-card--solution .split-body { font-size: 0.92rem; line-height: 1.6; }
  .split-eyebrow { font-size: 0.68rem; margin-bottom: 14px; }
  .split-card--problem::before { font-size: 7rem; }
  .split-card--solution::before { font-size: 6rem; }
  .split-card--problem, .split-card--solution {
    animation-name: hero-fade-up;
  }
  .split-card--solution {
    animation-delay: 0.15s;
  }
}

/* ── Who We Are ── */
.who-we-are-section {
  padding: 100px 0 80px;
  background: #ffffff;
  position: relative;
}
.who-we-are-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4F47E5;
  background: rgba(79, 71, 229, 0.06);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-align: left;
}
.who-we-are-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4F47E5;
  flex-shrink: 0;
}
.who-we-are-headline {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a2e;
  margin-bottom: 12px;
  max-width: 640px;
  text-align: left;
  letter-spacing: -0.02em;
}
.who-we-are-subtitle {
  font-size: 1rem;
  color: #6a6a7e;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 580px;
  text-align: left;
}
.who-we-are-img {
  max-width: 105%;
  height: auto;
  border-radius: 16px;
}
.stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.stat-card {
  background: #ffffff;
  border: 1.5px solid #e8eaf0;
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(79, 71, 229, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #4F47E5;
  margin-bottom: 2px;
}
.stat-card-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}
.stat-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6a6a7e;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
}
.who-we-are-footnote {
  font-size: 0.95rem;
  color: #5a5a6e;
  text-align: center;
  margin-top: 16px;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.who-we-are-footnote::before,
.who-we-are-footnote::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4F47E5);
}
.who-we-are-footnote::after {
  background: linear-gradient(90deg, #4F47E5, transparent);
}
@media (max-width: 992px) {
  .stat-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .who-we-are-section { padding: 60px 0; }
  .who-we-are-eyebrow { font-size: 0.68rem; }
  .who-we-are-headline { font-size: 1.5rem; line-height: 1.3; }
  .who-we-are-subtitle { font-size: 0.9rem; line-height: 1.6; margin-bottom: 32px; }
  .stat-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 14px 10px; }
  .stat-card-icon { width: 36px; height: 36px; font-size: 1rem; }
  .stat-card-value { font-size: 1.3rem; }
  .stat-card-label { font-size: 0.65rem; }
  .who-we-are-img { max-width: 100%; margin-top: 32px; }
  .who-we-are-footnote { font-size: 0.82rem; gap: 12px; margin-top: 12px; }
}

/* ── Verified Audience Section ── */
.verified-audience-section {
  padding: 100px 0 0;
  background: #f8f9fc;
  overflow: hidden;
}
.va-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4F47E5;
  background: rgba(79, 71, 229, 0.06);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-align: left;
}
.va-section-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4F47E5;
  flex-shrink: 0;
}
.va-section-headline {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a2e;
  margin-bottom: 12px;
  max-width: 640px;
  text-align: left;
  letter-spacing: -0.02em;
}
.va-section-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #6a6a7e;
  max-width: 580px;
  margin-bottom: 0;
  text-align: left;
}
.va-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4F47E5;
  background: rgba(79, 71, 229, 0.06);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.va-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4F47E5;
  flex-shrink: 0;
}
.va-headline {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a2e;
  margin-bottom: 16px;
  max-width: 600px;
  letter-spacing: -0.02em;
}
.va-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #5a5a6e;
  max-width: 540px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .va-eyebrow { font-size: 0.65rem; margin-bottom: 12px; padding: 5px 12px; }
  .va-eyebrow::before { width: 6px; height: 6px; }
  .va-headline { font-size: 1.5rem; line-height: 1.3; margin-bottom: 12px; }
  .va-section-eyebrow { font-size: 0.65rem; padding: 5px 12px; }
  .va-section-eyebrow::before { width: 6px; height: 6px; }
  .va-section-headline { font-size: 1.5rem; line-height: 1.3; }
  .va-section-description { font-size: 0.9rem; line-height: 1.6; }
}

/* ── VA Band ── */
.va-band {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: transparent;
  border-top: none;
  margin-top: 48px;
  min-height: 500px;
}
.va-col-left,
.va-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 24px;
  justify-content: flex-start;
}
.va-col-left {
  align-items: flex-end;
}
.va-col-right {
  align-items: flex-start;
}
.va-col-center {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.va-col-center img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  display: block;
  margin-bottom: 60px;
}

/* Tag row */
.va-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.va-col-left .va-tag-row {
  justify-content: flex-end;
}
.va-col-right .va-tag-row {
  justify-content: flex-start;
}

/* Side tags next to hyper/profile cards */
.va-side-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Shared pill */
.va-tag {
  background: #ffffff;
  border: 1.5px solid #d0d3e8;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #3a3a5c;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
}

/* Hyper-targeting card */
.va-hyper-card {
  background: #e8eaff;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #3a3a5c;
  max-width: 220px;
  min-height: 100px;
  border: 1.5px solid #c5c9f0;
  text-align: center;
}
.va-hyper-card strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #4F47E5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

/* Profile card */
.va-profile-card {
  background: #e8eaff;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #3a3a5c;
  max-width: 220px;
  min-height: 100px;
  border: 1.5px solid #c5c9f0;
  text-align: center;
}
.va-profile-card strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #4F47E5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
.va-profile-card .va-profile-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.va-duplicate {
  display: none;
}

.va-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 991px) {
  .va-band {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .va-col-left,
  .va-col-right {
    width: 100%;
    padding: 12px 0;
    overflow: hidden;
    display: block;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  }
  .va-scroll-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    width: max-content;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .va-col-left .va-scroll-track {
    animation: va-scroll-left 40s linear infinite;
  }
  .va-col-right .va-scroll-track {
    animation: va-scroll-right 42s linear infinite;
  }
  .va-scroll-track .va-tag-row {
    flex-shrink: 0;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    display: flex;
    min-height: 100%;
  }
  .va-scroll-track .va-tag-row--card {
    flex-direction: row;
    align-items: center;
  }
  .va-duplicate {
    display: flex;
  }
  .va-col-center {
    width: 100%;
    order: 0;
  }
  .va-col-left {
    order: -1;
  }
  .va-col-right {
    order: 1;
  }
  .va-col-center img {
    height: 320px;
    margin-bottom: 0;
  }
  .va-hyper-card,
  .va-profile-card {
    max-width: 200px;
    min-width: 180px;
  }
  .va-side-tags {
    flex-direction: column;
  }
  .va-tag {
    white-space: nowrap;
    min-width: 160px;
  }
}
@keyframes va-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes va-scroll-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Solutions Section ── */
.solutions-section {
  padding: 100px 0;
  background: #f8f9fc;
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.solution-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  border: none;
  box-shadow: 0 2px 12px rgba(79, 71, 229, 0.04);
  position: relative;
  overflow: hidden;
}
.solution-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(79, 71, 229, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.4s ease;
}
.solution-card:hover .solution-card-number {
  transform: scale(1.15);
}
.solution-card-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(79, 71, 229, 0.35);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
  text-align: center;
  transition: transform 0.35s ease;
}
@keyframes number-fill {
  0%, 10% { color: transparent; -webkit-text-stroke: 1.5px rgba(79, 71, 229, 0.35); transform: scale(1); }
  15%, 30% { color: #4F47E5; -webkit-text-stroke: 0px; transform: scale(1.2); }
  35%, 100% { color: transparent; -webkit-text-stroke: 1.5px rgba(79, 71, 229, 0.35); transform: scale(1); }
}
.solutions-section.in-view .solution-card:nth-child(1) .solution-card-number {
  animation: number-fill 5s ease-in-out infinite;
  animation-delay: 0s;
}
.solutions-section.in-view .solution-card:nth-child(2) .solution-card-number {
  animation: number-fill 5s ease-in-out infinite;
  animation-delay: 1.25s;
}
.solutions-section.in-view .solution-card:nth-child(3) .solution-card-number {
  animation: number-fill 5s ease-in-out infinite;
  animation-delay: 2.5s;
}
.solutions-section.in-view .solution-card:nth-child(4) .solution-card-number {
  animation: number-fill 5s ease-in-out infinite;
  animation-delay: 3.75s;
}
.solution-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid #4F47E5;
}
.solution-card-title-row {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.solution-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #5a5a6e;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .solutions-section {
    padding: 60px 0;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  .solution-card {
    padding: 28px 24px;
  }
  .solution-card-number {
    font-size: 2.2rem;
    min-width: 40px;
  }
  .solution-card h3 {
    font-size: 1rem;
    padding-left: 14px;
  }
  .solution-card p {
    font-size: 0.85rem;
    line-height: 1.65;
  }
}

/* ── Testimonials Section ── */
.testimonials-section {
  padding: 100px 0;
  background: #ffffff;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  animation: testimonial-scroll 35s linear infinite;
  width: max-content;
  margin-top: 56px;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
.testimonials-container:focus-within .testimonials-track {
  animation-play-state: paused;
}
.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid #ededf5;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 7rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(79, 71, 229, 0.12);
  line-height: 1;
  pointer-events: none;
}
.testimonial-category {
  display: inline-block;
  background: rgba(79, 71, 229, 0.08);
  color: #4F47E5;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  width: fit-content;
}
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #3a3a5c;
  font-style: italic;
  flex: 1;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-size: 0.82rem;
  color: #8a8aa0;
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid #e8eaf0;
}
.testimonial-author strong {
  display: block;
  color: #1a1a2e;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
@keyframes testimonial-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }
  .testimonial-card {
    width: 280px;
    padding: 24px 20px;
  }
  .testimonial-card::before {
    font-size: 5rem;
  }
  .testimonial-category {
    font-size: 0.65rem;
    padding: 5px 12px;
  }
  .testimonial-quote {
    font-size: 0.85rem;
    line-height: 1.65;
  }
  .testimonial-author {
    font-size: 0.75rem;
    padding-top: 12px;
  }
  .testimonial-author strong {
    font-size: 0.82rem;
  }
  .testimonials-track {
    margin-top: 36px;
    gap: 16px;
  }
}

/* ── Brands Section ── */
.brands-section {
  padding: 100px 0 80px;
  background: #ffffff;
  text-align: left;
}
.brands-section .brands-img-desktop {
  display: block;
  max-width: 100%;
  margin: 48px auto 0;
}
.brands-section .brands-img-mobile {
  display: none;
  max-width: 100%;
  margin: 36px auto 0;
}
@media (max-width: 767px) {
  .brands-section {
    padding: 60px 0 48px;
  }
  .brands-section .brands-img-desktop {
    display: none;
  }
  .brands-section .brands-img-mobile {
    display: block;
  }
}

/* ── UK Expansion Section ── */
.uk-expansion-section {
  padding: 100px 0;
  background: #f8f9fc;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.uk-expansion-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 71, 229, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.uk-expansion-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 71, 229, 0.08);
  color: #4F47E5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.uk-expansion-eyebrow i {
  font-size: 1rem;
  line-height: 1;
}
.uk-expansion-headline {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a2e;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.uk-expansion-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a5a6e;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.uk-stats-row {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  justify-content: center;
}
.uk-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.uk-stat-value {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}
.uk-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6a6a7e;
}
.btn-uk-cta {
  background: linear-gradient(135deg, #4F47E5 0%, #6C63FF 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-uk-cta i {
  display: inline-block;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-width 0.3s ease, transform 0.3s ease;
  transform: translateX(-4px);
}
.btn-uk-cta:hover {
  background: #ffffff;
  color: #4F47E5;
  transform: translateY(-2px);
  border: 1.5px solid #4F47E5;
}
.btn-uk-cta:hover i {
  opacity: 1;
  max-width: 20px;
  transform: translateX(0);
}
.uk-expansion-flag {
  position: absolute;
  bottom: 40px;
  right: 60px;
  font-size: 8rem;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .uk-expansion-section { padding: 60px 0; }
  .uk-expansion-headline { font-size: 1.7rem; }
  .uk-expansion-description { font-size: 0.95rem; margin-bottom: 36px; }
  .uk-stats-row { gap: 32px; margin-bottom: 36px; }
  .uk-stat-value { font-size: 1.8rem; }
  .uk-expansion-flag { display: none; }
  .btn-uk-cta { padding: 14px 28px; font-size: 0.92rem; }
}
@media (max-width: 480px) {
  .uk-expansion-headline { font-size: 1.5rem; }
  .uk-stats-row { gap: 24px; }
  .uk-stat-value { font-size: 1.5rem; }
  .uk-stat-label { font-size: 0.78rem; }
  .btn-uk-cta { padding: 12px 24px; font-size: 0.88rem; }
}

/* ── Utility Classes ── */
.testimonials-container {
  overflow: hidden;
  padding-bottom: 4px;
}

.samplico-highlight {
  color: #4F47E5;
}

/* ── Accessibility: Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-description,
  .btn-hero,
  .hero-trust-strip {
    animation: none;
    opacity: 1;
  }
  .hero-title span::after {
    animation: none;
    transform: scaleX(1);
  }
  .split-card--problem,
  .split-card--solution {
    animation: none;
    opacity: 1;
  }
  .split-card--problem::before,
  .split-card--solution::before {
    animation: none;
  }
  .testimonials-track {
    animation: none;
  }
  .va-col-left .va-scroll-track,
  .va-col-right .va-scroll-track {
    animation: none;
  }
  .creators-marquee-track {
    animation: none;
  }
  .solutions-section.in-view .solution-card .solution-card-number {
    animation: none;
    color: #4F47E5;
    -webkit-text-stroke: 0;
  }
}

/* ── Content Creators Section ── */
.creators-section {
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f3ff 100%);
  overflow: hidden;
  position: relative;
}
.creators-section .va-eyebrow {
  color: #4F47E5;
}
.creators-section .va-headline {
  font-size: 2.2rem;
  max-width: 800px;
  line-height: 1.35;
}
.creators-description {
  max-width: 750px;
  margin: 0 0 36px;
  font-size: 1.05rem;
  color: #64648c;
  line-height: 1.8;
  text-align: left;
}
.creators-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.creators-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #fff;
  color: #4F47E5;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(79, 71, 229, 0.18);
  box-shadow: 0 2px 8px rgba(79, 71, 229, 0.06);
  transition: all 0.2s ease;
}
.creators-category-tag:hover {
  background: rgba(79, 71, 229, 0.06);
  border-color: rgba(79, 71, 229, 0.35);
  transform: translateY(-1px);
}
.creators-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: none;
  display: block;
}
.creator-brand-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #1a1a2e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.creators-marquee {
  overflow: hidden;
  position: relative;
  border-radius: 0;
}
.creators-marquee::before,
.creators-marquee::after {
  display: none;
}

.creators-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: creators-scroll 35s linear infinite;
}
.creators-marquee:hover .creators-marquee-track,
.creators-marquee:focus-within .creators-marquee-track {
  animation-play-state: paused;
}
.creators-marquee-track img {
  width: 280px;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}
.creator-video-link {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 320px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  padding: 0;
}
.creator-video-link:hover {
  box-shadow: 0 8px 32px rgba(79, 71, 229, 0.15);
}
.creator-video-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.creator-video-link:hover img {
  transform: scale(1.04);
}
.creator-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.creator-play-icon i {
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.creator-video-link:hover .creator-play-icon {
  transform: translate(-50%, -50%);
  background: rgba(79, 71, 229, 0.85);
  border-color: rgba(255, 255, 255, 0.6);
}
@keyframes creators-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .creators-section {
    padding: 70px 0 60px;
  }
  .creators-section .va-headline {
    font-size: 1.5rem;
  }
  .creators-section .creators-marquee {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    overflow: hidden;
  }
  .creators-marquee-track img {
    width: 200px;
    height: 260px;
  }
  .creator-video-link {
    width: 240px;
    height: 310px;
    box-shadow: none;
  }
  .creator-play-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .creators-description {
    font-size: 0.95rem;
    padding: 0;
  }
  .creators-category-tag {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .creators-subtitle {
    font-size: 1rem;
  }
}
