      /* 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);
        -webkit-backdrop-filter: blur(6px);
        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);
        -webkit-backdrop-filter: blur(6px);
        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 email marketing bg.video.mp4 */
      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: #f3f0ff;
        background-image: url("/assets/images/what-we-do/email%20marketing/bg.1.webp");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
      }

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

      body.has-top-promo-bar.page-mobile-application .hero-bg-overlay {
        display: none !important;
      }

      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,
      body.has-top-promo-bar.page-mobile-application .hero-badge.email-hero__badge,
      .email-hero__badge {
        background: rgba(69, 77, 161, 0.07);
        border: 1px solid rgba(69, 77, 161, 0.15);
        color: var(--midnight);
      }

      body.has-top-promo-bar.page-mobile-application .hero-badge .dot,
      body.has-top-promo-bar.page-mobile-application .email-hero__badge .dot,
      .email-hero__badge .dot {
        background: var(--turquoise);
        animation: none;
      }

      /* Hero banner heading light bg (email marketing) */
      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: #171a2f;
      }

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

      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: #454da1;
      }

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

      body.has-top-promo-bar.page-mobile-application .hero-sub strong {
        color: #171a2f;
        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: #171a2f;
        border-bottom-color: rgba(23, 26, 47, 0.45);
      }

      body.has-top-promo-bar.page-mobile-application .hero-actions .btn-ghost:hover {
        color: #454da1;
        border-bottom-color: rgba(69, 77, 161, 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: auto !important;
        right: -110px !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(100vh - 32px);
          max-height: calc(100dvh - 32px);
          overflow-y: auto;
        }

        body.page-mobile-application .lead-popup-modal {
          width: calc(100% - 32px);
          max-height: calc(100vh - 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;
        }
      }

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

      /* Email Marketing hero banner (bg.video.mp4) */
      .hero.hero--email {
        position: relative;
        overflow: visible;
        background-color: #f3f0ff;
        background-image: url("/assets/images/what-we-do/email%20marketing/bg.1.webp");
        background-repeat: no-repeat;
        background-position: calc(50% + 60px) center;
        background-size: cover;
        padding: 120px 20px 64px 4px;
        min-height: auto !important;
        isolation: isolate;
        display: block;
      }

      /* Keep clearance stable do not change padding when promo bar collapses (prevents jump) */
      body.page-email-marketing.has-top-promo-bar.page-mobile-application .hero.hero--email {
        padding-top: 120px;
        padding-left: 4px;
        padding-right: 20px;
        padding-bottom: 64px;
        min-height: auto !important;
      }

      .hero.hero--email .hero-bg-video {
        display: none !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 0;
        pointer-events: none;
      }

      .hero.hero--email .hero-bg-overlay {
        display: none !important;
      }

      @media (prefers-reduced-motion: reduce) {
        .hero.hero--email .hero-bg-video {
          display: none !important;
        }
      }

      .hero.hero--email::before,
      .hero.hero--email::after {
        display: none;
      }

      .email-hero__inner {
        position: relative;
        z-index: 2;
        max-width: 1360px;
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
        gap: 20px 20px;
        align-items: start;
      }

      .email-hero__copy {
        position: relative;
        z-index: 2;
        max-width: 520px;
        margin-top: 0;
        margin-left: 92px;
        padding-top: 48px;
      }

      .email-hero__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(69, 77, 161, 0.07);
        color: var(--midnight);
        border: 1px solid rgba(69, 77, 161, 0.15);
        border-radius: 999px;
        padding: 8px 14px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        margin-bottom: 18px;
      }

      .email-hero__badge .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--turquoise);
        flex: 0 0 auto;
      }

      .email-hero__copy h1 {
        color: #171a2f;
        margin-bottom: 14px;
        line-height: 1.12;
        font-size: clamp(34px, 4vw, 54px);
      }

      .email-hero__copy .hero-h1-line {
        display: block;
        color: #171a2f;
        line-height: 1.12;
        margin: 0;
        padding: 0;
        white-space: nowrap;
      }

      .email-hero__copy .hero-h1-line:has(.email-hero__accent) {
        margin-top: 0.06em;
      }

      .email-hero__copy .email-hero__accent {
        color: #454da1;
        font-style: italic;
        font-weight: 400;
        font-size: inherit;
      }

      .email-hero__copy .hero-sub {
        color: #5d6478;
        max-width: 440px;
        line-height: 1.62;
        margin-bottom: 22px;
      }

      .email-hero__actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px 20px;
        margin-bottom: 0;
      }

      .email-hero__actions .btn-green {
        background: #16a34a;
        border-color: #16a34a;
        color: #fff;
        border-radius: 10px;
        box-shadow: 0 10px 24px rgba(22, 163, 74, 0.28);
      }

      .email-hero__actions .btn-green:hover {
        background: #15803d;
        border-color: #15803d;
        color: #fff;
      }

      .email-hero__actions .btn-ghost {
        color: #171a2f;
        border: none;
        border-bottom: 1.5px dotted rgba(23, 26, 47, 0.45);
        border-radius: 0;
        padding: 4px 0;
        background: transparent;
      }

      .email-hero__actions .btn-ghost:hover {
        border-bottom-color: #454da1;
        color: #454da1;
      }

      .email-hero__tags {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 8px;
        margin-top: 22px;
        width: fit-content;
        max-width: 100%;
      }

      .email-hero__tags .hero-industries__row {
        display: contents;
      }

      .email-hero__tags .hero-industries__row:nth-child(2) {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: subgrid;
        column-gap: 8px;
      }

      .email-hero__tags .ind-tag {
        font-size: 12px;
        padding: 6px 12px;
        white-space: normal;
        text-align: center;
        justify-content: center;
      }

      .email-hero__moneyback {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 18px;
        color: #5d6478;
        font-size: 13px;
      }

      .email-hero__visual {
        position: relative;
        min-width: 0;
        justify-self: end;
        width: 100%;
        margin-right: -16px;
      }

      .email-hero__cluster {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0;
        min-height: 680px;
        padding: 12px 0 12px 8px;
        margin-left: auto;
        width: max-content;
        max-width: none;
        transform: translateX(-8px);
      }

      .email-hero__floats {
        position: relative;
        width: 142px;
        flex: 0 0 142px;
        z-index: 3;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 70px;
        order: 1;
        margin-left: 8px;
        margin-top: -20px;
        margin-right: -8px;
        align-self: center;
      }

      .email-hero__float {
        width: 100%;
        overflow: visible;
        background: transparent;
      }

      /* Match reference: top clockwise, bottom counter-clockwise */
      .email-hero__float:nth-child(1) {
        width: 100%;
        margin-left: -46px;
        transform: rotate(14deg);
        animation: none;
      }

      .email-hero__float:nth-child(2) {
        width: 100%;
        margin-left: -48px;
        transform: rotate(-12deg);
        animation: none;
      }

      .email-hero__float img {
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
        border-radius: 16px;
        box-shadow:
          0 14px 28px rgba(40, 30, 90, 0.16),
          0 4px 10px rgba(69, 77, 161, 0.1);
      }

      /* Campaign Performance keep original image proportions */
      .email-hero__float:nth-child(2) img {
        aspect-ratio: auto;
        width: 100%;
        height: auto;
        object-fit: contain;
      }

      .email-hero__form-wrap {
        position: relative;
        z-index: 5;
        width: 100%;
        max-width: 408px;
        flex: 0 0 408px;
        margin: -2px 0 0 6px;
        order: 2;
        align-self: center;
      }

      body.page-mobile-application .email-hero__form.lead-form.lead-form--hero-v2,
      body.has-top-promo-bar.page-mobile-application .email-hero__form.lead-form.lead-form--hero-v2 {
        position: relative;
        z-index: 2;
        overflow: visible;
        width: 100%;
        max-width: 100%;
        background: #fff;
        border: 1px solid rgba(69, 77, 161, 0.08);
        box-shadow: 0 28px 64px rgba(40, 30, 90, 0.14);
        border-radius: 16px;
        padding: 24px 16px 20px;
        gap: 12px;
        transform: none;
      }

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

      .email-hero__form .hero-float {
        position: absolute !important;
        top: -10px !important;
        left: auto !important;
        right: -110px !important;
        transform: none !important;
        margin: 0;
        padding: 8px 12px;
        border-radius: 12px;
        font-size: 11px;
        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;
        background: #fff;
        color: #2a2f45;
        border: 1px solid rgba(69, 77, 161, 0.1);
        display: block !important;
      }

      body.page-mobile-application .email-hero__form .lead-form__title {
        font-size: clamp(18px, 1.8vw, 22px);
        color: #171a2f;
        margin: 0 0 4px;
        line-height: 1.25;
      }

      body.page-mobile-application .email-hero__form .lead-form__subtitle {
        color: #6b7288;
        margin: 0 0 2px;
        font-size: 12.5px;
        line-height: 1.4;
      }

      body.page-mobile-application .email-hero__form .lead-form__head {
        margin: 0;
        gap: 0;
        padding: 0;
      }

      body.page-mobile-application .email-hero__form .lead-form__group {
        margin: 0;
        gap: 0;
      }

      body.page-mobile-application .email-hero__form .lead-form__input-shell .lead-form__input {
        min-height: 46px;
        height: 46px;
        padding: 10px 10px 10px 34px;
        font-size: 13.5px;
      }

      body.page-mobile-application .email-hero__form .lead-form__label {
        font-size: 11px;
        margin-bottom: 5px;
        line-height: 1.2;
      }

      body.page-mobile-application .email-hero__form .lead-form__submit {
        background: linear-gradient(90deg, #454da1 0%, #1fdce5 100%);
        border: none;
        color: #fff;
        font-weight: 700;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 14px 16px;
        margin-top: 4px;
        font-size: 14px;
        min-height: 50px;
      }

      body.page-mobile-application .email-hero__form .lead-form__guarantees--bar {
        margin-top: 4px;
        padding: 10px 0 4px;
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: center;
      }

      body.page-mobile-application .email-hero__form .lead-form__guarantee-item {
        font-size: 11px;
        flex: 0 0 auto;
        padding: 0 2px;
        white-space: nowrap;
      }

      body.page-mobile-application .email-hero__form .lead-form__guarantee-icon {
        width: 15px;
        height: 15px;
      }

      body.page-mobile-application .email-hero__form .lead-form__guarantee-icon svg {
        width: 15px;
        height: 15px;
      }

      /* Compact green promo note height only */
      body.page-mobile-application .email-hero__form > div[style*="rgba(22,185,129"] {
        padding: 8px 10px !important;
        margin: 0 0 6px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
        gap: 7px !important;
      }

      .email-hero__model {
        position: relative;
        width: 218px;
        flex: 0 0 218px;
        height: 560px;
        z-index: 4;
        pointer-events: none;
        align-self: center;
        margin: 108px 0 0 20px;
        order: 3;
        animation: none;
        display: block !important;
      }

      .email-hero__model > img {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 560px;
        object-fit: contain;
        object-position: center center;
        filter: drop-shadow(0 22px 36px rgba(69, 77, 161, 0.18));
      }

      .email-hero__model-stat {
        position: absolute;
        top: -10%;
        left: 8%;
        width: 220px;
        z-index: 5;
        pointer-events: none;
      }

      .email-hero__model-stat img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 12px 20px rgba(69, 77, 161, 0.16));
      }

      @keyframes email-float-item {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
      }

      @keyframes email-float-model {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
      }

      @media (prefers-reduced-motion: reduce) {
        .email-hero__float:nth-child(1),
        .email-hero__float:nth-child(2),
        .email-hero__model,
        .email-hero__reach {
          animation: none;
        }

        .email-hero__float:nth-child(1) {
          transform: rotate(14deg);
        }

        .email-hero__float:nth-child(2) {
          transform: rotate(-12deg);
        }
      }

      @media (max-width: 1180px) {
        .email-hero__cluster {
          gap: 10px;
          min-height: 620px;
          transform: translateX(0);
        }

        .email-hero__floats {
          width: 126px;
          flex-basis: 126px;
        }

        .email-hero__form-wrap {
          max-width: 384px;
          flex-basis: 384px;
        }

        .email-hero__model {
          width: 200px;
          flex-basis: 200px;
          height: 470px;
        }

        .email-hero__model > img {
          max-height: 470px;
        }

        .email-hero__model-stat {
          width: 192px;
          top: -8%;
          left: 14%;
        }
      }

      @media (max-width: 1024px) {
        .hero.hero--email,
        body.page-email-marketing.has-top-promo-bar.page-mobile-application .hero.hero--email {
          padding: 120px 16px 56px;
          overflow-x: hidden;
        }

        .email-hero__inner {
          grid-template-columns: 1fr;
          gap: 28px;
          width: 100%;
          max-width: 100%;
          transform: none;
          margin: 0;
        }

        .email-hero__copy {
          max-width: 100%;
          margin: 0;
          margin-left: 0;
          padding-top: 0;
          text-align: left;
        }

        .email-hero__copy .hero-h1-line {
          white-space: normal;
        }

        .email-hero__copy .hero-sub {
          max-width: 100%;
          margin-left: 0;
          margin-right: 0;
        }

        .email-hero__actions {
          justify-content: flex-start;
        }

        .email-hero__tags {
          margin-left: 0;
          margin-right: 0;
        }

        .email-hero__moneyback {
          justify-content: flex-start;
        }

        .email-hero__visual {
          justify-self: stretch;
          margin-right: 0;
          width: 100%;
          max-width: 100%;
        }

        .email-hero__cluster {
          min-height: auto;
          padding: 0;
          width: 100%;
          max-width: 100%;
          justify-content: center;
          transform: none;
          margin: 0;
        }

        .email-hero__floats,
        .email-hero__model {
          display: none !important;
        }

        .email-hero__form-wrap {
          max-width: 100%;
          width: 100%;
          flex: 1 1 auto;
          margin: 0;
        }

        body.page-mobile-application .email-hero__form.lead-form.lead-form--hero-v2,
        body.has-top-promo-bar.page-mobile-application .email-hero__form.lead-form.lead-form--hero-v2 {
          max-width: 100%;
          width: 100%;
          box-sizing: border-box;
        }

        .email-hero__form .hero-float {
          left: auto !important;
          right: 48px !important;
          top: -8px !important;
          max-width: calc(100% - 56px);
          white-space: normal;
        }
      }

      @media (max-width: 768px) {
        .hero.hero--email,
        body.page-email-marketing.has-top-promo-bar.page-mobile-application .hero.hero--email {
          padding-top: 130px;
          padding-left: 16px;
          padding-right: 56px; /* clear side-rail */
          padding-bottom: 40px;
        }

        .email-hero__form-wrap,
        body.page-mobile-application .email-hero__form.lead-form.lead-form--hero-v2 {
          max-width: 100%;
          width: 100%;
        }

        body.page-email-marketing .email-hero__form.lead-form--hero-v2 .hero-float,
        body.page-mobile-application.page-email-marketing .email-hero__form .hero-float {
          left: auto !important;
          right: 4px !important;
          top: -8px !important;
          max-width: calc(100% - 8px);
          white-space: nowrap;
        }
      }

      body.page-email-marketing .hero-moneyback {
        align-items: flex-start;
      }

      body.page-email-marketing .hero-moneyback svg {
        margin-top: 4px;
        flex-shrink: 0;
      }

      /* Solution team — fixed columns so all 4 cards align */
      body.page-email-marketing .solution-section .sol-layer {
        grid-template-columns: 150px minmax(0, 1fr) auto;
        gap: 12px 16px;
        align-items: center;
      }

      body.page-email-marketing .solution-section .sol-num {
        white-space: nowrap;
        line-height: 1.25;
      }

      body.page-email-marketing .solution-section .sol-tag {
        justify-self: end;
      }

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

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

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

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

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

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

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

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

      /* Deliverables match logo-and-branding card / media height (desktop only) */
      @media (min-width: 769px) {
        body.page-email-marketing #add-ons .teams-grid > .team-card {
          grid-template-columns: 1fr 200px;
        }

        body.page-email-marketing #add-ons .team-media {
          min-height: 220px;
        }

        /* Email Campaign Creation height only, width same as other cards */
        body.page-email-marketing #add-ons .teams-grid > .team-card:nth-child(3) .team-media {
          min-height: 270px;
        }
      }

      body.page-email-marketing #add-ons .team-media img {
        object-fit: cover;
        transform: none;
      }

  body.page-email-marketing #pricing .pricing-grid{display:flex !important;align-items:flex-end !important}
  body.page-email-marketing #pricing .p-card.featured{transform:translateY(-18px);position:relative;z-index:2}
  body.page-email-marketing #pricing .p-card.featured:hover{transform:translateY(-22px)}
  body.page-email-marketing #pricing .p-card:not(.featured){display:flex !important;flex-direction:column !important;box-sizing:border-box !important}
  body.page-email-marketing #pricing .p-card:not(.featured) .p-features{flex:1 1 auto !important;margin-bottom:0 !important}
  body.page-email-marketing #pricing .p-card:not(.featured) .p-btn{margin-top:auto !important;flex-shrink:0 !important}
  @media (max-width:940px){
    body.page-email-marketing #pricing .pricing-grid{align-items:stretch !important}
    body.page-email-marketing #pricing .p-card.featured,
    body.page-email-marketing #pricing .p-card.featured:hover{transform:none}
  }
  #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}
