/* ===== 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;
        transform: translateY(14px);
      }

      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--ipad-pro {
        display: none;
      }

      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%, 420px);
      }

      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:nth-child(3),
      body.page-mobile-application .hero-industries .ind-tag:nth-child(4) {
        order: 2;
        flex: 0 0 auto;
        width: fit-content;
        max-width: fit-content;
      }

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

      /* Force 2nd line after first two tags, without stretching pills */
      body.page-mobile-application .hero-industries::before {
        content: "";
        flex-basis: 100%;
        width: 100%;
        height: 0;
        order: 1;
      }

      body.page-mobile-application .hero-industries .ind-tag:nth-child(1),
      body.page-mobile-application .hero-industries .ind-tag:nth-child(2) {
        order: 0;
      }

      /* 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;
      }

      html body.page-mobile-application-v2 #testimonials.testimonials-section .testi-video .testi-video-play {
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow:
          0 0 0 4px rgba(255, 255, 255, 0.18),
          0 8px 24px rgba(0, 0, 0, 0.35) !important;
      }

      html body.page-mobile-application-v2 #testimonials.testimonials-section .testi-video .testi-video-play::after {
        border-left-color: #454da1 !important;
      }

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

      body.page-mobile-application .comparison-section--founders .comp-table td.hi {
        white-space: nowrap;
      }

      @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) */
      /* CTA perk cards: title + copy stay together (no stretched gap) */
      body.page-mobile-application .cta-section .form-perk {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        text-align: left;
      }

      body.page-mobile-application .cta-section .form-perk__text {
        flex: 1 1 auto;
        min-width: 0;
        text-align: left;
        line-height: 1.35;
      }

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

      @media (max-width: 768px) {
        body.page-mobile-application .cta-section .form-perks {
          width: 100%;
          max-width: 100%;
        }

        body.page-mobile-application .cta-section .form-perk {
          width: 100%;
          box-sizing: border-box;
          padding: 11px 12px;
          font-size: 13px;
        }

        body.page-mobile-application .cta-section .form-perk__text {
          font-size: 13px;
        }
      }

      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;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }

      body.page-mobile-application .hero-banner-form__submit .hero-cta-arrow {
        display: inline-block;
        font-weight: 900;
        -webkit-text-stroke: 0.85px currentColor;
        paint-order: stroke fill;
      }

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

      .cta-banner-form .hero-banner-form__foot {
        white-space: nowrap;
        font-size: clamp(11px, 1.15vw, 13px);
        letter-spacing: -0.01em;
        text-align: center;
      }

      .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;
          margin-left: 0;
        }

        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;
          flex-wrap: nowrap;
          align-items: center;
          gap: 10px 14px;
          margin-bottom: 28px;
        }

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

        body.page-mobile-application .hero-actions .btn-green {
          flex: 1 1 auto;
          min-width: 0;
          padding: 14px 14px;
          font-size: 13px;
        }

        body.page-mobile-application .hero-actions .btn-ghost {
          flex-shrink: 0;
          padding-left: 0;
        }

        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: 158px;
        }

        body.has-top-promo-bar.page-mobile-application .hero-copy {
          margin-left: 0;
          margin-top: 0;
          padding-right: 1.5rem;
          transform: translateY(-10px);
        }

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

        body.page-mobile-application-v2.has-top-promo-bar.page-mobile-application .hero-actions {
          flex-direction: row;
          flex-wrap: nowrap;
          align-items: center;
          gap: 10px 12px;
        }

        body.page-mobile-application-v2.has-top-promo-bar.page-mobile-application .hero-actions .btn-green {
          flex: 1 1 auto;
          min-width: 0;
          padding: 13px 12px;
          font-size: 12.5px;
        }

        body.page-mobile-application-v2.has-top-promo-bar.page-mobile-application .hero-actions .btn-ghost {
          flex: 0 0 auto;
          white-space: nowrap;
          padding-left: 0;
        }
      }

      body.page-mobile-application .pf-lightbox__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
      }

      body.page-mobile-application .pf-lightbox__close svg {
        display: block;
      }

/* ===== 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;
        }
      }

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

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

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

      /* 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 .task-track.v2 > div::after {
        display: none;
      }

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

      /* Tech Lead desc: lock to exactly 3 lines */
      body.page-mobile-application #solution-os .sol-desc--3line {
        display: flex;
        flex-direction: column;
        gap: 0;
        line-height: 1.45;
      }

      body.page-mobile-application #solution-os .sol-desc--3line .sol-desc-line {
        display: block;
        white-space: nowrap;
      }

      @media (max-width: 900px) {
        body.page-mobile-application #solution-os .sol-desc--3line .sol-desc-line {
          white-space: normal;
        }
      }

      /* Equal width + height for the 4 solution role cards */
      body.page-mobile-application #solution-os.solution-section .solution-layers {
        width: 100%;
      }

      body.page-mobile-application #solution-os.solution-section .sol-layer {
        width: 100% !important;
        box-sizing: border-box !important;
        min-height: 112px !important;
        align-items: center !important;
      }

      body.page-mobile-application #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-mobile-application #solution-os.solution-section .sol-desc {
        min-height: 3.9em !important;
      }

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

      /* 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;
      }

      body.page-mobile-application #add-ons {
        padding-top: 72px;
      }

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

        body.has-top-promo-bar.page-mobile-application.page-mobile-application-v2 .hero {
          padding: 140px 24px 56px !important;
          min-height: auto !important;
        }

        body.has-top-promo-bar.page-mobile-application.page-mobile-application-v2 .hero-inner,
        body.page-mobile-application.page-mobile-application-v2 .hero-inner {
          display: grid !important;
          grid-template-columns: minmax(0, 1fr) minmax(0, 520px) !important;
          gap: clamp(40px, 4vw, 56px) !important;
          max-width: min(1140px, 100%) !important;
          width: 100%;
          margin: 0 auto;
          align-items: start !important;
          transform: translateY(8px);
        }

        body.has-top-promo-bar.page-mobile-application.page-mobile-application-v2 .hero-copy {
          margin-left: clamp(0px, 3vw, 40px) !important;
          margin-top: 0 !important;
          max-width: 100% !important;
          text-align: left !important;
          padding-top: 8px !important;
          transform: translateY(8px) !important;
        }

        body.page-mobile-application .hero-h1-line--default {
          display: none !important;
        }

        body.page-mobile-application .hero-h1-line--ipad-pro {
          display: block !important;
        }

        body.page-mobile-application.page-mobile-application-v2 .hero-visual {
          display: block !important;
          max-width: min(520px, 100%) !important;
          width: 100%;
          justify-self: stretch;
          margin-left: 0 !important;
          margin-top: 0 !important;
          margin-right: 0 !important;
          left: 0 !important;
          position: relative !important;
          transform: none !important;
        }

        body.page-mobile-application.page-mobile-application-v2 .lead-form.lead-form--hero-v2 {
          width: 100%;
          max-width: 100%;
          box-sizing: border-box;
          padding: 26px 22px 22px !important;
          gap: 12px !important;
        }

        body.page-mobile-application.page-mobile-application-v2 .hero .lead-form.lead-form--hero-v2 .hero-float,
        body.page-mobile-application.page-mobile-application-v2 .lead-form.lead-form--hero-v2 .hero-float {
          right: 16px !important;
          left: auto !important;
          top: -10px !important;
          transform: none !important;
          max-width: calc(100% - 24px);
          white-space: normal;
        }

        /* Benefit badges — 2×2 grid; reset flex ::before/order hack */
        body.page-mobile-application .hero-industries.hero__banner {
          display: grid !important;
          grid-template-columns: repeat(2, auto) !important;
          column-gap: 6px !important;
          row-gap: 6px !important;
          width: fit-content !important;
          max-width: 100% !important;
        }

        body.page-mobile-application .hero-industries.hero__banner::before {
          content: none !important;
          display: none !important;
        }

        body.page-mobile-application .hero-industries .ind-tag {
          order: unset !important;
          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;
        }

        body.page-mobile-application .hero-industries .ind-tag:nth-child(4) {
          display: none !important;
        }
      }

      @media screen and (min-width: 1400px) and (max-width: 1480px) and (min-height: 800px) and (max-height: 880px) {
        body.has-top-promo-bar.page-mobile-application.page-mobile-application-v2 .hero {
          padding-top: 158px !important;
        }

        body.has-top-promo-bar.page-mobile-application.page-mobile-application-v2 .hero-inner,
        body.page-mobile-application.page-mobile-application-v2 .hero-inner {
          transform: translateY(4px) !important;
        }

        body.has-top-promo-bar.page-mobile-application.page-mobile-application-v2 .hero-copy {
          transform: translateY(18px) !important;
        }

        body.page-mobile-application.page-mobile-application-v2 .hero-visual {
          transform: translateY(18px) !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: 52px !important;
          min-height: 100vh !important;
          min-height: 100dvh !important;
        }

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

        body[class][class][class][class][class][class][class][class] .hero-visual {
          transform: translate(-72px, 28px) !important;
        }

        body[class][class][class][class][class][class][class][class] .lead-form.lead-form--hero-v2 {
          padding: 13px 13px 9px !important;
          gap: 5px !important;
        }

        body[class][class][class][class][class][class][class][class] .lead-form.lead-form--hero-v2 > form {
          gap: 6px !important;
        }

        body[class][class][class][class][class][class][class][class] .lead-form.lead-form--hero-v2 .lead-form__title {
          font-size: 15px !important;
        }

        body[class][class][class][class][class][class][class][class] .lead-form.lead-form--hero-v2 .lead-form__label {
          font-size: 10px !important;
        }

        body[class][class][class][class][class][class][class][class] .lead-form.lead-form--hero-v2 .lead-form__group {
          gap: 4px !important;
        }

        body[class][class][class][class][class][class][class][class] .lead-form.lead-form--hero-v2 .lead-form__input {
          min-height: 32px !important;
          padding: 6px 10px 6px 30px !important;
          font-size: 12px !important;
        }

        body[class][class][class][class][class][class][class][class] .lead-form.lead-form--hero-v2 .lead-form__submit {
          font-size: 13px !important;
          padding: 10px 16px !important;
        }
      }

/* ===== extracted from <style id="mobile-app-founders-comp-rows"> ===== */
.comparison-section--founders .comp-table tbody tr {
        height: 64px;
      }

      .comparison-section--founders .comp-table tbody td {
        height: 64px;
        padding-top: 12px;
        padding-bottom: 12px;
        vertical-align: middle;
        line-height: 1.35;
        box-sizing: border-box;
      }

      body.page-mobile-application .comparison-section--founders .comp-table svg.wrong {
        vertical-align: middle;
        position: relative;
        top: -3px;
      }

/* ===== extracted from <style id="mobile-application-comp-table-mobile"> ===== */
/* Mobile — horizontal scroll + sticky Feature col + side-rail clear */
      @media (max-width: 768px) {
        body.page-mobile-application .comparison-section--founders .comp-table-wrap {
          overflow-x: auto !important;
          -webkit-overflow-scrolling: touch;
          overscroll-behavior-x: contain;
          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-mobile-application .comparison-section--founders .comp-table {
          width: max-content !important;
          min-width: 920px !important;
          max-width: none !important;
          table-layout: auto;
        }

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

        body.page-mobile-application .comparison-section--founders .comp-table th:first-child,
        body.page-mobile-application .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-mobile-application .comparison-section--founders .comp-table thead th:first-child {
          z-index: 2;
          background: var(--lavender);
        }

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

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

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

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

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

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

        body.page-mobile-application .comparison-section--founders .comp-table {
          min-width: 860px !important;
        }
      }

/* ===== extracted from <style id="mobile-application-sol-layers-mobile"> ===== */
/* Mobile — role cards: match link-building shell width */
      @media (max-width: 768px) {
        body.page-mobile-application #solution-os.solution-section {
          padding-left: 20px !important;
          padding-right: 20px !important;
          overflow-x: hidden;
        }

        body.page-mobile-application #solution-os.solution-section .container,
        body.page-mobile-application #solution-os.solution-section .solution-shell,
        body.page-mobile-application #solution-os.solution-section .solution-layers {
          max-width: 100%;
          width: 100%;
          box-sizing: border-box;
          min-width: 0;
        }

        body.page-mobile-application #solution-os.solution-section .solution-shell {
          padding: 12px !important;
        }

        body.page-mobile-application #solution-os.solution-section .sol-layer {
          max-width: 100%;
          box-sizing: border-box;
          min-width: 0;
          overflow: visible;
        }

        body.page-mobile-application #solution-os.solution-section .sol-tag {
          white-space: nowrap !important;
          max-width: none !important;
          width: max-content;
          justify-self: end;
          text-align: center;
          font-size: 9px;
          letter-spacing: 0.04em;
          line-height: 1.2;
          padding: 5px 9px;
        }

        /* Tech Lead desc: fill card width → natural 2 lines (not forced 3) */
        body.page-mobile-application #solution-os .sol-desc--3line {
          display: block !important;
          width: 100% !important;
          max-width: 100% !important;
        }

        body.page-mobile-application #solution-os .sol-desc--3line .sol-desc-line {
          display: inline !important;
          white-space: normal !important;
        }

        body.page-mobile-application #solution-os.solution-section .sol-desc {
          width: 100% !important;
          max-width: 100% !important;
          min-height: 2.7em !important;
        }
      }

      @media (max-width: 400px) {
        body.page-mobile-application #solution-os.solution-section .sol-tag {
          font-size: 8px;
          padding: 4px 8px;
        }
      }

/* ===== extracted from <style id="mobile-application-hero-float-nudge"> ===== */
/* Mobile only — Active App Studio tag slightly left */
      @media (max-width: 768px) {
        body.page-mobile-application.page-mobile-application-v2 .hero .lead-form.lead-form--hero-v2 .hero-float,
        body.page-mobile-application.page-mobile-application-v2 .lead-form.lead-form--hero-v2 .hero-float {
          right: 20px !important;
          left: auto !important;
          transform: none !important;
        }
      }

      @media (max-width: 480px) {
        body.page-mobile-application.page-mobile-application-v2 .hero .lead-form.lead-form--hero-v2 .hero-float,
        body.page-mobile-application.page-mobile-application-v2 .lead-form.lead-form--hero-v2 .hero-float {
          right: 18px !important;
        }
      }

/* ===== Surface Pro 7 — nudge hero banner text slightly down ===== */
@media screen and (min-width: 901px) and (max-width: 1100px) {
  body.has-top-promo-bar.page-mobile-application.page-mobile-application-v2 {
    --hero-nav-clearance: 192px;
  }

  body.has-top-promo-bar.page-mobile-application.page-mobile-application-v2 .hero {
    justify-content: flex-start !important;
    padding-top: 192px !important;
  }
}

/* ===== 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;
}

/* Mobile app page only: one-by-one portfolio loop (both rows) */
@media (max-width: 768px) {
  body.page-mobile-application-v2:not(.page-email-marketing):not(.page-content-writing):not(.page-ai-chatbot)
    #portfolio
    .portfolio-row.pf-rows-loop {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.page-mobile-application-v2:not(.page-email-marketing):not(.page-content-writing):not(.page-ai-chatbot)
    #portfolio
    .portfolio-row.pf-rows-loop::-webkit-scrollbar {
    display: none;
  }

  body.page-mobile-application-v2:not(.page-email-marketing):not(.page-content-writing):not(.page-ai-chatbot)
    #portfolio
    .pf-rows-loop
    .portfolio-track {
    animation: none !important;
    transform: none !important;
  }

  body.page-mobile-application-v2:not(.page-email-marketing):not(.page-content-writing):not(.page-ai-chatbot)
    #portfolio
    .pf-rows-loop
    .portfolio-card {
    scroll-snap-align: center;
  }
}
