/*
Theme Name: Hexplora
Theme URI: https://example.com/hexplora
Author: Hexplora Studio
Description: Custom WordPress theme based on the Hexplora homepage design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hexplora
Tags: custom, marketing, healthcare, responsive
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #f7f9ff;
  --bg-strong: #f3e8e8;
  --ink: #000000;
  --ink-2: #293754;
  --muted: #293754;
  --brand: #020735;
  --brand-2: #16e7cf;
  --brand-3: #06149b;
  --card: #ffffff;
  --line: #e2e7f2;
  --shadow: 0 16px 40px rgba(16, 30, 70, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(22, 231, 207, 0.13);
  border-radius: 999px;
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(226, 231, 242, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 120px;
  padding: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.4px;
  font-size: 22px;
}

.brand img {
  width: 158px;
  height: 42px;
  height: auto;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #4c7dff);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  color: #020407;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a {
  padding: 8px 0 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  color: #020407;
  background-image: linear-gradient(#020735, #020735);
  background-position: 0 100%;
  background-size: 0% 2px;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}

.menu a:hover,
.menu .current-menu-item > a {
  background-size: 100% 2px;
}

.menu .current-menu-item > a {
  color: #020735;
}

.menu .menu-item {
  position: relative;
}

.menu .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: #f7f9ff;
  border: 1px solid #e2e7f2;
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.menu .sub-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
}

.menu .sub-menu a:hover {
  background: rgba(22, 231, 207, 0.15);
}

.menu .menu-item:hover > .sub-menu,
.menu .menu-item:focus-within > .sub-menu {
  display: block;
}

.menu .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 24.65px;
  height: 24.65px;
  margin-left: 8px;
  vertical-align: middle;
  background-color: #020407;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M6.16263 9.24421L12.3254 15.407L18.4882 9.24421' stroke='black' stroke-width='2.46512' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M6.16263 9.24421L12.3254 15.407L18.4882 9.24421' stroke='black' stroke-width='2.46512' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .btn {
  min-width: 156px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(96.19deg, #020735 0%, #06149b 112.48%);
  color: #fff;
  border: 1px solid #929dff;
  box-shadow: 0 12px 24px rgba(30, 87, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand);
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.section.hero-section {
  background: transparent;
  padding: 0;
  min-height: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero-slider-viewport {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  width: 100%;
}

.hero-slider-track {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  transform: scale(1.02);
  transition: opacity 0.4s ease, transform 0.8s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1.08);
}

.hero-slide--banner {
  transform: none;
}

.hero-banner {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #ffffff;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
}

@media (max-width: 720px) {
  .hero-banner {
    background: #ffffff;
    padding: 0 16px;
  }

  .hero-banner img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
  }
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(52px, 8vw, 109.228px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 16px 0 18px;
}

.hero h1 .hero-topline {
  display: block;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 43.75px);
  line-height: 60px;
  color: #020735;
}

.hero h1 .hero-highlight {
  display: block;
  font-weight: 600;
  background: linear-gradient(270deg, #1f62cc 25.47%, #123b88 101.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: #020735;
  font-weight: 500;
  font-size: 22.156px;
  line-height: 34px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-tags span::after {
  content: '';
  width: 7.27px;
  height: 7.27px;
  background: #2063cc;
  border-radius: 50%;
}

.hero-tags span:last-child::after {
  display: none;
}

.hero p {
  font-size: 19px;
  line-height: 26px;
  color: #293754;
}

.hero-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  width: 858px;
  height: 858px;
  border-radius: 50%;
  border: 1px solid rgba(2, 7, 53, 0.06);
  right: -240px;
  top: -120px;
}

.hero-panel img {
  width: 100%;
  border-radius: 18px;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: auto -40% -40% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(22, 183, 165, 0.3), transparent 70%);
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(2, 7, 53, 0.08);
}

.hero-ring-lg {
  width: 858px;
  height: 858px;
  right: -240px;
  top: -120px;
}

.hero-ring-sm {
  width: 429px;
  height: 429px;
  left: -220px;
  bottom: -220px;
}

.hero-spark {
  position: absolute;
  width: 26px;
  height: 26px;
  left: 48%;
  top: 34%;
  border: 2.5px solid #1f62cc;
  border-radius: 6px;
  transform: rotate(45deg);
}

.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(2, 7, 53, 0.15);
  padding: 12px 14px;
  font-size: 12px;
  color: #020735;
  width: 220px;
}

.hero-float p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.hero-float-top {
  top: 36px;
  left: -10px;
  width: 278px;
}

.hero-float-top img {
  width: 70px;
  height: auto;
}

.hero-float-pill {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 231, 207, 0.17);
  padding: 8px;
  border-radius: 6px;
}

.hero-float-pill span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #16e7cf;
  position: relative;
  display: inline-block;
}

.hero-float-pill span::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #020735;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 2px;
}

.hero-float-bottom {
  right: -10px;
  bottom: 36px;
  width: 220px;
  padding: 0 0 12px;
  overflow: hidden;
}

.hero-float-image {
  height: 64px;
  background: linear-gradient(135deg, #d7fbf7, #ffffff);
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid rgba(2, 7, 53, 0.08);
}

.hero-float-bottom p {
  padding: 0 12px;
}


.card-grid {
  display: grid;
  gap: 24px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #edf2ff;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-weight: 700;
}

.card h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
}

.offer-section {
  display: grid;
  gap: 24px;
}

.offer-section-wrap {
  background: #F3E8E8;
  border-radius: 120px 120px 0 0;
  padding: 56px 0 72px;
}

.offer-header h2 {
  margin: 0 0 8px;
  font-family: 'Manrope', sans-serif;
  text-align: center;
}

.offer-header p {
  margin: 0;
  color: #293754;
  font-size: 19px;
  line-height: 26px;
  text-align: center;
}

.offer-grid {
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
}

@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .offer-section-wrap {
    border-radius: 60px 60px 0 0;
    padding: 44px 0 60px;
  }
}

@media (max-width: 720px) {
  .offer-card {
    width: min(284px, 90vw);
    height: auto;
  }

  .offer-icon {
    width: 180px;
    height: 180px;
  }

  .offer-icon img {
    width: 180px;
    height: 180px;
  }

  .offer-card h3 {
    font-size: 22px;
    line-height: 32px;
  }
}

.offer-card {
  background: #F0F8FE;
  border-radius: 22px;
  padding: 22px;
  border: none;
  box-shadow: none;
  display: grid;
  gap: 12px;
  width: 284px;
  height: 337px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(16, 30, 70, 0.12);
}

.offer-icon {
  width: 200px;
  height: 200px;
  border-radius: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: none;
}

.offer-icon img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon img {
  transform: scale(1.08);
}

.offer-card h3 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 36px;
  color: #000000;
  text-align: left;
  display: block;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.offer-link {
  color: inherit;
  text-decoration: none;
  display: grid;
  gap: 12px;
}

.offer-link:hover h3 {
  text-decoration: none;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}
.intro-section {
  background: #f7f9ff;
}

.intro-block {
  background: transparent;
  border-radius: 0;
  padding: 20px 0;
  border: none;
  box-shadow: none;
  position: relative;
  overflow: visible;
  display: grid;
  place-items: center;
  text-align: center;
}

.intro-block::before {
  display: none;
}

.intro-block::after {
  display: none;
}

.intro-block .badge {
  background: rgba(22, 231, 207, 0.13);
  color: var(--brand);
}

.intro-block .reveal {
  width: 100%;
}

.intro-block h2,
.offer-header h2,
.stats-header h2,
.love-section h2,
.vbc-section h2,
.info-card h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.25;
  color: #000000;
}

.intro-block p {
  color: var(--muted);
  margin: 0 0 20px;
}

.intro-copy {
  max-width: 958px;
  margin: 0 auto;
}

.intro-description {
  margin: 0;
  font-size: 29.614px;
  line-height: 42.94px;
  color: #000000;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  text-align: center;
}

.intro-description .intro-highlight {
  position: relative;
  display: inline-block;
  color: #0EB7A3;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  z-index: 1;
  padding: 0 6px;
}

.intro-description .intro-accent {
  color: #0EB7A3;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 29.614px;
  line-height: 42.94px;
}

.intro-description .intro-highlight::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  left: -54px;
  top: -46px;
  background: url('assets/img/ellipse-238.svg') no-repeat center / contain;
  z-index: -1;
  opacity: 0.9;
}

@media (max-width: 980px) {
  .intro-copy {
    max-width: 90vw;
  }

  .intro-description {
    font-size: 22px;
    line-height: 32px;
  }

  .intro-description .intro-highlight::before {
    width: 90px;
    height: 90px;
    left: -40px;
    top: -32px;
  }
}

@media (max-width: 720px) {
  .intro-description {
    font-size: 18px;
    line-height: 28px;
  }
}

.intro-block .checklist {
  gap: 14px;
}

.intro-block .checklist li::before {
  background: #e8f4ff;
  border: 1px solid #cfe0ff;
}

.intro-block .illustration {
  background: #f7f9ff;
  border: 1px solid #eef2ff;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.intro-block .illustration img {
  border-radius: 18px;
}

.two-col-block {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  gap: 28px;
}

.two-col-block.reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-col-block p {
  color: var(--muted);
}

.two-col-block .illustration {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
}

.two-col-block .illustration img {
  border-radius: 18px;
}

.two-col-block h2 {
  margin: 0 0 10px;
}

.two-col-block .checklist {
  margin: 16px 0 0;
}

.two-col-block .checklist li::before {
  background: #e8f4ff;
  border: 1px solid #cfe0ff;
}

.reality-help-section {
  background: #F7F9FF;
}

.reality-help {
  display: grid;
  gap: 36px;
  max-width: 1440px;
}

.reality-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 32px;
  background: transparent;
  border: none;
  padding: 32px 36px;
}

.reality-row.reverse {
  direction: rtl;
}

.reality-row.reverse > * {
  direction: ltr;
}

.reality-copy h2 {
  margin: 0 0 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 45px;
  color: #000000;
}

.reality-copy p {
  margin: 0;
  color: #293754;
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 140%;
}

.reality-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.reality-image img {
  width: 528px;
  height: 528px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.reality-image {
  background: transparent;
}

@media (max-width: 980px) {
  .reality-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
  }

  .reality-row.reverse {
    direction: ltr;
  }

  .reality-image img {
    width: min(420px, 100%);
    height: auto;
  }
}

@media (max-width: 720px) {
  .reality-row {
    gap: 20px;
    padding: 20px 16px;
  }

  .reality-copy h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .reality-copy p {
    font-size: 17px;
    line-height: 150%;
  }

  .reality-image img {
    width: min(320px, 100%);
  }
}

@media (max-width: 1100px) {
  .logo-tile {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 820px) {
  .logo-tile {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 560px) {
  .logo-tile {
    width: 160px;
    height: 160px;
  }
}

@keyframes logoWallScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .two-col-block,
  .two-col-block.reverse {
    grid-template-columns: 1fr;
  }
}
.logos-video {
  display: grid;
  gap: 32px;
}

.logos-video-section {
  padding-left: 0;
  padding-right: 0;
}

.logos-video--full {
  width: 100%;
  max-width: 100%;
}

.logo-marquee {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #000000;
  border-right: 0;
  width: 100%;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoWallScroll 28s linear infinite;
}

.logo-marquee-track.reverse {
  animation-direction: reverse;
}

.logo-marquee-track + .logo-marquee-track {
  border-top: 1px solid #000000;
}
.logo-tile {
  width: 296px;
  height: 296px;
  border-right: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 20px;
  flex: 0 0 auto;
}

.logo-marquee-track .logo-tile:last-child {
  border-right: 0;
}

.logo-tile img {
  max-width: 75%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-tile--video {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.logo-tile--video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: none;
}

.logo-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.logo-play::before {
  content: '';
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #16E7CF;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.logo-play::after {
  content: '';
  margin-left: 4px;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 9999;
}

.video-lightbox.is-open {
  display: grid;
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.video-lightbox-panel {
  position: relative;
  width: min(960px, 90vw);
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.video-lightbox-frame {
  position: relative;
  padding-top: 56.25%;
}

.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-lightbox-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}

.vbc-band {
  padding: 0;
}

.vbc-wrap {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #ffffff;
}

.vbc-media {
  width: 100%;
  height: 709px;
  background: transparent;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vbc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vbc-content {
  background: rgba(181, 247, 240, 0.18);
  padding: 64px 70px;
  width: 100%;
  min-height: 709px;
  display: grid;
  align-content: center;
  gap: 32px;
}

.vbc-content h2 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 50.031px;
  color: #000000;
  max-width: none;
  white-space: pre-line;
}

.vbc-content p {
  margin: 0 0 10px;
  color: #000000;
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 28.018px;
}

.vbc-content .checklist li {
  color: #000000;
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 10px;
}

.vbc-content .checklist {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .vbc-content {
    padding: 48px 40px;
  }

  .vbc-content h2,
  .vbc-content p {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 980px) {
  .vbc-wrap {
    grid-template-columns: 1fr;
  }

  .vbc-media {
    height: auto;
  }

  .vbc-media img {
    width: 100%;
    height: auto;
  }

  .vbc-content {
    min-height: auto;
    padding: 40px 28px 48px;
  }
}

@media (max-width: 720px) {
  .vbc-content {
    padding: 32px 20px 40px;
  }
}

.video-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #f0f4ff;
}

.video-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, rgba(30, 87, 255, 0.8), rgba(10, 32, 90, 0.8));
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.illustration {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.stat {
  background: transparent;
  border-radius: 0;
  padding: 0 24px;
  border: none;
  text-align: center;
}

.stat h3 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 70px;
  line-height: normal;
  color: #000000;
}

.stat p {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: normal;
  color: #293754;
  margin: 0;
}

.stats-section {
  display: grid;
  gap: 24px;
  background: #F7F9FF;
  padding-bottom: 96px !important;
}

.stats-header h2 {
  margin: 0 0 8px;
  font-family: 'Manrope', sans-serif;
  text-align: center;
  color: #000000;
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}

.stats-header p {
  margin: 0;
  color: #293754;
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.stats-grid {
  gap: 40px;
}

.stats-grid .stat:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  color: #000000;
  margin-left: 4px;
}

.love-section {
  display: grid;
  grid-template-columns: 1fr 714px;
  align-items: stretch;
  gap: 0;
  background: #F7F9FF;
  width: 100%;
}

.love-section-full {
  width: 100%;
  background: #F7F9FF;
}

.love-copy {
  display: grid;
  align-content: center;
  padding: 20px 40px 20px max(24px, calc((100vw - 1200px) / 2));
}

.love-features {
  display: grid;
  gap: 32px;
}

.love-item {
  display: grid;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  color: #293754;
}

.love-item h3 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 36px;
  color: #000000;
  position: relative;
  display: inline-block;
  padding-left: 28px;
}

.love-item h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #293754;
}

.love-item:first-child h3::after {
  content: '';
  position: absolute;
  left: -18px;
  top: -10px;
  width: 84px;
  height: 84px;
  background: url('assets/img/ellipse-238.svg') no-repeat center / contain;
  z-index: -1;
  opacity: 0.85;
}

.love-item p {
  margin: 0;
  font-size: 19px;
  font-weight: 400;
  line-height: normal;
  color: #293754;
}

.love-media {
  width: 100%;
  height: 709px;
  background: #F3E8E8;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-left: 48px;
}

.love-media img {
  width: 804px;
  height: 457px;
  border-radius: 13px;
  object-fit: cover;
  margin-right: 0;
}

.highlight {
  background: linear-gradient(135deg, #e8f7ff, #ffffff 55%);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #293754;
  font-size: 19px;
  line-height: 26px;
}

.checklist li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #16e7cf;
  border: 1px solid #16e7cf;
}

@media (max-width: 720px) {
  .checklist li::before {
    width: 10px;
    height: 8px;
    margin-top: -25px;
  }
}

.cta {
  background: linear-gradient(135deg, #0b2d8f, #173fbb);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.cta-split {
  background: #020735;
  border-radius: 21px;
  padding: 54px 64px;
  max-width: 1183px;
  min-height: 294px;
  margin: 0 auto;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.cta-split h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 110.572%;
  color: #ffffff;
  margin: 0 0 18px;
}

.cta-split p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 22px;
}

.cta-split .btn {
  min-width: 160px;
  border-radius: 999px;
}

.cta-split .cta-media {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 240px;
  background: transparent;
  padding: 0;
}

.cta-split .cta-image-primary {
  width: 360px;
  height: 260px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.cta-split .cta-image-secondary {
  width: 280px;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  position: absolute;
  right: -30px;
  bottom: -50px;
 /* box-shadow: 0 4px 33px rgba(0, 0, 0, 0.25);*/
}

.cta h2 {
  margin: 0 0 12px;
  font-family: 'Sora', sans-serif;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
}

.cta-media {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 16px;
}

.cta-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.footer {
  background: #020735;
  color: #d7e0f4;
  padding: 80px 0 36px;
  margin-top: 0;
}

.footer h4 {
  margin: 0 0 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #ECCEC6;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.62);
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social-link {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.footer-social-link svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, 0.9);
}

.footer-social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 231, 207, 0.9);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #16e7cf;
  color: #020735;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(2, 7, 53, 0.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-top {
  display: grid;
  gap: 36px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-menu {
  display: grid;
  gap: 10px;
}

.footer-menu h4,
.footer-menu-subtitle {
  color: #ECCEC6;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer-menu-stack {
  gap: 18px;
}

.footer-menu-subtitle {
  margin-top: 8px;
}

.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-menu-list a {
  color: #FFF;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-brand p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 280px;
}

.footer-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-logos img {
  width: 63px;
  height: 63px;
  object-fit: contain;
  opacity: 1;
  background: #ffffff;
  border-radius: 6px;
  padding: 6px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 14px;
}

.footer-contact {
  margin-top: 28px;
  display: grid;
  gap: 6px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.footer-partners {
  margin-top: 18px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.newsletter-form input {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #1c293f;
  background: #1c293f;
  color: #fff;
}

.newsletter-form button {
  padding: 12px 22px;
  border-radius: 6px;
  border: none;
  background: #16e7cf;
  color: #020735;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  cursor: pointer;
}

 

@media (max-width: 980px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

.menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.burger {
  width: 20px;
  height: 2px;
  background: #020735;
  position: relative;
  border-radius: 999px;
  display: inline-block;
}

.burger::before,
.burger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #020735;
  border-radius: 999px;
}

.burger::before {
  top: -6px;
}

.burger::after {
  top: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 980px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-4,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .video-card {
    grid-template-columns: 1fr;
  }

  .cta-split {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
  }

  .cta-split .cta-media {
    justify-content: center;
    margin-top: 24px;
    min-height: 200px;
  }

  .cta-split .cta-image-secondary {
    right: -10px;
    bottom: -12px;
  }
}

@media (max-width: 720px) {
  .menu {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(2, 7, 53, 0.08);
    box-shadow: none;
    display: none;
    overflow: hidden;
  }

  .menu.is-open {
    display: flex;
  }

  .menu .sub-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border-radius: 12px;
    padding-left: 8px;
  }

  .menu .menu-item.is-open > .sub-menu {
    display: block;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions {
    display: none;
  }

  .cards-3,
  .cards-4,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 32px;
  }

  .cta-split {
    padding: 28px 20px;
  }

  .cta-split h2 {
    font-size: 30px;
  }

  .cta-split .cta-image-primary {
    width: 260px;
    height: 190px;
  }

  .cta-split .cta-image-secondary {
    width: 200px;
    height: 150px;
    right: -8px;
  }

  .hero-slider-controls {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 1100px) {
  .love-section {
    grid-template-columns: 1fr 1fr;
  }

  .love-media {
    width: 100%;
    height: 520px;
    justify-content: center;
    padding-left: 0;
  }

  .love-media img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 980px) {
  .love-section {
    grid-template-columns: 1fr;
  }

  .love-copy {
    padding: 0 20px;
    text-align: left;
  }

  .love-media {
    height: auto;
    padding: 24px;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .love-item h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .love-item p {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
