/* Inter is loaded via <link> in the document head (incl. weight 800 used by .h1) */




html,
body {
  height: 100%;
  overflow-x: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-strong);
  background: #fff;
}

:root {
  /* brand */
  --blue1: #0064FE;
  --blue2: #6176FF;
  --brand-700: #0B4BD4;

  /* typography */
  --text-strong: #160637;
  --text-body: rgba(22, 6, 55, 0.78);
  --text-soft: rgba(22, 6, 55, 0.62);

  --title: var(--text-strong);
  --muted: var(--text-body);

  /* surfaces */
  --surface-0: #FFFFFF;
  --surface-1: #F5F8FF;
  --surface-2: #EAF2FF;

  /* borders */
  --border-soft: rgba(11, 75, 212, 0.12);
  --border-strong: rgba(11, 75, 212, 0.22);

  /* radii */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* compatibility radius token */
  --r: 24px;

  /* shadows */
  --shadow-1: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-2: 0 14px 34px rgba(15, 23, 42, 0.14);

  /* compatibility shadow tokens */
  --shadowCard: var(--shadow-1);
  --shadowHero: 0 6px 18px rgba(15, 23, 42, 0.12);

  /* spacing */
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s6: 24px;
  --s8: 32px;
  --s10: 40px;
  --s12: 48px;

  /* layout */
  --container: 1180px;
  --contentPadDesktop: clamp(20px, 12.1vw, 230px);
  --contentPadMobile: clamp(24px, 6vw, 44px);

  /* nav */
  --navH: 100px;
  --navPadL: var(--contentPadDesktop);
  --navPadR: var(--contentPadDesktop);
  --navGap: 38px;

  /* buttons */
  --btn-h-nav: 40px;
  --btn-h-md: 52px;
  --btn-h-lg: 56px;
}

* {
  box-sizing: border-box;
}

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

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding-left: var(--navPadL);
  padding-right: var(--navPadR);
}

@media (max-width: 1024px) {
  :root {
    --navPadL: var(--contentPadMobile);
    --navPadR: var(--contentPadMobile);
  }
}

/* LANDING SCROLL */
.landing {
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: none;
  overscroll-behavior-y: auto;
  scroll-behavior: smooth;
}

/* shared section sizing */
.section,
.cta,
.footer {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

/* shared grids */
.sectionGrid,
.ctaGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  align-items: center;
}

/* shared button sizing */
:is(.hero .navBtn, .stickyBtn) {
  height: var(--btn-h-nav);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 16px;
}

.ctaBtn,
.pricingBtn {
  min-height: var(--btn-h-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
}

/* shared card language */
.cards .phoneCard,
.placeholder,
.ctaCard,
.pricingCard {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}

.pricingPanel {
  border-radius: 28px;
  box-shadow: var(--shadow-1);
}

/* =========================
   MOBILE FULLSCREEN MENU
   ========================= */

.mobileMenu {
  display: none;
  position: relative;
  flex: 0 0 auto;
}

.mobileMenuOpen {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 12px;
  box-sizing: border-box;
  flex: 0 0 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.mobileMenuBar {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobileMenuOverlay {
  position: fixed;
  inset: 0;
  height: 100dvh;
  display: none;
  z-index: 5000;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobileMenu.open .mobileMenuOverlay {
  display: block;
}

.mobileMenuShell {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-left: var(--mobileMenuPadL, 20px);
  padding-right: var(--mobileMenuPadR, 20px);
  padding-top: var(--mobileMenuPadTop, 0px);
}

.mobileMenuHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--mobileMenuRowH, 72px);
  padding: 0;
}

.mobileMenuHeaderRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.mobileMenuBody {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 8px 0 28px;
}

.mobileMenuLink {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(20px, 4.6vw, 26px);
  line-height: 1.2;
  min-height: 44px;
}

.mobileMenuFooterActions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
}

.mobileMenuFooterActions .mobileMenuBtn {
  width: 100%;
}

.mobileMenuBtn {
  min-height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: 0 20px;
}

.mobileMenuClose {
  position: relative;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 12px;
  box-sizing: border-box;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobileMenuCloseBar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.mobileMenuCloseBar1 {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobileMenuCloseBar2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobileMenuLang,
.mobileMenuLang .langDrop {
  position: relative;
}

.mobileMenuLang {
  width: 64px;
  flex: 0 0 64px;
  display: flex;
  justify-content: flex-end;
}

.brandLogo {
  display: block;
}

@media (max-width: 1024px) {
  .mobileMenu {
    display: block;
  }
}

/* HERO */
.hero {
  color: #fff;
  background-color: var(--blue1);
  background-image: linear-gradient(128deg, #005dfd 0%, #2d62ff 42%, #6176ff 100%);
  padding: 26px 0 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  --mobileMenuPadL: var(--navPadL);
  --mobileMenuPadR: var(--navPadR);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  inset: -18% -12% -14%;
  background:
    radial-gradient(48% 48% at 76% 26%, rgba(40, 164, 240, 0.50) 0%, rgba(40, 164, 240, 0.28) 18%, rgba(40, 164, 240, 0.08) 40%, rgba(40, 164, 240, 0) 62%),
    radial-gradient(34% 38% at 60% 14%, rgba(97, 118, 255, 0.42) 0%, rgba(97, 118, 255, 0.20) 18%, rgba(97, 118, 255, 0.06) 40%, rgba(97, 118, 255, 0) 62%),
    radial-gradient(26% 30% at 70% 66%, rgba(41, 195, 36, 0.20) 0%, rgba(41, 195, 36, 0.10) 18%, rgba(41, 195, 36, 0) 44%),
    radial-gradient(42% 50% at 18% 82%, rgba(0, 46, 172, 0.42) 0%, rgba(0, 46, 172, 0.18) 28%, rgba(0, 46, 172, 0) 64%),
    radial-gradient(32% 36% at 12% 18%, rgba(97, 118, 255, 0.18) 0%, rgba(97, 118, 255, 0.06) 22%, rgba(97, 118, 255, 0) 56%);
  filter: blur(18px) saturate(120%);
  opacity: 1;
}

.hero::after {
  inset: -6% -4% -10%;
  background:
    radial-gradient(36% 28% at 82% 18%, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.05) 26%, rgba(255, 255, 255, 0) 56%),
    radial-gradient(22% 18% at 58% 54%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 18%, rgba(255, 255, 255, 0) 40%);
  mix-blend-mode: screen;
  opacity: 0.78;
}

.heroInner{
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.heroBottom {
  position: relative;
  z-index: 1;
  height: 80px;
  margin-top: auto;
  background: #fff;
  clip-path: polygon(0 -1px, 100% calc(100% + 2px), 0 calc(100% + 2px));
}

/* --- hero navbar --- */

/* Brand */
  .brand{ display:flex; align-items:center; gap: 10px; }
  .brandLogo{ width:auto; height:50px; display:block; object-fit:contain; }
  .brandText{ font-weight:500; font-size:50px; line-height:1; }
  
  /* compatibility if you still render these anywhere */
  .brandIcon{
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.22);
    display:flex; align-items:center; justify-content:center;
  }
  
  /* old language button compatibility */
  .langBtn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:0;
    background:transparent;
    color:#fff;
    cursor:pointer;
    padding: 6px 10px;
    border-radius: 999px;
    font: inherit;
  }
  .langIcon{
    width:16px; height:16px;
    background:#fff;
    border-radius:4px;
    opacity:.95;
  }
  
  .brandBtn{
    display: inline-flex;
    align-items:center;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    cursor: pointer;
  }
  
  .hero .navRow{ min-height: var(--navH); padding-bottom: 0; }
  .hero .navRight{
    flex-wrap: nowrap;
    height: auto;
    padding: 0;
    opacity: 1;
  }
  
  /* language dropdown (hero) */
  .hero .navLang,
  .hero .langDrop{ position: relative; }
  
  .hero .langTrigger{
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    line-height: 31px;
    color: #fff;
    width: 100%;
    justify-content: flex-start;
  }
  
  .hero .langValue{ display:inline-block; width: 2ch; text-align:left; }
  
  .hero .globeIcon{
    width: 16.21px;
    height: 16.21px;
    display: inline-block;
    background: url("/images/globe.svg") no-repeat center / contain;
  }
  
  .hero .langMenu{
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 196px;
    display: none;
    z-index: 999;
    background: rgba(18, 26, 60, .45);
    border: 1px solid rgba(255,255,255,.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 22px rgba(0,0,0,.22);
  }
  .hero .langDrop.open .langMenu{ display:block; }
  
  .hero .langItem{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 14px;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 10px;
    color:#fff;
    text-decoration:none;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
  }
  .hero .langItem:hover{ background: rgba(255,255,255,.14); }
  
  .hero .langCheck{ opacity: 0; font-size: 14px; line-height: 18px; }
  .hero .langItem.active .langCheck{ opacity: 1; }
  
  /* --- hero content --- */
  .heroGrid{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: var(--s10);
    align-items:center;
    padding-top: 46px;
    margin-top: auto;
    margin-bottom: auto;
  }
  
  .h1{
    margin:0 0 var(--s4);
    font-weight:800;
    font-size: clamp(40px, 3.7vw, 53px);
    letter-spacing: -0.015em;
    line-height: 1.18;
    text-wrap: balance;
  }

  .sub{
    margin:0 0 var(--s6);
    font-weight:500;
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.55;
    opacity:.95;
    max-width: 52ch;
  }
  
  .badges{ display:flex; gap: 10px; flex-wrap:wrap; }
  .hero .storeBadge{ height: clamp(34px, 3.2vw, 52px); width:auto; display:block; }
  
  /* hero visual + overlays */
  .heroVisualWrap{ display:flex; justify-content:flex-end; align-self: start; }
  .heroVisual{ position:relative; width: min(560px, 100%); }
  
  .heroShot{
    width:100%;
    height:auto;
    filter: drop-shadow(0 10px 30px rgba(15, 23, 42, 0.08));
    display:block;
  }
  
  /* overlays (scoped to hero) */
  .hero .phoneCard{
    position:absolute;
    width: 191px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
  .hero .phoneCard img{
    width:100%;
    height:auto;
    display:block;
    filter: drop-shadow(0 10px 30px rgba(15, 23, 42, 0.08));
  }
  
  .hero .phoneA{ left: 18%; top: 18%; transform: rotate(-1deg); }
  .hero .phoneB{ left: 46%; top: 26%; transform: rotate( 1deg); }

  /* HERO responsive */
  @media (max-width: 1024px){
    .hero{
      min-height: 100vh;
      min-height: 100dvh;
      padding-top: 10px;
    }
    .heroInner{
      flex: 1 1 auto;
      display:flex;
      flex-direction:column;
      max-width: 1920px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .hero .container{
      max-width: 1920px;
      padding-left: var(--navPadL);
      padding-right: var(--navPadR);
    }
  
    .hero .navRow{ min-height: clamp(72px, 9vw, 92px); }
    .hero .navRight{ gap: 0; height: auto; }

    .hero .brandText{ font-size: clamp(30px, 5.2vw, 48px); line-height: 1; }
    .hero .langValue{ font-size: 16px; }
  
    .h1{ font-size: clamp(28px, 6.2vw, 46px); letter-spacing: -0.01em; line-height: 1.22; margin-bottom: 12px; }
    .sub{ font-size: clamp(16px, 4vw, 21px); line-height: 1.5; margin-bottom: 16px; max-width: 44ch; }
  
    .badges{ gap: 14px; }
    .hero .badges{ width: 100%; justify-content:center; }
    .hero .storeBadge{ height: clamp(48px, 7vw, 72px); }
  
    .heroGrid{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      flex: 1 1 auto;
      margin: 0;
      padding-top: clamp(18px, 3.5svh, 46px);
      padding-bottom: clamp(18px, 3.2svh, 42px);
      gap: clamp(14px, 2.4svh, 22px);
    }
  
    .heroText{ width:100%; text-align:center; }
    .heroText .sub{ margin-left:auto; margin-right:auto; }
    .heroVisualWrap{ width:100%; justify-content:center; }
  
    .heroVisual{
      width: min(clamp(520px, 86vw, 800px), 100%);
      padding-bottom: clamp(120px, 22vw, 190px);
    }
  
    .hero .phoneCard{ width: clamp(155px, 34vw, 290px); }
    .hero .phoneA{ left: 8%; top: 9%; }
    .hero .phoneB{ left: 44%; top: 15%; }
  
    .heroBottom{ height: 36px; display:block; }
  
    .hero::before {
      inset: -16% -16% -18%;
      background:
        radial-gradient(56% 48% at 62% 26%, rgba(40, 164, 240, 0.46) 0%, rgba(40, 164, 240, 0.24) 20%, rgba(40, 164, 240, 0.06) 42%, rgba(40, 164, 240, 0) 64%),
        radial-gradient(38% 34% at 44% 12%, rgba(97, 118, 255, 0.38) 0%, rgba(97, 118, 255, 0.18) 20%, rgba(97, 118, 255, 0) 56%),
        radial-gradient(30% 28% at 58% 66%, rgba(41, 195, 36, 0.18) 0%, rgba(41, 195, 36, 0.08) 18%, rgba(41, 195, 36, 0) 44%),
        radial-gradient(54% 52% at 12% 84%, rgba(0, 46, 172, 0.40) 0%, rgba(0, 46, 172, 0.16) 28%, rgba(0, 46, 172, 0) 66%);
      filter: blur(20px) saturate(118%);
    }

    .hero::after {
      inset: -4% -8% -12%;
      opacity: 0.66;
    }
  }
  
  @media (max-width: 1024px) and (max-height: 720px){
    .heroGrid{ padding-top: 16px; padding-bottom: 16px; gap: 14px; }
    .heroVisual{ width: min(clamp(480px, 88vw, 760px), 100%); padding-bottom: clamp(110px, 24vw, 175px); }
    .hero .phoneCard{ width: clamp(145px, 36vw, 260px); }
    .hero .storeBadge{ height: clamp(44px, 6.5vw, 64px); }
    .heroBottom{ height: 36px; }
  }
  
  /* HERO NAV layout */
.hero .navRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}

.hero .navRight{
  display:flex;
  align-items:center;
  gap: 20px;
}
.hero .navCtaGroup{
  display:flex;
  align-items:center;
  gap: 16px;
}
.hero .navGapDouble{
  width: 0;
  flex: 0 0 0;
  pointer-events: none;
}

.hero .navLink{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size: 16px;
  line-height: 1.1;
  opacity: .95;
  transition: transform .2s ease, opacity .2s ease;
}
.hero .navLink:hover{
  opacity: 1;
  transform: translateY(-2px);
}
/* buttons */
.hero .navBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: var(--btn-h-nav);
  padding: 0 20px;
  border-radius: 999px;
  font-weight:500;
  font-size: 16px;
  line-height: 1.1;
  text-decoration:none;
  white-space:nowrap;
  transition: transform .2s ease;
  box-shadow: none;
}
.hero .navBtn:hover{
  transform: translateY(-2px);
  box-shadow: none;
}
.hero .navBtn:focus-visible{ box-shadow: none; }
.hero .navBtnOutline{
  background: transparent;
  border: 1px solid rgba(255,255,255,.75);
  color: #fff;
}
.hero .navBtnSolid{
  background: #fff;
  border: 1px solid #fff;
  color: #0B4BD4;
}

/* HERO mobile fullscreen menu */
.hero .mobileMenuOpen,
.hero .mobileMenuClose {
  color: #fff;
}

.hero .mobileMenuOverlay {
  background: linear-gradient(28.05deg, var(--blue1) 40.38%, var(--blue2) 93.08%);
}

.hero .mobileMenuShell {
  background: linear-gradient(28.05deg, var(--blue1) 40.38%, var(--blue2) 93.08%);
  color: #fff;
}

.hero .mobileMenuLinkHero{
  color: #fff;
}

.hero .mobileMenuBtnOutlineHero{
  background: transparent;
  border: 1px solid rgba(255,255,255,.75);
  color: #fff;
}

.hero .mobileMenuBtnSolidHero{
  background: #fff;
  border: 1px solid #fff;
  color: #0B4BD4;
}

/* language trigger in hero fullscreen menu */
.hero .mobileMenuLang .langTrigger{
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 0 12px;
  min-height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero .mobileMenuLang .globeIcon{
  width: 16.21px;
  height: 16.21px;
  display: inline-block;
  background: url("/images/globe.svg") no-repeat center / contain;
}

.hero .mobileMenuLang .langMenu{
  right: 0;
  top: calc(100% + 8px);
  min-width: 196px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
  z-index: 5200;
}

.hero .mobileMenuLang .langItem{
  color: #000;
  min-height: 48px;
  padding: 13px 14px;
}

.hero .mobileMenuLang .langItem:hover{
  background: rgba(0,0,0,.06);
}

.hero .mobileMenuLang .langCheck {
  color: #0053D4;
}

.hero:has(.mobileMenu.open)::after {
  opacity: 0;
  pointer-events: none;
}

.heroInner:has(.mobileMenu.open)::after {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero .navGapDouble,
  .hero .navRight > .navLink,
  .hero .navRight > .navBtn,
  .hero .navRight > .navCtaGroup,
  .hero .navRight > .navLang {
    display: none;
  }
  .hero .brandLogo {
    height: clamp(30px, 6vw, 50px);
  }
}

.hero .mobileMenuBody{
  gap: 18px;
}

.hero:has(.mobileMenu.open) .heroBottom{
  height: 0;
  opacity: 0;
  overflow: hidden;
}

@media (max-width: 1024px){
  .hero{
    --mobileMenuPadL: var(--navPadL);
    --mobileMenuPadR: var(--navPadR);
    --mobileMenuPadTop: 10px;
    --mobileMenuRowH: clamp(72px, 9vw, 92px);
  }
}

.hero .container {
  max-width: 1920px;
  padding-left: var(--navPadL);
  padding-right: var(--navPadR);
}

/* =========================
   FEATURE SECTIONS
   Desktop: centered title + alternating rows
   Mobile: title, bullets, centered images
   ========================= */

.title {
  margin: 0 0 var(--s6);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--title);
}

.landing .modularSection {
  position: relative;
  min-height: 0;
  display: block;
  padding: clamp(92px, 8vw, 132px) 0;
  overflow: visible;
}

.modularSection .container {
  position: relative;
  z-index: 1;
}

.sectionTitle {
  margin: 0 0 clamp(44px, 5vw, 72px);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
  text-wrap: balance;
  color: var(--title);
}

.featureRows {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 8vw, 120px);
}

.featureRow {
  display: grid;
  align-items: center;
  column-gap: clamp(48px, 5vw, 88px);
  row-gap: 32px;
}

.featureRow.visualLeft {
  grid-template-columns: auto minmax(0, 1fr);
}

.featureRow.visualRight {
  grid-template-columns: minmax(0, 1fr) auto;
}

.featureText {
  width: min(100%, 680px);
  min-width: 0;
}

.featureRow.visualLeft .featureText {
  justify-self: end;
}

.featureRow.visualRight .featureText {
  justify-self: start;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.4vw, 24px);
}

.bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 0.38em;
  background: linear-gradient(253.79deg, #0064FE -23.75%, #6176FF 88.2%);
  flex: 0 0 auto;
}

.bullets p {
  margin: 0;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.55;
  color: var(--text-body);
}

.featureVisual {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  --feature-photo-gap: clamp(16px, 1.8vw, 28px);
  gap: var(--feature-photo-gap);
}

.featureRow.visualLeft .featureVisual {
  justify-content: flex-start;
}

.featureRow.visualRight .featureVisual {
  justify-content: flex-end;
}

.featureVisual.isSingle {
  width: clamp(280px, 34vw, 640px);
  max-width: 100%;
}

.featureImage {
  display: block;
  max-width: 100%;
  height: auto;
  flex: 0 1 auto;
  filter: drop-shadow(0 10px 30px rgba(15, 23, 42, 0.08));
}

.featureVisual.isSingle .featureImage {
  width: 100%;
}

.featureVisual.isPair .featureImage {
  width: clamp(160px, 14.8vw, 295px);
}

#asset-management::after {
  content: "";
  position: absolute;
  width: clamp(420px, 34vw, 720px);
  height: clamp(420px, 34vw, 720px);
  right: -6vw;
  top: 54%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(97, 118, 255, 0.08);
  filter: blur(clamp(60px, 7vw, 110px));
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1024px) {
  .section .container {
    max-width: var(--container);
    padding-left: var(--navPadL);
    padding-right: var(--navPadR);
  }

  .landing .modularSection {
    padding: clamp(64px, 10vw, 88px) 0;
  }

  .sectionTitle {
    margin-bottom: clamp(28px, 7vw, 40px);
    font-size: clamp(28px, 6vw, 40px);
  }

  .featureRows {
    gap: clamp(48px, 9vw, 72px);
  }

  .featureRow {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .featureText {
    order: 1;
    width: 100%;
    max-width: none;
  }

  .featureVisual {
    order: 2;
    width: 100%;
    justify-content: center !important;
    flex-wrap: wrap;
    --feature-photo-gap: clamp(10px, 3vw, 16px);
    gap: var(--feature-photo-gap);
  }

  .featureVisual.isSingle {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }

  .featureVisual.isPair {
    width: min(100%, 460px);
    margin: 0 auto;
    flex-wrap: nowrap;
  }

  .featureVisual.isPair .featureImage {
    width: calc((100% - var(--feature-photo-gap)) / 2);
    min-width: 0;
  }

  .bullets {
    gap: 16px;
  }

  .bullets li {
    gap: 12px;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  .bullets p {
    font-size: clamp(16px, 4.2vw, 20px);
    line-height: 1.55;
  }

  #asset-management::after {
    content: none;
  }
}

/* =========================
   CTA (Learning center)
   ========================= */

.cta {
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: clamp(110px, 10vw, 160px) 0;
}

.ctaGrid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 382px);
  gap: clamp(44px, 5vw, 88px);
  align-items: center;
}

.ctaVisual {
  display: flex;
  justify-content: center;
}

.ctaStack {
  position: relative;
  width: clamp(560px, 49vw, 701px);
  aspect-ratio: 701 / 355;
}

.ctaCard {
  position: absolute;
  border-radius: 0;
  box-shadow: none;
}

.ctaCardImg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(15, 23, 42, 0.08));
}

.ctaCardBehind {
  width: 58.35%;
  left: 2.65%;
  top: 13.8%;
  z-index: 1;
}

.ctaCardMain {
  width: 70.9%;
  left: 26.45%;
  top: 0;
  z-index: 2;
}

.ctaText {
  max-width: 382px;
}

.ctaTitle {
  margin: 0 0 22px;
  text-align: left;
}

.ctaText p {
  margin: 0;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.55;
  color: var(--text-body);
}

.ctaBtnWrap {
  margin-top: 28px;
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.ctaBtn {
  width: min(100%, 244px);
  min-height: var(--btn-h-lg);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--blue1);
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  user-select: none;
}

.ctaBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.ctaBtnLabel {
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
}

@media (max-width: 1024px) {
  .cta {
    padding: clamp(88px, 12vw, 120px) 0;
  }

  .ctaGrid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .ctaText {
    order: 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .ctaTitle {
    text-align: center;
  }

  .ctaVisual {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .ctaStack {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .ctaCardMain {
    left: 21.5%;
  }

  .ctaBtnWrap {
    width: 100%;
    justify-content: center;
  }

  .ctaBtn {
    width: min(100%, 244px);
  }
}

@media (max-width: 640px) {
  .ctaStack {
    width: min(100%, 500px);
  }
}

/* =========================
   FOOTER
   NOTE: keep "by Optimiraj" + email aligned right
   ========================= */

.footer {
  --page-pad: clamp(16px, 4vw, 64px);
  --footer-max-w: 1920px;
  --btn-w: 175px;
  --btn-h: 44px;
  --btn-r: 12px;
  --stack-gap: 14px;
  --cert-w: 336px;
  --cert-r: 20px;

  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background-color: var(--blue1);
  background-image: linear-gradient(112deg, #005dfd 8%, #3460ff 54%, #6176ff 100%);
  padding-top: 72px;
  padding-bottom: 72px;
  height: auto;
  min-height: 0;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.footer::before {
  inset: -18% -12% -14%;
  background:
    radial-gradient(44% 36% at 16% 84%, rgba(40, 164, 240, 0.34) 0%, rgba(40, 164, 240, 0.14) 24%, rgba(40, 164, 240, 0) 58%),
    radial-gradient(38% 30% at 78% 18%, rgba(97, 118, 255, 0.30) 0%, rgba(97, 118, 255, 0.12) 22%, rgba(97, 118, 255, 0) 56%),
    radial-gradient(24% 20% at 30% 22%, rgba(41, 195, 36, 0.12) 0%, rgba(41, 195, 36, 0.06) 20%, rgba(41, 195, 36, 0) 48%),
    radial-gradient(34% 28% at 50% 56%, rgba(0, 46, 172, 0.22) 0%, rgba(0, 46, 172, 0.08) 24%, rgba(0, 46, 172, 0) 60%);
  filter: blur(16px) saturate(118%);
  opacity: 0.95;
}

.footer::after {
  inset: -4% -6%;
  background:
    radial-gradient(28% 22% at 78% 10%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 18%, rgba(255, 255, 255, 0) 36%);
  mix-blend-mode: screen;
  opacity: 0.66;
}

.footer > .container,
.footer .container,
.footerGrid,
.footerGrid > * {
  position: relative;
  z-index: 1;
}

.footer > .container,
.footer .container {
  width: 100%;
  max-width: var(--footer-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--navPadL, var(--page-pad));
  padding-right: var(--navPadR, var(--page-pad));
}

.footerGrid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "copy by"
    "links email";
  column-gap: clamp(22px, 5vw, 96px);
  row-gap: 24px;
  align-items: start;
}

.footerCopy { grid-area: copy; }
.footerBy { grid-area: by; }
.footerLinks { grid-area: links; }
.footerEmailWrap { grid-area: email; }

.footerCopyRow,
.footerBy {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Arial;
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
}

.footerCopyRow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.footerCopyIcon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
  flex: 0 0 28px;
  margin-top: 5px;
}

.footerBy,
.footerEmailWrap,
.footerCerts {
  width: min(var(--cert-w), 100%);
  justify-self: end;
}

.footerBy,
.footerEmailWrap {
  text-align: right;
}

.footerBy {
  margin: 0;
}

.footerEmail,
.footerBtn {
  height: var(--btn-h);
  border-radius: var(--btn-r);
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
  text-decoration: none;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
  will-change: transform;
}

.footerEmail:hover,
.footerBtn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.90);
}

.footerEmail {
  width: var(--btn-w);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1;
}

.footerLinks {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap);
  margin-top: 0;
}

.footerBtn {
  width: var(--btn-w);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Arial;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}

.footerCerts {
  grid-area: email;
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap);
  margin-top: calc(var(--btn-h) + var(--stack-gap) + 22px);
}

.footerCert {
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.footerCert img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.footerCerts {
  width: 280px;
}

@media (max-width: 1024px) {
  .footer {
    --page-pad: 18px;
    --cert-w: 280px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .footerGrid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "by"
      "email"
      "certs"
      "links";
    row-gap: 10px;
  }

  .footerCopy { justify-self: start; }

  .footerBy,
  .footerEmailWrap {
    width: min(var(--cert-w), 100%);
    justify-self: end;
    text-align: right;
  }

  .footerBy { margin-top: 14px; }

  .footerCerts {
    grid-area: certs;
    justify-self: end;
    margin-left: auto;
    margin-top: 12px;
    width: min(var(--cert-w), 100%);
  }

  .footerCert {
    padding: 0;
  }

  .footerLinks {
    justify-self: start;
    align-items: flex-start;
    margin-top: 14px;
    width: auto;
  }

  .footerBtn { width: var(--btn-w); }
}

@media (max-width: 900px) {
  .footer::before {
    inset: -14% -14% -12%;
    background:
      radial-gradient(56% 40% at 18% 84%, rgba(40, 164, 240, 0.30) 0%, rgba(40, 164, 240, 0.12) 24%, rgba(40, 164, 240, 0) 60%),
      radial-gradient(42% 30% at 76% 16%, rgba(97, 118, 255, 0.28) 0%, rgba(97, 118, 255, 0.10) 22%, rgba(97, 118, 255, 0) 56%),
      radial-gradient(28% 20% at 34% 22%, rgba(41, 195, 36, 0.10) 0%, rgba(41, 195, 36, 0.04) 18%, rgba(41, 195, 36, 0) 46%),
      radial-gradient(40% 30% at 50% 58%, rgba(0, 46, 172, 0.20) 0%, rgba(0, 46, 172, 0.07) 22%, rgba(0, 46, 172, 0) 58%);
    filter: blur(14px) saturate(116%);
  }

  .footer::after {
    opacity: 0.62;
  }
}

@media (max-width: 720px) {
  .footer { --cert-w: 260px; }
}

/* HOVER LIFT + STORE BADGES + FOCUS */
:is(
  .hero .signInBtn,
  .ctaBtn,
  .pillBtn,
  .hero .langTrigger,
  .hero .navEmail,
  .hero .brandBtn,
  .stickyBar .stickyCta,
  .stickyBar .langTrigger,
  .stickyBar .stickyEmail,
  .stickyBar .brandBtn
){
  transition: transform .18s ease;
  will-change: transform;
}
:is(
  .hero .signInBtn,
  .ctaBtn,
  .pillBtn,
  .hero .langTrigger,
  .hero .navEmail,
  .hero .brandBtn,
  .stickyBar .stickyCta,
  .stickyBar .langTrigger,
  .stickyBar .stickyEmail,
  .stickyBar .brandBtn
):hover{
  transform: translateY(-2px);
}

/* store badges: lift image only (prevents edges) */
.hero .badges a{
  display:inline-block;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
  line-height:0;
  text-decoration:none;
}
.hero .storeBadge{ transition: transform .18s ease; will-change: transform; }
.hero .badges a:hover .storeBadge{ transform: translateY(-2px); }

/* keyboard focus */
:is(
  .hero .signInBtn,
  .ctaBtn,
  .pillBtn,
  .hero .langTrigger,
  .hero .navEmail,
  .hero .brandBtn,
  .hero .badges a,
  .stickyBar .stickyCta,
  .stickyBar .langTrigger,
  .stickyBar .stickyEmail,
  .stickyBar .brandBtn
):focus-visible{
  /* currentColor so the ring is visible on both the blue hero and the white sticky bar */
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* COPY TOAST */
.copyToast{
  box-sizing: border-box;
  position: fixed;
  top: 20px;
  left: 50%;
  width: 345px;
  height: 64px;
  transform: translate(-50%, -12px);
  background: #0064FD;
  border: 1px solid #FFFFFF;
  border-radius: 16px;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.copyToast.show{
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.copyToastIcon{ line-height: 1; font-size: 20px; }

@media (max-width: 420px){
  .copyToast{ width: calc(100vw - 20px); font-size: 16px; }
}

/* STICKY TOP BAR */
.stickyBar{
    position: sticky;
    top: 0;
    height: var(--navH);
    margin-bottom: calc(var(--navH) * -1);
    background: #fff;
    box-shadow: 0px 4px 4px 3px rgba(0, 0, 0, 0.10);
    z-index: 2500;
  
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .20s ease, opacity .20s ease;
  }
  .stickyBar.isShown{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .stickyBar .container{
    height: 100%;
    max-width: 1920px;
    padding-left: var(--navPadL);
    padding-right: var(--navPadR);
  }
  
  .stickyRow{
    min-height: var(--navH);
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-bottom: 0;
  }
  
  /* sticky language dropdown */
  .stickyBar .stickyLang,
  .stickyBar .langDrop{ position: relative; }
  
  .stickyBar .langTrigger{
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    line-height: 31px;
    color: #000;
    width: 100%;
    justify-content: flex-start;
  }
  
  .stickyBar .langValue{ display:inline-block; width: 2ch; text-align:left; }
  
  .stickyBar .globeIcon{
    width: 16.21px;
    height: 16.21px;
    display: inline-block;
    background: #000;
    -webkit-mask: url("/images/globe.svg") no-repeat center / contain;
    mask: url("/images/globe.svg") no-repeat center / contain;
  }
  
  .stickyBar .langMenu{
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 196px;
    display: none;
    z-index: 2600;
    background: #fff;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 22px rgba(0,0,0,.16);
  }
  .stickyBar .langDrop.open .langMenu{ display:block; }
  
  .stickyBar .langItem{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 14px;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
  }
  .stickyBar .langItem:hover{ background: rgba(0,0,0,.06); }
  
  .stickyBar .langCheck{ opacity: 0; color: #0053D4; }
  .stickyBar .langItem.active .langCheck{ opacity: 1; }
  
  /* sticky responsive */
  @media (max-width: 1024px){
    .stickyBar{
      height: clamp(72px, 9vw, 92px);
      margin-bottom: calc(clamp(72px, 9vw, 92px) * -1);
      --mobileMenuPadL: var(--navPadL);
      --mobileMenuPadR: var(--navPadR);
      --mobileMenuPadTop: 0px;
      --mobileMenuRowH: clamp(72px, 9vw, 92px);
    }
    .stickyBar .container{
      max-width: var(--container);
      padding-left: var(--navPadL);
      padding-right: var(--navPadR);
    }
    .stickyRow{ min-height: clamp(72px, 9vw, 92px); height:auto; }
    .stickyBar .brandLogo{ height: clamp(30px, 6vw, 50px); }
    .stickyBar .brandText{ font-size: clamp(30px, 5.2vw, 48px); line-height: 1; }
    .stickyRight .navGapDouble,
    .stickyRight > .stickyLink,
    .stickyRight > .stickyBtn,
    .stickyRight > .stickyCtaGroup,
    .stickyRight > .stickyLang,
    .stickyBtnOutline,
    .stickyLang{ display:none; }
  }

/* STICKY NAV layout */
.stickyRight{
  display:flex;
  align-items:center;
  gap: 20px;
}
.stickyCtaGroup{
  display:flex;
  align-items:center;
  gap: 16px;
}
.stickyRight .navGapDouble{
  width: 0;
  flex: 0 0 0;
  pointer-events: none;
}

.stickyLink{
  color:#000;
  text-decoration:none;
  font-weight:500;
  font-size: 16px;
  line-height: 1.1;
  opacity: .85;
  transition: transform .2s ease, opacity .2s ease;
}
.stickyLink:hover{
  opacity: 1;
  transform: translateY(-2px);
}
/* sticky buttons */
.stickyBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: var(--btn-h-nav);
  padding: 0 20px;
  border-radius: 999px;
  font-weight:500;
  font-size: 16px;
  line-height: 1.1;
  text-decoration:none;
  white-space:nowrap;
  transition: transform .2s ease;
  box-shadow: none;
}
.stickyBtn:hover{
  transform: translateY(-2px);
  box-shadow: none;
}
.stickyBtn:focus-visible{ box-shadow: none; }
.stickyBtnOutline{
  background: #fff;
  border: 1px solid #0B4BD4;
  color: #0B4BD4;
}
.stickyBtnSolid{
  background: #0B4BD4;
  border: 1px solid #0B4BD4;
  color: #fff;
  box-shadow: none;
}

/* STICKY mobile fullscreen menu */
.stickyBar .mobileMenuOpen,
.stickyBar .mobileMenuClose {
  color: #000;
}

.stickyBar .mobileMenuOverlay {
  background: #fff;
}

.stickyBar .mobileMenuShell {
  background: #fff;
  color: #000;
}

.stickyBar .mobileMenuLinkSticky {
  color: #000;
}

.stickyBar .mobileMenuBtnOutlineSticky {
  background: #fff;
  border: 1px solid #0B4BD4;
  color: #0B4BD4;
}

.stickyBar .mobileMenuBtnSolidSticky {
  background: #0B4BD4;
  border: 1px solid #0B4BD4;
  color: #fff;
}

/* =========================
   PRICING
   Clean, sectioned, no duplicate overrides
   ========================= */

/* Layout variables for this section only */
.pricing {
  --page-pad: clamp(16px, 4vw, 64px);
  --panel-max-w: 1538px;
  --panel-pad-y: clamp(36px, 3.5vw, 56px);
  --panel-pad-x: clamp(36px, 3.5vw, 56px);
  --panel-radius: clamp(22px, 3vw, 41px);
  --card-w: 360px;
  --card-gap: clamp(10px, 1.6vw, 14px);

  background: var(--surface-2);
  padding: clamp(44px, 5vw, 72px) 0;
}

/* Container + panel */
.pricing .container {
  padding-left: var(--navPadL, var(--page-pad));
  padding-right: var(--navPadR, var(--page-pad));
}

.pricingPanel {
  max-width: min(var(--panel-max-w), 100%);
  margin-inline: auto;
  background: #fff;
  border-radius: var(--panel-radius);
  padding: var(--panel-pad-y) var(--panel-pad-x);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Heading */
.pricingHeading {
  margin: 0;
  text-align: center;
}

/* Cards grid */
.pricingGrid {
  margin-top: clamp(34px, 4vw, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), var(--card-w)));
  justify-content: center;
  gap: var(--card-gap);
  align-items: stretch;
}

/* Card base + variants */
.pricingCard {
  width: 100%;
  height: 100%;
  max-width: var(--card-w);
  padding: 36px 45px 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 3px 10px rgba(0, 0, 0, 0.388235);
}

.pricingCardPremium {
  background: #fff;
  border: 4px solid #0064fe;
}

.pricingCardEnterprise {
  background: #276cfe;
  color: #fff;
  border: 0;
}

/* Pricing typography */
.pricingPlan {
  margin: 0 0 14px;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #160637;
}

.pricingCardEnterprise .pricingPlan {
  color: #fff;
}

.pricingPriceBlock {
  margin: 0 0 22px;
}

.pricingPriceValue {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #160637;
}

.pricingCardEnterprise .pricingPriceValue {
  color: #fff;
}

.pricingPriceUnit {
  margin-top: 2px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.9;
}

/* Buttons */
.pricingBtn {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  margin: 6px 0 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  transition: transform 0.2s ease;
  will-change: transform;
}

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

.pricingBtnOutline {
  background: #fff;
  border: 1px solid #0064fe;
  color: #0064fe;
}

.pricingBtnSolid {
  background: #fff;
  border: 1.5px solid #fff;
  color: #2a6bff;
}

/* Includes + checklist */
.pricingIncludes {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-strong);
}

.pricingCardEnterprise .pricingIncludes {
  color: #fff;
}

.pricingList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricingList li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
}

.pricingCheck {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  width: 24px;
  height: 24px;
  font-size: 18px;
  line-height: 1;
  color: #4CAF50;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: #fff;
  border: 0;
  box-shadow: none;
  border-radius: 999px;
  box-sizing: border-box;
  margin-top: -1px;
}

.pricingItemText {
  flex: 1 1 auto;
  min-width: 0;
  opacity: 0.95;
}

.pricingCardPremium .pricingItemText {
  color: rgba(0, 0, 0, 0.78);
}

.pricingCardEnterprise .pricingItemText {
  color: rgba(255, 255, 255, 0.92);
}

/* Footnote */
.pricingFootnote {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-body);
}

.pricingCardEnterprise .pricingFootnote {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive (mobile/tablet starts at 1024px) */
@media (max-width: 1024px) {
  .pricing .container {
    max-width: var(--container);
    padding-left: var(--navPadL);
    padding-right: var(--navPadR);
  }

  /* reduce panel padding so card never overflows the viewport */
  .pricing {
    padding: 54px 0;
    --panel-pad-x: 16px;
    --panel-pad-y: 28px;
    --panel-radius: 22px;
    --card-gap: 16px;
  }

  .pricingPanel {
    padding: var(--panel-pad-y) var(--panel-pad-x);
    border-radius: var(--panel-radius);
  }

  /* stack cards */
  .pricingGrid {
    grid-template-columns: 1fr;
    justify-content: stretch;
    margin-top: 32px;
    gap: var(--card-gap);
    align-items: start;
  }

  /* keep card look, but make it fit + not “center weird” */
  .pricingCard {
    height: auto;
    padding: 26px 22px 22px;
    margin: 0 auto;     /* centered as a block */
    text-align: left;   /* content stays left-aligned */
  }

  .pricingPlan {
    font-size: 24px;
    line-height: 1.25;
  }

  .pricingPriceValue {
    font-size: 36px;
    line-height: 1.2;
  }

  .pricingPriceUnit {
    font-size: 14px;
    line-height: 1.4;
  }

  .pricingBtn {
    min-height: 52px;
    font-size: 16px;
    margin: 10px 0 18px;
  }

  .pricingIncludes {
    font-size: 16px;
    line-height: 1.45;
  }

  .pricingList li {
    font-size: 16px;
    line-height: 1.5;
    min-width: 0;
  }

  .pricingCheck {
    margin-top: -2px;
  }

  /* bullet text always wraps inside card */
  .pricingItemText {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* extra-small phones */
@media (max-width: 420px) {
  .pricingPanel { --panel-pad-x: 14px; --panel-pad-y: 22px; }
  .pricingCard { padding: 22px 18px 18px; }
  .pricingPlan { font-size: 22px; line-height: 1.25; }
  .pricingPriceValue { font-size: 32px; line-height: 1.2; }
}

/* Legal page: own scroll container + sticky bar always visible */
.legalPage{
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    background: #fff;
  }
  
  /* On legal page we do NOT want sticky bar to overlap content */
  .legalPage .stickyBar{
    margin-bottom: 0; /* stickyBar in your base CSS uses negative margin for landing page */
  }
  
  
  /* Content */
  .legalMain{
    padding: clamp(18px, 2.4vw, 28px) 0 clamp(36px, 4vw, 60px);
  }
  
  .container.legalContent{
    max-width: 1920px;
    margin: 0 auto;
    padding-left: var(--navPadL, var(--page-pad));
    padding-right: var(--navPadR, var(--page-pad));
  }
  
  .legalSection{
    padding-top: clamp(16px, 2.4vw, 34px);
  }
  
  .legalH1{
    margin: 0 0 10px 0;
    font-size: clamp(18px, 2.1vw, 26px);
    letter-spacing: -0.01em;
  }
  
  .legalMeta{
    margin: 0 0 18px 0;
    font-size: 13px;
    opacity: .65;
  }
  
  .legalP{
    margin: 0 0 12px 0;
    line-height: 1.55;
    max-width: 78ch;
  }
  
  @media (max-width: 1024px){
    .stickyBarLegal{
      --mobileMenuPadL: var(--navPadL);
      --mobileMenuPadR: var(--navPadR);
      --mobileMenuPadTop: 0px;
      --mobileMenuRowH: clamp(72px, 9vw, 92px);
    }
  
    .stickyBarLegal .mobileMenuOverlay,
    .stickyBarLegal .mobileMenuShell{
      background: #fff;
    }
  }

/* =========================
   ADDITIONS (new build)
   Subtle, non-visual upgrades only — the design above is untouched.
   ========================= */

/* =========================
   HERO ENTRANCE
   Content rises in once with a small stagger on page load; the hero is
   static afterwards.
   ========================= */

.heroText .h1,
.heroText .sub,
.heroText .badges,
.heroVisualWrap {
  animation: heroRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.heroText .h1 { animation-delay: 0.05s; }
.heroText .sub { animation-delay: 0.16s; }
.heroText .badges { animation-delay: 0.27s; }
.heroVisualWrap { animation-delay: 0.2s; }

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* keyboard focus for interactive elements the original set missed */
:is(.pricingBtn, .footerBtn, .footerEmail, .navLink, .stickyLink, .mobileMenuLink):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* native-anchor fallback so in-page targets clear the sticky bar without JS */
:is(.section, .cta, .pricing)[id] {
  scroll-margin-top: var(--navH);
}

@media (prefers-reduced-motion: reduce) {
  .landing {
    scroll-behavior: auto;
  }

  .heroText .h1,
  .heroText .sub,
  .heroText .badges,
  .heroVisualWrap {
    animation: none;
  }

  .hero::before {
    transform: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
