/* CSS Variables */
:root {
  --bgPrimary: #0B0D0F;
  --cardBG: #121417;
  --textMain: #F5F7FA;
  --accentMint: #3CFCC5;
  --accentHover: #2AFFDF;
  --fontPrimary: 'Poppins', sans-serif;
  --borderRadius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --bgPattern: url("/assets/grid.svg");
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--fontPrimary);
  background-color: var(--bgPrimary);
  color: var(--textMain);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bgPattern) repeat;
  background-size: 600px 600px;
  animation: bgMove 40s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 10%, #3CFCC540 0%, transparent 60%);
  pointer-events: none;
}

@keyframes bgMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-600px, -600px);
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bgPrimary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.spinner {
  width: 54px;
  height: 54px;
  border: 6px solid #22272a;
  border-top: 6px solid var(--accentMint);
  border-radius: 50%;
  animation: spin 0.95s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preloader__logo img {
  width: 160px;
  max-width: 80vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Header */
.header {
  height: 80px;
  padding: 0;
  background: rgba(11, 13, 15, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60, 252, 197, 0.1);
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* Force the header container to fill the height and center items */
.header__container {
  max-width: 12000px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

/* Logo size: keep it visible but not huge */
.header__logo img {
  height: 220px;
  /* <- Tweak this up/down if you want! */
  width: auto;
  display: block;
  margin-left: -65px;
}

/* Nav alignment */
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.header__link {
  color: var(--textMain);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: var(--borderRadius);
}

.header__link:hover {
  color: var(--accentMint);
}

.header__link--cta {
  background: var(--accentMint);
  color: var(--bgPrimary);
  font-weight: 600;
}

.header__link--cta:hover {
  background: var(--accentHover);
  transform: translateY(-2px);
}

/* Main */
.main {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  /* key: allow taller content */
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
  /* <- prevents wrapping inside each span (desktop) */
}

.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(245, 247, 250, 0.85);
  margin: 0 0 1.5rem;
  /* small space before the bullet list */
}

.hero__bullets {
  list-style: none;
  margin-bottom: 2.5rem;
}

.hero__bullet {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hero__bullet::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accentMint);
  font-weight: bold;
}

.hero__media {
  position: relative;
}

.hero__video-container {
  position: relative;
  width: 100%;
  height: 400px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: oscillate 6s ease-in-out infinite;
}

@keyframes oscillate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(3deg);
  }
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 13, 15, 0.55);
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--borderRadius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn--primary {
  background: var(--accentMint);
  color: var(--bgPrimary);
}

.btn--primary:hover {
  background: var(--accentHover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Stats Section */
.stats {
  background: var(--cardBG);
  border-top: 1px solid var(--accentMint);
  border-bottom: 1px solid var(--accentMint);
  padding: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 1.5rem;
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accentMint);
  margin-bottom: 0.5rem;
}

.stat p {
  color: rgba(245, 247, 250, 0.8);
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.section__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(245, 247, 250, 0.8);
  margin: -18px 0 28px;
  /* adjust spacing */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Features Section */
.features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  background: var(--cardBG);
  padding: 2.5rem;
  border-radius: var(--borderRadius);
  border: 1px solid rgba(60, 252, 197, 0.1);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accentMint);
}

.feat__icon {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: var(--accentMint);
  text-align: center;
}

.feat__icon i {
  display: block;
}

.card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accentMint);
}

.card__description {
  color: rgba(245, 247, 250, 0.8);
}



/* Industries Section */
.industries__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.industries__grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



/* How It Works Timeline */
.how__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 0;
}

.timeline::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--accentMint);
  transform: translateX(-50%);
  z-index: -1;
}

.timeline__item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline__item:nth-child(odd) {
  flex-direction: row;
}

.timeline__item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline__number {
  width: 60px;
  height: 60px;
  background: var(--accentMint);
  color: var(--bgPrimary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  margin: 0 2rem;
}

.timeline__content {
  flex: 1;
  background: var(--cardBG);
  padding: 2rem;
  margin-right: 0;
  border-radius: var(--borderRadius);
  border: 1px solid rgba(60, 252, 197, 0.1);
  position: relative;
  z-index: 2;
}

.timeline__illustration {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  opacity: 0.6;
  display: none;
}

.timeline__item:nth-child(even) .timeline__illustration {
  left: -120px;
  right: auto;
}

.timeline__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accentMint);
}

/* Calculator Section */
.calculator__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.calculator__panel {
  background: var(--cardBG);
  border: 2px solid var(--accentMint);
  border-radius: var(--borderRadius);
  padding: 3rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calculator__input-group {
  margin-bottom: 2rem;
}

.calculator__label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.calculator__slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(245, 247, 250, 0.2);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accentMint);
  cursor: pointer;
  transition: var(--transition);
}

.calculator__slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.calculator__value {
  display: inline-block;
  color: var(--accentMint);
  font-weight: 600;
  margin-left: 1rem;
}

.calculator__result {
  text-align: center;
}

.calculator__result-label {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.calculator__result-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accentMint);
  margin-bottom: 0.5rem;
}

.calculator__result-description {
  color: rgba(245, 247, 250, 0.7);
  margin-bottom: 2rem;
}

#roiChart {
  max-width: 100%;
  height: auto;
}

/* CTA Sections */
.cta-section {
  padding: 40px 0;
  text-align: center;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ctaBtn {
  display: inline-block;
  padding: 16px 28px;
  background: var(--accentMint);
  color: #0B0D0F;
  font-weight: 600;
  border-radius: 8px;
  transition: all .3s;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(60, 252, 197, 0.3);
}

.ctaBtn:hover {
  background: var(--accentHover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 252, 197, 0.4);
}

/* Success Stories */
.success {
  padding: 100px 20px;
  text-align: center;
}

.success h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.success__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.success__card {
  background: var(--cardBG);
  border: 2px solid var(--accentMint);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .6);
  transition: transform .3s;
}

.success__card:hover {
  transform: translateY(-6px);
}

.success__card video,
.success__card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* FAQ Section */
.faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.center {
  text-align: center;
  margin-bottom: 2rem;
}

.faq__accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--cardBG);
  border: 2px solid var(--accentMint);
  border-radius: 8px;
  margin-bottom: 16px;
}

.faq__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  color: var(--textMain);
  transition: all 0.3s ease;
  user-select: none;
}

.faq__title:hover {
  background: rgba(60, 252, 197, 0.08);
  color: var(--accentMint);
}

.faq__title .tick {
  font-size: 20px;
  color: var(--accentMint);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq__content {
  overflow: hidden;
  padding: 0 24px;
  color: var(--textMain);
  line-height: 1.5;
}

.faq__content p {
  color: rgba(245, 247, 250, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Booking Section */
.booking {
  background: var(--cardBG);
}

.booking__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.booking__description {
  font-size: 1.2rem;
  color: rgba(245, 247, 250, 0.8);
}

.booking__calendar iframe {
  width: 100%;
  height: 600px;
  border-radius: var(--borderRadius);
}

/* Footer */
.footer {
  background: #060708;
  border-top: 1px solid #1E1F22;
  padding: 2rem 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__link {
  color: rgba(245, 247, 250, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  color: rgba(245, 247, 250, 0.7);
  font-size: 1.5rem;
  transition: var(--transition);
}

.footer__social-link:hover {
  color: var(--accentMint);
}

/* WhatsApp Floating Button */
.wa-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--accentMint);
  color: var(--bgPrimary);
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: background 0.3s ease, transform 0.2s ease;
}

.wa-fab,
.wa-fab:hover,
.wa-fab:focus,
.wa-fab:active {
  text-decoration: none !important;
}


.wa-fab:hover {
  background-color: var(--accentHover);
  transform: scale(1.05);
}

.wa-fab i {
  line-height: 1;
}

/* =========================
   Responsive Design (unchanged tablet)
   ========================= */
@media (max-width: 762px) {

  /* Header nav stays scrollable */
  .header__nav {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1rem;
  }

  /* Fix logo offset/size in this range too (431–762px) */
  .header__logo img {
    margin-left: 0 !important;
    /* neutralize desktop -65px */
    height: 56px !important;
    /* keep header compact */
    width: auto !important;
    display: block !important;
  }

  /* HERO – prevent cut off and sideways scrolling */
  .hero {
    min-height: calc(100svh - 80px);
    /* header = 80px in this range */
    height: auto;
    align-items: flex-start;
    /* content starts under header, not centered */
    padding-top: 12px;
    padding-bottom: 20px;
    /* room for CTAs */
    overflow-x: hidden;
    /* no horizontal scroll */
    overflow-y: visible;
  }

  .hero__container {
    grid-template-columns: 1fr;
    /* stack content/media */
    text-align: center;
    gap: 12px;
    padding: 0 16px;
  }

  .hero__title {
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .hero__title-line {
    white-space: normal;
  }

  .hero__subtitle {
    font-size: 1rem;
    white-space: normal;
    margin: 6px 0 10px;
    color: rgba(245, 247, 250, 0.85);
  }

  /* Bullets – tidy and left-aligned (while section stays centered) */
  .hero__bullets {
    list-style: none;
    padding-left: 0;
    margin: 6px 0 12px;
  }

  .hero__bullet {
    text-align: left;
    padding-left: 1.1rem;
    margin: 6px auto;
    font-size: 1rem;
    max-width: 520px;
  }

  .hero__bullet::before {
    top: 0.2em;
    font-size: 1rem;
  }

  /* CTAs – compact & centered */
  .hero__ctas {
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__ctas .btn {
    padding: 0.9rem 1rem;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }

  /* Video: disable rotation/clip that can cause horizontal overflow on mobile */
  .hero__video-container {
    height: 220px;
    clip-path: none;
    animation: none;
    border-radius: 12px;
  }

  /* Timeline tweaks */
  .timeline::after {
    left: 30px;
  }

  .timeline__item {
    flex-direction: row !important;
  }

  .timeline__number {
    margin-left: 0;
    margin-right: 2rem;
  }

  .timeline__illustration {
    display: none;
  }

  /* Calculator / Booking stack */
  .calculator__panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Footer stack */
  .footer__container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}


/* =========================
   Small Mobile (clean, conflict-free)
   ========================= */
@media (max-width: 430px) {

  /* Header sizing + padding compensation */
  .header {
    height: 64px !important;
    padding: 0 !important;
  }

  .main {
    padding-top: 64px !important;
  }

  /* Pull logo toward screen edge safely, keep size sane */
  .header__container {
    padding-left: 0 !important;
    padding-right: 8px !important;
  }

  .header__logo {
    margin-left: max(10px, env(safe-area-inset-left)) !important;
  }

  .header__logo img {
    margin-left: 0 !important;
    /* neutralize desktop -65px */
    max-height: 56px !important;
    /* was 130px — this matches a 64px header */
    width: auto !important;
    display: block !important;
  }

  /* Scrollable nav chips */
  .header__nav {
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding: 0 8px;
  }

  .header__nav::-webkit-scrollbar {
    display: none;
  }

  .header__link {
    font-size: .9rem;
    padding: .35rem .6rem;
    white-space: nowrap;
  }

  /* Hero breathing room */
  .hero {
    min-height: calc(100svh - 64px);
    height: auto;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 20px;
    overflow-x: hidden;
    overflow-y: visible;
  }


  .hero__title {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero__subtitle {
    font-size: 0.98rem;
    margin: 6px 0 10px;
  }

  .hero__video-container {
    height: 220px;
    clip-path: none;
    border-radius: 12px;
  }

  /* Timeline: number left, content right, line behind numbers */
  .timeline {
    max-width: 700px;
    margin: 0 auto;
  }

  .timeline::after {
    left: 24px;
    z-index: 0;
  }

  /* still behind */
  .timeline__item {
    display: grid !important;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 24px;
  }

  .timeline__number {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin: 0;
    z-index: 1;
  }

  .timeline__content {
    padding: 16px;
    z-index: 1;
  }
}

/* === HOW IT WORKS — keep the line behind the numbers, always === */
.timeline {
  position: relative;
}

.timeline::after {
  z-index: 0 !important;
  /* line layer */
}

/* Make numbers/content stack above the line */
.timeline__item,
.timeline__content,
.timeline__number {
  position: relative;
  z-index: 1 !important;
}

/* Hard cut-out around the badge so the line can't peek through edges */
.timeline__number {
  /* choose ONE of the two rings below depending on the section background */
  box-shadow: none !important;
  /* if the section background = body bg */
  /* box-shadow: 0 0 0 6px var(--cardBG); */
  /* use this if the section sits on cardBG */

  /* optional: keep the circle crisp */
  border-radius: 50%;
}

/* ===== Legal pages (uses your palette) ===== */
.legal {
  padding: 64px 0;
  background: var(--bgPrimary);
}

.legal__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.legal__meta {
  color: rgba(245, 247, 250, .7);
  margin-bottom: 24px;
}

.legal__toc {
  margin: 8px 0 24px;
}

.legal__toc a {
  color: var(--accentMint);
  text-decoration: none;
}

.legal__toc a:hover {
  text-decoration: underline;
}

.legal__section {
  background: var(--cardBG);
  border: 1px solid rgba(60, 252, 197, 0.12);
  border-radius: var(--borderRadius);
  padding: 20px 18px;
  margin-bottom: 14px;
}

.legal__section h2 {
  font-size: 1.25rem;
  color: var(--accentMint);
  margin-bottom: 8px;
}

.legal__section h3 {
  font-size: 1.05rem;
  color: var(--accentMint);
  margin: 12px 0 6px;
}

.legal__section p,
.legal__section li {
  color: rgba(245, 247, 250, .9);
}

.legal__list {
  padding-left: 1.2rem;
}

.legal__muted {
  color: rgba(245, 247, 250, .65);
  font-size: .9rem;
}

@media (max-width: 430px) {
  .legal {
    padding: 56px 0;
  }

  .legal__title {
    font-size: 1.8rem;
  }
}

.footer__meta {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 2rem 2rem;
  text-align: center;
  color: rgba(245, 247, 250, 0.7);
  font-size: 0.95rem;
}

.footer__meta a {
  color: var(--accentMint);
  text-decoration: none;
}

.footer__meta a:hover {
  text-decoration: underline;
}

.footer__container--bar {
  max-width: 1200px;
  /* same as header__container */
  margin: 0 auto;
  padding: 0 2rem;
  /* same horizontal padding as header */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer__links {
  display: flex;
  gap: 1.25rem;
}

.footer__legal {
  text-align: center;
  color: rgba(245, 247, 250, 0.8);
  font-size: 0.95rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  justify-self: end;
  /* push icons to right edge */
}

.footer__social-link i {
  font-size: 1.3rem;
  /* small, tidy icons */
}

/* Mobile: stack neatly */
@media (max-width: 600px) {
  .footer__container--bar {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer__social {
    justify-self: center;
  }
}

/* Keep the two hero CTAs side-by-side on desktop */
.hero__ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
  /* force one line on wide screens */
}

.hero__ctas .btn {
  white-space: nowrap;
  /* prevent text from breaking to a new line */
}

/* === MOBILE HERO: spacing + remove play button === */
@media (max-width: 762px) {

  /* Keep the hero tall enough and stop centering squeeze */
  .hero {
    min-height: calc(100svh - 80px) !important;
    height: auto !important;
    align-items: flex-start !important;
    padding: 18px 0 26px !important;
    overflow-x: hidden !important;
  }

  /* Stack content and give it clean, even rhythm */
  .hero__container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 0 16px !important;
  }

  /* <- This is the key: even space between H1 / H2 / bullets / CTAs */
  .hero__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
    /* increase if you want more air */
  }

  .hero__title {
    font-size: clamp(26px, 7.2vw, 34px) !important;
    line-height: 1.15 !important;
    margin: 0 !important;
  }

  .hero__title-line {
    white-space: normal !important;
  }

  .hero__subtitle {
    font-size: 1rem !important;
    margin: 0 !important;
  }

  .hero__bullets {
    margin: 0 !important;
    padding-left: 0 !important;
  }

  .hero__bullet {
    padding-left: 1.1rem !important;
    margin: 8px 0 !important;
    /* comfortable bullet spacing */
    font-size: 1rem !important;
    text-align: left !important;
    max-width: 520px;
  }

  /* Buttons full-width and evenly spaced */
  .hero__ctas {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 2px !important;
  }

  .hero__ctas .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.95rem 1rem !important;
  }

  /* Hide video on mobile to remove the iOS play overlay */
  .hero__media,
  .hero__video-container,
  .hero__video {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: calc(100svh - 64px) !important;
    /* smaller header on tiny phones */
    padding: 16px 0 24px !important;
  }

  .hero__content {
    gap: 16px !important;
  }

  /* slightly tighter on very small */
}

@media (min-width: 763px) {
  .hero {
    /* Fill the viewport minus the 80px fixed header */
    height: calc(100vh - 80px) !important;
    min-height: calc(100vh - 80px) !important;

    /* Start content near the top, not vertically centered */
    align-items: flex-start !important;

    /* Room under header + a little breathing space */
    padding-top: 96px !important;
    /* header (80) + 16px buffer */
    padding-bottom: 24px !important;

    overflow: hidden;
    /* ensures the next section border never peeks */
  }

  .hero__container {
    padding-top: 0 !important;
  }

  /* Optional: microscopic spacer between hero and next section after you start scrolling */
  .stats {
    margin-top: 12px;
    /* tweak 8–16px to taste; not visible until you scroll */
  }
}

:root {
  --lv-card: #111216;
  --lv-text: #e9e9ef;
  --lv-muted: #a1a1ab;
  --lv-accent: #5be3b1;
  --lv-accent-2: #7aa7ff;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.lv-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)), var(--lv-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.lv-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2.21/1;
  background: #0f1116;
}

/* stacking: ring (0) < video (1) < overlay (2) */
.lv-ring {
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, var(--lv-accent), var(--lv-accent-2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-ma: xor;
  /* fixed */
  mask-composite: exclude;
  opacity: .35;
}

.lv-media video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lv-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(0, 0, 0, .45), rgba(0, 0, 0, .55));
  color: var(--lv-text);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.lv-play svg {
  fill: var(--lv-text);
}

.lv-play span {
  font: 500 15px/1.2 Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}

.lv-play:hover {
  transform: scale(1.01);
  border-color: rgba(255, 255, 255, .2);
  background: radial-gradient(circle at center, rgba(0, 0, 0, .35), rgba(0, 0, 0, .5));
}