/* ===== extracted from <style> ===== */
/* Critical header survives outdated/missing style.css on cPanel */
      body.has-top-promo-bar.page-mobile-application .top-promo-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 210;
        background: linear-gradient(
          90deg,
          #0f123c 0%,
          #454da1 45%,
          #5c65b8 100%
        );
        color: #fff;
        font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
          sans-serif;
        font-size: 12px;
        font-weight: 600;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 5px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__offer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex: 1;
        min-width: 0;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__badge {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        padding: 4px 12px;
        border-radius: 6px;
        background: var(--green);
        color: #fff;
        border: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        white-space: nowrap;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__sep {
        margin: 0 0.15em;
        opacity: 0.85;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__cta-link {
        color: #6ee7b7;
        font-weight: 800;
        font-size: 13px;
        text-decoration: none;
        white-space: nowrap;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__cta-link:hover {
        color: #a7f3d0;
        text-decoration: underline;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__text {
        margin: 0;
        white-space: nowrap;
        font-weight: 600;
        line-height: 1.2;
        font-size: 12px;
      }

      /* Short offer line is mobile-only */
      body.has-top-promo-bar.page-mobile-application .top-promo-bar__text--mobile {
        display: none;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__cta {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        padding: 5px 12px;
        border-radius: 5px;
        background: #16a34a;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__contact {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.95);
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
      }

      body.has-top-promo-bar.page-mobile-application .top-promo-bar__link i {
        color: var(--turquoise);
        opacity: 1;
      }

      /* Install Growth OS popup logo-design.html only */
      button.nav-cta {
        border: none;
        cursor: pointer;
        font-family: inherit;
      }

      .gos-install-overlay {
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: rgba(26, 26, 46, 0.55);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        opacity: 0;
        visibility: hidden;
        transition:
          opacity 0.35s ease,
          visibility 0.35s ease;
      }

      .gos-install-overlay.open {
        opacity: 1;
        visibility: visible;
      }

      .gos-install-modal {
        position: relative;
        width: 100%;
        max-width: 520px;
        max-height: min(90vh, 720px);
        overflow-y: auto;
        background: var(--white);
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-light);
        transform: translateY(16px) scale(0.98);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .gos-install-overlay.open .gos-install-modal {
        transform: translateY(0) scale(1);
      }

      .gos-install-modal::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--midnight), var(--turquoise));
        border-radius: 16px 16px 0 0;
      }

      .gos-install-close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: none;
        background: var(--lavender);
        color: var(--midnight);
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        z-index: 2;
        transition: background 0.2s ease;
      }

      .gos-install-close:hover {
        background: var(--lavender-mid);
      }

      .gos-install-modal .form-card {
        margin: 0;
        box-shadow: none;
        border-radius: 16px;
        padding: 32px 28px 28px;
      }

      .gos-form-step {
        display: none;
      }

      .gos-form-step.active {
        display: block;
      }

      .gos-install-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 8px;
        flex-wrap: wrap;
      }

      .gos-install-actions .back-btn {
        margin-top: 0;
      }

      .gos-install-actions .next-btn,
      .gos-install-actions .form-submit {
        margin-top: 0;
        margin-left: auto;
      }

      /* Lead popup same as hero banner form */
      .lead-popup-overlay {
        position: fixed;
        inset: 0;
        z-index: 1001;
        background: rgba(26, 26, 46, 0.55);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        opacity: 0;
        visibility: hidden;
        transition:
          opacity 0.35s ease,
          visibility 0.35s ease;
      }

      .lead-popup-overlay.open {
        opacity: 1;
        visibility: visible;
      }

      .lead-popup-modal {
        position: relative;
        width: 100%;
        max-width: 430px;
        max-height: min(92vh, 820px);
        overflow-y: auto;
        transform: translateY(16px) scale(0.98);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .lead-popup-overlay.open .lead-popup-modal {
        transform: translateY(0) scale(1);
      }

      .lead-popup-modal .hero-banner-form {
        max-width: none;
        width: 100%;
        margin: 0;
      }

      .lead-popup-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: none;
        background: var(--lavender);
        color: var(--midnight);
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        z-index: 3;
        transition: background 0.2s ease;
      }

      .lead-popup-close:hover {
        background: var(--lavender-mid);
      }

      /* Fixed right rail gradient + green border (same as logo-design-v2) */
      .side-rail {
        --side-rail-tab-w: 56px;
        --side-rail-tab-h: 58px;
        --side-rail-accent: linear-gradient(180deg, var(--midnight), var(--turquoise));
        --side-rail-accent-hover: linear-gradient(180deg, var(--midnight), var(--turquoise));
        --side-rail-accent-shadow: none;
        --side-rail-accent-shadow-hover: 0 6px 18px rgba(69, 77, 161, 0.32);
        --side-rail-drawer-panel-w: min(300px, calc(100vw - 72px));
        --side-rail-border: 2.5px solid #1aad50;
        position: fixed;
        right: 0;
        top: 26%;
        z-index: 190;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        pointer-events: none;
      }

      .side-rail__block {
        pointer-events: auto;
        flex-shrink: 0;
      }

      /* Shared face width chat, phone, consultancy tab */
      .side-rail__tab-face {
        width: var(--side-rail-tab-w);
        min-width: var(--side-rail-tab-w);
        max-width: var(--side-rail-tab-w);
        flex: 0 0 var(--side-rail-tab-w);
        box-sizing: border-box;
        background: var(--side-rail-accent);
        box-shadow: var(--side-rail-accent-shadow);
        border: var(--side-rail-border);
        border-right: none;
        border-radius: 16px 0 0 16px;
      }

      .side-rail__pill {
        display: flex;
        align-items: center;
        overflow: hidden;
        height: var(--side-rail-tab-h);
        transition:
          box-shadow 0.3s ease,
          transform 0.2s ease,
          max-width 0.35s ease;
      }

      .side-rail__block--phone a.side-rail__pill,
      .side-rail__block--phone a.side-rail__pill *,
      .side-rail__block--phone a.side-rail__pill:hover,
      .side-rail__block--phone a.side-rail__pill:focus,
      .side-rail__block--phone a.side-rail__pill:focus-visible {
        text-decoration: none !important;
        border-bottom: none;
        box-decoration-break: clone;
      }

      .side-rail__block--chat button.side-rail__pill {
        appearance: none;
        -webkit-appearance: none;
        padding: 0;
        margin: 0;
        font: inherit;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        text-align: left;
        background: var(--side-rail-accent);
        box-shadow: var(--side-rail-accent-shadow);
        border: var(--side-rail-border);
        border-right: none;
        border-radius: 16px 0 0 16px;
      }

      .side-rail__block--chat button.side-rail__pill:hover,
      .side-rail__block--chat button.side-rail__pill:focus,
      .side-rail__block--chat button.side-rail__pill:focus-visible {
        text-decoration: none;
        color: inherit;
      }

      .side-rail__block--phone a.side-rail__pill:hover,
      .side-rail__block--phone a.side-rail__pill:focus,
      .side-rail__block--phone a.side-rail__pill:focus-visible {
        color: inherit;
      }

      .side-rail__block--hover:hover .side-rail__pill,
      .side-rail__block--phone:hover .side-rail__pill,
      .side-rail__block--phone:focus-within .side-rail__pill {
        max-width: none;
        flex: 0 1 auto;
        width: auto;
      }

      .side-rail__block--hover:hover .side-rail__pill,
      .side-rail__block--phone:hover .side-rail__pill,
      .side-rail__block--phone:focus-within .side-rail__pill,
      .side-rail__block--chat:hover .side-rail__pill,
      .side-rail__block--chat:focus-within .side-rail__pill {
        box-shadow: var(--side-rail-accent-shadow-hover);
      }

      .side-rail__icon-btn {
        width: var(--side-rail-tab-w);
        height: var(--side-rail-tab-h);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
        text-decoration: none;
      }

      .side-rail__icon-btn i {
        display: block;
        line-height: 1;
        pointer-events: none;
      }

      .side-rail__expand {
        display: flex;
        align-items: center;
        max-width: 0;
        opacity: 0;
        overflow: hidden;
        white-space: nowrap;
        transition:
          max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
          opacity 0.22s ease,
          padding 0.35s ease;
      }

      .side-rail__sep {
        width: 1px;
        height: 26px;
        background: rgba(255, 255, 255, 0.35);
        margin: 0 14px 0 6px;
        flex-shrink: 0;
      }

      .side-rail__expand-label {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        padding-right: 18px;
        font-family: "Inter", sans-serif;
        letter-spacing: 0.01em;
      }

      .side-rail__block--hover:hover .side-rail__expand,
      .side-rail__block--hover:focus-within .side-rail__expand {
        max-width: 220px;
        opacity: 1;
      }

      .side-rail__block--phone:hover .side-rail__expand,
      .side-rail__block--phone:focus-within .side-rail__expand {
        max-width: 240px;
      }

      .side-rail__block--consult {
        position: relative;
        width: var(--side-rail-tab-w);
        flex-shrink: 0;
      }

      .side-rail__drawer-backdrop {
        position: fixed;
        inset: 0;
        z-index: 188;
        background: rgba(20, 20, 42, 0.35);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
          opacity 0.35s ease,
          visibility 0.35s ease;
      }

      .side-rail__block--consult.is-open .side-rail__drawer-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      /* Form + badge slide together as one drawer */
      .side-rail__consult-wrap {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        width: calc(var(--side-rail-tab-w) + var(--side-rail-drawer-panel-w));
        transform: translateX(var(--side-rail-drawer-panel-w));
        transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
        will-change: transform;
        z-index: 191;
      }

      .side-rail__block--consult.is-open .side-rail__consult-wrap {
        transform: translateX(0);
      }

      .side-rail__consult-tab {
        color: #fff;
        padding: 12px 0;
        height: auto;
        align-self: flex-start;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: box-shadow 0.3s ease;
      }

      .side-rail__consult-tab-label {
        display: block;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        white-space: nowrap;
        font-family: "Inter", sans-serif;
        line-height: 1.2;
      }

      .side-rail__block--consult.is-open .side-rail__consult-tab {
        box-shadow: var(--side-rail-accent-shadow-hover);
      }

      .side-rail__block--consult:not(.is-open) .side-rail__consult-wrap {
        pointer-events: none;
      }

      .side-rail__block--consult:not(.is-open) .side-rail__consult-tab {
        pointer-events: auto;
      }

      .side-rail__block--consult.is-open .side-rail__consult-wrap {
        pointer-events: auto;
      }

      button.side-rail__consult-tab {
        cursor: pointer;
        font-family: inherit;
      }

      .side-rail__consult-panel {
        position: relative;
        flex-shrink: 0;
        width: var(--side-rail-drawer-panel-w);
        max-height: min(85vh, 520px);
        overflow-y: auto;
        padding: 28px 22px 22px;
        background: var(--white);
        border: 1px solid var(--border-light);
        border-right: none;
        box-shadow: -12px 0 40px rgba(69, 77, 161, 0.18);
        border-radius: 10px 0 0 10px;
      }

      .side-rail__consult-panel::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--side-rail-accent);
        border-radius: 10px 0 0 0;
        z-index: 1;
      }

      .side-rail__form-title {
        font-family: "Playfair Display", Georgia, serif;
        font-size: 17px;
        font-weight: 500;
        color: var(--ink);
        line-height: 1.2;
        margin: 0 0 18px;
        padding-right: 8px;
        white-space: nowrap;
      }

      .side-rail__form-title em {
        font-style: italic;
        font-weight: 400;
        color: var(--midnight);
      }

      .side-rail__form .sr-field {
        width: 100%;
        background: var(--lav);
        border: 1.5008px solid var(--bd);
        border-radius: 8px;
        padding: 11px 14px;
        margin-bottom: 10px;
        font-size: 14.5008px;
        font-family: "Inter", sans-serif;
        color: var(--ink);
        outline: none;
        transition:
          border-color 0.2s,
          background 0.2s,
          box-shadow 0.2s;
      }

      .side-rail__form .sr-field::placeholder {
        color: #b0b0c4;
      }

      .side-rail__form .sr-field:focus {
        border-color: var(--midnight);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(69, 77, 161, 0.07);
      }

      .side-rail__form select.sr-field {
        appearance: none;
        cursor: pointer;
        padding-right: 36px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237878a0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        color: var(--ink);
      }

      .side-rail__form select.sr-field:invalid {
        color: #b0b0c4;
      }

      .side-rail__form select.sr-field:focus,
      .side-rail__form select.sr-field option {
        color: var(--ink, #10132b);
      }

      .side-rail__form select.sr-field option[disabled] {
        color: #b0b0c4;
      }

      .side-rail__form-foot {
        font-size: 12px;
        color: var(--muted);
        text-align: center;
        margin: 12px 0 0;
        line-height: 1.45;
      }

      .side-rail__submit {
        width: 100%;
        padding: 12px 16px;
        border: none;
        border-radius: 10px;
        background: var(--side-rail-accent);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        font-family: "Inter", sans-serif;
        cursor: pointer;
        box-shadow: var(--side-rail-accent-shadow);
        transition:
          background 0.2s ease,
          transform 0.2s ease,
          box-shadow 0.3s ease;
      }

      .side-rail__submit:hover {
        background: var(--side-rail-accent-hover);
        transform: translateY(-2px);
        box-shadow: var(--side-rail-accent-shadow-hover);
      }

      .side-rail__form-note {
        display: none;
        font-size: 13px;
        color: var(--green);
        font-weight: 600;
        text-align: center;
        margin-top: 10px;
      }

      .side-rail__form.is-sent .side-rail__form-title,
      .side-rail__form.is-sent .side-rail__form-fields,
      .side-rail__form.is-sent .side-rail__form-foot {
        display: none;
      }

      .side-rail__form.is-sent .side-rail__form-note {
        display: block;
      }

      @media (max-width: 768px) {
        .side-rail {
          --side-rail-tab-w: 40px;
          --side-rail-tab-h: 40px;
        }

        .side-rail__icon-btn {
          font-size: 18px;
        }

        .side-rail__block--consult {
          --side-rail-consult-tab-w: 40px;
          width: var(--side-rail-consult-tab-w);
        }

        .side-rail__consult-wrap {
          width: calc(var(--side-rail-consult-tab-w) + var(--side-rail-drawer-panel-w));
        }

        .side-rail__consult-tab {
          padding: 10px 0;
          width: var(--side-rail-consult-tab-w);
          min-width: var(--side-rail-consult-tab-w);
          max-width: var(--side-rail-consult-tab-w);
          flex: 0 0 var(--side-rail-consult-tab-w);
        }

        .side-rail__consult-tab-label {
          font-size: 10px;
        }
      }

      body.has-top-promo-bar.page-mobile-application {
        --hero-nav-clearance: 154px;
      }

      /* Hero banner background web design and development v2 */
      body.has-top-promo-bar.page-mobile-application .hero {
        position: relative;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        padding: var(--hero-nav-clearance) 56px 18px;
        box-sizing: border-box;
        overflow: visible;
        background-color: #0f123c;
      }

      body.has-top-promo-bar.page-mobile-application .hero-bg-video {
        position: absolute;
        inset: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 42%;
        pointer-events: none;
      }

      body.has-top-promo-bar.page-mobile-application .hero-bg-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(45deg, #000, transparent);
        pointer-events: none;
      }

      body.has-top-promo-bar.page-mobile-application .hero-inner {
        position: relative;
        z-index: 3;
        width: 100%;
        flex: 0 0 auto;
        margin: 0 auto;
      }

      body.has-top-promo-bar.page-mobile-application .hero::before,
      body.has-top-promo-bar.page-mobile-application .hero::after {
        display: none;
      }

      body.has-top-promo-bar.page-mobile-application .hero-badge {
        background: var(--turquoise);
        border-color: var(--turquoise);
        color: #000;
        margin-left: 0;
      }

      body.has-top-promo-bar.page-mobile-application .hero-copy {
        margin-left: -44px;
      }

      body.has-top-promo-bar.page-mobile-application .hero-badge .dot {
        background: #000;
        animation: none;
      }

      /* Hero banner heading 2 lines (logo-design-v1) */
      body.has-top-promo-bar.page-mobile-application .hero-copy h1 {
        font-size: clamp(34px, 4vw, 54px);
        display: flex;
        flex-direction: column;
        gap: 0;
        line-height: 1.12;
        color: #fff;
      }

      body.has-top-promo-bar.page-mobile-application .hero-h1-line {
        display: block;
        color: #fff;
      }

      body.has-top-promo-bar.page-mobile-application .hero-h1-line--bottom {
        font-size: inherit;
      }

      body.has-top-promo-bar.page-mobile-application .hero-h1-line em,
      body.has-top-promo-bar.page-mobile-application .hero-h1-line--bottom em {
        font-style: italic;
        font-weight: 400;
        color: #1fdce5;
      }

      body.has-top-promo-bar.page-mobile-application .hero-sub {
        color: #fff;
        margin-bottom: 20px;
      }

      body.has-top-promo-bar.page-mobile-application .hero-sub strong {
        color: #fff;
        font-weight: 700;
      }

      body.has-top-promo-bar.page-mobile-application .hero-actions {
        margin-bottom: 16px;
      }

      body.has-top-promo-bar.page-mobile-application .hero-actions .btn-ghost {
        color: #fff;
        border-bottom-color: rgba(255, 255, 255, 0.45);
      }

      body.has-top-promo-bar.page-mobile-application .hero-actions .btn-ghost:hover {
        color: #1fdce5;
        border-bottom-color: rgba(31, 220, 229, 0.65);
      }

      /* Hero form badge sit past �website�, flush right without clipping */
      body.has-top-promo-bar.page-mobile-application .hero {
        overflow: visible;
      }

      body.has-top-promo-bar.page-mobile-application .hero-inner,
      body.page-mobile-application .hero-inner {
        overflow: visible;
      }

      body.page-mobile-application .hero-visual {
        max-width: 480px;
        overflow: visible;
        position: relative;
        z-index: 5;
      }

      body.page-mobile-application .lead-form.lead-form--hero-v2 {
        overflow: visible;
        position: relative !important;
        padding: 22px 18px 18px;
        gap: 11px;
      }

      body.page-mobile-application .lead-form.lead-form--hero-v2 > form {
        gap: 9px;
      }

      body.page-mobile-application .lead-form.lead-form--hero-v2 .lead-form__title {
        margin-bottom: 6px;
      }

      body.page-mobile-application .lead-form.lead-form--hero-v2 .lead-form__input-shell .lead-form__input {
        min-height: 48px;
        padding: 12px 12px 12px 38px;
      }

      body.page-mobile-application .lead-form.lead-form--hero-v2 .lead-form__submit {
        padding: 16px 24px;
        margin-top: 2px;
      }

      body.page-mobile-application .lead-form.lead-form--hero-v2 .lead-form__guarantees--bar {
        margin-top: 4px;
        padding: 12px 0 6px;
      }

      body.page-mobile-application .lead-form.lead-form--hero-v2 .hero-float {
        position: absolute !important;
        top: -10px !important;
        left: calc(100% - 88px) !important;
        right: auto !important;
        transform: none !important;
        margin: 0;
        padding: 9px 14px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
        box-shadow: 0 8px 22px rgba(69, 77, 161, 0.12);
        white-space: nowrap;
        width: max-content;
        max-width: none;
        z-index: 6;
      }

      body.page-mobile-application .lead-form.lead-form--hero-v2 .lead-form__head {
        padding-right: 0;
      }

      body.has-top-promo-bar.page-mobile-application .hero-industries {
        margin-top: 0;
        margin-bottom: 24px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        max-width: min(100%, 560px);
      }

      body.page-mobile-application .hero-industries .ind-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 100px;
        padding: 8px 14px;
        font-size: 13px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.92);
        box-shadow: none;
        white-space: nowrap;
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
      }

      body.page-mobile-application .hero-industries .ind-tag::before {
        content: none;
        display: none;
      }

      /* Trust row sits on the dark hero video keep text readable */
      body.page-mobile-application .hero-trust {
        margin-top: 6px;
        margin-bottom: 22px;
      }

      body.page-mobile-application .hero-trust-face {
        border-color: rgba(255, 255, 255, 0.85);
      }

      body.page-mobile-application .hero-trust-text {
        color: rgba(255, 255, 255, 0.82);
      }

      body.page-mobile-application .hero-trust-text strong {
        color: #fff;
        font-weight: 600;
      }

      html {
        scroll-behavior: smooth;
      }

      body.page-mobile-application #get-matched {
        scroll-margin-top: 110px;
      }

      body.page-mobile-application .portfolio-section {
        padding-top: 88px;
      }

      body.page-mobile-application-v2 .portfolio-rows {
        gap: 36px;
      }

      body.page-mobile-application-v2 .portfolio-track {
        gap: 32px;
      }

      body.page-mobile-application-v2 .portfolio-row.right .portfolio-track {
        padding-left: 156px;
      }

      /* Testimonials � text only (no video / portfolio column) */
      body.page-mobile-application-v2 #testimonials .testi-video {
        display: none !important;
      }

      body.page-mobile-application-v2 #testimonials .testi-card {
        width: 360px;
        min-height: auto;
        align-items: stretch;
      }

      body.page-mobile-application-v2 #testimonials .testi-content {
        justify-content: flex-start;
        padding: 24px 26px;
      }

      body.page-mobile-application-v2 #testimonials .testi-author {
        margin-top: auto;
        padding-top: 14px;
      }

      @media (max-width: 640px) {
        body.page-mobile-application-v2 #testimonials .testi-card {
          width: min(88vw, 340px);
        }
      }

      /* Main packages card styles from design-services.css (logo-and-branding match) */
      body.page-mobile-application #pricing {
        padding-bottom: 28px;
      }

      body.page-mobile-application #pricing-2 {
        padding-top: 36px;
      }

      #pricing .pricing-inner > .chip.r {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        text-align: center;
      }

      #pricing .pricing-inner > h2.r {
        text-align: center;
        max-width: 680px;
        margin-right: auto;
      }

      #pricing .pricing-inner > p.sec-sub.r {
        text-align: center;
        max-width: 625px;
        margin-right: auto;
        margin-bottom: 36px;
      }

      /* Pricing #2 match logo-design-v2 addon card layout */
      #pricing-2 {
        --addon-price-pad-top: 62px;
        --addon-price-pad-right: 80px;
        --addon-price-to-image: 16px;
      }

      #pricing-2 .pricing-inner > .chip.r {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        text-align: center;
      }

      #pricing-2 .pricing-inner > h2.r {
        text-align: center;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
      }

      #pricing-2 .pricing-inner > p.sec-sub.r {
        text-align: center;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 36px;
      }

      body.page-mobile-application #pricing-2 .pricing-inner {
        max-width: 1320px;
        padding-left: 8px;
        padding-right: 8px;
      }

      /* Pricing #2 + website add-ons */
      #pricing-2 .p-badges-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 14px;
      }

      #pricing-2 .p-badge-tier {
        display: none;
      }

      #pricing-2 .p-badge-save {
        display: none;
      }

      #pricing-2 .p-label-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 3;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #166534;
        background: #dcfce7;
        padding: 5px 11px;
        border-radius: 100px;
        line-height: 1.2;
      }

      #pricing-2 .p-card.featured .p-price-tag__from {
        color: rgba(255, 255, 255, 0.72);
      }

      #pricing-2 .p-card.featured .p-price-tag__amount {
        color: #fff;
      }

      #pricing-2 .p-price-tag__line {
        display: block;
        width: 100%;
        height: 2px;
        /* margin-top: 6px; */
        background: transparent url("/assets/images/pricing-price-line.svg") no-repeat left center / 100% 100%;
      }

      #pricing-2 .p-card.featured .p-price-tag__line {
        background-image: url("/assets/images/pricing-price-line-turquoise.svg");
      }

      #pricing-2 .p-card.featured .p-label-badge {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
      }

      #pricing-2 .p-kit-head {
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
        margin-bottom: 12px;
        line-height: 1.35;
      }

      #pricing-2 .p-card.featured .p-kit-head {
        color: rgba(255, 255, 255, 0.65);
      }

      #pricing-2 .p-card.featured .pb-green,
      #pricing-2 .addon-grid .p-card.featured .pb-green {
        background: var(--turquoise);
        color: var(--mid);
        border: none;
        font-weight: 700;
        box-shadow: none;
      }

      #pricing-2 .p-card.featured .pb-green:hover,
      #pricing-2 .addon-grid .p-card.featured .pb-green:hover {
        background: #1ec9d8;
        color: var(--mid);
      }

      #pricing-2 .addon-cat {
        font-family: "Inter", sans-serif;
        font-size: clamp(17px, 1.5vw, 20px);
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--mid);
        margin: 36px 0 18px;
        line-height: 1.25;
      }

      #pricing-2 .addon-cat:first-of-type {
        margin-top: 4px;
      }

      #pricing-2 .addon-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        margin-bottom: 4px;
        align-items: stretch;
        --addon-img-size: clamp(188px, 18vw, 228px);
      }

      #pricing-2 .addon-grid .p-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        background: #fff;
        border: 1px solid rgba(69, 77, 161, 0.1);
        border-radius: 16px;
        padding: 0;
        box-shadow: 0 8px 28px rgba(69, 77, 161, 0.08);
        overflow: hidden;
        transition:
          background 0.25s ease,
          transform 0.25s ease,
          box-shadow 0.25s ease;
      }

      #pricing-2 .addon-grid .p-desc {
        flex: 1;
        margin-bottom: 18px;
      }

      #pricing-2 .addon-grid .p-card::before {
        display: none;
      }

      #pricing-2 .addon-grid .p-card:not(.featured):hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(69, 77, 161, 0.14);
        background: #fff;
      }

      #pricing-2 .addon-grid .p-card.featured {
        background: var(--mid);
        border-color: var(--mid);
        box-shadow: 0 14px 48px rgba(69, 77, 161, 0.35);
      }

      #pricing-2 .addon-grid .p-card.featured:hover {
        background: var(--mid);
      }

      #pricing-2 .addon-grid .p-addon-media {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 16px 12px 0;
        background: linear-gradient(180deg, #f8f9fe 0%, #ffffff 72%);
        min-height: 0;
        overflow: hidden;
        transition: background 0.25s ease;
      }

      #pricing-2 .addon-grid .p-card:not(.featured):hover .p-addon-media {
        background: linear-gradient(180deg, #f8f9fe 0%, #ffffff 72%);
      }

      #pricing-2 .addon-grid .p-card.featured .p-addon-media {
        background: transparent;
      }

      #pricing-2 .addon-grid .p-addon-media__head {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        flex-shrink: 0;
        gap: 8px;
        margin-bottom: 6px;
      }

      #pricing-2 .addon-grid .p-addon-media__head:has(.p-label-badge) {
        justify-content: space-between;
      }

      #pricing-2 .addon-grid .p-addon-media__head:has(.p-label-badge) .p-badges-row {
        margin-left: 0;
        margin-right: auto;
      }

      #pricing-2 .addon-grid .p-addon-media__head:has(.p-label-badge) .p-label-badge {
        margin-left: auto;
      }

      #pricing-2 .addon-grid .p-addon-media img {
        display: block;
        width: var(--addon-img-size);
        height: var(--addon-img-size);
        max-width: 100%;
        object-fit: contain;
        object-position: center center;
        margin: 0 auto;
        flex-shrink: 0;
        transform: none;
        filter: drop-shadow(0 6px 14px rgba(69, 77, 161, 0.12))
          drop-shadow(0 2px 6px rgba(15, 18, 60, 0.06));
      }

      #pricing-2 .addon-grid .p-addon-media:not(:has(img))::after {
        content: "";
        display: block;
        width: var(--addon-img-size);
        height: var(--addon-img-size);
        max-width: 100%;
        margin: 0 auto;
        flex-shrink: 0;
      }

      #pricing-2 .addon-grid .p-addon-body {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 8px 18px 20px;
      }

      #pricing-2 .addon-grid .p-card:has(.p-addon-media) {
        padding: 0;
        overflow: hidden;
        border-radius: 16px;
      }

      #pricing-2 .addon-grid .p-card:not(:has(.p-addon-media)) {
        position: relative;
        padding: 48px 20px 22px;
      }

      #pricing-2 .addon-grid .p-card:not(:has(.p-addon-media)) .p-badges-row {
        position: absolute;
        top: 14px;
        left: 14px;
        right: auto;
        margin: 0;
        z-index: 2;
      }

      #pricing-2 .addon-grid .p-badges-row {
        position: static;
        margin: 0;
        margin-right: auto;
        margin-left: 0;
        left: auto;
        right: auto;
        top: auto;
        align-items: flex-start;
        z-index: 2;
      }

      #pricing-2 .addon-grid .p-label-badge {
        position: static;
        font-family: "Inter", sans-serif;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 5px 12px;
        line-height: 1.2;
      }

      #pricing-2 .addon-grid .p-price-tag {
        display: inline-grid;
        grid-template-columns: max-content;
        width: max-content;
        max-width: 100%;
        align-items: start;
        justify-items: start;
        text-align: left;
        gap: 4px;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        white-space: nowrap;
      }

      #pricing-2 .addon-grid .p-price-tag__from {
        font-family: "Inter", sans-serif;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.1em;
        line-height: 1;
        text-transform: uppercase;
        color: var(--mid);
      }

      #pricing-2 .addon-grid .p-price-tag__amount {
        font-family: "Inter", sans-serif;
        font-size: clamp(28px, 2.8vw, 36px);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.02em;
        color: var(--mid);
        display: inline-block;
        width: fit-content;
      }

      #pricing-2 .addon-grid .p-price-tag__unit {
        font-size: 0.42em;
        font-weight: 700;
        letter-spacing: 0;
      }

      #pricing-2 .addon-grid .p-price-tag__amount::after {
        display: none;
      }

      #pricing-2 .addon-grid .p-card.featured .p-price-tag__line {
        background-image: url("/assets/images/pricing-price-line-turquoise.svg");
      }

      #pricing-2 .addon-grid .p-card.featured .p-price-tag__from {
        color: var(--turquoise);
      }

      #pricing-2 .addon-grid .p-card.featured .p-price-tag__amount {
        color: var(--turquoise);
      }

      #pricing-2 .addon-grid .p-addon-body .p-name {
        font-size: clamp(15px, 1.15vw, 17px);
        font-weight: 700;
        line-height: 1.25;
        margin-top: 8px;
        margin-bottom: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      #pricing-2 .addon-grid .p-btn {
        margin-top: auto;
        border-radius: 12px;
        padding: 13px 12px;
      }

      #pricing-2 .addon-grid .pb-out {
        background: #fff;
        border: 1.5px solid var(--mid);
        color: var(--mid);
      }

      #pricing-2 .addon-grid .pb-out:hover {
        background: rgba(69, 77, 161, 0.04);
        border-color: var(--mid);
        color: var(--mid);
      }

      #pricing-2 .addon-grid .p-card.featured .p-name {
        color: #fff;
      }

      #pricing-2 .addon-grid .p-card.featured .p-desc {
        color: rgba(255, 255, 255, 0.65);
      }

      #pricing-2 .addon-grid .p-desc {
        flex: 1;
        margin-bottom: 16px;
        min-height: 5.1em;
      }

      /* Hero + CTA consultation form (logo-design-v1) */
      body.has-top-promo-bar.page-mobile-application .hero-banner-form {
        max-width: 430px;
        width: 100%;
        margin-left: auto;
      }

      .cta-section .cta-banner-form {
        max-width: 100%;
        margin-left: 0;
      }

      .hero-banner-form__title {
        font-family: "Playfair Display", serif;
        font-size: clamp(26px, 3vw, 32px);
        line-height: 1.2;
        font-weight: 400;
        color: var(--black);
        margin: 0 0 10px;
        letter-spacing: -0.02em;
      }

      .hero-banner-form__title em {
        font-style: italic;
        font-weight: 400;
        color: var(--midnight);
      }

      .hero-banner-form__title-small {
        font-size: 0.65em;
      }

      .cta-banner-form .hero-banner-form__title {
        font-size: clamp(24px, 2.6vw, 34px);
        font-weight: 500;
        line-height: 1.15;
        letter-spacing: -0.2992px;
        white-space: normal;
      }

      /* CTA side mascot (form ke right, neeche aligned) */
      body.page-mobile-application .cta-section {
        overflow: visible;
      }

      body.page-mobile-application .cta-section .container {
        overflow: visible;
      }

      body.page-mobile-application .cta-form-wrap {
        position: relative;
        min-width: 0;
        max-width: 100%;
      }

      body.page-mobile-application .va-cta-decor-char {
        position: absolute;
        pointer-events: none;
        line-height: 0;
        z-index: 4;
      }

      body.page-mobile-application .va-cta-decor-char img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        mix-blend-mode: screen;
      }

      body.page-mobile-application .va-cta-decor-char--right {
        right: -58%;
        bottom: -22%;
        width: min(62%, 255px);
      }

      @media (max-width: 1100px) {
        body.page-mobile-application .va-cta-decor-char {
          display: none;
        }
      }

      @media (min-width: 1101px) {
        body.page-mobile-application .va-cta-decor-char--right {
          right: -52%;
          bottom: -18%;
          width: min(58%, 255px);
        }
      }

      .hero-banner-form__sub {
        font-size: 14px;
        line-height: 1.5;
        color: var(--muted);
        font-weight: 400;
        margin: 0 0 22px;
      }

      .hero-banner-form__field {
        width: 100%;
        background: var(--lav);
        border: 1.5008px solid var(--bd);
        border-radius: 8px;
        min-height: 44px;
        padding: 12px 15px;
        margin-bottom: 10px;
        font-size: 14.5008px;
        line-height: 1.35;
        box-sizing: border-box;
        font-family: "Inter", sans-serif;
        color: var(--ink);
        outline: none;
        transition:
          border-color 0.2s,
          background 0.2s,
          box-shadow 0.2s;
      }

      .hero-banner-form__field::placeholder {
        color: #b0b0c4;
      }

      .hero-banner-form__field:focus {
        border-color: var(--midnight);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(69, 77, 161, 0.07);
      }

      .hero-banner-form select.hero-banner-form__field {
        appearance: none;
        cursor: pointer;
        padding-right: 36px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237878a0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        color: var(--ink);
      }

      .hero-banner-form select.hero-banner-form__field:invalid {
        color: #b0b0c4;
      }

      .hero-banner-form select.hero-banner-form__field:focus,
      .hero-banner-form select.hero-banner-form__field option {
        color: var(--ink, #10132b);
      }

      .hero-banner-form select.hero-banner-form__field option[disabled] {
        color: #b0b0c4;
      }

      .hero-banner-form__submit {
        width: 100%;
        margin-top: 4px;
        margin-bottom: 0;
      }

      .hero-banner-form__foot {
        margin-top: 14px;
        margin-bottom: 0;
        font-size: 12px;
        color: var(--muted);
      }

      .hero-banner-form__foot::before {
        content: none;
      }

      .hero-banner-form.is-sent .hero-banner-form__fields,
      .hero-banner-form.is-sent .hero-banner-form__badge,
      .hero-banner-form.is-sent .hero-banner-form__title,
      .hero-banner-form.is-sent .hero-banner-form__sub {
        display: none;
      }

      .hero-banner-form__success {
        display: none;
        text-align: center;
        padding: 12px 0;
      }

      .hero-banner-form.is-sent .hero-banner-form__success {
        display: block;
      }

      /* -- Mobile responsive (logo-design-v1) -- */
      .nav-item-mobile-cta {
        display: none;
      }

      @media (max-width: 900px) {
        body.page-mobile-application {
          overflow-x: hidden;
        }

        body.has-top-promo-bar.page-mobile-application .top-promo-bar {
          padding-top: 1px;
          padding-bottom: 1px;
        }

        body.has-top-promo-bar.page-mobile-application nav {
          top: 116px;
        }

        body.has-top-promo-bar.page-mobile-application nav.scrolled {
          top: 110px;
        }

        body.has-top-promo-bar.page-mobile-application .nav-links {
          position: absolute !important;
          left: 0 !important;
          right: 0 !important;
          width: 100% !important;
          top: calc(100% + 6px) !important;
          max-height: min(70vh, calc(100dvh - 140px));
          border-radius: 14px;
        }

        body.page-mobile-application .nav-item-mobile-cta {
          display: block;
        }

        body.page-mobile-application .nav-item-mobile-cta > a {
          display: block;
          margin: 10px 14px 6px;
          padding: 14px 18px;
          border-radius: 10px;
          background: linear-gradient(
            135deg,
            var(--midnight) 0%,
            var(--turquoise) 100%
          );
          color: #fff !important;
          font-weight: 600;
          text-align: center;
        }

        body.has-top-promo-bar.page-mobile-application {
          --hero-nav-clearance: 196px;
        }

        body.has-top-promo-bar.page-mobile-application .hero {
          padding: var(--hero-nav-clearance) 20px 0;
        }

        body.has-top-promo-bar.page-mobile-application .hero-copy h1 {
          font-size: clamp(26px, 6.5vw, 36px);
        }

        /* Keep the hero heading + sub flush-left on mobile */
        body.has-top-promo-bar.page-mobile-application .hero-copy,
        body.has-top-promo-bar.page-mobile-application .hero-sub {
          text-align: left;
        }

        body.has-top-promo-bar.page-mobile-application .hero-copy h1 {
          text-align: left;
          align-items: flex-start;
        }

        body.page-mobile-application .hero-visual {
          display: block !important;
          margin-bottom: 20px;
        }

        body.page-mobile-application .hero-inner {
          gap: 32px;
        }

        body.has-top-promo-bar.page-mobile-application .hero-banner-form {
          max-width: 100%;
          margin: 0 auto;
        }

        body.page-mobile-application .hero-actions {
          flex-direction: row;
          align-items: stretch;
          gap: 10px;
          margin-bottom: 28px;
        }

        body.page-mobile-application .hero-actions .btn-green,
        body.page-mobile-application .hero-actions .btn-ghost {
          width: auto;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          text-align: center;
        }

        body.page-mobile-application .hero-industries {
          gap: 8px;
          max-width: 100%;
        }

        body.page-mobile-application .hero-industries .ind-tag {
          white-space: normal;
        }

        body.page-mobile-application .hero-strip {
          margin-left: 0 !important;
          margin-right: 0 !important;
          padding: 14px 48px 14px 20px;
        }

        body.page-mobile-application .hs-inner {
          flex-direction: column;
          align-items: stretch;
          gap: 0;
          width: 100%;
        }

        body.page-mobile-application .hs-stat {
          display: grid;
          grid-template-columns: 84px minmax(0, 1fr);
          column-gap: 14px;
          align-items: center;
          flex: none;
          width: 100%;
          min-width: 0;
          padding: 13px 0;
          border-right: none;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-mobile-application .hs-stat:last-child {
          border-bottom: none;
          padding-bottom: 0;
        }

        body.page-mobile-application .hs-num {
          min-width: 0;
          width: 84px;
          flex-shrink: 0;
          font-size: 26px;
        }

        body.page-mobile-application .hs-label {
          min-width: 0;
          font-size: 12px !important;
          line-height: 1.3;
          color: rgba(255, 255, 255, 0.55);
          text-align: left;
          white-space: nowrap;
        }

        body.page-mobile-application .hs-label br {
          display: none;
        }

        body.page-mobile-application .pricing-inner {
          padding-left: 0;
          padding-right: 0;
        }

        body.page-mobile-application .pricing-grid {
          gap: 18px;
        }

        body.page-mobile-application #pricing-2 .p-badges-row {
          gap: 6px;
        }

        body.page-mobile-application #pricing-2 .addon-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        body.page-mobile-application #pricing-2 .addon-grid .p-addon-body .p-name {
          white-space: normal;
          overflow: visible;
          text-overflow: unset;
        }

        body.page-mobile-application #pricing-2 .addon-grid .p-price-tag {
          white-space: normal;
        }

        body.page-mobile-application .portfolio-section .container {
          padding-left: 0;
          padding-right: 0;
        }

        body.page-mobile-application .cta-inner {
          gap: 32px;
        }

        body.page-mobile-application .cta-left {
          text-align: left;
        }

        body.page-mobile-application .form-perks {
          gap: 10px;
        }

        body.page-mobile-application .form-perk {
          font-size: 13px;
          padding: 11px 12px;
        }

        body.page-mobile-application #get-matched,
        body.page-mobile-application #pricing,
        body.page-mobile-application #portfolio,
        body.page-mobile-application #how-it-works,
        body.page-mobile-application #testimonials,
        body.page-mobile-application #faq {
          scroll-margin-top: 165px;
        }

        body.page-mobile-application .gos-install-modal {
          width: calc(100% - 32px);
          max-height: calc(100dvh - 32px);
          overflow-y: auto;
        }

        body.page-mobile-application .lead-popup-modal {
          width: calc(100% - 32px);
          max-height: calc(100dvh - 32px);
        }
      }

      @media (max-width: 768px) {
        body.page-mobile-application .portfolio-section {
          padding-top: 64px;
        }

        body.page-mobile-application #pricing-2 .addon-grid {
          grid-template-columns: 1fr;
          --addon-img-size: min(280px, 72vw);
        }

        body.page-mobile-application #pricing-2 .pricing-inner {
          padding-left: 0;
          padding-right: 0;
        }

        body.page-mobile-application .portfolio-section {
          padding-left: 20px;
          padding-right: 20px;
        }

        body.page-mobile-application .portfolio-row {
          -webkit-mask-image: none;
          mask-image: none;
        }

        body.page-mobile-application .portfolio-track {
          gap: 14px;
        }

        body.page-mobile-application-v2 .portfolio-track {
          gap: 14px;
        }

        body.page-mobile-application-v2 .portfolio-row.right .portfolio-track {
          padding-left: 0;
        }

        body.page-mobile-application-v2 .portfolio-rows {
          gap: 16px;
          margin: 0 -20px;
        }

        body.has-top-promo-bar.page-mobile-application .hero {
          min-height: auto;
          overflow-x: visible;
        }

        body.page-mobile-application .lead-form.lead-form--hero-v2 {
          padding: 24px 18px 20px;
        }

        body.has-top-promo-bar.page-mobile-application .hero-bg-video {
          object-position: center 30%;
        }

        body.page-mobile-application .problem-section .container,
        body.page-mobile-application .fails-section .container,
        body.page-mobile-application .solution-section .container,
        body.page-mobile-application .hiw-section .container,
        body.page-mobile-application .assistant-section .container,
        body.page-mobile-application .teams-section .container,
        body.page-mobile-application .faq-section .container,
        body.page-mobile-application .cta-section .container {
          padding-left: 0;
          padding-right: 0;
        }

        /* As seen in 2 logos per row (mobile only) */
        body.page-mobile-application .logo-bar--index .logo-bar-logos {
          display: grid;
          grid-template-columns: repeat(3, minmax(0, 1fr));
          flex-direction: row;
          align-items: center;
          justify-items: center;
          gap: 5px 10px;
          width: 100%;
        }

        body.page-mobile-application .logo-bar--index .logo-item {
          white-space: normal;
          text-align: center;
        }
      }

      @media (max-width: 576px) {
        body.has-top-promo-bar.page-mobile-application .top-promo-bar__text {
          white-space: normal;
          text-align: center;
          font-size: 10px;
          line-height: 1.35;
        }

        body.has-top-promo-bar.page-mobile-application .top-promo-bar__badge {
          font-size: 9px;
          padding: 3px 8px;
        }

        body.page-mobile-application .p-price {
          font-size: 36px;
        }

        body.page-mobile-application .quiz-card {
          padding: 22px 18px 20px;
        }

        body.page-mobile-application .hero-banner-form__title {
          font-size: 24px;
        }

        body.has-top-promo-bar.page-mobile-application .hero-copy h1 {
          font-size: clamp(24px, 6.8vw, 30px);
        }
      }

      @media (max-width: 480px) {
        body.has-top-promo-bar.page-mobile-application nav {
          top: 120px;
        }

        body.has-top-promo-bar.page-mobile-application nav.scrolled {
          top: 114px;
        }

        body.has-top-promo-bar.page-mobile-application {
          --hero-nav-clearance: 204px;
        }

        body.has-top-promo-bar.page-mobile-application .hero {
          padding: var(--hero-nav-clearance) 16px 50px;
        }

        body.page-mobile-application .ind-tag {
          font-size: 11px;
          padding: 6px 12px;
        }
      }

      /* -- Mobile: slim offer bar + tighter hero (matches logo-design) -- */
      @media (max-width: 768px) {
        /* Slim, single-line offer bar so it stops pushing the hero down */
        body.has-top-promo-bar.page-mobile-application .top-promo-bar {
          padding-bottom: 0;
        }

        body.has-top-promo-bar.page-mobile-application .top-promo-bar__inner {
          flex-wrap: nowrap;
          justify-content: center;
          align-items: center;
          padding: 6px 12px;
          gap: 8px;
        }

        body.has-top-promo-bar.page-mobile-application .top-promo-bar__offer {
          flex: 0 1 auto;
          flex-direction: row;
          flex-wrap: wrap;
          align-items: center;
          justify-content: center;
          gap: 4px 8px;
          text-align: center;
        }

        body.has-top-promo-bar.page-mobile-application .top-promo-bar__badge {
          font-size: 9px;
          padding: 3px 8px;
          letter-spacing: 0.03em;
        }

        /* Swap the long offer copy for the short mobile line */
        body.has-top-promo-bar.page-mobile-application
          .top-promo-bar__text:not(.top-promo-bar__text--mobile) {
          display: none;
        }

        body.has-top-promo-bar.page-mobile-application .top-promo-bar__text--mobile {
          display: inline;
          white-space: normal;
          text-align: center;
          line-height: 1.3;
          font-size: 11px;
        }

        body.has-top-promo-bar.page-mobile-application .top-promo-bar__cta-link {
          white-space: nowrap;
          font-size: 11px;
        }

        /* Drop the phone / live-chat row on mobile to keep the bar slim */
        body.has-top-promo-bar.page-mobile-application .top-promo-bar__contact {
          display: none;
        }

        /* Nav sits just below the slim bar (id selector beats the base nav#nav) */
        body.has-top-promo-bar.page-mobile-application nav#nav {
          top: 44px;
        }

        body.has-top-promo-bar.page-mobile-application nav#nav.scrolled {
          top: 40px;
        }

        /* Hero no longer needs to clear a tall promo bar */
        body.has-top-promo-bar.page-mobile-application {
          --hero-nav-clearance: 150px;
        }

        body.has-top-promo-bar.page-mobile-application .hero-copy {
          padding-right: 1.5rem;
        }

        body.page-mobile-application .logo-bar.logo-bar--index {
          padding-top: 20px;
          padding-bottom: 20px;
        }
      }

/* ===== extracted from <style> ===== */
/* ===== Lead-form offer card match brand-identity promo styling ===== */
      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer.lead-form__offer--promo {
        padding: 14px 16px 13px;
        border-radius: 18px;
        border: 1.5px solid #e3ddf8;
      }
      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer.lead-form__offer--promo::after { display: none; }

      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer--promo .lead-form__offer-tag {
        padding: 3px 10px 2px;
        margin: 0 0 6px;
        border-radius: 6px;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.1em;
      }
      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer--promo .lead-form__offer-copy {
        max-width: calc(100% - 78px);
        gap: 4px;
      }
      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer--promo .lead-form__offer-headline {
        font-size: clamp(19px, 1vw, 30px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.03em;
        color: #161c30;
      }
      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer--promo .lead-form__offer-highlight {
        font-size: 1.375em;
        font-weight: 800;
        letter-spacing: -0.04em;
        background: linear-gradient(90deg, #3b39d6 0%, #5660c5 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
      }
      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer--promo .lead-form__offer-line {
        font-size: clamp(19px, 1vw, 27px);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.03em;
        color: #161c30;
        margin: 0;
      }
      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer--promo .lead-form__offer-note {
        font-size: clamp(11px, 0.575vw, 13.5px);
        font-weight: 400;
        line-height: 1.3;
        color: #5a6178;
        white-space: normal;
      }
      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer--promo .lead-form__offer-art {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 86px;
        height: 80px;
        opacity: 0.5;
        pointer-events: none;
        z-index: 0;
      }
      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer--promo .lead-form__offer-art svg,
      body.page-mobile-application .lead-form--hero-v2 .lead-form__offer--promo .lead-form__offer-art img {
        display: block;
        width: 100%;
        height: auto;
      }

      /* How It Works scroll-driven connector line (grows top?bottom). */
      body.page-mobile-application #how-it-works .hiw-process__flow {
        --hiw-progress: 0;
      }

      body.page-mobile-application #how-it-works .hiw-process__step:not(:last-child)::after {
        display: none;
      }

      body.page-mobile-application #how-it-works .hiw-process__flow::before,
      body.page-mobile-application #how-it-works .hiw-process__progress {
        content: "";
        position: absolute;
        left: var(--hiw-line-left, 42px);
        top: var(--hiw-line-top, 34px);
        bottom: var(--hiw-line-bottom, 34px);
        width: 2px;
        border-radius: 2px;
        pointer-events: none;
        z-index: 0;
      }

      body.page-mobile-application #how-it-works .hiw-process__flow::before {
        background: rgba(69, 77, 161, 0.15);
      }

      body.page-mobile-application #how-it-works .hiw-process__progress {
        background: var(--midnight, #454da1);
        transform: scaleY(var(--hiw-progress, 0));
        transform-origin: top center;
        transition: transform 0.12s linear;
        will-change: transform;
      }

      @media (prefers-reduced-motion: reduce) {
        body.page-mobile-application #how-it-works .hiw-process__progress {
          transform: scaleY(1);
          transition: none;
        }
      }

      /* 03 Developers — slightly wider label col, title sits a bit more left */
      body.page-mobile-application .solution-section .sol-layer {
        grid-template-columns: 120px minmax(0, 1fr) auto;
        gap: 12px;
      }

      body.page-mobile-application .solution-section .sol-num {
        white-space: nowrap;
        letter-spacing: 0.06em;
      }

      body.page-mobile-application .solution-section .sol-layer > div:nth-child(2) {
        min-width: 0;
      }

      /* Equal height for the 4 solution role cards — slightly more compact */
      body.page-ai-chatbot #solution-os.solution-section .solution-layers {
        width: 100%;
        gap: 4px;
      }

      body.page-ai-chatbot #solution-os.solution-section .sol-layer {
        width: 100% !important;
        box-sizing: border-box !important;
        min-height: 124px !important;
        padding: 14px 16px !important;
        gap: 10px !important;
        align-items: center !important;
      }

      body.page-ai-chatbot #solution-os.solution-section .sol-layer > div:nth-child(2) {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        min-width: 0 !important;
        width: 100% !important;
        align-self: stretch !important;
      }

      body.page-ai-chatbot #solution-os.solution-section .sol-title {
        font-size: 14.5px !important;
      }

      body.page-ai-chatbot #solution-os.solution-section .sol-desc {
        min-height: 3.4em !important;
        font-size: 12.5px !important;
        line-height: 1.4 !important;
      }

      body.page-ai-chatbot #solution-os.solution-section .sol-tag {
        min-width: 11em;
        text-align: center;
        box-sizing: border-box;
        font-size: 9.5px !important;
        padding: 5px 10px !important;
      }

      body.page-ai-chatbot #solution-os.solution-section .solution-split {
        gap: 14px !important;
      }

      @media (max-width: 900px) {
        body.page-ai-chatbot #solution-os.solution-section .sol-layer {
          min-height: 110px !important;
        }

        body.page-ai-chatbot #solution-os.solution-section .sol-tag {
          min-width: 0;
        }
      }

      /* Mobile: video first, role card directly under it */
      @media (max-width: 900px) {
        body.page-ai-chatbot .solution-section .solution-split {
          display: flex;
          flex-direction: column;
        }

        body.page-ai-chatbot .solution-section .solution-media,
        body.page-ai-chatbot .solution-section .solution-layers > .solution-media {
          order: -1;
          width: 100%;
          margin: 0 0 10px;
          min-height: 240px;
        }

        body.page-ai-chatbot .solution-section .solution-layers > .solution-media .media-frame,
        body.page-ai-chatbot .solution-section .solution-media .media-frame {
          min-height: 240px;
        }
      }

      /* Startups App Development card image — slightly larger + right */
      body.page-mobile-application .team-media--startups {
        overflow: hidden;
      }

      body.page-mobile-application .team-media--startups img {
        object-fit: cover;
        object-position: 70% center;
        transform: scale(1.22) translateX(8px);
        transform-origin: center center;
      }

      /* ===== AI Chatbot hero — ChatScale-style 3-column structure ===== */
      body.page-ai-chatbot #portfolio,
      body.page-ai-chatbot .portfolio-section {
        display: none !important;
      }

      /* Gap between Deliverables and Your Team */
      body.page-ai-chatbot #add-ons.teams-section {
        padding-bottom: 72px !important;
      }

      body.page-ai-chatbot #add-ons .task-track.v2 > div::after {
        display: none;
        content: none;
      }

      body.page-ai-chatbot .comparison-section--founders .comp-table tbody td:nth-child(3) {
        white-space: nowrap;
      }

      /* All comparison rows match line 4 height (2-line padding) */
      body.page-ai-chatbot .comparison-section--founders .comp-table tbody tr {
        height: 68px !important;
      }

      body.page-ai-chatbot .comparison-section--founders .comp-table tbody td {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
        line-height: 1.35 !important;
        height: 68px !important;
        vertical-align: middle !important;
        white-space: normal !important;
        box-sizing: border-box !important;
      }

      body.page-ai-chatbot .comparison-section--founders .comp-table thead th {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
        vertical-align: middle !important;
      }

      body.page-ai-chatbot .comparison-section--founders .comp-table svg.wrong {
        width: 14px !important;
        height: 14px !important;
        vertical-align: middle !important;
        display: inline-block !important;
        position: relative;
        top: -3px;
      }

      body.page-ai-chatbot #solution-os .section-label,
      body.page-ai-chatbot #solution-os h2,
      body.page-ai-chatbot #solution-os .section-intro {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      body.page-ai-chatbot .hero.hero--ai-chat {
        background-color: #f4f3fb !important;
        background-image: url("/assets/images/what-we-do/ai-chat-bot/ai-chat-bot-banner/webp/bg.webp") !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-size: cover !important;
        min-height: auto;
        padding: calc(var(--hero-nav-clearance) + 12px) 40px 48px;
        overflow: visible;
      }

      body.page-ai-chatbot .hero.hero--ai-chat .hero-bg-video,
      body.page-ai-chatbot .hero.hero--ai-chat .hero-bg-overlay {
        display: none !important;
      }

      body.page-ai-chatbot .aichat-hero__inner {
        display: grid;
        grid-template-columns: minmax(240px, 0.95fr) minmax(160px, 0.45fr) minmax(520px, 1.45fr);
        gap: 24px 12px;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
        width: 100%;
      }

      body.page-ai-chatbot .aichat-hero__copy {
        position: relative;
        z-index: 2;
        margin-left: 40px !important;
        align-self: start;
        padding-top: 2px;
        transform: translateY(0);
        max-width: 520px;
      }

      body.page-ai-chatbot .hero.hero--ai-chat .hero-badge {
        background: rgba(69, 77, 161, 0.1);
        border: 1px solid rgba(69, 77, 161, 0.16);
        color: #454da1;
      }

      body.page-ai-chatbot .hero.hero--ai-chat .hero-badge .dot {
        background: #454da1;
      }

      body.page-ai-chatbot .hero.hero--ai-chat .hero-copy h1,
      body.page-ai-chatbot .aichat-hero__copy h1 {
        color: #171a2f;
        margin-bottom: 12px;
      }

      body.page-ai-chatbot .aichat-hero__copy .hero-h1-line {
        display: block;
        color: #171a2f;
      }

      body.page-ai-chatbot .aichat-hero__copy .hero-h1-line em,
      body.page-ai-chatbot .aichat-hero__accent {
        color: #454da1;
        font-style: italic;
        font-family: "Playfair Display", Georgia, serif;
      }

      body.page-ai-chatbot .aichat-hero__copy .hero-sub {
        color: #5b6079;
        max-width: 460px;
        margin-bottom: 22px;
      }

      body.page-ai-chatbot .aichat-hero__copy .hero-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
        margin-bottom: 22px;
      }

      body.page-ai-chatbot .aichat-hero__copy .hero-actions .btn-green,
      body.page-ai-chatbot .aichat-hero__copy .hero-actions .btn-ghost {
        width: auto;
        flex: 0 0 auto;
        white-space: nowrap;
      }

      body.page-ai-chatbot .aichat-hero__copy .hero-actions .btn-ghost,
      body.has-top-promo-bar.page-mobile-application.page-ai-chatbot .hero-actions a.btn-ghost {
        color: #7b7b96 !important;
        border-bottom-color: rgba(69, 77, 161, 0.42) !important;
      }

      body.page-ai-chatbot .aichat-hero__copy .hero-actions .btn-ghost:hover,
      body.page-ai-chatbot .aichat-hero__copy .hero-actions .btn-ghost:focus,
      body.has-top-promo-bar.page-mobile-application.page-ai-chatbot .hero-actions a.btn-ghost:hover,
      body.has-top-promo-bar.page-mobile-application.page-ai-chatbot .hero-actions a.btn-ghost:focus {
        color: #454da1 !important;
        border-bottom-color: #454da1 !important;
      }

      body.page-ai-chatbot .hero.hero--ai-chat .hero-moneyback {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 0 0 14px;
        color: #3a3f57;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.4;
      }

      body.page-ai-chatbot .aichat-hero__tags {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 0;
      }

      body.page-ai-chatbot .aichat-hero__tags .hero-industries__row {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        width: fit-content;
        max-width: 100%;
      }

      body.page-ai-chatbot .aichat-hero__tags .ind-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #fff;
        border: 1px solid rgba(69, 77, 161, 0.14);
        border-radius: 100px;
        padding: 6px 10px;
        font-size: 12px;
        font-weight: 500;
        color: #3a3f57;
        box-shadow: 0 4px 12px rgba(69, 77, 161, 0.08);
        white-space: nowrap;
        flex: 0 0 auto;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
      }

      body.page-ai-chatbot .aichat-hero__tags .ind-tag::before {
        content: "\2713";
        display: inline;
        font-weight: 800;
        font-size: 14px;
        color: #16a34a;
      }

      /* Middle: banner feature card images (left of form) */
      body.page-ai-chatbot .aichat-hero__features {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 32px;
        z-index: 6;
        padding: 8px 0;
        justify-self: center;
        align-items: stretch;
        transform: translate(56px, -68px);
      }

      body.page-ai-chatbot .aichat-hero__features::before {
        display: none;
      }

      body.page-ai-chatbot .aichat-feature-img {
        position: relative;
        z-index: 2;
        display: block;
        width: 100%;
        max-width: 372px;
        height: auto;
        filter: drop-shadow(0 12px 24px rgba(40, 30, 90, 0.12));
      }

      /* Hold left cards + robot until both are loaded, then reveal together */
      body.page-ai-chatbot .aichat-hero__features,
      body.page-ai-chatbot .aichat-hero__mascot {
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      body.page-ai-chatbot .aichat-hero__inner.is-hero-art-ready .aichat-hero__features,
      body.page-ai-chatbot .aichat-hero__inner.is-hero-art-ready .aichat-hero__mascot {
        opacity: 1;
      }

      @media (prefers-reduced-motion: reduce) {
        body.page-ai-chatbot .aichat-hero__features,
        body.page-ai-chatbot .aichat-hero__mascot {
          transition: none;
        }
      }

      /* Only Instant Support card (first image) */
      body.page-ai-chatbot .aichat-hero__features .aichat-feature-img:nth-child(1) {
        transform: translateX(-8px);
      }

      /* Only AI Powered card (middle image) */
      body.page-ai-chatbot .aichat-hero__features .aichat-feature-img:nth-child(2) {
        transform: translateX(-28px);
      }

      /* Right: form + robot/chat visual (reference structure) */
      body.page-ai-chatbot .aichat-hero__visual {
        position: relative;
        z-index: 3;
        min-width: 0;
        width: 100%;
        overflow: visible;
      }

      @media (min-width: 769px) {
        body.page-ai-chatbot .aichat-hero__visual {
          justify-self: end;
        }
      }

      body.page-ai-chatbot .aichat-hero__cluster {
        position: relative;
        width: 100%;
        display: flex;
        align-items: flex-end;
        gap: 0;
        overflow: visible;
      }

      @media (min-width: 769px) {
        body.page-ai-chatbot .aichat-hero__cluster {
          max-width: 780px;
          min-height: 540px;
          margin-left: auto;
          justify-content: flex-end;
        }
      }

      @media (max-width: 768px) {
        body.page-ai-chatbot .aichat-hero__cluster {
          max-width: 100%;
          min-height: 0;
          margin-left: 0;
          margin-right: 0;
          justify-content: stretch;
          align-items: stretch;
        }
      }

      body.page-ai-chatbot .aichat-hero__form-wrap {
        position: relative;
        z-index: 5;
        margin-bottom: 8px;
        transform-origin: left center;
        overflow: visible;
      }

      @media (min-width: 769px) {
        body.page-ai-chatbot .aichat-hero__form-wrap {
          /* Same as email-hero__form-wrap — slight widen to the right */
          width: 424px;
          max-width: 424px;
          flex: 0 0 424px;
          transform: translate(100px, -24px);
        }
      }

      @media (max-width: 768px) {
        body.page-ai-chatbot .aichat-hero__form-wrap {
          width: 100%;
          max-width: 100%;
          flex: 1 1 auto;
          transform: none;
          margin-left: 0;
          margin-right: 0;
          margin-bottom: 0;
        }
      }

      @keyframes aichat-form-deco-spin {
        from { transform: translateY(-50%) rotate(0deg); }
        to { transform: translateY(-50%) rotate(360deg); }
      }

      @keyframes aichat-mascot-float {
        0%, 100% { transform: scale(0.66) translateY(0); }
        50% { transform: scale(0.66) translateY(-14px); }
      }

      @keyframes aichat-eye-blink {
        0%, 40%, 46%, 68%, 74%, 100% {
          transform: translate(-50%, -50%) scaleY(1);
        }
        43%, 71% {
          transform: translate(-50%, -50%) scaleY(0.06);
        }
      }

      @keyframes aichat-signal-ping {
        0% {
          transform: translate(-50%, -50%) scale(0.35);
          opacity: 0;
        }
        12% {
          opacity: 0.9;
        }
        100% {
          transform: translate(-50%, -50%) scale(2.6);
          opacity: 0;
        }
      }

      body.page-ai-chatbot .aichat-hero__form-deco {
        position: absolute;
        left: -39%;
        top: 44%;
        width: 92%;
        max-width: 380px;
        height: auto;
        transform: translateY(-50%) rotate(0deg);
        transform-origin: center center;
        z-index: 0;
        pointer-events: none;
        user-select: none;
        opacity: 0.74;
        animation: aichat-form-deco-spin 48s linear infinite;
      }

      body.page-ai-chatbot .aichat-hero__form-wrap .lead-form.lead-form--hero-v2 {
        position: relative;
        z-index: 1;
        width: 100% !important;
        max-width: 100% !important;
      }

      body.page-ai-chatbot .aichat-hero__mascot {
        position: relative;
        z-index: 2;
        flex: 0 0 300px;
        width: 300px;
        margin-left: -40px;
        margin-bottom: -10px;
        padding-top: 192px;
        pointer-events: none;
        filter: drop-shadow(0 18px 36px rgba(69, 77, 161, 0.22));
        overflow: visible;
        transform: translate(96px, -64px);
      }

      body.page-ai-chatbot .aichat-hero__mascot-figure {
        position: relative;
        top: -260px;
        left: 20px;
        width: 100%;
        transform: scale(0.66) translateY(0);
        transform-origin: center bottom;
        animation: aichat-mascot-float 3.2s ease-in-out infinite;
        will-change: transform;
      }

      body.page-ai-chatbot .aichat-hero__mascot-img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        mix-blend-mode: screen;
      }

      /* Antenna signal rings — expand from purple bulb, then fade out */
      body.page-ai-chatbot .aichat-hero__signals {
        position: absolute;
        inset: 0;
        z-index: 4;
        pointer-events: none;
      }

      body.page-ai-chatbot .aichat-hero__signal {
        position: absolute;
        left: 59.7%;
        top: 5%;
        width: 8%;
        aspect-ratio: 1;
        border: 2px solid rgba(168, 120, 255, 0.85);
        border-radius: 50%;
        box-sizing: border-box;
        transform: translate(-50%, -50%) scale(0.35);
        opacity: 0;
        animation: aichat-signal-ping 2.4s ease-out infinite;
      }

      body.page-ai-chatbot .aichat-hero__signal:nth-child(2) {
        animation-delay: 0.8s;
      }

      body.page-ai-chatbot .aichat-hero__signal:nth-child(3) {
        animation-delay: 1.6s;
      }

      /* Cover baked-in PNG eyes, then draw CSS eyes that can blink */
      body.page-ai-chatbot .aichat-hero__eye-mask,
      body.page-ai-chatbot .aichat-hero__eye {
        position: absolute;
        top: 34.4%;
        aspect-ratio: 1;
        height: auto;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
      }

      body.page-ai-chatbot .aichat-hero__eye-mask {
        width: 11.5%;
        background: #05060c;
        box-shadow:
          0 0 0 5px #05060c,
          0 0 10px 6px #05060c;
        z-index: 2;
      }

      body.page-ai-chatbot .aichat-hero__eye {
        width: 6.4%;
        background: radial-gradient(
          circle at 50% 42%,
          #f2ffff 0%,
          #9eecff 28%,
          #4ecfff 62%,
          #2bb4ef 100%
        );
        box-shadow:
          0 0 6px 2px rgba(90, 220, 255, 0.85),
          0 0 14px 5px rgba(60, 190, 255, 0.4);
        transform-origin: center;
        z-index: 3;
        animation: aichat-eye-blink 4.4s ease-in-out infinite;
      }

      body.page-ai-chatbot .aichat-hero__eye-mask--l,
      body.page-ai-chatbot .aichat-hero__eye--l { left: 36.1%; }

      body.page-ai-chatbot .aichat-hero__eye-mask--r,
      body.page-ai-chatbot .aichat-hero__eye--r { left: 57.5%; }

      @media (prefers-reduced-motion: reduce) {
        body.page-ai-chatbot .aichat-hero__mascot-figure,
        body.page-ai-chatbot .aichat-hero__signal,
        body.page-ai-chatbot .aichat-hero__eye,
        body.page-ai-chatbot .aichat-hero__form-deco {
          animation: none !important;
        }
      }

      body.page-ai-chatbot .aichat-hero__chat-ui {
        position: absolute;
        left: 4%;
        bottom: 2%;
        width: 68%;
        z-index: 3;
        line-height: 0;
        transform: translate(48px, -90px);
      }

      body.page-ai-chatbot .aichat-hero__chat-ui img {
        display: block;
        width: 100%;
        height: auto;
        filter: drop-shadow(0 10px 22px rgba(40, 30, 90, 0.16));
      }

      @media (max-width: 1100px) {
        body.page-ai-chatbot .aichat-hero__inner {
          grid-template-columns: 1fr 1fr;
          gap: 28px;
        }

        body.page-ai-chatbot .aichat-hero__features {
          grid-column: 1 / -1;
          flex-direction: row;
          justify-content: center;
          flex-wrap: wrap;
        }

        body.page-ai-chatbot .aichat-hero__features::before {
          display: none;
        }

        body.page-ai-chatbot .aichat-feature-img {
          max-width: 220px;
        }

        body.page-ai-chatbot .aichat-hero__cluster {
          max-width: 100%;
          min-height: 0;
          justify-content: center;
        }

        body.page-ai-chatbot .aichat-hero__mascot {
          flex: 0 0 220px;
          width: 220px;
          margin-left: -20px;
        }

        body.page-ai-chatbot .aichat-hero__form-wrap {
          max-width: 100%;
          flex: 1 1 auto;
          margin-bottom: 0;
        }

        /* Tablet only — never shift form on phones */
        @media (min-width: 769px) {
          body.page-ai-chatbot .aichat-hero__form-wrap {
            transform: translate(24px, -12px);
          }
        }

        body.page-ai-chatbot .aichat-hero__form-deco {
          display: none;
        }
      }

      @media (max-width: 768px) {
        body.page-ai-chatbot .hero.hero--ai-chat {
          padding: calc(var(--hero-nav-clearance) + 8px) 16px 36px 16px;
        }

        body.page-ai-chatbot .aichat-hero__inner {
          grid-template-columns: 1fr;
          gap: 22px;
        }

        body.page-ai-chatbot .aichat-hero__copy {
          max-width: none;
          margin-left: 0 !important;
        }

        body.page-ai-chatbot .aichat-hero__features {
          order: 3;
          display: none !important;
        }

        body.page-ai-chatbot .aichat-hero__visual {
          order: 2;
          width: 100% !important;
          max-width: 100% !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          justify-self: stretch !important;
        }

        body.page-ai-chatbot .aichat-hero__cluster {
          min-height: 0;
          width: 100% !important;
          max-width: 100% !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          justify-content: stretch;
          align-items: stretch;
        }

        body.page-ai-chatbot .aichat-hero__form-wrap {
          width: 100% !important;
          max-width: 100% !important;
          flex: 1 1 auto !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          margin-bottom: 0;
          transform: none !important;
          overflow: visible;
        }

        body.page-ai-chatbot .aichat-hero__form-wrap .lead-form.lead-form--hero-v2 {
          overflow: visible;
          width: 100% !important;
          max-width: 100% !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
        }

        body.page-ai-chatbot .aichat-hero__form-wrap .lead-form.lead-form--hero-v2 .hero-float,
        body.page-ai-chatbot .lead-form.lead-form--hero-v2 .hero-float {
          left: auto !important;
          right: 28px !important;
          top: -10px !important;
          max-width: calc(100% - 24px);
          white-space: nowrap;
          transform: none !important;
        }

        body.page-ai-chatbot .aichat-hero__mascot {
          display: none;
        }
      }

/* ===== extracted from <style id="laptop-responsive-ai-chatbot"> ===== */
@media screen and (min-width: 1024px) and (max-width: 1536px) {
        body.has-top-promo-bar.page-ai-chatbot {
          --hero-nav-clearance: 140px;
        }

        body.page-ai-chatbot .hero.hero--ai-chat {
          padding-top: 140px !important;
        }

        body.page-ai-chatbot .aichat-hero__inner {
          display: grid !important;
          grid-template-columns: minmax(0, 1fr) minmax(0, 520px) !important;
          gap: clamp(40px, 4vw, 56px);
          max-width: min(1140px, 100%);
          transform: translateY(8px);
          align-items: start;
        }

        body.page-ai-chatbot .aichat-hero__features {
          display: none !important;
        }

        body.page-ai-chatbot .aichat-hero__copy {
          margin-left: clamp(0px, 3vw, 40px) !important;
          padding-top: 8px;
          transform: translateY(8px);
        }

        body.page-ai-chatbot .aichat-hero__copy .hero-actions {
          display: flex !important;
          flex-direction: row !important;
          flex-wrap: nowrap !important;
          align-items: center !important;
          justify-content: flex-start !important;
          gap: 12px !important;
        }

        body.page-ai-chatbot .aichat-hero__copy .hero-actions .btn-green,
        body.page-ai-chatbot .aichat-hero__copy .hero-actions .btn-ghost {
          width: auto !important;
          flex: 0 0 auto !important;
          white-space: nowrap !important;
        }

        body.page-ai-chatbot .aichat-hero__visual {
          max-width: min(520px, 100%);
          justify-self: stretch;
          width: 100%;
        }

        body.page-ai-chatbot .aichat-hero__cluster {
          min-height: auto;
          width: 100%;
          max-width: 100%;
          transform: none;
          padding: 0;
          justify-content: center;
        }

        body.page-ai-chatbot .aichat-hero__mascot,
        body.page-ai-chatbot .aichat-hero__form-deco {
          display: none !important;
        }

        body.page-ai-chatbot .aichat-hero__form-wrap {
          width: 100% !important;
          max-width: 100% !important;
          flex: 1 1 auto !important;
          transform: none !important;
          margin: 0;
        }

        body.page-ai-chatbot .lead-form.lead-form--hero-v2 {
          padding: 26px 22px 22px;
          gap: 12px;
        }

        body.page-ai-chatbot .aichat-hero__form-wrap .lead-form.lead-form--hero-v2 .hero-float,
        body.page-ai-chatbot .hero .lead-form.lead-form--hero-v2 .hero-float {
          right: 32px !important;
          left: auto !important;
          top: -10px !important;
          transform: none !important;
          max-width: calc(100% - 48px);
          white-space: normal;
        }

        /* Benefit badges — single-line pills */
        body.page-ai-chatbot .aichat-hero__tags {
          display: flex !important;
          flex-direction: column !important;
          align-items: flex-start !important;
          gap: 8px !important;
          width: fit-content !important;
          max-width: 100% !important;
        }

        body.page-ai-chatbot .aichat-hero__tags .hero-industries__row {
          display: flex !important;
          flex-direction: row !important;
          flex-wrap: nowrap !important;
          gap: 8px !important;
          width: fit-content !important;
          max-width: 100% !important;
        }

        body.page-ai-chatbot .aichat-hero__tags .ind-tag {
          width: auto !important;
          max-width: none !important;
          flex: 0 0 auto !important;
          font-size: 12px !important;
          padding: 6px 12px !important;
          text-align: center !important;
          justify-content: center !important;
          white-space: nowrap !important;
        }
      }

/* ===== extracted from <style> ===== */
/* See Plans — force logo blue on hover (beats mobile-app white styles) */
      body.has-top-promo-bar.page-mobile-application.page-ai-chatbot .hero-actions a.btn-ghost:hover,
      body.has-top-promo-bar.page-mobile-application.page-ai-chatbot .hero-actions a.btn-ghost:focus {
        color: #454da1 !important;
        border-bottom-color: #454da1 !important;
      }

/* ===== extracted from <style id="short-viewport-hero-nudge"> ===== */
@media screen and (min-width: 1024px) and (max-width: 1536px) and (max-height: 760px) {
        body[class][class][class][class][class][class][class][class] .hero {
          padding-bottom: 44px !important;
        }

        body[class][class][class][class][class][class][class][class] .aichat-hero__inner {
          transform: translateY(-16px) !important;
        }

        body[class][class][class][class][class][class][class][class] .aichat-hero__copy {
          transform: translateY(30px) !important;
        }

        body[class][class][class][class][class][class][class][class] .hero .aichat-hero__tags,
        body[class][class][class][class][class][class][class][class] .hero .hero-industries__stack.aichat-hero__tags {
          display: flex !important;
          flex-direction: column !important;
          align-items: flex-start !important;
          gap: 6px !important;
          width: fit-content !important;
          max-width: 100% !important;
          margin-top: 8px !important;
        }

        body[class][class][class][class][class][class][class][class] .hero .aichat-hero__tags .hero-industries__row {
          display: flex !important;
          flex-wrap: wrap !important;
          gap: 6px !important;
          width: fit-content !important;
        }

        body[class][class][class][class][class][class][class][class] .hero .aichat-hero__tags .ind-tag {
          display: inline-flex !important;
          font-size: 11px !important;
          padding: 5px 10px !important;
        }

        body[class][class][class][class][class][class][class][class] .aichat-hero__form-wrap {
          transform: translate(-120px, 40px) !important;
          max-width: 360px !important;
        }

        body[class][class][class][class][class][class][class][class] .aichat-hero__form-wrap .lead-form.lead-form--hero-v2 {
          max-width: 360px !important;
          width: 100% !important;
          padding: 15px 13px 11px !important;
          gap: 6px !important;
        }

        body[class][class][class][class][class][class][class][class] .aichat-hero__form-wrap .lead-form.lead-form--hero-v2 > form {
          gap: 7px !important;
        }

        body[class][class][class][class][class][class][class][class] .aichat-hero__form-wrap .lead-form__title {
          font-size: 15px !important;
        }

        body[class][class][class][class][class][class][class][class] .aichat-hero__form-wrap .lead-form__label {
          font-size: 10px !important;
        }

        body[class][class][class][class][class][class][class][class] .aichat-hero__form-wrap .lead-form__group {
          gap: 4px !important;
        }

        body[class][class][class][class][class][class][class][class] .aichat-hero__form-wrap .lead-form__input-shell .lead-form__input,
        body[class][class][class][class][class][class][class][class] .aichat-hero__form-wrap .lead-form__input {
          min-height: 36px !important;
          padding: 6px 10px 6px 30px !important;
          font-size: 12px !important;
        }

        body[class][class][class][class][class][class][class][class] .aichat-hero__form-wrap .lead-form__submit {
          font-size: 13px !important;
          padding: 11px 16px !important;
        }
      }

/* ===== extracted from <style id="ai-chatbot-hero-float-nudge"> ===== */
/* 1200x580 — Active Chatbot Studio tag, clear nudge right */
      @media screen and (min-width: 1024px) and (max-width: 1536px) and (max-height: 760px) {
        body.has-top-promo-bar.page-mobile-application.page-mobile-application-v2.page-ai-chatbot
          .hero
          .aichat-hero__form-wrap
          .lead-form.lead-form--hero-v2
          .hero-float {
          left: auto !important;
          right: -38px !important;
          transform: translateX(44px) !important;
        }
      }

/* ===== extracted from <style id="ai-chatbot-comp-table-mobile"> ===== */
/* Mobile — horizontal scroll + sticky Feature col + side-rail clear */
      @media (max-width: 768px) {
        body.page-ai-chatbot .comparison-section--founders .comp-table-wrap {
          overflow-x: auto !important;
          -webkit-overflow-scrolling: touch;
          overscroll-behavior-x: contain;
          scrollbar-width: none;
          -ms-overflow-style: none;
          max-width: 100%;
          margin-left: -20px;
          margin-right: -20px;
          padding-left: max(20px, env(safe-area-inset-left, 0px));
          padding-right: max(56px, calc(20px + 40px));
          padding-bottom: 10px;
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table-wrap::-webkit-scrollbar {
          display: none;
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table {
          width: max-content !important;
          min-width: 1100px !important;
          max-width: none !important;
          table-layout: auto;
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table th,
        body.page-ai-chatbot .comparison-section--founders .comp-table td {
          padding: 12px 12px !important;
          font-size: 12.5px;
          line-height: 1.35 !important;
          overflow-wrap: normal !important;
          word-break: normal !important;
          hyphens: none;
          white-space: normal !important;
          vertical-align: middle !important;
          height: auto !important;
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table tbody tr {
          height: auto !important;
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table th:first-child,
        body.page-ai-chatbot .comparison-section--founders .comp-table td:first-child {
          min-width: 132px;
          max-width: 148px;
          position: sticky;
          left: 0;
          z-index: 1;
          border-right: 1px solid var(--border-light);
          box-shadow: 7px 0 14px -8px rgba(27, 42, 107, 0.28);
          overflow-wrap: break-word;
          word-break: keep-all;
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table thead th:first-child {
          z-index: 2;
          background: var(--lavender);
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table tbody td:first-child {
          background: #fff;
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table tbody tr:nth-child(even) td:first-child {
          background: #f7f8fc;
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table th:not(:first-child),
        body.page-ai-chatbot .comparison-section--founders .comp-table td:not(:first-child) {
          min-width: 108px;
          white-space: nowrap;
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table th.hi,
        body.page-ai-chatbot .comparison-section--founders .comp-table td.hi {
          min-width: 118px;
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table th.hi .logo1,
        body.page-ai-chatbot .comparison-section--founders .comp-table td.hi .logo2 {
          width: 96px;
          max-width: 96px;
          height: auto;
        }
      }

      @media (max-width: 480px) {
        body.page-ai-chatbot .comparison-section--founders .comp-table-wrap {
          padding-right: max(52px, calc(16px + 36px));
        }

        body.page-ai-chatbot .comparison-section--founders .comp-table {
          min-width: 980px !important;
        }
      }

/* ===== extracted from <style id="ai-chatbot-cta-perks-mobile"> ===== */
@media (max-width: 768px) {
        body.page-ai-chatbot .cta-section .form-perk {
          display: flex;
          flex-direction: row;
          flex-wrap: nowrap;
          align-items: center;
          justify-content: flex-start;
          gap: 10px;
          text-align: left;
          width: 100%;
          box-sizing: border-box;
        }

        body.page-ai-chatbot .cta-section .form-perk__text {
          flex: 1 1 auto;
          min-width: 0;
          text-align: left;
          line-height: 1.35;
          font-size: 13px;
        }

        body.page-ai-chatbot .cta-section .form-perk__text strong {
          margin-right: 0.3em;
          font-weight: 700;
        }
      }

/* ===== extracted from <style id="v2-pricing-theme-svc"> ===== */
#pricing .pricing-grid{align-items:flex-start}
  #pricing .p-card{display:flex;flex-direction:column}
  #pricing .p-card .p-btn{margin-top:auto}
  #pricing .p-card.featured{background:#fff;color:#5b6079;border:2px solid #454da1;box-shadow:0 14px 48px rgba(69,77,161,.18)}
  #pricing .p-card.featured .p-tier{color:#454da1}
  #pricing .p-card.featured .p-name,#pricing .p-card.featured .p-price{color:#10132b}
  #pricing .p-card.featured .p-period,#pricing .p-card.featured .p-desc,#pricing .p-card.featured .p-was,#pricing .p-card.featured .p-features li{color:#5b6079}
  #pricing .p-card.featured .p-features li{border-color:rgba(69,77,161,.18)}
  #pricing .p-card.featured::before{background:#454da1}
  #pricing .p-pop{background:rgba(33,191,207,.15);color:var(--turquoise)}
  /* Task 7: LEFT align pricing + portfolio headers (this is a what-we-do page) */
  #pricing .pricing-inner{text-align:left !important}
  #portfolio .section-label,#portfolio h2,#portfolio .section-intro{text-align:left !important}

  /* Task 7: left-align pricing header text (override h2/sub centering) */
  #pricing h2, #pricing .sec-sub, #pricing .chip, #pricing .section-intro{text-align:left !important}
  #pricing .pr .hint{font-weight:300}

/* ===== SVG caution icon fills (moved from inline <defs><style>) ===== */
svg.wrong .cls-1 {
  fill: #1a1a1a;
}
svg.wrong .cls-2 {
  fill: #ffef11;
  fill-rule: evenodd;
}

/* Surface Pro 7 only: hide hero robot + chat mockup + feature cards */
@media screen and (min-width: 901px) and (max-width: 1100px) {
  body.page-ai-chatbot .aichat-hero__mascot,
  body.page-ai-chatbot .aichat-hero__features {
    display: none !important;
  }
}
