/**
 * Styles scoped to the new-ad landing page only.
 * Load this stylesheet only from new-ad.html to avoid affecting other pages.
 */

.new-ad-page {
    font-family: "Saira", sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
}

.new-ad-page .new-ad-hero {
    padding: 56px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.new-ad-page .new-ad-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.new-ad-page .new-ad-hero__copy {
    text-align: left;
    color: #fff;
}

.new-ad-page .new-ad-hero__logo {
    display: block;
    width: 196px;
    height: auto;
    margin-bottom: 40px;
}

.new-ad-page .new-ad-hero__title {
    margin: 0 0 24px;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #14CDC8;
    max-width: 640px;
}

.new-ad-page .new-ad-hero__subtitle {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.65;
    color: #fff;
    max-width: 560px;
}

.new-ad-page .new-ad-hero__mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* mobile-mockup.svg viewBox 0 0 326 568 */
.new-ad-page .new-ad-phone {
    --mockup-w: 326;
    --mockup-h: 568;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 300px;
    /* Keeps overlay math identical to native SVG aspect ratio */
    aspect-ratio: var(--mockup-w) / var(--mockup-h);
    background-image: url("/ad-landing-page/images/mobile-mockup.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    container-type: inline-size;
    container-name: new-ad-phone;
}

/* Form sits above the bezel as a centered card — no clipped scroll area */
.new-ad-page .new-ad-phone__screen {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(94%, calc(100% - 14px));
    max-width: none;
    z-index: 2;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    pointer-events: auto;
}

.new-ad-page .new-ad-phone-form {
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 auto;
    max-width: 100%;
    margin: 0;
    background: #fff;
    border-radius: 2rem;
    box-shadow:
        0 0 0 1px rgba(33, 255, 255, 0.25),
        0 8px 32px rgba(1, 9, 42, 0.18),
        0 0 28px rgba(33, 255, 255, 0.28);
    /* Balanced top / bottom padding inside the card */
    padding:17px 8px 12px 17px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.new-ad-page .new-ad-phone-form__heading {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.0;
    color: #01092a;
    text-align: left;
}

.new-ad-page .new-ad-phone-form__intro {
    margin: 0 0 4px;
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.45;
    color: #5ba3d4;
    text-align: left;
}

.new-ad-page .new-ad-phone-form__fields {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.new-ad-page .new-ad-field {
    width: 100%;
}

.new-ad-page .new-ad-field input,
.new-ad-page .new-ad-field select {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #B4CDE0;
    border-radius: 8px;
    padding: 10px 12px;
    font-family: "Saira", sans-serif;
    font-size: 12px;
    outline: none;
    background: #fff;
    color: #01092a;
}

.new-ad-page .new-ad-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2301092a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
    cursor: pointer;
    color: #01092a;
}

.new-ad-page .new-ad-field select:invalid {
    color: #B4CDE0;
}

.new-ad-page .new-ad-field input::placeholder {
    color: #B4CDE0;
}

.new-ad-page .new-ad-phone-form .new-ad-email-help {
    margin: 4px 0 0;
    font-size: 11px;
    line-height: 1.3;
    color: #dc2626;
}

.new-ad-page .new-ad-phone-form .new-ad-email-help:empty {
    display: none;
}

.new-ad-page .new-ad-phone-form__submit {
    margin-top: 4px;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 11px 16px;
    font-family: "Saira", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #14CDC8;
    background: #01092a;
    cursor: pointer;
}

.new-ad-page .new-ad-phone-form__submit:hover {
    opacity: 0.92;
}

.new-ad-page .new-ad-phone-form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* —— “Why founders get stuck” (replaces legacy why-choose block on this page) —— */

.new-ad-page .new-ad-stuck-section {
    background: #fff;
    margin-top: -20px;
}

.new-ad-page .new-ad-stuck__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 88px) 15px clamp(56px, 10vw, 104px);
    box-sizing: border-box;
}

.new-ad-page .new-ad-stuck__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
}

.new-ad-page .new-ad-stuck__copy {
    max-width: 560px;
}

.new-ad-page .new-ad-stuck__badge {
    display: inline-block;
    margin: 0 0 clamp(16px, 2.5vw, 22px);
    padding: 8px 18px;
    border-radius: 999px;
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #14CDC8;
}

.new-ad-page .new-ad-stuck__title {
    margin: 0;
    font-family: "Saira", sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1b2d41;
}

.new-ad-page .new-ad-stuck__title strong {
    font-weight: 500;
}

.new-ad-page .new-ad-stuck__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.new-ad-page .new-ad-stuck-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid #e0e7ef;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
}

.new-ad-page .new-ad-stuck-card__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: block;
}

.new-ad-page .new-ad-stuck-card__text {
    margin: 0;
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.45;
    color: #000000;
}

/* —— “The Deuex approach” (MVP-aligned copy + idea cards) —— */

.new-ad-page .new-ad-approach-section {
    background: #eef3f9;
}

.new-ad-page .new-ad-approach__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 88px) 15px clamp(56px, 10vw, 104px);
    box-sizing: border-box;
}

.new-ad-page .new-ad-approach__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
}

.new-ad-page .new-ad-approach__copy {
    max-width: 560px;
}

.new-ad-page .new-ad-approach__badge {
    display: inline-block;
    margin: 0 0 clamp(16px, 2.5vw, 22px);
    padding: 8px 18px;
    border-radius: 999px;
    font-family: "Saira", sans-serif;
    font-size: clamp(12px, 3.5vw, 24px);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #14cdc8;
    margin-bottom: 5rem;
}

.new-ad-page .new-ad-approach__title {
    margin: 0 0 clamp(14px, 2vw, 20px);
    font-family: "Saira", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000A38;
}

.new-ad-page .new-ad-approach__title strong {
    font-weight: 500;
}

.new-ad-page .new-ad-approach__lead {
    margin: 0;
    max-width: 520px;
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.55;
    color: #1F316F;
}

.new-ad-page .new-ad-approach__cards {
    list-style: none;
    margin: 0;
    margin-top: 5rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-content: stretch;
}

.new-ad-page .new-ad-approach-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 24px 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(27, 45, 65, 0.06);
    box-shadow:
        0 1px 3px rgba(1, 9, 42, 0.06),
        0 8px 24px rgba(1, 9, 42, 0.06);
    box-sizing: border-box;
}

.new-ad-page .new-ad-approach-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: auto;
    display: block;
}

.new-ad-page .new-ad-approach-card__text {
    margin: 0;
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.45;
    color: #000000;
}

/* —— Tangible deliverables (dark section, 3×2 grid) —— */

.new-ad-page .new-ad-deliverables-section {
    background: #000A38;
}

.new-ad-page .new-ad-deliverables__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) 15px clamp(56px, 10vw, 100px);
    box-sizing: border-box;
}

/* Global `header { padding: 100px 0 }` in style.css targets any <header>; reset here */
.new-ad-page .new-ad-deliverables__header {
    position: relative;
    overflow: visible;
    padding: 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 28px;
}

.new-ad-page .new-ad-deliverables__badge {
    display: inline-block;
    margin: 0 0 clamp(16px, 2.5vw, 22px);
    padding: 8px 18px;
    border-radius: 999px;
    font-family: "Saira", sans-serif;
    font-size: clamp(12px, 3.5vw, 24px);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #14cdc8;
    margin-bottom: 3rem;
}

.new-ad-page .new-ad-deliverables__title {
    margin: 0;
    font-family: "Saira", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 2.5rem;
}

.new-ad-page .new-ad-deliverables__title strong {
    font-weight: 500;
}

.new-ad-page .new-ad-deliverables__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2.2vw, 20px);
    align-items: stretch;
}

.new-ad-page .new-ad-deliverables__tagline {
    margin: clamp(28px, 4.5vw, 44px) auto 0;
    max-width: 56rem;
    padding: 0;
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;
}

.new-ad-page .new-ad-deliverables-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 20px);
    margin: 0;
    padding: clamp(28px, 4vw, 36px) clamp(16px, 2.5vw, 24px);
    border-radius: 8px;
    border: 1px solid #fff;
    background: transparent;
    box-sizing: border-box;
    text-align: center;
}

.new-ad-page .new-ad-deliverables-card__icon {
    flex-shrink: 0;
    width: clamp(56px, 8vw, 72px);
    height: auto;
    display: block;
}

.new-ad-page .new-ad-deliverables-card__text {
    margin: 0;
    font-family: "Saira", sans-serif;
    font-size: clamp(17px, 1.9vw, 22px);
    font-weight: 300;
    line-height: 1.45;
    color: #fff;
}

/* —— Structured process (SVG infographic, copy inside asset) —— */

.new-ad-page .new-ad-process-section {
    background: #fff;
}

.new-ad-page .new-ad-process__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) 15px 0;
    box-sizing: border-box;
}

.new-ad-page .new-ad-process__header {
    text-align: center;
    margin: 0 auto clamp(36px, 5vw, 52px);
    max-width: 900px;
}

.new-ad-page .new-ad-process__badge {
    display: inline-block;
    margin: 0 0 clamp(16px, 2.5vw, 22px);
    padding: 8px 18px;
    border-radius: 999px;
    font-family: "Saira", sans-serif;
    font-size: clamp(12px, 3.5vw, 24px);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #14cdc8;
}

.new-ad-page .new-ad-process__title {
    margin: 0;
    font-family: "Saira", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #000a38;
}

.new-ad-page .new-ad-process__title strong {
    font-weight: 600;
}

/* SVG spans full width of the section (header stays in constrained container above) */
.new-ad-page .new-ad-process__track {
    width: 100%;
    margin: 0;
    padding: 0 0 clamp(56px, 10vw, 112px);
    box-sizing: border-box;
}

.new-ad-page .new-ad-process__graphic {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

.new-ad-page .new-ad-process-steps-mobile {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.new-ad-page .new-ad-cta-section {
    background-color: #020826;
    background-image: url(/ad-landing-page/images/footer-bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.new-ad-page .new-ad-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(72px, 12vw, 128px) 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(26px, 4vw, 40px);
}

.new-ad-page .new-ad-cta__title {
    margin: 0;
    font-family: "Saira", sans-serif;
    font-weight: 300;
    font-size:3rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #fff;
}

.new-ad-page .new-ad-cta__title strong {
    font-weight: 600;
}

.new-ad-page .new-ad-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 3vw, 16px) clamp(20px, 5vw + 8px, 40px);
    border-radius: 999px;
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #14cdc8;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.new-ad-page .new-ad-cta__btn:hover {
    opacity: 0.92;
}

/* —— Case study carousel + audience fit cards —— */

.new-ad-page .new-ad-case-bundle-section {
    background: #eef3f9;
}

.new-ad-page .new-ad-case-bundle__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) 15px clamp(48px, 8vw, 96px);
    box-sizing: border-box;
}

.new-ad-page .new-ad-case-bundle__badge {
    display: table;
    margin: 0 auto clamp(20px, 3vw, 32px);
    padding: 7px 16px;
    border-radius: 999px;
    font-family: "Saira", sans-serif;
    font-size: clamp(12px, 3.5vw, 24px);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #14cdc8;
}

.new-ad-page .new-ad-case-swiper {
    overflow: hidden;
    width: 100%;
}

/* Equal-height slides: stretch card inside each swiper-slide (#case-study-swiper only) */
.new-ad-page #case-study-swiper .swiper-wrapper {
    align-items: stretch;
}

.new-ad-page #case-study-swiper.new-ad-case-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
    align-self: stretch;
}

.new-ad-page #case-study-swiper .swiper-slide > .new-ad-case-card.new-ad-case-card--case-study {
    flex: 1 1 auto;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-card__body {
    flex: 1 1 auto;
    min-height: 0;
}

.new-ad-page .new-ad-case-card {
    margin: 0;
    padding: clamp(26px, 3.55vw, 38px);
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow:
        0 8px 28px rgba(1, 9, 42, 0.05),
        0 1px 3px rgba(1, 9, 42, 0.04);
    box-sizing: border-box;
}

.new-ad-page .new-ad-case-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(24px, 3.2vw, 40px);
    align-items: start;
}

/* Case study carousel — shared by all swiper slides (#case-study-swiper) */
.new-ad-page .new-ad-case-card--case-study .new-ad-case-card__title {
    flex-shrink: 0;
    margin: 0 auto clamp(20px, 2.85vw, 28px);
    max-width: 56rem;
    font-family: "Saira", sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -0.02em;
    color: #000a38;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-card__subtitle {
    margin: 0 0 12px;
    font-family: "Saira", sans-serif;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #000a38;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-card__text {
    margin: 0 0 clamp(18px, 2.25vw, 22px);
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.65;
    color: #334155;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-card__callout {
    margin: 0;
    padding: clamp(16px, 2.2vw, 20px) clamp(18px, 2.5vw, 24px);
    border-radius: 10px;
    font-family: "Saira", sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.62;
    text-align: left;
    color: #000a38;
    background: rgba(20, 205, 200, 0.14);
}

@media (min-width: 993px) {
    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__body {
        align-items: stretch;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__copy {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-self: stretch;
        height: 100%;
        min-height: 0;
    }

    .new-ad-page
        .new-ad-case-card--case-study
        .new-ad-case-card__copy
        > :last-child {
        margin-top: auto;
    }

    /* Rail fills grid row height; illustration sits above stats flush to bottoms with left column */
    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__rail {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        align-self: stretch;
        min-width: 0;
        width: 100%;
        min-height: 0;
        gap: clamp(14px, 2vw, 22px);
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__media {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        align-self: stretch;
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        box-shadow: none;
        background: none;
        max-width: none;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__stats {
        flex-shrink: 0;
    }
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-card__media {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    max-width: none;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-card__rail {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(14px, 2vw, 22px);
    min-width: 0;
    width: 100%;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-card__media img {
    display: block;
    margin: 0 auto;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: clamp(300px, 34vw, 420px);
    object-fit: contain;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    border: none;
    gap: clamp(10px, 1.85vw, 20px);
    min-width: 0;
}

/* No outer capsule — sits on white card like comp */
.new-ad-page .new-ad-case-card--case-study .new-ad-case-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(8px, 1.15vw, 12px);
    min-width: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    box-shadow: none;
}

/* Pale cyan rounded square ~65% SVG fill vs tile */
.new-ad-page .new-ad-case-card--case-study .new-ad-case-stat__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 50px;
    margin: 0;
    padding: 0;
    border-radius: 10px;
    background: #dff5f8;
    border: none;
    box-shadow: none;
    box-sizing: border-box;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-stat__icon img {
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
    border-radius: 0;
    width: 30px;
    height: 30px;
    max-width: none;
    max-height: none;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-stat__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    text-align: left;
    font-family: "Saira", sans-serif;
    line-height: 1.2;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-stat__accent {
    font-weight: 700;
    font-size: clamp(13px, calc(0.55vw + 11px), 16px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #000a38;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-stat__rest {
    display: block;
    font-weight: 400;
    font-size: clamp(10px, calc(0.35vw + 9px), 12px);
    line-height: 1.38;
    color: #1f316f;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.new-ad-page .new-ad-case-card--case-study .new-ad-case-card__copy {
    min-width: 0;
}

.new-ad-page .new-ad-case-swiper .swiper-pagination {
    position: relative;
    margin-top: clamp(14px, 2.25vw, 22px);
    bottom: auto;
}

.new-ad-page .new-ad-case-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    margin: 0 4px;
    border-radius: 999px;
    background: #cbd5e1;
}

.new-ad-page .new-ad-case-swiper .swiper-pagination-bullet-active {
    background: #000a38;
}

.new-ad-page .new-ad-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(16px, 2.5vw, 22px);
    margin-top: clamp(40px, 6vw, 56px);
}

.new-ad-page .new-ad-audience-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(24px, 4vw, 32px);
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

/* Icon above heading (matches comp), left-aligned */
.new-ad-page .new-ad-audience-card__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 2vw, 16px);
    margin-bottom: clamp(18px, 3vw, 22px);
}

.new-ad-page .new-ad-audience-card__icon {
    flex-shrink: 0;
    width: clamp(46px, 5vw, 52px);
    height: auto;
    display: block;
}

.new-ad-page .new-ad-audience-card__title {
    margin: 0;
    font-family: "Saira", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.35;
    color: #000a38;
    letter-spacing: -0.01em;
}

.new-ad-page .new-ad-audience-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 10px;
}

/* Full-width bordered rows like the reference */
.new-ad-page .new-ad-audience-card__list li {
    margin: 0;
    padding: clamp(12px, 2vw, 15px) clamp(14px, 2vw, 18px);
    border-radius: 10px;
    border: 1px solid #e8edf3;
    background: #F8FAFC;
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.45;
    color: #475569;
    box-sizing: border-box;
}

/* —— Why choose Deuex (features + testimonials) —— */

.new-ad-page .new-ad-why-section {
    background: #fbfcfd;
}

.new-ad-page .new-ad-why__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) 15px clamp(56px, 10vw, 104px);
    box-sizing: border-box;
}

.new-ad-page .new-ad-why__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(36px, 5vw, 64px);
}

.new-ad-page .new-ad-why__copy {
    max-width: 560px;
}

.new-ad-page .new-ad-why__badge {
    display: inline-block;
    margin: 0 0 clamp(16px, 2.5vw, 22px);
    padding: 8px 18px;
    border-radius: 999px;
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #14cdc8;
}

.new-ad-page .new-ad-why__title {
    margin: 0 0 clamp(14px, 2vw, 20px);
    font-family: "Saira", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.16;
    letter-spacing: -0.02em;
    color: #000a38;
}

.new-ad-page .new-ad-why__lead {
    margin: 0 0 clamp(28px, 4vw, 36px);
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.55;
    color: #475569;
}

.new-ad-page .new-ad-why__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.new-ad-page .new-ad-why-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid #dee4ee;
    background: transparent;
    box-sizing: border-box;
}

.new-ad-page .new-ad-why-feature__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: block;
}

.new-ad-page .new-ad-why-feature__text {
    margin: 0;
    font-family: "Saira", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: #1e293b;
}

.new-ad-page .new-ad-why__testimonials {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.new-ad-page .new-ad-testimonial {
    margin: 0;
    padding: clamp(20px, 3vw, 26px) clamp(18px, 2.5vw, 24px);
    border-radius: 10px;
    border: 1px solid #d6dfeb;
    background: #f8fafc;
    box-sizing: border-box;
}

.new-ad-page .new-ad-testimonial__stars {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
}

.new-ad-page .new-ad-testimonial__stars img {
    display: block;
    width: 22px;
    height: 20px;
}

.new-ad-page .new-ad-testimonial__quote {
    margin: 0 0 16px;
    font-family: "Saira", sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.55;
    color: #334155;
}

.new-ad-page .new-ad-testimonial__cite {
    margin: 0;
    font-family: "Saira", sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    color: #0f172a;
}

@media (max-width: 991px) {
    .new-ad-page .new-ad-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .new-ad-page .new-ad-hero__title {
        font-size: 2rem;
        text-align: center;
    }

    .new-ad-page .new-ad-hero__subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .new-ad-page .new-ad-hero__mockup {
        order: 2;
    }

    .new-ad-page .new-ad-hero__copy {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .new-ad-page .new-ad-phone {
        max-width: none;
        width: 100%;
        aspect-ratio: auto;
        background-image: none;
    }

    .new-ad-page .new-ad-phone__screen {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: none;
    }

    .new-ad-page .new-ad-phone-form__heading {
        font-size: 1.25rem;
    }

    .new-ad-page .new-ad-stuck__grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 40px;
    }

    .new-ad-page .new-ad-stuck__copy {
        max-width: none;
        text-align: center;
    }

    .new-ad-page .new-ad-stuck__badge {
        font-size: 1rem;
        text-align: center;
    }

    .new-ad-page .new-ad-stuck__title {
        font-size: 2rem;
        text-align: center;
    }

    .new-ad-page .new-ad-stuck-card__text {
        font-size: 1rem;
    }

    .new-ad-page .new-ad-approach__grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0;
    }

    .new-ad-page .new-ad-approach__cards  {
        margin-top: 1rem;
    }

    .new-ad-page .new-ad-approach__copy {
        max-width: none;
        text-align: center;
    }

    .new-ad-page .new-ad-approach__badge {
        margin-bottom: 2rem;
    }

    .new-ad-page .new-ad-approach__title {
        font-size: 2rem;
        text-align: center;
    }

    .new-ad-page .new-ad-approach__lead {
        font-size: 1rem;
        text-align: center;
    }

    .new-ad-page .new-ad-approach-card__text {
        font-size: 1rem;
    }

    .new-ad-page .new-ad-deliverables__title {
        font-size: 2rem;
    }

    .new-ad-page .new-ad-deliverables__tagline {
        font-size: 1rem;
    }

    .new-ad-page .new-ad-process__title {
        font-size: 2rem;
        text-align: center;
    }

    .new-ad-page .new-ad-process__track-desktop {
        display: none;
    }

    .new-ad-page .new-ad-process-steps-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(28px, 7vw, 44px);
        max-width: min(320px, 100%);
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .new-ad-page .new-ad-process-steps-mobile__step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2.5vw, 18px);
    }

    .new-ad-page .new-ad-process-steps-mobile__heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
        max-width: 22rem;
    }

    .new-ad-page .new-ad-process-steps-mobile__label {
        font-family: "Saira", sans-serif;
        font-size: 1.125rem;
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: -0.02em;
        color: #000a38;
    }

    .new-ad-page .new-ad-process-steps-mobile__title {
        font-family: "Saira", sans-serif;
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.45;
        letter-spacing: -0.01em;
        color: #000a38;
    }

    .new-ad-page .new-ad-process-steps-mobile__ellipse {
        display: block;
        width: min(196px, 58vw);
        height: auto;
    }

    .new-ad-page .new-ad-deliverables__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .new-ad-page .new-ad-why__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .new-ad-page .new-ad-why__copy {
        max-width: none;
    }

    .new-ad-page .new-ad-why__badge {
        display: block;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto clamp(16px, 2.5vw, 22px);
        font-size: 1rem;
    }

    .new-ad-page .new-ad-why__title {
        font-size: 2rem;
        text-align: center;
    }

    .new-ad-page .new-ad-why__lead {
        font-size: 1rem;
        text-align: center;
    }

    .new-ad-page .new-ad-why-feature__text {
        font-size: 1rem;
    }

    .new-ad-page .new-ad-testimonial__quote {
        font-size: 1rem;
    }

    .new-ad-page .new-ad-testimonial__cite {
        font-size: 1rem;
    }

    .new-ad-page .new-ad-cta__title {
        font-size: 2rem;
    }

    .new-ad-page .new-ad-cta__btn {
        font-size: 1rem;
    }

    .new-ad-page .new-ad-cta__site {
        font-size: 1rem;
    }

    .new-ad-page .new-ad-case-card__body {
        grid-template-columns: 1fr;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__title {
        font-size: 2rem;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__subtitle {
        font-size: 1.125rem;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__text {
        font-size: 1rem;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__callout {
        font-size: 1rem;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__rail {
        order: -1;
        max-width: 100%;
        margin-inline: auto;
        width: 100%;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__media {
        order: 0;
        max-width: none;
        margin-inline: 0;
        width: auto;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__stats {
        order: 0;
        grid-template-columns: 1fr;
        gap: clamp(10px, 2.5vw, 16px);
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-stat {
        gap: clamp(6px, 2vw, 10px);
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-stat__icon {
        width: 38px;
        height: 43px;
        border-radius: 9px;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-stat__icon img {
        width: 25px;
        height: 25px;
    }

    .new-ad-page .new-ad-case-card--case-study .new-ad-case-card__media img {
        max-height: min(340px, 62vw);
    }

    .new-ad-page .new-ad-audience-grid {
        grid-template-columns: 1fr;
    }

    .new-ad-page .new-ad-audience-card__title {
        font-size: 2rem;
    }

    .new-ad-page .new-ad-audience-card__list li {
        font-size: 1rem;
    }
}

/* style.css sets #why-us img { width: 80% } under 992px — keep error icons fixed */
@media (max-width: 992px) {
    .new-ad-page #why-us .new-ad-stuck-card__icon {
        width: 38px;
        max-width: none;
        height: 38px;
    }
}

@media (max-width: 575px) {
    .new-ad-page .new-ad-hero {
        padding: 30px;
        text-align: center;
    }

    .new-ad-page .new-ad-hero__logo {
        width: 168px;
        margin-bottom: 28px;
    }

    .new-ad-page .new-ad-approach__cards {
        grid-template-columns: 1fr;
    }

    .new-ad-page .new-ad-deliverables__grid {
        grid-template-columns: 1fr;
    }
}
