/* =========================================================
   NovaScaleads — Premium Responsive Styles
   ========================================================= */

:root {
  --clr-bg: #f7f8fc;
  --clr-surface: #ffffff;
  --clr-border: #e3e7ef;

  --clr-text: #0b0f1a;
  --clr-text-secondary: #566078;
  --clr-text-muted: #8b94a6;

  --clr-accent: #2454d8;
  --clr-accent-hover: #1744c5;
  --clr-accent-light: #edf2ff;

  --clr-proof-bg: #0a0e18;
  --clr-proof-surface: #131824;
  --clr-proof-border: #252c3d;

  --clr-green: #059669;
  --clr-green-bg: #ecfdf5;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 9px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm:
    0 1px 3px rgba(11, 15, 26, 0.06),
    0 1px 2px rgba(11, 15, 26, 0.04);

  --shadow-md:
    0 8px 28px rgba(11, 15, 26, 0.08),
    0 2px 8px rgba(11, 15, 26, 0.04);

  --shadow-lg:
    0 24px 60px rgba(11, 15, 26, 0.13);

  --nav-h: 68px;
  --max-w: 1160px;
}

/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 42px;
  padding: 10px 20px;

  border: 0;
  border-radius: var(--radius-sm);

  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.01em;

  cursor: pointer;
  white-space: nowrap;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--clr-accent);
  box-shadow: 0 4px 14px rgba(36, 84, 216, 0.18);
}

.btn-primary:hover {
  background: var(--clr-accent-hover);
  box-shadow: 0 9px 28px rgba(36, 84, 216, 0.28);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid var(--clr-border);
}

.btn-ghost:hover {
  background: #fff;
  border-color: #bdc5d4;
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  min-height: 48px;
  padding: 13px 27px;
  font-size: 0.95rem;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(247, 248, 252, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid transparent;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(247, 248, 252, 0.96);
  border-bottom-color: var(--clr-border);
  box-shadow: 0 4px 24px rgba(11, 15, 26, 0.06);
}

/*
   DESKTOP NAVBAR

   Three-column grid:
   Left   = Logo
   Center = Navigation links
   Right  = CTA

   This keeps the navigation mathematically centered
   regardless of the width of the logo or CTA button.
*/

.nav-inner {
  position: relative;

  width: 100%;
  max-width: var(--max-w);
  height: var(--nav-h);

  margin: 0 auto;
  padding: 0 28px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;
  gap: 20px;
}

.logo {
  justify-self: start;
  flex-shrink: 0;

  color: var(--clr-text);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.logo span {
  color: var(--clr-accent);
}

/* CENTERED NAVIGATION */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;

  margin: 0;
}

.nav-links a {
  padding: 7px 13px;

  color: var(--clr-text-secondary);
  border-radius: 7px;

  font-size: 0.84rem;
  font-weight: 550;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-links a:hover {
  color: var(--clr-text);
  background: rgba(11, 15, 26, 0.045);
}

/* RIGHT-SIDE CTA */

.nav-cta {
  justify-self: end;

  margin: 0;
  flex-shrink: 0;
}

/* =========================================================
   HAMBURGER
   ========================================================= */

.hamburger {
  display: none;

  width: 44px;
  height: 44px;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  margin-left: auto;

  background: transparent;
  border: 0;

  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2.5px;

  display: block;

  background: var(--clr-text);
  border-radius: 10px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;

  width: 100%;

  padding: 10px 20px 22px;

  border-top: 1px solid var(--clr-border);

  background: rgba(247, 248, 252, 0.98);
}

.mobile-menu a:not(.btn) {
  display: block;

  padding: 13px 10px;

  color: var(--clr-text-secondary);

  font-size: 0.96rem;
  font-weight: 550;

  border-radius: 8px;
}

.mobile-menu a:not(.btn):hover {
  color: var(--clr-text);
  background: rgba(11, 15, 26, 0.04);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 8px;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  width: 100%;
  max-width: var(--max-w);

  margin: 0 auto;

  padding: 78px 28px 92px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.03fr)
    minmax(420px, 0.97fr);

  align-items: center;

  column-gap: 64px;
}

.hero-copy {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;

  padding: 5px 11px;
  margin-bottom: 20px;

  color: var(--clr-accent);
  background: var(--clr-accent-light);

  border: 1px solid rgba(36, 84, 216, 0.13);
  border-radius: 999px;

  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.hero-headline {
  max-width: 650px;

  margin-bottom: 19px;

  color: var(--clr-text);

  font-size: clamp(3rem, 5vw, 4.15rem);
  font-weight: 800;

  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero-sub {
  max-width: 510px;

  margin-bottom: 30px;

  color: var(--clr-text-secondary);

  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 11px;

  margin-bottom: 38px;
}

.hero-stats {
  max-width: 570px;

  display: flex;
  align-items: stretch;

  padding-top: 23px;

  border-top: 1px solid var(--clr-border);
}

.stat {
  min-width: 0;
  padding-right: 25px;
}

.stat-num {
  display: block;

  color: var(--clr-text);

  font-size: 1.45rem;
  font-weight: 800;

  letter-spacing: -0.045em;
  line-height: 1.1;
}

.stat-label {
  display: block;

  max-width: 115px;

  margin-top: 5px;

  color: var(--clr-text-muted);

  font-size: 0.72rem;
  line-height: 1.35;
}

.stat-divider {
  width: 1px;
  height: 38px;

  flex-shrink: 0;

  margin-right: 25px;

  background: var(--clr-border);
}

/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
  width: 100%;
  min-height: 355px;

  display: flex;

  overflow: hidden;

  background: var(--clr-surface);

  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);

  transform: translateZ(0);
}

.vis-card {
  flex: 1;

  min-width: 0;

  padding: 28px 25px;

  display: flex;
  flex-direction: column;

  gap: 20px;
}

.vis-card--left {
  background: #fbfcfe;
}

.vis-card--right {
  background: #f1f5ff;
}

.vis-label {
  color: var(--clr-text-muted);

  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.vis-path {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 9px;
}

.vis-step {
  width: 100%;

  padding: 12px 10px;

  border-radius: 8px;

  text-align: center;

  font-size: 0.78rem;
  font-weight: 650;

  line-height: 1.3;
}

.step-muted {
  color: var(--clr-text-muted);
  background: #f0f2f6;
}

.step-ai {
  color: var(--clr-accent);
  background: rgba(36, 84, 216, 0.09);
  border: 1px solid rgba(36, 84, 216, 0.15);
}

.step-active {
  color: var(--clr-green);
  background: var(--clr-green-bg);
  border: 1px solid rgba(5, 150, 105, 0.17);
}

.vis-arrow {
  color: #9aa3b3;

  text-align: center;

  font-size: 0.9rem;
  line-height: 1;
}

.vis-split-line {
  width: 1px;

  flex-shrink: 0;

  background: var(--clr-border);
}

/* =========================================================
   SECTION COMMON
   ========================================================= */

.section-header {
  max-width: 650px;
  margin-bottom: 50px;
}

.section-title {
  margin-bottom: 15px;

  color: var(--clr-text);

  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 800;

  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-desc {
  max-width: 540px;

  color: var(--clr-text-secondary);

  font-size: 1rem;
  line-height: 1.7;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services {
  padding: 100px 0;

  background: var(--clr-surface);

  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

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

  gap: 20px;
}

.service-card {
  min-width: 0;

  padding: 30px 27px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  background: var(--clr-bg);

  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(36, 84, 216, 0.3);
  box-shadow: 0 12px 35px rgba(36, 84, 216, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 5px;

  color: var(--clr-accent);
  background: var(--clr-accent-light);

  border-radius: 11px;
}

.service-tag {
  width: fit-content;

  padding: 3px 9px;

  color: var(--clr-accent);
  background: var(--clr-accent-light);

  border-radius: 999px;

  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.service-card h3 {
  color: var(--clr-text);

  font-size: 1.04rem;
  font-weight: 700;

  letter-spacing: -0.025em;
  line-height: 1.35;
}

.service-abbr {
  margin-left: 3px;

  color: var(--clr-text-muted);

  font-size: 0.75rem;
  font-weight: 500;
}

.service-card p {
  flex: 1;

  color: var(--clr-text-secondary);

  font-size: 0.87rem;
  line-height: 1.65;
}

.service-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;

  margin-top: 7px;
  padding-top: 15px;

  border-top: 1px solid var(--clr-border);
}

.service-channel {
  padding: 3px 9px;

  color: var(--clr-text-muted);
  background: var(--clr-surface);

  border: 1px solid var(--clr-border);
  border-radius: 6px;

  font-size: 0.68rem;
  font-weight: 550;
}

/* =========================================================
   PROOF
   ========================================================= */

.proof {
  padding: 100px 0;

  color: #fff;
  background: var(--clr-proof-bg);
}

.proof .section-title {
  color: #fff;
}

.proof .section-desc {
  color: #8892a4;
}

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

  gap: 20px;
}

.proof-card {
  min-width: 0;

  padding: 30px 27px;

  display: flex;
  flex-direction: column;
  gap: 20px;

  background: var(--clr-proof-surface);

  border: 1px solid var(--clr-proof-border);
  border-radius: var(--radius-md);

  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.proof-card:hover {
  border-color: rgba(36, 84, 216, 0.5);
  transform: translateY(-4px);
}

.proof-card--featured {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    145deg,
    #131824 0%,
    #1a2040 100%
  );

  border-color: rgba(36, 84, 216, 0.38);
}

.proof-card--featured::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(36, 84, 216, 0.14),
      transparent 45%
    );

  pointer-events: none;
}

.proof-industry {
  color: #6f7b94;

  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.proof-metric-row {
  display: flex;
  gap: 20px;
}

.proof-metric {
  flex: 1;

  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 5px;
}

.proof-num {
  color: #fff;

  font-size: 1.55rem;
  font-weight: 800;

  letter-spacing: -0.045em;
  line-height: 1;

  white-space: nowrap;
}

.proof-card--featured .proof-num {
  color: #9bbfff;
}

.proof-metric-label {
  color: #6f7b94;

  font-size: 0.71rem;
  line-height: 1.3;
}

.proof-desc {
  flex: 1;

  color: #8992a5;

  font-size: 0.86rem;
  line-height: 1.65;
}

.proof-badge {
  width: fit-content;

  padding: 4px 11px;

  color: rgba(108, 151, 255, 0.95);
  background: rgba(36, 84, 216, 0.14);

  border: 1px solid rgba(36, 84, 216, 0.24);
  border-radius: 999px;

  font-size: 0.68rem;
  font-weight: 650;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process {
  padding: 100px 0;

  background: var(--clr-bg);
}

.process-track {
  max-width: 720px;

  display: flex;
  flex-direction: column;
}

.process-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);

  gap: 23px;

  padding: 25px 0;
}

.process-num {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--clr-accent);
  background: var(--clr-surface);

  border: 1.5px solid var(--clr-border);
  border-radius: 50%;

  font-size: 0.85rem;
  font-weight: 700;
}

.process-content h3 {
  padding-top: 8px;
  margin-bottom: 7px;

  color: var(--clr-text);

  font-size: 1.05rem;
  font-weight: 700;

  letter-spacing: -0.025em;
}

.process-content p {
  color: var(--clr-text-secondary);

  font-size: 0.88rem;
  line-height: 1.65;
}

.process-connector {
  width: 1px;
  height: 28px;

  margin-left: 23px;

  background: linear-gradient(
    to bottom,
    var(--clr-border),
    transparent
  );
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding: 115px 0;

  background: var(--clr-surface);

  border-top: 1px solid var(--clr-border);
}

.cta-inner {
  max-width: 620px;

  margin: 0 auto;

  text-align: center;
}

.cta-eyebrow {
  margin-bottom: 18px;

  color: var(--clr-accent);

  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.cta-headline {
  margin-bottom: 17px;

  color: var(--clr-text);

  font-size: clamp(2.3rem, 5vw, 3.5rem);
  font-weight: 800;

  letter-spacing: -0.05em;
  line-height: 1.04;
}

.cta-sub {
  max-width: 460px;

  margin: 0 auto 32px;

  color: var(--clr-text-secondary);

  font-size: 0.98rem;
  line-height: 1.65;
}

.btn-cta {
  min-height: 52px;

  padding: 15px 34px;

  font-size: 1rem;
}

.cta-note {
  margin-top: 14px;

  color: var(--clr-text-muted);

  font-size: 0.77rem;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 27px 0;

  background: var(--clr-bg);

  border-top: 1px solid var(--clr-border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.footer-copy {
  color: var(--clr-text-muted);

  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--clr-text-muted);

  font-size: 0.78rem;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--clr-text);
}

/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity 0.55s cubic-bezier(0.22, 0.68, 0, 1.2),
    transform 0.55s cubic-bezier(0.22, 0.68, 0, 1.2);
}

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

.services-grid .reveal:nth-child(2),
.proof-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.services-grid .reveal:nth-child(3),
.proof-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

/* =========================================================
   TABLET / SMALL DESKTOP
   900px AND ABOVE = HERO SIDE-BY-SIDE
   ========================================================= */

@media (min-width: 900px) and (max-width: 1024px) {

  .hero {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(360px, 0.9fr);

    column-gap: 32px;

    padding-top: 58px;
    padding-bottom: 70px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-headline {
    font-size: clamp(2.7rem, 5vw, 3.5rem);
  }

  .hero-sub {
    max-width: 100%;
    font-size: 0.94rem;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-stats {
    max-width: 100%;
  }

  .stat {
    padding-right: 15px;
  }

  .stat-divider {
    margin-right: 15px;
  }

  .hero-visual {
    width: 100%;
    min-width: 0;
    min-height: 330px;
  }

  .vis-card {
    padding: 24px 18px;
  }

  .proof-card {
    padding: 26px 20px;
  }

  .proof-metric-row {
    gap: 12px;
  }

  .proof-num {
    font-size: 1.38rem;
  }
}

/* =========================================================
   BELOW 900px = HERO STACKS
   ========================================================= */

@media (max-width: 899px) {

  .hero {
    grid-template-columns: 1fr;

    gap: 48px;

    padding-top: 64px;
    padding-bottom: 75px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-sub {
    max-width: 620px;
  }

  .hero-visual {
    max-width: 680px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  :root {
    --nav-h: 64px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* =====================================================
     MOBILE NAV
     ===================================================== */

  .nav-inner {
    /*
      Switch back to flex on mobile so the
      logo stays left and hamburger stays right.
    */
    display: flex;

    height: 64px;
    padding: 0 20px;

    gap: 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* =====================================================
     HERO
     ===================================================== */

  .hero {
    display: flex;
    flex-direction: column;

    width: 100%;

    gap: 38px;

    padding: 42px 20px 68px;

    align-items: stretch;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-badge {
    margin-bottom: 16px;

    font-size: 0.7rem;
  }

  .hero-headline {
    max-width: 600px;

    margin-bottom: 17px;

    font-size: clamp(2.45rem, 11vw, 3.4rem);

    letter-spacing: -0.06em;
    line-height: 1.02;
  }

  .hero-sub {
    max-width: 620px;

    margin-bottom: 25px;

    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-bottom: 31px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  /* =====================================================
     STATS
     ===================================================== */

  .hero-stats {
    width: 100%;
    max-width: none;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    padding-top: 22px;
  }

  .stat {
    padding: 0 12px;
  }

  .stat:first-child {
    padding-left: 0;
  }

  .stat:last-child {
    padding-right: 0;
  }

  .stat-num {
    font-size: 1.2rem;
  }

  .stat-label {
    max-width: 105px;

    font-size: 0.67rem;
  }

  .stat-divider {
    display: block;

    height: 35px;

    margin-right: 0;
  }

  /* =====================================================
     HERO VISUAL
     ===================================================== */

  .hero-visual {
    width: 100%;
    max-width: none;

    min-height: 0;

    display: flex;
    flex-direction: column;

    border-radius: 20px;
  }

  .vis-card {
    width: 100%;

    padding: 24px 20px;

    gap: 18px;
  }

  .vis-path {
    gap: 8px;
  }

  .vis-step {
    padding: 13px 12px;

    font-size: 0.78rem;
  }

  .vis-split-line {
    width: 100%;
    height: 1px;
  }

  /* =====================================================
     SECTIONS
     ===================================================== */

  .services,
  .proof,
  .process {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .section-desc {
    font-size: 0.92rem;
  }

  .services-grid,
  .proof-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .service-card,
  .proof-card {
    padding: 27px 22px;
  }

  .proof-metric-row {
    gap: 20px;
  }

  .proof-num {
    font-size: 1.55rem;
  }

  .process-step {
    grid-template-columns: 42px minmax(0, 1fr);

    gap: 17px;

    padding: 22px 0;
  }

  .process-num {
    width: 42px;
    height: 42px;
  }

  .process-content h3 {
    padding-top: 6px;
  }

  .process-connector {
    margin-left: 20px;
  }

  /* =====================================================
     CTA
     ===================================================== */

  .cta-section {
    padding: 82px 0;
  }

  .cta-inner {
    padding: 0 20px;
  }

  .cta-headline {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .btn-cta {
    width: 100%;
  }

  /* =====================================================
     FOOTER
     ===================================================== */

  .footer-inner {
    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
  }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

  .hero {
    padding-top: 32px;
    padding-bottom: 56px;

    gap: 32px;
  }

  .hero-headline {
    font-size: 2.35rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-bottom: 27px;
  }

  .hero-stats {
    grid-template-columns: 1fr;

    gap: 18px;

    padding-top: 22px;
  }

  .stat {
    padding: 0 !important;
  }

  .stat-divider {
    display: none;
  }

  .stat-label {
    max-width: none;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .hero-visual {
    border-radius: 18px;
  }

  .vis-card {
    padding: 23px 17px;
  }

  .proof-metric-row {
    flex-direction: column;
    gap: 15px;
  }

  .proof-num {
    font-size: 1.55rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
