/* ============================================================
   Breez by Cyntra — landing page design system
   ============================================================ */
:root {
  --blue: #39a1f7;
  --navy: #021844;
  --dark: #151c22;
  --text-muted: #4e555c;
  --text-light: #7c848d;
  --bg-soft: #f4f8ff;
  --bg-pill: #ffffff;
  --radius: 12px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 99px;
  --shadow-sm: 0px 4px 12px rgba(0, 0, 0, 0.05);
  --shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  --maxw: 1440px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: clamp(70px, 6vw, 90px);
  --hero-gap: 2rem;
  --section-spacing: clamp(30px, 4vw, 50px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Inter", sans-serif; line-height: 1.25; margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { 
  width: min(100%, var(--maxw));
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px); 
}
.section { padding: var(--section-spacing) 0; }
.center { text-align: center; }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-pill);
  border: 2px solid var(--blue);
  padding: 0 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.section-title {
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 600;
  color:  #333333;
;
  margin-bottom: 32px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background: #032a75;
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: #2a8ee0;
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover {
  background: #f4f8ff;
  transform: translateY(-2px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  min-height: 70px;
  max-height: 90px;
  gap: clamp(16px, 3vw, 32px);
}
.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.brand img {
  height: clamp(32px, 3.5vw, 42px);
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  flex-shrink: 0;
  font-size: clamp(13px, 1.2vw, 15px);
  padding: 10px 24px;
}
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 16px 0 var(--section-spacing);
  background: #ffffff;
}
.hero-card {
  position: relative;
  height: calc(100vh - 138px);
  min-height: 480px;
  max-height: 640px;
  background: var(--navy);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: var(--hero-gap);
  padding-bottom: clamp(32px, 5vh, 60px);
  padding-left: 60px;
  padding-right: 60px;
  color: #fff;
  overflow: hidden;
}

/* Slide layers */
.hero-slides {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
}
/* Dark overlay above slides, below content */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.hero-content { 
  position: relative; 
  z-index: 3; 
  max-width: 800px;
  flex: 1;
  display: grid;
  grid-template-columns: 0.70fr;
  align-content: start;
  gap: var(--hero-gap);
  margin-top: 1.5rem;
}

.hero-badges {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  border: none;
  width: fit-content;
  height: 36px;
  overflow: hidden;
  white-space: nowrap;
  max-width: 124px;
  background: var(--navy);
  position: relative;
  z-index: 2;
  animation: badgeExpand 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.hero-badges::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px; /* Starts halfway through badge-ai to prevent left-side subpixel bleed while revealing right curves */
  right: 0;
  background: #e6f3ff;
  z-index: -1;
  animation: badgeBgExpand 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes badgeExpand {
  0%, 10% { max-width: 124px; }
  45%, 55% { max-width: 530px; }
  90%, 100% { max-width: 124px; }
}
@keyframes badgeBgExpand {
  0%, 10% { opacity: 0; }
  45%, 55% { opacity: 1; }
  90%, 100% { opacity: 0; }
}
.badge-ai {
  background: var(--navy);
  color: #fff;
  height: 36px;
  width: 124px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.36;
  text-align: center;
  letter-spacing: 0;
  flex-shrink: 0;
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(2, 24, 68, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(2, 24, 68, 0); }
}
.badge-biz {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 24px 0 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.36;
  color: var(--navy);
  opacity: 0;
  transform: translateX(-15px);
  animation: badgeTextFade 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes badgeTextFade {
  0%, 10% { opacity: 0; transform: translateX(-15px); }
  45%, 55% { opacity: 1; transform: translateX(0); }
  90%, 100% { opacity: 0; transform: translateX(-15px); }
}

.hero h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0;
  max-width: 680px;
}
.hero-sub {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.36;
  letter-spacing: 0;
  margin: 0;
  opacity: 0.95;
  max-width: 500px;
}

/* Concave Notch / Pocket button */
.hero-demo-pocket {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  padding: 24px 32px 20px 36px;
  border-radius: 32px 0 0 0;
  z-index: 10;
}
.hero-demo-pocket::before {
  content: '';
  position: absolute;
  top: -48px;
  right: 0;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 0% 0%, transparent 68%, #fff 70%);
  pointer-events: none;
}
.hero-demo-pocket::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -48px;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 0% 0%, transparent 68%, #fff 70%);
  pointer-events: none;
}

/* CTA button styling */
.hero-cta {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 8px 8px 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: all 0.25s var(--ease);
}
.hero-cta .arrow-circle {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease);
}
.hero-cta .arrow {
  color: var(--navy);
  width: 15px;
  height: 16px;
  display: block;
  transition: transform 0.25s var(--ease);
}
.hero-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}
.hero-cta:hover .arrow-circle {
  transform: scale(1.05);
}
.hero-cta:hover .arrow {
  transform: translate(2px, -2px);
}

/* Partner Logos styling */
.hero-logos {
  margin-top: auto;
  padding-top: 24px;
  width: calc(100% - 320px); /* Leave room for pocket button */
  overflow: hidden;
  position: relative;
  z-index: 3;
  min-height: 52px;
  max-height: 70px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}
.hero-logos-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
  flex-wrap: nowrap;
}
.hero-logos img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}
.hero-logos img:hover {
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 0.6fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}
.why-item.is-active {
  background: var(--bg-soft);
}
.why-item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue);
  border-radius: 16px 0 0 16px;
}
.why-ico {
  flex: none;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 20px;
}
.why-ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.why-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.why-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  margin: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* box-shadow: var(--shadow-sm); */
}
.why-media img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  padding: 0;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  clip-path: inset(3.5% round var(--radius-lg));
  -webkit-clip-path: inset(3.5% round var(--radius-lg));
}
.why-media img.why-fade-out {
  opacity: 0;
  transform: scale(0.97) translateX(12px);
}

/* ============================================================
   AI FEATURES
   ============================================================ */
.features-section {
  background: #ffffff;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.feature-card {
  position: relative;
  background: #E3ECFF33;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  border: none;
  overflow: hidden;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: #39A1F7;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: color 0.3s var(--ease);
}
.feature-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.36;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
  vertical-align: middle;
}
.feature-card p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.36;
  color: var(--text-muted);
  margin: 0;
  margin-bottom: 32px;
  transition: color 0.3s var(--ease);
}
.feature-pocket {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: #ffffff;
  padding: 18px 28px 14px 32px;
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
  z-index: 10;
}
.feature-pocket::before {
  content: '';
  position: absolute;
  top: -24px;
  right: 0;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 0% 0%, transparent 68%, #ffffff 70%);
  pointer-events: none;
}
.feature-pocket::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -24px;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 0% 0%, transparent 68%, #ffffff 70%);
  pointer-events: none;
}
.feature-learn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.36;
  color: #39A1F7;
  transition: color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
}

/* Hover effects */
.feature-card:hover {
  background: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature-card:hover .feature-icon {
  background: #ffffff;
}
.feature-card:hover .feature-icon svg {
  color: var(--navy);
}
.feature-card:hover h3 {
  color: #ffffff;
}
.feature-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}
.feature-card:hover .feature-learn {
  color: #021844;
}

/* Responsive adjustments */
@media (max-width: 1120px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    min-height: 240px;
    padding: 24px;
  }
  .feature-card h3 {
    font-size: 20px;
  }
  .feature-card p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .feature-learn {
    font-size: 20px;
  }
  .feature-pocket {
    padding: 12px 20px 8px 24px;
    border-radius: 16px 0 16px 0;
  }
  .feature-pocket::before {
    top: -16px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 0% 0%, transparent 68%, #ffffff 70%);
  }
  .feature-pocket::after {
    left: -16px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 0% 0%, transparent 68%, #ffffff 70%);
  }
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries .pill, .industries .section-title { text-align: center; display: flex; justify-content: center; margin-left: auto; margin-right: auto; }
.industries .pill {
  font-size: 14px;
  padding: 0 16px;
  letter-spacing: 0.04em;
  width: fit-content;
}

.industries-flex {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  height: clamp(400px, 55vh, 600px);
}
.industry-card {
  position: relative;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: flex, transform;
}
.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.75) 85%);
  z-index: 2;
  transition: opacity 0.7s ease;
}
.industry-card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.industry-card .num {
  font-size: 32px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.vertical-heading {
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: rotate(-90deg);
  transform-origin: left center;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.card-details {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: 480px;
  position: absolute;
  bottom: 80px;
  left: 30px;
}
.card-details p {
  font-size: 15px;
  line-height: 1.45;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
}
.horizontal-heading {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.industry-card.is-expanded {
  flex: 3.5;
}
.industry-card.is-expanded img {
  transform: scale(1.05);
}
.industry-card.is-expanded .num {
  left: 30px;
  transform: none;
}
.industry-card.is-expanded .vertical-heading {
  opacity: 0;
  transform: rotate(-90deg) translateX(-80px);
}
.industry-card.is-expanded .card-details {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: #E3ECFF; 
  border-radius: var(--radius-xl);
  width: calc(100% - 2 * clamp(16px, 4vw, 60px));
  max-width: var(--maxw);
  margin: var(--section-spacing) auto;
  padding: clamp(20px, 3vw, 30px) clamp(24px, 5vw, 60px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Inter", sans-serif;
}
.how .pill {
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--#39A1F7);
  color: var(--#39A1F7);
  background: #ffffff;
  margin-bottom: 20px;
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  letter-spacing: 0.0rem;
}
.how .section-title {
  font-family: "Inter", sans-serif;
  font-weight: 500; 
  font-size: clamp(21px, 1.5vw, 32px); 
  color: #1a202c;
  letter-spacing: -0.02em;
}
.how-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
  width: 100%;
}
.how-media {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0;
}
.how-media img#howImage {
  width: auto;
  max-width: 100%;
  height: 90vh;
  object-fit: contain;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.how-media img.how-media-preload {
  display: none;
}
.how-media img#howImage.fade-out {
  opacity: 0;
  transform: scale(0.97);
}
.steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90vh;
  position: relative;
  padding-left: 0;
}
/* Vertical connecting line */
.steps-line {
  position: absolute;
  left: 21px;
  width: 2px;
  background: #39A1F74F;
  z-index: 0;
  border-radius: 2px;
}
.steps-line-progress {
  position: absolute;
  left: 21px;
  top: 22px;
  width: 2px;
  height: 0;
  background: var(--blue);
  z-index: 1;
  border-radius: 2px;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background 0.3s ease;
  margin-left: -16px; /* offset padding */
}

.step-dot {
  flex: none;
  width: 44px;
  height: 44px;
  background: #fff;
  color: #6a9ce0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 3;
}
.step.is-active .step-dot {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(57, 161, 247, 0.3);
  transform: scale(1.05);
}
.step-body {
  margin-top: 10px;
}
.step-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #5c6269;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.step-body p {
  font-size: 14px;
  color: #8c939b;
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.5;
}
.step.is-active .step-body h3 { color: var(--navy); }
.step.is-active .step-body p { color: #5c6269; }


/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  font-family: "Inter", sans-serif;
}
.pricing .pill {
  border-radius: var(--radius-pill);
  border: 2px solid var(--#39A1F7);
  color: var(--#39A1F7);
  background: #ffffff;
  margin-bottom: 20px;
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  letter-spacing: 0.0rem;
}
.pricing .section-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 18px);
  color: #1a202c;
  letter-spacing: -0.02em;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: #fff;
  padding: 40px 24px 32px;
  border-radius: 24px;
  box-shadow: 0px 0px 27.1px 0px #0000001F;
  /* border: 1px solid #e2e8f0; */
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
}

.price-card.is-featured {
  background: linear-gradient(180deg, #39A1F7 5.29%, #021844 59.62%);
  box-shadow: 0px 0px 27.1px 0px #0000001F;
  color: #fff;
  border: none;
}
.price-card:hover {
  transform: translateY(-12px) scale(1.05) !important;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.badge-pop {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(27.36deg, #021844 15.59%, #39A1F7 107.66%);
  color: #fff;
  padding: 10px 30px;
  border-radius: 99px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.plan-name {
  font-size: 22px;
  font-weight: 600;
  color: #39a1f7;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.is-featured .plan-name {
  color: #fff;
}
.plan-for {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.is-featured .plan-for {
  color: rgba(255, 255, 255, 0.8);
}
.plan-price {
  font-size: 30px;
  font-weight: 550;
  color: #021844;
  margin: 0 0 20px 0;
  line-height: 1.1;
}
.plan-price span {
  font-size: 18px;
  font-weight: 500;
  color: inherit;
}
.is-featured .plan-price {
  color: #fff;
}
.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.plan-feats li {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.is-featured .plan-feats li {
  color: rgba(255, 255, 255, 0.9);
}
.plan-feats li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #333333;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
}
.is-featured .plan-feats li::before {
  background-color: #fff;
}

.price-card .btn {
  margin-top: auto;
  margin-inline: auto;
  width: 70%;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 550;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-card .btn-dark {
  background: #021844;
  color: #fff;
}
.price-card .btn-dark:hover {
  background: #021844;
  transform: none;
}
.price-card .btn-light {
  background: #ffffff;
  color: #021844;
}
.price-card .btn-light:hover {
  background: #ffffff;
  transform: none;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-head {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
  font-family: "Inter", sans-serif;
  padding-inline: 120px;
}
.test-head .pill {
  border-radius: var(--radius-pill);
  border: 2px solid var(--blue);
  color: var(--blue);
  background: #ffffff;
  margin-bottom: 20px;
  text-transform: none;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 20px;
  letter-spacing: 0.0rem;
  width: fit-content;
  margin-inline: auto;
}
.test-head .section-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 26px);
  color: #151C22;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-align: center;
}
.test-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 12px;
}
.test-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  transition: all 0.2s ease;
  border: none;
}
.test-nav-btn.prev {
  border: 1.5px solid #021844;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23021844' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
}
.test-nav-btn.next {
  background-color: #021844;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.test-card {
  background: #fff;
  padding: 44px 24px 32px;
  border-radius: 24px;
  box-shadow: 0px 0px 10.8px 0px #0000001F;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  margin-top: 50px;
  border: none !important;
  font-family: "Inter", sans-serif;
}
.test-logo {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 95px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--blue);
  z-index: 2;
}
.test-logo img {
  max-height: 68px;
  max-width: 72px;
  width: auto;
  object-fit: contain;
}
.test-card blockquote {
  font-size: 15px;
  color: #44464F;
  margin: 28px 0 20px;
  line-height: 1.6;
  font-style: normal;
  font-weight: 400;
}
.test-card figcaption {
  font-size: 18px;
  font-weight: 600;
  color: #021844;
  margin-bottom: 4px;
  margin-top: auto;
}
.test-card .role {
  font-size: 14px;
  font-weight: 500;
  color: #39A1F7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: #E3ECFF;
  border-radius: var(--radius-xl);
  width: calc(100% - 2 * clamp(16px, 4vw, 60px));
  max-width: var(--maxw);
  margin: var(--section-spacing) auto;
  padding: clamp(40px, 6vw, 60px) clamp(24px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  height: 480px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.faq .pill {
  border-radius: var(--radius-pill);
  border: 2px solid var(--blue);
  color: var(--blue);
  background: #ffffff;
  margin-bottom: 20px;
  text-transform: none;
  font-size: 18px;
  font-weight: 600;
  padding: 6px 28px;
  letter-spacing: 0.0rem;
  width: fit-content;
}
.faq-bg-text {
  position: absolute;
   font-size: 340px;
  font-weight: 800;
  color: #39A1F714;
  top: 40%;
  right: 22%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  line-height: 2;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.faq-intro {
  display: flex;
  flex-direction: column;
}
.faq-intro .section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 600;
  color: #333333;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.faq-intro p {
  font-size: 17px;
  color: #333333;
  max-width: 380px;
  line-height: 1.4;
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  border-bottom: 1px solid #C3C3C3;
  padding-bottom: 20px;
}
.faq-item summary {
  font-size: 18px;
  font-weight: 600;
  color: var(--#333333);
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--blue);
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
}
.faq-item[open] summary::after {
  background-color: var(--navy);
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z'/%3E%3C/svg%3E");
}
.faq-ans {
  font-size: 16px;
  color: #333333;
  margin-top: 12px;
  line-height: 1.4;
  padding-right: 48px;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.faq-item:not([open]) .faq-ans {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--navy);
  border-radius: var(--radius-xl);
  width: calc(100% - 2 * clamp(16px, 4vw, 60px));
  max-width: var(--maxw);
  margin: var(--section-spacing) auto;
  padding: clamp(40px, 6vw, 60px) clamp(16px, 3.5vw, 10px);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 80px;
  align-items: stretch;
}
.contact-info h2 {
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 550;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}
.contact-lede {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #ffffff;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.cmeta-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cmeta-item.inline-item {
  align-items: center;
}
.cmeta-ico-box {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmeta-ico-box svg {
  width: 100%;
  height: 100%;
  display: block;
}
.cmeta-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #39A1F7;
  margin: 0 0 6px 0;
  line-height: 1.2;
}
.cmeta-text p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 4px 0;
  line-height: 1.4;
}
.cmeta-text h4 a {
  color: #ffffff;
  font-weight: 400;
  margin-left: 4px;
  transition: opacity 0.2s ease;
}
.cmeta-text h4 a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  padding: 32px 36px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.contact-form input {
  background: #EEEEEE;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  transition: all 0.2s;
}
.contact-form textarea {
  background: #EEEEEE;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  transition: all 0.2s;
  height: 80px;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: transparent;
  background: #EEEEEE;
  box-shadow: none;
}
.contact-form .full {
  grid-column: span 2;
}
.contact-form .btn {
  grid-column: span 2;
  background: #39A1F7;
  color: #fff;
  height: 44px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 99px;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.contact-form .btn:hover {
  background: #2a8ee0;
  transform: translateY(-1px);
}
.phone-input-container {
  display: flex;
  background: #EEEEEE;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s;
  overflow: hidden;
  align-items: center;
  width: 100%;
}
.phone-input-container select.country-code-select {
  background: transparent;
  border: none;
  padding: 10px 8px 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  cursor: pointer;
  border-right: 1px solid #CCCCCC;
  border-radius: 0;
  width: 75px;
  flex-shrink: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23151c22'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
  background-size: 16px;
  padding-right: 20px;
}
.phone-input-container input[type="tel"] {
  background: transparent !important;
  border: none !important;
  flex-grow: 1;
  padding: 10px 14px !important;
  box-shadow: none !important;
  outline: none !important;
  width: 100%;
  border-radius: 0 !important;
}
.phone-input-container:focus-within {
  border-color: transparent;
  background: #EEEEEE;
  box-shadow: none;
}
.form-success-msg {
  grid-column: span 2;
  text-align: center;
  color: #2e7d32;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  animation: formFadeIn 0.3s ease;
}
@keyframes formFadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #07090e; color: #fff; padding: var(--section-spacing) 0 30px; border-top: 1px solid #141822; }
.footer-inner { display: flex; justify-content: space-between; gap: 60px; margin-bottom: 48px; }
.footer-brand { max-width: 360px; }
.footer-brand img { height: 32px; width: auto; }
.footer-brand p { margin-top: 16px; opacity: 0.7; font-size: 14px; line-height: 1.5; }
.footer-cols { display: flex; gap: 60px; }
.footer-cols h4 { font-size: 16px; margin-bottom: 18px; color: var(--blue); font-weight: 600; }
.footer-cols a { display: block; margin-bottom: 10px; opacity: 0.7; font-size: 14px; transition: opacity .2s; }
.footer-cols a:hover { opacity: 1; color: var(--blue); }
.footer-cols span { display: block; margin-bottom: 10px; opacity: 0.7; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 30px; display: flex; justify-content: space-between; font-size: 13px; opacity: 0.6; }



/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1200px) {
  .hero-card {
    min-height: 540px;
    padding: 48px;
  }
  .hero-logos {
    width: 100%;
    margin-top: 32px;
    min-height: 46px;
    max-height: 60px;
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .test-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: clamp(52px, 6vw, 64px);
  }
  .nav-inner {
    height: var(--header-height);
    min-height: 52px;
    max-height: 64px;
  }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: #ffffff;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: stretch;
    padding: 30px 24px;
    gap: 16px;
    z-index: 100;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid #f0f0f0;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 18px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    border-bottom: 1px solid #f9f9f9;
  }
  .nav-links a:hover {
    background: var(--bg-soft);
    color: var(--blue);
  }
  
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }
  .nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--navy);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .hero-card {
    min-height: 500px;
    padding-top: var(--hero-gap);
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    justify-content: center;
  }
  .hero-demo-pocket {
    position: relative;
    bottom: auto;
    right: auto;
    padding: 0;
    background: none;
    margin-top: 30px;
    border-radius: 0;
  }
  .hero-demo-pocket::before, .hero-demo-pocket::after { display: none; }
  .hero-cta { width: 100%; max-width: 300px; }
  .hero-logos {
    width: 100%;
    min-height: 46px;
    max-height: 60px;
  }

  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-media { height: 350px; order: -1; justify-content: center; }
  .why-media img { object-position: center; }
  
  .industries-flex { flex-direction: column; height: auto; gap: 20px; }
  .industry-card { flex: none; height: 300px; width: 100%; }
  .vertical-heading { display: none; }
  .horizontal-heading { font-size: 20px; }
  .industry-card .num { position: relative; top: auto; left: auto; transform: none; margin-bottom: 8px; font-size: 24px; opacity: 1; pointer-events: auto; }
  .card-details { position: relative; bottom: auto; left: auto; opacity: 1; transform: none; padding-top: 0; }
  
  .how-grid { grid-template-columns: 1fr; gap: 32px; flex-direction: column; }
  .how-media { order: -1; }
  .how-media img#howImage { height: 45vh; min-height: unset; max-height: none; }
  .steps { height: auto; gap: 28px; }
  .steps-line, .steps-line-progress { left: 21px; }

  .faq { height: auto; padding: 40px 24px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-bg-text { display: none; }
  
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-cols { gap: 40px; flex-wrap: wrap; }
  
  .test-head { padding-inline: 0; }
  .test-nav { position: static; margin-top: 24px; justify-content: center; }
}

@media (max-width: 768px) {
  
  .price-grid, .test-grid { grid-template-columns: 1fr; }
  
  .hero-card {
    padding-top: var(--hero-gap);
    padding-bottom: 32px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 420px;
    border-radius: var(--radius-lg);
  }
  .hero h1 {
    font-size: clamp(20px, 5.5vw, 28px);
    line-height: 1.3;
  }
  .hero-sub {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.35;
  }
  .hero-badges { 
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0;
    border-radius: 16px;
    height: 28px;
    width: fit-content;
    max-width: 90px;
    overflow: hidden;
    white-space: nowrap;
    border: none;
    background: var(--navy);
    position: relative;
    z-index: 2;
    animation: badgeExpandMobile 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  }
  .hero-badges::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45px; /* Starts halfway through badge-ai to prevent left-side subpixel bleed while revealing right curves */
    right: 0;
    background: #e6f3ff;
    z-index: -1;
    animation: badgeBgExpandMobile 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  }
  @keyframes badgeExpandMobile {
    0%, 10% { max-width: 90px; }
    45%, 55% { max-width: 270px; }
    90%, 100% { max-width: 90px; }
  }
  @keyframes badgeBgExpandMobile {
    0%, 10% { opacity: 0; }
    45%, 55% { opacity: 1; }
    90%, 100% { opacity: 0; }
  }
  .badge-ai {
    height: 32px;
    width: 90px;
    border-radius: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.36;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
    letter-spacing: 0;
    flex-shrink: 0;
  }
  .badge-biz {
    height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px 0 8px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.36;
    color: var(--navy);
    opacity: 0;
    transform: translateX(-10px);
    animation: badgeTextFadeMobile 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  }
  @keyframes badgeTextFadeMobile {
    0%, 10% { opacity: 0; transform: translateX(-10px); }
    45%, 55% { opacity: 1; transform: translateX(0); }
    90%, 100% { opacity: 0; transform: translateX(-10px); }
  }

  .contact-form { padding: 24px; grid-template-columns: 1fr; }
  .contact-form .full { grid-column: span 1; }
  .contact-form .btn { grid-column: span 1; }
  
  .footer-cols { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(18px, 6vw, 22px);
    line-height: 1.25;
  }
  .hero-badges {
    background: var(--navy);
    animation: badgeExpandMobileSmall 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  }
  .hero-badges::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45px; /* Starts halfway through badge-ai to prevent left-side subpixel bleed while revealing right curves */
    right: 0;
    background: #e6f3ff;
    z-index: -1;
    animation: badgeBgExpandMobile 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  }
  @keyframes badgeExpandMobileSmall {
    0%, 10% { max-width: 90px; }
    45%, 55% { max-width: 240px; }
    90%, 100% { max-width: 90px; }
  }
  .badge-biz {
    font-size: 10px;
    padding: 0 8px 0 4px;
  }
  .hero-logos-track {
    gap: 30px;
  }
  .hero-logos img {
    height: 22px;
  }
  .steps { gap: 20px; }
  .step-dot { width: 36px; height: 36px; font-size: 16px; }
  .steps-line, .steps-line-progress { left: 17px; }

  .step-body { margin-top: 8px; }
  .step-body h3 { font-size: 16px; }
  .step-body p { font-size: 13px; }
}

/* ---------- Lenis Smooth Scrolling ---------- */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
