/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@700;800&display=swap'); 
:root {
        /* Brand colours */
        --dfm-color-orange: #F97316;
        --dfm-color-orange-dark: #EA580C;
        --dfm-color-orange-light: #FB923C;

        /* Backgrounds */
        --dfm-bg-white: #FFFFFF;
        --dfm-bg-light: #F7F7F7;

        /* Text */
        --dfm-text-primary: #1A1A2E;
        --dfm-text-secondary: #555555;
        --dfm-text-muted: #888888;
        --dfm-text-faint: #BBBBBB;

        /* Border */
        --dfm-border-default: #E8E6E0;

        /* Status */
        --dfm-color-success: #22C55E;
        --dfm-color-danger: #EF4444;
    }

    /* ══════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Outfit', sans-serif;
        background: var(--dfm-bg-white);
        color: var(--dfm-text-primary);
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }

    /* ══════════════════════════════════════════════════
   IMAGES — global defaults
   ══════════════════════════════════════════════════ */
    img.img-fluid {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* ══════════════════════════════════════════════════
   LAYOUT — Section wrappers
   ══════════════════════════════════════════════════ */
    .dfm-section {
        padding: 90px 0;
    }

    .dfm-section--light {
        padding: 90px 0;
        background: var(--dfm-bg-light);
        border-top: 1px solid var(--dfm-border-default);
        border-bottom: 1px solid var(--dfm-border-default);
    }

    .dfm-section--center {
        padding: 90px 0 70px;
        text-align: center;
    }

    /* ══════════════════════════════════════════════════
   TYPOGRAPHY — Shared labels / headings
   ══════════════════════════════════════════════════ */
    .dfm-section__label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--dfm-color-orange);
        margin-bottom: 12px;
    }

    .dfm-section__title {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1.5px;
        margin-bottom: 16px;
        color: var(--dfm-text-primary);
    }

    .dfm-section__title--center {
        margin: 0 auto 6px;
        text-align: center;
    }

    .dfm-section__desc {
        font-size: 16px;
        color: var(--dfm-text-secondary);
        line-height: 1.65;
        max-width: 580px;
    }

    .dfm-section__desc--center {
        margin: 0 auto;
        text-align: center;
    }

    /* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
    .dfm-btn-group {
        display: flex;
        gap: 14px;
        justify-content: center;
        margin-bottom: 36px;
        flex-wrap: wrap;
    }

    .dfm-feb-btn {
        display: flex;
        justify-content: center;
        gap: 16px;
        align-items: center;
    }

    .dfm-btn--primary {
        padding: 12px 24px;
        background: linear-gradient(135deg, var(--dfm-color-orange), var(--dfm-color-orange-dark));
        color: #fff;
        border: none;
        border-radius: 9px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        box-shadow: 0 4px 18px rgba(249, 115, 22, .3);
        -webkit-tap-highlight-color: transparent;
        transition: opacity .2s;
        height: 52px;
        line-height: normal;
    }

    .dfm-btn--primary:hover {
        opacity: .9;
        color: #fff;
    }

    .dfm-btn--secondary {
        padding: 13px 30px;
        background: rgba(0, 0, 0, .03);
        border: 1.5px solid #DDD;
        color: #555;
        border-radius: 9px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        transition: background .2s;
    }

    .dfm-btn--secondary:hover {
        background: rgba(0, 0, 0, .06);
        color: #555;
    }

    /* ══════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════ */
    .dfm-hero {
        padding: 120px 0 80px;
        position: relative;
        text-align: center;
    }

    .dfm-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 50% at 50% 20%, rgba(249, 115, 22, .08), transparent);
        pointer-events: none;
    }

    .dfm-hero .container {
        position: relative;
        z-index: 2;
    }

    /* Hero Badge */
    .dfm-hero__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 18px;
        background: rgba(249, 115, 22, .08);
        border: 1px solid rgba(249, 115, 22, .2);
        border-radius: 100px;
        margin-bottom: 24px;
    }

    .dfm-hero__badge-dot {
        width: 7px;
        height: 7px;
        background: var(--dfm-color-orange);
        border-radius: 50%;
        box-shadow: 0 0 8px var(--dfm-color-orange);
        animation: dfm-pulse 2s ease-in-out infinite;
    }

    @keyframes dfm-pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: .5;
            transform: scale(1.3);
        }
    }

    .dfm-hero__badge-text {
        font-size: 11px;
        font-weight: 700;
        color: var(--dfm-color-orange-dark);
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    /* Hero Heading */
    .dfm-hero__title {
        font-size: 56px;
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -2.5px;
        margin-bottom: 6px;
        color: var(--dfm-text-primary);
    }

    .dfm-hero__title-accent {
        color: var(--dfm-color-orange);
    }

    .dfm-hero__subtitle {
        font-size: 18px;
        color: var(--dfm-text-secondary);
        line-height: 1.5;
        max-width: 660px;
        margin: 0 auto 32px;
    }

    .dfm-hero__subtitle strong {
        color: var(--dfm-text-primary);
        font-weight: 600;
    }

    /* ══════════════════════════════════════════════════
   HERO — STATS STRIP
   ══════════════════════════════════════════════════ */
    .dfm-stats {
        display: flex;
        justify-content: center;
        gap: 44px;
        margin-bottom: 36px;
        flex-wrap: wrap;
    }

    .dfm-stat__value {
        font-size: 42px;
        font-weight: 900;
        color: var(--dfm-color-orange);
        letter-spacing: -2px;
    }

    .dfm-stat__label {
        font-size: 11px;
        color: var(--dfm-text-muted);
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 2px;
    }

    /* ══════════════════════════════════════════════════
   HERO — COMPLIANCE BADGES
   ══════════════════════════════════════════════════ */
    .dfm-compliance {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .dfm-compliance__badge {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 5px 12px;
        background: rgba(0, 0, 0, .03);
        border: 1px solid var(--dfm-border-default);
        border-radius: 5px;
    }

    .dfm-compliance__check {
        color: var(--dfm-color-orange);
        font-size: 10px;
        font-weight: 800;
    }

    .dfm-compliance__text {
        font-size: 10px;
        color: var(--dfm-text-muted);
        font-weight: 600;
    }

    /* ══════════════════════════════════════════════════
   INDUSTRIES SECTION
   ══════════════════════════════════════════════════ */
    .dfm-industries {
        background: var(--dfm-bg-light);
        border-top: 1px solid var(--dfm-border-default);
        border-bottom: 1px solid var(--dfm-border-default);
        padding: 90px 0;
    }

    .dfm-industry-card {
        padding: 24px 16px;
        background: #fff;
        border: 1px solid var(--dfm-border-default);
        border-radius: 12px;
        text-align: center;
        transition: all .3s;
        height: 100%;
    }

    .dfm-industry-card:hover {
        border-color: rgba(249, 115, 22, .3);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
    }

    .dfm-industry-card__icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .dfm-industry-card__name {
        font-size: 12px;
        font-weight: 600;
        color: var(--dfm-text-secondary);
        margin-bottom: 4px;
    }

    .dfm-industry-card__use {
        font-size: 10px;
        color: var(--dfm-text-muted);
        line-height: 1.4;
    }

    /* ══════════════════════════════════════════════════
   WHY DFM — COMPARISON CARDS
   ══════════════════════════════════════════════════ */
    .dfm-compare-card {
        padding: 24px;
        border-radius: 13px;
        border: 1px solid;
        height: 100%;
    }

    .dfm-compare-card--bad {
        background: rgba(239, 68, 68, .04);
        border-color: rgba(239, 68, 68, .15);
    }

    .dfm-compare-card--good {
        background: rgba(34, 197, 94, .04);
        border-color: rgba(34, 197, 94, .15);
    }

    .dfm-compare-card__label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .dfm-compare-card--bad .dfm-compare-card__label {
        color: var(--dfm-color-danger);
    }

    .dfm-compare-card--good .dfm-compare-card__label {
        color: var(--dfm-color-success);
    }

    .dfm-compare-card__list {
        list-style: none;
        padding: 0;
    }

    .dfm-compare-card__list li {
        font-size: 13px;
        color: var(--dfm-text-secondary);
        padding: 7px 0;
        border-bottom: 1px solid rgba(0, 0, 0, .04);
        display: flex;
        align-items: flex-start;
        gap: 8px;
        line-height: 1.5;
    }

    .dfm-compare-card__list li:last-child {
        border-bottom: none;
    }

    /* ══════════════════════════════════════════════════
   NINJA FEATURES SECTION
   ══════════════════════════════════════════════════ */
    .dfm-features {
        background: var(--dfm-bg-light);
        border-top: 1px solid var(--dfm-border-default);
        border-bottom: 1px solid var(--dfm-border-default);
        padding: 90px 0;
    }

    .dfm-feature-card {
        padding: 28px 24px;
        background: #fff;
        border: 1px solid var(--dfm-border-default);
        border-radius: 14px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: all .3s;
        -webkit-tap-highlight-color: transparent;
        height: 100%;
    }

    .dfm-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--dfm-color-orange), var(--dfm-color-orange-light));
        opacity: 0;
        transition: opacity .3s;
    }

    .dfm-feature-card:hover::before,
    .dfm-feature-card.is-open::before {
        opacity: 1;
    }

    .dfm-feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    }

    .dfm-feature-card.is-open {
        border-color: var(--dfm-color-orange);
        background: rgba(249, 115, 22, .03);
    }

    .dfm-feature-card__num {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(249, 115, 22, .08);
        border: 1px solid rgba(249, 115, 22, .2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'JetBrains Mono', monospace;
        font-size: 12px;
        font-weight: 800;
        color: var(--dfm-color-orange);
        margin-bottom: 14px;
    }

    .dfm-feature-card__title {
        font-size: 15px;
        font-weight: 700;
        color: var(--dfm-text-primary);
        margin-bottom: 6px;
    }

    .dfm-feature-card__hint {
        font-size: 11px;
        color: var(--dfm-color-orange);
        font-weight: 600;
        margin-top: 8px;
        transition: all .3s;
    }

    .dfm-feature-card.is-open .dfm-feature-card__hint {
        opacity: 0;
        height: 0;
        margin: 0;
        overflow: hidden;
    }

    .dfm-feature-card__desc {
        font-size: 12.5px;
        color: var(--dfm-text-muted);
        line-height: 1.55;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease, opacity .3s, margin .3s;
        opacity: 0;
        margin-top: 0;
    }

    .dfm-feature-card.is-open .dfm-feature-card__desc {
        max-height: 200px;
        opacity: 1;
        margin-top: 8px;
    }

    /* ══════════════════════════════════════════════════
   EVERYTHING SECTION — Icon grid
   ══════════════════════════════════════════════════ */
    .dfm-everything-card {
        padding: 18px;
        background: #fff;
        border: 1px solid var(--dfm-border-default);
        border-radius: 11px;
        text-align: center;
        transition: all .3s;
        height: 100%;
    }

    .dfm-everything-card:hover {
        border-color: rgba(249, 115, 22, .3);
        background: rgba(249, 115, 22, .03);
    }

    .dfm-everything-card__icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .dfm-everything-card__label {
        font-size: 12px;
        font-weight: 600;
        color: var(--dfm-text-secondary);
    }

    /* ══════════════════════════════════════════════════
   PROMPTS SECTION
   ══════════════════════════════════════════════════ */
    .dfm-prompts {
        text-align: center;
        background: var(--dfm-bg-light);
        border-top: 1px solid var(--dfm-border-default);
        border-bottom: 1px solid var(--dfm-border-default);
        padding: 90px 0;
    }

    .dfm-prompt-box {
        max-width: 680px;
        margin: 36px auto 0;
        background: #fff;
        border: 1px solid rgba(249, 115, 22, .2);
        border-radius: 14px;
        padding: 28px 36px;
        text-align: left;
    }

    .dfm-prompt-box__label {
        font-size: 10px;
        color: var(--dfm-text-muted);
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .dfm-prompt-box__list {
        list-style: none;
        padding: 0;
    }

    .dfm-prompt-box__list li {
        font-family: 'JetBrains Mono', monospace;
        font-size: 12.5px;
        color: var(--dfm-color-orange-dark);
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, .04);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dfm-prompt-box__list li:last-child {
        border-bottom: none;
    }

    .dfm-prompt-box__chevron {
        color: var(--dfm-color-orange);
        font-weight: 700;
        font-size: 15px;
    }

    /* ══════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════════ */
    .dfm-testimonial-card {
        padding: 28px 24px;
        background: #fff;
        border: 1px solid var(--dfm-border-default);
        border-radius: 14px;
        transition: all .3s;
        height: 100%;
    }

    .dfm-testimonial-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    }

    .dfm-testimonial-card__quote {
        font-size: 28px;
        color: rgba(249, 115, 22, .25);
        font-weight: 900;
        line-height: 1;
        margin-bottom: 6px;
    }

    .dfm-testimonial-card__text {
        font-size: 13px;
        color: var(--dfm-text-secondary);
        line-height: 1.7;
        margin-bottom: 16px;
        font-style: italic;
    }

    .dfm-testimonial-card__meta {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .dfm-testimonial-card__source {
        font-size: 11px;
        font-weight: 700;
        color: var(--dfm-text-muted);
    }

    .dfm-testimonial-card__tag {
        font-size: 9px;
        font-weight: 600;
        color: var(--dfm-color-orange);
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 3px 9px;
        background: rgba(249, 115, 22, .08);
        border-radius: 4px;
    }

    .dfm-testimonial-card__stats {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid var(--dfm-border-default);
        display: flex;
        gap: 18px;
    }

    .dfm-testimonial-card__stat-value {
        font-size: 18px;
        font-weight: 800;
        color: var(--dfm-color-orange);
    }

    .dfm-testimonial-card__stat-label {
        font-size: 9px;
        color: var(--dfm-text-muted);
        font-weight: 600;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    /* ══════════════════════════════════════════════════
   BENEFITS SECTION
   ══════════════════════════════════════════════════ */
    .dfm-benefit-card {
        padding: 24px;
        background: #fff;
        border: 1px solid var(--dfm-border-default);
        border-radius: 13px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        transition: all .3s;
        height: 100%;
    }

    .dfm-benefit-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    }

    .dfm-benefit-card__icon {
        font-size: 28px;
        flex-shrink: 0;
    }

    .dfm-benefit-card__title {
        font-size: 15px;
        font-weight: 700;
        color: var(--dfm-text-primary);
        margin-bottom: 4px;
    }

    .dfm-benefit-card__desc {
        font-size: 12.5px;
        color: var(--dfm-text-muted);
        line-height: 1.55;
    }

    /* ══════════════════════════════════════════════════
   ROI BANNER SECTION
   ══════════════════════════════════════════════════ */
    .dfm-roi-banner {
        background: linear-gradient(135deg, var(--dfm-color-orange), var(--dfm-color-orange-dark));
        border-radius: 18px;
        padding: 50px;
        display: flex;
        align-items: center;
        gap: 50px;
        margin-top: 40px;
        position: relative;
        overflow: hidden;
    }

    .dfm-roi-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .15), transparent 50%);
        pointer-events: none;
    }

    .dfm-roi-banner__number {
        font-size: 90px;
        font-weight: 900;
        color: #fff;
        letter-spacing: -4px;
        line-height: 1;
        position: relative;
        z-index: 2;
        white-space: nowrap;
    }

    .dfm-roi-banner__content {
        position: relative;
        z-index: 2;
    }

    .dfm-roi-banner__title {
        font-size: 26px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 6px;
    }

    .dfm-roi-banner__desc {
        font-size: 15px;
        color: rgba(255, 255, 255, .85);
        line-height: 1.6;
        max-width: 480px;
    }

    /* ══════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════ */
    .dfm-cta__title {
        font-size: 42px;
        font-weight: 900;
        letter-spacing: -2px;
        margin-bottom: 10px;
        color: var(--dfm-text-primary);
    }

    .dfm-cta__subtitle {
        font-size: 17px;
        color: var(--dfm-text-secondary);
        margin-bottom: 32px;
    }

    .dfm-cta__email-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        background: var(--dfm-bg-light);
        border: 1px solid rgba(249, 115, 22, .2);
        border-radius: 11px;
        text-decoration: none;
    }

    .dfm-cta__email-label {
        font-size: 12px;
        color: var(--dfm-text-muted);
    }

    .dfm-cta__email-addr {
        font-size: 15px;
        font-weight: 700;
        color: var(--dfm-color-orange);
    }

    /* ══════════════════════════════════════════════════
   RESPONSIVE — Tablet  (≤ 1024px)
   ══════════════════════════════════════════════════ */
    @media (max-width: 1024px) {

        .dfm-section,
        .dfm-section--light,
        .dfm-features,
        .dfm-industries,
        .dfm-prompts {
            padding: 70px 0;
        }

        .dfm-section__title {
            font-size: 32px;
        }

        .dfm-stats {
            gap: 28px;
        }

        .dfm-stat__value {
            font-size: 34px;
        }

        .dfm-roi-banner {
            padding: 36px;
            gap: 36px;
        }

        .dfm-roi-banner__number {
            font-size: 70px;
        }

        .dfm-roi-banner__title {
            font-size: 22px;
        }
    }
    @media (max-width: 768px) {

        .dfm-section,
        .dfm-section--light,
        .dfm-features,
        .dfm-industries,
        .dfm-prompts {
            padding: 50px 0;
        }

        /* Typography */
        .dfm-section__label {
            font-size: 10px;
            margin-bottom: 10px;
        }

        .dfm-section__title {
            font-size: 26px;
        }

        .dfm-feb-btn {
            display: flex;
            justify-content: center;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
        }

        .dfm-feb-btnhref {
            width: 100%;
        }

        .dfm-feb-btnhref a.dfm-cta__email-link {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: center;
        }

        .dfm-section__desc {
            font-size: 14px;
        }

        /* Hero */
        .dfm-hero {
            padding: 90px 0 50px;
        }

        .dfm-hero__badge-text {
            font-size: 9px;
        }

        .dfm-hero__title {
            font-size: 30px;
            letter-spacing: -1.5px;
        }

        .dfm-hero__subtitle {
            font-size: 14px;
            margin-bottom: 24px;
            padding: 0 8px;
        }

        /* Stats */
        .dfm-stats {
            gap: 16px;
        }

        .dfm-stat__value {
            font-size: 28px;
        }

        .dfm-stat__label {
            font-size: 9px;
        }

        /* Buttons */
        .dfm-btn-group {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .dfm-btn--primary,
        .dfm-btn--secondary {
            width: 100%;
            max-width: 100%;
            text-align: center;
            padding: 12px 24px;
            font-size: 13px;
        }

        /* Compliance */
        .dfm-compliance {
            gap: 8px;
        }

        .dfm-compliance__badge {
            padding: 4px 10px;
        }

        .dfm-compliance__text {
            font-size: 9px;
        }

        /* Industry cards */
        .dfm-industry-card {
            padding: 16px 12px;
        }

        .dfm-industry-card__icon {
            font-size: 26px;
        }

        .dfm-industry-card__name {
            font-size: 11px;
        }

        .dfm-industry-card__use {
            font-size: 9px;
        }

        /* Compare cards */
        .dfm-compare-card {
            padding: 20px;
        }

        .dfm-compare-card__list li {
            font-size: 12px;
            padding: 6px 0;
        }

        /* Feature cards */
        .dfm-feature-card {
            padding: 22px 20px;
        }

        .dfm-feature-card__num {
            width: 28px;
            height: 28px;
            font-size: 11px;
            margin-bottom: 10px;
        }

        .dfm-feature-card__title {
            font-size: 14px;
        }

        .dfm-feature-card__desc {
            font-size: 12px;
        }

        /* Everything cards */
        .dfm-everything-card {
            padding: 14px;
        }

        .dfm-everything-card__icon {
            font-size: 20px;
        }

        .dfm-everything-card__label {
            font-size: 11px;
        }

        /* Prompt box */
        .dfm-prompt-box {
            padding: 20px 18px;
        }

        .dfm-prompt-box__list li {
            font-size: 10.5px;
            padding: 8px 0;
        }

        /* Testimonials */
        .dfm-testimonial-card {
            padding: 22px 20px;
        }

        .dfm-testimonial-card__text {
            font-size: 12px;
        }

        .dfm-testimonial-card__stats {
            gap: 14px;
        }

        .dfm-testimonial-card__stat-value {
            font-size: 16px;
        }

        /* Benefits */
        .dfm-benefit-card {
            padding: 20px;
        }

        .dfm-benefit-card__icon {
            font-size: 24px;
        }

        .dfm-benefit-card__title {
            font-size: 14px;
        }

        .dfm-benefit-card__desc {
            font-size: 11.5px;
        }

        /* ROI banner */
        .dfm-roi-banner {
            flex-direction: column;
            padding: 28px;
            gap: 20px;
            text-align: center;
        }

        .dfm-roi-banner__number {
            font-size: 64px;
        }

        .dfm-roi-banner__title {
            font-size: 20px;
        }

        .dfm-roi-banner__desc {
            font-size: 13px;
        }

        /* CTA */
        .dfm-cta__title {
            font-size: 28px;
        }

        .dfm-cta__subtitle {
            font-size: 14px;
        }

        .dfm-cta__email-link {
            flex-direction: column;
            gap: 4px;
            padding: 12px 20px;
        }
    }

    /* ══════════════════════════════════════════════════
   RESPONSIVE — Small phones  (≤ 400px)
   ══════════════════════════════════════════════════ */
    @media (max-width: 400px) {
        .dfm-hero__title {
            font-size: 26px;
        }

        .dfm-stats {
            gap: 12px;
        }

        .dfm-stat__value {
            font-size: 24px;
        }

        .dfm-stat__label {
            font-size: 8px;
        }

        .dfm-roi-banner__number {
            font-size: 50px;
        }

        .dfm-cta__title {
            font-size: 24px;
        }

        .dfm-prompt-box__list li {
            font-size: 9.5px;
        }
    }