/* =============================================================
   styles.mobile.css — bespoke mobile (<768px) homepage rules.
   Loaded only by index.html via <link media="(max-width: 768px)">.
   Contains the mobile hero illustration, mobile-proof, mobile-hiw,
   mobile-compare, mobile-pricing, and mobile FAQ/final CTA overrides.
   ============================================================= */

@media (max-width: 768px) {
  /* Single-column hero — re-declared after 1100px/1024px blocks */
  .hero__split {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .hero__right {
    display: flex;
    margin-top: 28px;
    min-width: 0;
  }
  .hero__right .demo-transcript {
    height: 200px;
    min-height: unset;
    max-height: unset;
  }

  /* Drop animated dots on mobile */
  .hero__route-anim-dots { display: none; }

  /* Mobile hero: concise pitch + animated call routing graphic */
  .hero__stage {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .hero {
    background:
      radial-gradient(circle, rgba(15, 23, 42, 0.04) 1px, transparent 1px) 0 0 / 22px 22px,
      #fafaf7;
  }
  .hero__lines { display: none; }
  .hero__inner { width: 100%; }

  /* Left col: center everything */
  .hero__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 84px 20px 40px;
  }

  /* h1 wraps inline with rotator — same size, same weight, same color */
  h1.hero__h1 {
    font-size: clamp(2.25rem, 10.2vw, 3.25rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-align: center;
    max-width: 340px;
    margin: 0 auto 12px;
    text-wrap: auto;
  }
  .hero__static {
    display: none;
    color: var(--ink);
    white-space: nowrap;
  }
  .hero__mobile-title { display: block; }

  /* Rotator sits below static line, same size */
  .hero__rotator {
    display: none;
    position: relative;
    text-align: center;
    min-height: unset;
    height: auto !important;
    margin-bottom: 1.5rem;
    overflow: visible;
  }

  /* Mobile phrase — soft fade */
  .hero__phrase {
    position: relative;
    left: auto;
    top: auto;
    display: inline;
    font-size: clamp(2rem, 9vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    white-space: normal;
    opacity: 1;
    transition: opacity 500ms ease;
  }
  .hero__phrase.is-exiting { opacity: 0; }
  .hero__phrase:not(.is-active) { display: none; }

  /* Blinking cursor */
  .hero__cursor { display: inline-block; }

  /* Short mobile subhead — replaces long desktop paragraph */
  .hero__subhead { display: none; }
  .hero__stats-mobile { display: none; }
  .hero__subhead-mobile {
    display: block;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--slate);
    text-align: center;
    line-height: 1.55;
    max-width: 320px;
    margin: 0 auto 24px;
    opacity: 0.82;
  }
  .mobile-hero-visual {
    order: 4;
    display: block;
    width: min(100%, 350px);
    height: 306px;
    position: relative;
    margin: 0 auto 24px;
    isolation: isolate;
  }
  .mobile-hero-visual::before {
    content: "";
    position: absolute;
    inset: -26px -18px 8px;
    z-index: -1;
    border-radius: 28px;
    background:
      radial-gradient(circle at 18% 20%, rgba(23,201,100,0.16), transparent 34%),
      radial-gradient(circle at 52% 18%, rgba(47,155,255,0.16), transparent 36%),
      radial-gradient(circle at 82% 30%, rgba(147,51,255,0.13), transparent 34%);
    filter: blur(18px);
    opacity: 0.86;
    pointer-events: none;
  }
  .mobile-hero-device {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 224px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(10,31,68,0.1);
    box-shadow: 0 24px 52px -34px rgba(10,31,68,0.55);
    overflow: hidden;
  }
  .mobile-hero-summary {
    position: absolute;
    border-radius: 7px;
    background: #ffffff;
    border: 1px solid rgba(10,31,68,0.1);
    box-shadow: 0 14px 32px -26px rgba(10,31,68,0.55);
  }
  .mobile-hero-flow {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 22px;
    display: grid;
    grid-template-columns: 1fr 18px 1fr 18px 1fr;
    align-items: start;
    gap: 0;
  }
  .mobile-hero-flow__dot {
    position: absolute;
    top: 27px;
    z-index: 1;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2F9BFF;
    box-shadow: 0 0 0 5px rgba(47,155,255,0.12);
    animation: mobileHeroTravel 2.7s ease-in-out infinite;
  }
  .mobile-hero-flow__line {
    height: 2px;
    margin-top: 31px;
    background: linear-gradient(to right, rgba(23,201,100,0.4), rgba(47,155,255,0.55), rgba(147,51,255,0.4));
    position: relative;
    z-index: 0;
  }
  .mobile-hero-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 0;
    position: relative;
    z-index: 2;
  }
  .mobile-hero-node span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    box-shadow: 0 12px 24px -18px rgba(10,31,68,0.6);
  }
  .mobile-hero-node span::before {
    content: "";
    position: absolute;
  }
  .mobile-hero-node svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    stroke: currentColor;
    position: relative;
    z-index: 1;
  }
  .mobile-hero-node strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
  }
  .mobile-hero-node--call span { background: #17C964; }
  .mobile-hero-node--capture span { background: #2F9BFF; }
  .mobile-hero-node--route span { background: #9333FF; }
  .mobile-hero-node--call span::before,
  .mobile-hero-node--capture span::before,
  .mobile-hero-node--route span::before { display: none; }
  .mobile-hero-summary {
    left: 18px;
    right: 18px;
    top: 132px;
    padding: 13px 14px 14px;
  }
  .mobile-hero-summary__label {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2F9BFF;
    margin-bottom: 10px;
    text-align: left;
  }
  .mobile-hero-summary__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .mobile-hero-summary__grid span {
    min-width: 0;
    padding: 10px 10px 9px;
    border-radius: 6px;
    background: rgba(47,155,255,0.07);
    border: 1px solid rgba(47,155,255,0.1);
    text-align: left;
  }
  .mobile-hero-summary__grid span:nth-child(2) {
    background: rgba(23,201,100,0.08);
    border-color: rgba(23,201,100,0.13);
  }
  .mobile-hero-summary__grid small,
  .mobile-hero-summary__grid strong {
    display: block;
    line-height: 1.1;
  }
  .mobile-hero-summary__grid small {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .mobile-hero-summary__grid strong {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .mobile-hero-alert {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    min-height: 54px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(147,51,255,0.15);
    box-shadow: 0 18px 38px -28px rgba(10,31,68,0.6);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    text-align: left;
  }
  .mobile-hero-alert::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -26px;
    width: 2px;
    height: 26px;
    background: linear-gradient(to bottom, rgba(147,51,255,0), rgba(147,51,255,0.55));
    transform: translateX(-50%);
  }
  .mobile-hero-alert::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -6px;
    width: 9px;
    height: 9px;
    border-right: 2px solid #9333FF;
    border-bottom: 2px solid #9333FF;
    transform: translateX(-50%) rotate(45deg);
  }
  .mobile-hero-alert__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #9333FF;
    position: relative;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 20px -16px rgba(10,31,68,0.8);
  }
  .mobile-hero-alert__icon svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
  }
  .mobile-hero-alert strong,
  .mobile-hero-alert small {
    display: block;
    line-height: 1.15;
  }
  .mobile-hero-alert strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .mobile-hero-alert small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 700;
  }

  /* One CTA centered, no trust items, no demo tags */
  .hero__cta {
    order: 3;
    justify-content: center;
    margin: 0 auto 28px;
  }
  .hero__cta .btn--secondary { display: none; }
  .hero__cta .btn--primary {
    min-width: min(100%, 220px);
    min-height: 48px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 14px 32px -20px rgba(47,155,255,0.9);
  }
  .hero__cta-text-desktop { display: none; }
  .hero__cta-text-mobile { display: inline; }
  .hero__trust { display: none; }
  .hero__right { display: none; }
  .demo-tags { display: none; }

  @media (max-height: 720px) {
    .hero__left { padding-top: 76px; padding-bottom: 28px; }
    .mobile-hero-visual {
      height: 276px;
      margin-bottom: 18px;
    }
    .mobile-hero-device { height: 202px; }
    .mobile-hero-flow { top: 18px; }
    .mobile-hero-node span {
      width: 56px;
      height: 56px;
    }
    .mobile-hero-node strong { font-size: 12px; }
    .mobile-hero-summary {
      top: 116px;
      padding-top: 11px;
      padding-bottom: 11px;
    }
    .mobile-hero-summary__grid span { padding: 8px 9px; }
    .mobile-hero-alert {
      left: 32px;
      right: 32px;
      min-height: 50px;
      padding: 9px 12px;
    }
    .mobile-hero-alert__icon {
      width: 30px;
      height: 30px;
      flex-basis: 30px;
    }
    .mobile-hero-alert strong { font-size: 12.5px; }
  }

  /* Mobile-only social proof */
  .social-proof {
    background-color: #0A1F44;
    background-image: radial-gradient(circle, rgba(255,255,255,0.065) 1px, transparent 1px);
    background-size: 22px 22px;
    padding: 0;
    overflow: hidden;
  }
  .social-proof .container {
    padding: 46px 20px 42px;
  }
  .sp-stats { display: none; }
  .mobile-proof {
    display: block;
    color: #ffffff;
  }
  .mobile-proof__hero {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(47,155,255,0.18), rgba(147,51,255,0.13)),
      rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.13);
    padding: 22px 20px 20px;
    box-shadow: 0 24px 54px -36px rgba(0,0,0,0.9);
  }
  .mobile-proof__hero::before {
    content: "";
    position: absolute;
    inset: -40% -20%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: rotate(12deg);
    animation: mobileProofGlow 4.5s ease-in-out infinite;
    pointer-events: none;
  }
  .mobile-proof__kicker {
    position: relative;
    display: block;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.56);
    margin-bottom: 14px;
  }
  .mobile-proof__metric {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 12px;
  }
  .mobile-proof__metric span {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    font-size: clamp(58px, 18vw, 82px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.88;
    color: #ffffff;
  }
  .mobile-proof__metric small {
    display: block;
    max-width: 86px;
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.05;
    color: rgba(255,255,255,0.78);
  }
  .mobile-proof__hero p {
    position: relative;
    max-width: 285px;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,0.72);
  }
  .mobile-proof__pulse {
    position: absolute;
    right: 18px;
    bottom: 18px;
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
  }
  .mobile-proof__pulse i {
    display: block;
    width: 4px;
    height: 100%;
    border-radius: 99px;
    background: #17C964;
    transform-origin: bottom center;
    animation: mobileProofBar 1.4s ease-in-out infinite;
  }
  .mobile-proof__pulse i:nth-child(2) { height: 72%; animation-delay: 120ms; background: #2F9BFF; }
  .mobile-proof__pulse i:nth-child(3) { height: 90%; animation-delay: 240ms; background: #9333FF; }
  .mobile-proof__pulse i:nth-child(4) { height: 58%; animation-delay: 360ms; background: #2F9BFF; }
  .mobile-proof__pulse i:nth-child(5) { height: 76%; animation-delay: 480ms; background: #17C964; }
  .mobile-proof__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }
  .mobile-proof__tile {
    min-height: 92px;
    border-radius: 8px;
    padding: 15px 14px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobile-proof__tile--purple {
    grid-column: 1 / -1;
    min-height: 78px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .mobile-proof__value {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--ink);
  }
  .mobile-proof__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
    line-height: 1.1;
  }
  .mobile-proof__tile--blue .mobile-proof__value { color: #2F9BFF; }
  .mobile-proof__tile--green .mobile-proof__value { color: #17C964; }
  .mobile-proof__tile--purple .mobile-proof__value { color: #9333FF; }
  .mobile-proof__tile--purple > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .mobile-proof__dispatch {
    flex: 1;
    max-width: 156px;
    min-width: 132px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
  }
  .mobile-proof__dispatch-card,
  .mobile-proof__dispatch-alert {
    position: relative;
    flex: 0 0 auto;
    border-radius: 8px;
    background: #f8f9fc;
    border: 1px solid rgba(10,31,68,0.08);
    box-shadow: 0 10px 20px -18px rgba(10,31,68,0.45);
  }
  .mobile-proof__dispatch-card {
    width: 48px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #2F9BFF;
  }
  .mobile-proof__dispatch-card::before {
    content: none;
    position: absolute;
    left: 9px;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #17C964;
  }
  .mobile-proof__dispatch-card svg {
    width: 24px;
    height: 24px;
    display: block;
  }
  .mobile-proof__dispatch-arrow {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #9333FF;
  }
  .mobile-proof__dispatch-arrow svg {
    width: 22px;
    height: 22px;
  }
  .mobile-proof__dispatch-alert {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #9333FF;
  }
  .mobile-proof__dispatch-alert::before {
    content: "";
    position: absolute;
    top: 7px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #17C964;
    box-shadow: 0 0 0 4px rgba(23,201,100,0.11);
  }
  .mobile-proof__dispatch-alert svg {
    width: 24px;
    height: 24px;
    display: block;
  }
  .sp-ticker-wrap {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 26px;
    padding-top: 18px;
  }
  .sp-ticker-label {
    display: block;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.42);
    font-size: 10.5px;
  }
  .sp-ticker__track { animation-duration: 16s; }
  .sp-ticker__name {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    padding: 0 12px;
  }
  .sp-ticker__dot {
    color: rgba(255,255,255,0.26);
  }

  /* Mobile-only how-it-works: setup to production */
  #how-it-works {
    padding: 72px 0;
    background-color: #fafaf7;
    background-image: radial-gradient(circle, rgba(15,23,42,0.07) 1px, transparent 1px);
    background-size: 22px 22px;
  }
  #how-it-works .container { padding: 0 20px; }
  .hiw-layout { display: none; }
  .mobile-hiw { display: block; }
  .mobile-section-kicker {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .mobile-section-title {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    font-size: clamp(34px, 9.5vw, 46px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
    text-wrap: balance;
  }
  .mobile-section-copy {
    font-size: 16px;
    line-height: 1.55;
    color: var(--slate);
    margin: 16px 0 28px;
  }
  .mobile-hiw__steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
  }
  .mobile-hiw__step {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(10,31,68,0.1);
    border-radius: 8px;
    box-shadow: 0 18px 40px -28px rgba(10,31,68,0.42);
    padding: 18px;
    overflow: hidden;
  }
  .mobile-hiw__visual {
    height: 118px;
    border-radius: 6px;
    background:
      linear-gradient(135deg, rgba(47,155,255,0.11), rgba(147,51,255,0.09)),
      #f8f9fc;
    border: 1px solid rgba(10,31,68,0.08);
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
  }
  .mobile-hiw__step--brief .mobile-hiw__visual {
    height: 140px;
  }
  .mobile-hiw__index {
    display: block;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .mobile-hiw__step h3 {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    font-size: 23px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 10px;
  }
  .mobile-hiw__step p {
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--slate);
    margin: 0;
  }
  .mobile-hiw-profile {
    width: calc(100% - 34px);
    max-width: 278px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 13px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(10,31,68,0.12);
  }
  .mobile-hiw-profile__top {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
  }
  .mobile-hiw-profile__top span {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(47,155,255,0.1);
    position: relative;
  }
  .mobile-hiw-profile__top span::before,
  .mobile-hiw-profile__top span::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    height: 2px;
    border-radius: 2px;
    background: #2F9BFF;
  }
  .mobile-hiw-profile__top span::before { top: 8px; }
  .mobile-hiw-profile__top span::after { bottom: 8px; }
  .mobile-hiw-profile__top strong {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .mobile-hiw-profile__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
  .mobile-hiw-profile__grid span {
    min-height: 28px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
    border-radius: 6px;
    background: #f8f9fc;
    border: 1px solid rgba(10,31,68,0.06);
    color: var(--slate);
    font-size: 10.5px;
    font-weight: 800;
    white-space: nowrap;
  }
  .mobile-hiw-profile__grid span::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #2F9BFF;
  }
  .mobile-hiw-profile__grid span:nth-child(1)::before { background: #17C964; }
  .mobile-hiw-profile__grid span:nth-child(2)::before { background: var(--ink); }
  .mobile-hiw-profile__grid span:nth-child(4)::before { background: #9333FF; }
  .mobile-hiw-builder {
    position: absolute;
    inset: 0;
  }
  .mobile-hiw-builder__node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    animation: mobileNodePulse 2.8s ease-in-out infinite;
  }
  .mobile-hiw-builder__node--green { left: 30px; top: 42px; background: #17C964; }
  .mobile-hiw-builder__node--blue { left: calc(50% - 16px); top: 24px; background: #2F9BFF; animation-delay: 180ms; }
  .mobile-hiw-builder__node--purple { right: 30px; top: 62px; background: #9333FF; animation-delay: 360ms; }
  .mobile-hiw-builder__path {
    position: absolute;
    height: 2px;
    background: rgba(10,31,68,0.22);
    transform-origin: left center;
  }
  .mobile-hiw-builder__path--one {
    left: 58px;
    top: 54px;
    width: calc(50% - 62px);
    transform: rotate(-13deg);
  }
  .mobile-hiw-builder__path--two {
    left: 50%;
    top: 46px;
    width: calc(50% - 58px);
    transform: rotate(17deg);
  }
  .mobile-hiw-route {
    position: absolute;
    inset: 0;
  }
  .mobile-hiw-route__phone {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--ink);
    position: absolute;
    left: 22px;
    top: 32px;
  }
  .mobile-hiw-route__phone::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 2px solid #ffffff;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(25deg);
  }
  .mobile-hiw-route__line {
    position: absolute;
    left: 76px;
    right: 100px;
    top: 58px;
    height: 2px;
    background: rgba(10,31,68,0.2);
  }
  .mobile-hiw-route__line::after {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2F9BFF;
    animation: mobileRouteMove 2.4s ease-in-out infinite;
  }
  .mobile-hiw-route__summary {
    position: absolute;
    right: 18px;
    top: 26px;
    width: 88px;
    padding: 14px 12px;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(10,31,68,0.12);
  }
  .mobile-hiw-route__summary i {
    display: block;
    height: 7px;
    border-radius: 99px;
    background: rgba(10,31,68,0.18);
  }
  .mobile-hiw-route__summary i + i { margin-top: 8px; }
  .mobile-hiw-route__summary i:nth-child(2) { width: 72%; }
  .mobile-hiw-route__summary i:nth-child(3) { width: 48%; background: #17C964; }

  /* Mobile-only features replacement: comparison */
  #features {
    padding: 72px 0;
    background-color: #0A1F44;
    background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 22px 22px;
  }
  #features .container { padding: 0 20px; }
  .feat-layout { display: none; }
  .mobile-compare { display: block; }
  #features .mobile-section-kicker { color: rgba(196, 181, 253, 0.88); }
  #features .mobile-section-title {
    color: #ffffff;
    margin-bottom: 28px;
  }
  .mobile-compare__stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mobile-compare__panel {
    border-radius: 8px;
    padding: 20px 18px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 48px -30px rgba(0,0,0,0.6);
  }
  .mobile-compare__panel--new {
    border-color: transparent;
    background:
      linear-gradient(rgba(255,255,255,0.96), rgba(255,255,255,0.96)) padding-box,
      linear-gradient(135deg, #17C964 0%, #2F9BFF 48%, #9333FF 100%) border-box;
    box-shadow: 0 20px 48px -30px rgba(0,0,0,0.6);
  }
  .mobile-compare__panel h3 {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 16px;
  }
  .mobile-compare__panel ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
  }
  .mobile-compare__panel li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15.5px;
    line-height: 1.35;
    color: var(--slate);
  }
  .mobile-compare__vs {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #9333FF;
    box-shadow: 0 0 0 1px rgba(147,51,255,0.2);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .mobile-compare__logo {
    display: block;
    width: min(210px, 78%);
    height: auto;
    margin: 0 0 18px;
  }
  .mobile-compare__sad,
  .mobile-compare__check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    position: relative;
  }
  .mobile-compare__sad::before,
  .mobile-compare__sad::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 2px;
    width: 2px;
    height: 16px;
    border-radius: 2px;
    background: #f87171;
  }
  .mobile-compare__sad::before { transform: rotate(45deg); }
  .mobile-compare__sad::after { transform: rotate(-45deg); }
  .mobile-compare__check::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 8px;
    height: 14px;
    border: solid #17C964;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
  }

  /* Mobile pricing: simple quote model */
  #pricing {
    scroll-margin-top: 92px;
    padding: 68px 0 38px;
    background-color: #fafaf7;
    background-image: radial-gradient(circle, rgba(15,23,42,0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    border-top: 0;
    overflow: hidden;
  }
  #pricing .container { padding: 0 20px; }
  #pricing > .container > .section__label,
  #pricing > .container > .pricing__h2,
  #pricing > .container > .pricing__body,
  #pricing > .container > .pricing__cta {
    display: none;
  }
  .mobile-pricing {
    display: block;
    color: var(--ink);
  }
  #pricing .mobile-section-kicker {
    color: var(--ink);
  }
  #pricing .mobile-section-title {
    color: var(--ink);
    max-width: 365px;
  }
  #pricing .mobile-section-copy {
    color: var(--slate);
    margin: 14px 0 22px;
    max-width: 355px;
  }
  .mobile-pricing__panel {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(10,31,68,0.1);
    border-radius: 8px;
    box-shadow: 0 20px 48px -34px rgba(10,31,68,0.55);
    padding: 20px 18px 18px;
    text-align: left;
  }
  .mobile-pricing__panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #17C964 0%, #2F9BFF 50%, #9333FF 100%);
  }
  .mobile-pricing__summary {
    padding: 9px 0 18px;
    border-bottom: 1px solid rgba(10,31,68,0.1);
  }
  .mobile-pricing__summary h3 {
    margin: 0;
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
  }
  .mobile-pricing__summary p {
    margin: 10px 0 0;
    color: var(--slate);
    font-size: 15.5px;
    line-height: 1.55;
  }
  .mobile-pricing__factors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 15px;
    border: 1px solid rgba(10,31,68,0.08);
    border-radius: 7px;
    overflow: hidden;
  }
  .mobile-pricing__factors span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 0 5px;
    border-radius: 0;
    background: #f8f9fc;
    border-right: 1px solid rgba(10,31,68,0.08);
    color: var(--ink);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-align: center;
  }
  .mobile-pricing__factors span:last-child { border-right: 0; }
  .mobile-pricing__factors span::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #17C964;
    margin-right: 6px;
  }
  .mobile-pricing__factors span:nth-child(2)::before { background: #2F9BFF; }
  .mobile-pricing__factors span:nth-child(3)::before { background: #9333FF; }
  .mobile-pricing__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
  }
  .mobile-pricing__details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .mobile-pricing__details li > span {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 0;
  }
  .mobile-pricing__details li > span::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 7px;
    height: 13px;
    border: solid #17C964;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
  }
  .mobile-pricing__details strong {
    display: block;
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .mobile-pricing__details p {
    margin: 5px 0 0;
    color: var(--slate);
    font-size: 14.5px;
    line-height: 1.5;
  }
  .mobile-pricing__cta {
    width: 100%;
    min-height: 52px;
    margin-top: 16px;
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 16px 30px -22px rgba(47,155,255,0.9);
  }
  .mobile-pricing__cta:hover {
    background: #2389e8;
    color: #ffffff;
    border-color: #2389e8;
  }

  /* Mobile FAQ: utility-first accordion */
  #faq {
    padding: 42px 0;
    background-color: #fafaf7;
    background-image: radial-gradient(circle, rgba(15,23,42,0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    border-top: 0;
  }
  #faq .container { padding: 0 20px; }
  .faq__layout {
    display: block;
  }
  .faq__left {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 26px;
  }
  .faq__left .section__label {
    color: var(--accent);
    margin-bottom: 12px;
  }
  .faq__h2 {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .faq__sub {
    font-size: 15.5px;
    line-height: 1.5;
    max-width: 300px;
  }
  .faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 0;
  }
  .faq__item {
    border: 1px solid rgba(10,31,68,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 40px -32px rgba(10,31,68,0.5);
    overflow: hidden;
  }
  .faq__trigger {
    min-height: 62px;
    padding: 16px 16px;
    gap: 18px;
    font-size: 16px;
    line-height: 1.2;
  }
  .faq__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(47,155,255,0.1);
    color: var(--accent);
  }
  .faq__icon::before { width: 12px; height: 2px; }
  .faq__icon::after { width: 2px; height: 12px; }
  .faq__panel-inner {
    padding: 0 16px 18px;
  }
  .faq__a {
    font-size: 15px;
    line-height: 1.58;
  }

  /* Mobile final CTA */
  .final {
    padding: 72px 0 46px;
    background-color: #0A1F44;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    text-align: center;
  }
  .final .container {
    padding: 0 20px;
  }
  .final__inner {
    padding: 0;
    text-align: center;
    overflow: visible;
  }
  .final__h2 {
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .final__sub {
    max-width: 320px;
    margin: 0 auto 24px;
    font-size: 15.5px;
    line-height: 1.5;
  }
  .final__cta {
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
  .final__cta .btn--primary {
    width: 100%;
    min-height: 50px;
    font-weight: 700;
  }
  .final__cta .btn--secondary { display: none; }

}
