/* Shared visual system for every new marketing page (homepage, module hubs,
   FMS feature sub-pages, pricing, compare, contact). Namespaced dwd-mkt- so
   it never collides with legacy per-page inline styles. Loads alongside
   cta-components.css, which owns buttons/modals/toast/whatsapp/mobile-bar. */

.dwd-mkt {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #1f2937;
}

.dwd-mkt h1, .dwd-mkt h2, .dwd-mkt h3,
.dwd-mkt-eyebrow, .dwd-mkt-hero-eyebrow,
.dwd-mkt-feature-card h3, .dwd-mkt-module-chip h4,
.dwd-mkt-step-num, .dwd-mkt-pivot {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.dwd-mkt h1, .dwd-mkt h2, .dwd-mkt h3 {
    font-weight: 800;
    color: #0f1e2c;
    letter-spacing: -0.4px;
}

.dwd-mkt-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.dwd-mkt-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #d8ecff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 16px 7px 12px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.dwd-mkt-hero-eyebrow .dwd-dot-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
}

.dwd-mkt-section {
    padding: 72px 0;
}

.dwd-mkt-section-tight {
    padding: 48px 0;
}

.dwd-mkt-eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #0a4064;
    background: rgba(10, 64, 100, 0.08);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.dwd-mkt-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* ---------- Hero ---------- */
.dwd-mkt-hero {
    position: relative;
    padding: 148px 0 80px;
    background:
        radial-gradient(880px 480px at 12% -10%, rgba(13, 90, 143, 0.55), transparent 60%),
        radial-gradient(720px 420px at 100% 0%, rgba(246, 199, 51, 0.14), transparent 55%),
        linear-gradient(180deg, #071b2c 0%, #0a2c46 45%, #0a4064 100%);
    color: #fff;
    overflow: hidden;
}

.dwd-mkt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 65%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 65%);
    pointer-events: none;
}

.dwd-mkt-hero > .dwd-mkt-container {
    position: relative;
    z-index: 1;
}

.dwd-mkt-hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 4.4vw, 3.35rem);
    line-height: 1.12;
    letter-spacing: -1px;
}

.dwd-mkt-hero .dwd-mkt-subhead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 18px 0 30px;
    line-height: 1.65;
}

.dwd-mkt-hero-media {
    margin-top: 52px;
}

.dwd-mkt-hero-image {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Hero carousel (homepage only) ---------- */
.dwd-hero-slide {
    display: none;
}

.dwd-hero-slide.is-active {
    display: block;
    animation: dwd-hero-fade-in 0.5s ease;
}

@keyframes dwd-hero-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dwd-hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.dwd-hero-dot {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.dwd-hero-dot span {
    position: relative;
    z-index: 1;
}

.dwd-hero-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(246, 199, 51, 0.22);
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 100px;
}

.dwd-hero-dot.is-active {
    color: #fff;
    border-color: rgba(246, 199, 51, 0.55);
}

.dwd-hero-dot.is-active::before {
    animation: dwd-hero-progress linear;
    animation-fill-mode: forwards;
}

@keyframes dwd-hero-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (max-width: 767px) {
    .dwd-hero-dots {
        gap: 8px;
    }
    .dwd-hero-dot {
        padding: 6px 11px;
        font-size: 11px;
    }
}

/* Browser-chrome mockup frame -- wraps a screenshot or, until one exists, a
   styled skeleton so the hero never shows a bare "placeholder" box. */
.dwd-browser-frame {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), 0 2px 0 rgba(255, 255, 255, 0.06) inset;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dwd-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    background: #eef1f4;
    border-bottom: 1px solid #e2e6ea;
}

.dwd-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dwd-browser-url {
    margin-left: 10px;
    background: #fff;
    border: 1px solid #dfe3e7;
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 11.5px;
    color: #8a94a0;
    flex-grow: 1;
    max-width: 260px;
}

.dwd-mkt-hero-media img {
    width: 100%;
    display: block;
}

.dwd-mkt-placeholder-shot {
    width: 100%;
    min-height: 320px;
    background: linear-gradient(180deg, #f7f9fb 0%, #eef1f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa4af;
    font-size: 13px;
    text-align: center;
    padding: 20px;
}

/* Skeleton dashboard used inside the hero browser-frame as a stand-in until
   a real screenshot is dropped in. */
.dwd-skeleton-dash {
    display: grid;
    grid-template-columns: 74px 1fr;
    min-height: 340px;
    background: #f7f9fb;
    text-align: left;
}

.dwd-skeleton-sidebar {
    background: #0f1e2c;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dwd-skeleton-sidebar span {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.14);
}

.dwd-skeleton-sidebar span:first-child {
    width: 60%;
    height: 14px;
    background: var(--dwd-accent, #f6c733);
    margin-bottom: 8px;
}

.dwd-skeleton-main {
    padding: 22px 26px;
}

.dwd-skeleton-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.dwd-skeleton-card {
    background: #fff;
    border: 1px solid #e7ebef;
    border-radius: 10px;
    padding: 14px;
}

.dwd-skeleton-card .dwd-skel-num {
    width: 46px;
    height: 16px;
    border-radius: 4px;
    background: #dbe4ea;
    margin-bottom: 8px;
}

.dwd-skeleton-card .dwd-skel-label {
    width: 76%;
    height: 8px;
    border-radius: 4px;
    background: #edf0f3;
}

.dwd-skeleton-table {
    background: #fff;
    border: 1px solid #e7ebef;
    border-radius: 10px;
    padding: 16px;
}

.dwd-skeleton-tr {
    display: grid;
    grid-template-columns: 28px 1.4fr 1fr 0.7fr;
    gap: 14px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f1f3f5;
}

.dwd-skeleton-tr:last-child {
    border-bottom: none;
}

.dwd-skeleton-tr .dwd-skel-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dbe4ea;
}

.dwd-skeleton-tr .dwd-skel-bar {
    height: 8px;
    border-radius: 4px;
    background: #edf0f3;
}

.dwd-skeleton-tr .dwd-skel-bar.short {
    width: 60%;
}

.dwd-skeleton-tr .dwd-skel-pill {
    height: 18px;
    width: 64px;
    border-radius: 100px;
    background: #e3f5ea;
}

/* ---------- Pain points ---------- */
.dwd-mkt-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.dwd-mkt-pain-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(15, 30, 44, 0.03);
}

.dwd-mkt-pain-card .dwd-mkt-pain-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fdecec;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
}

.dwd-mkt-pivot {
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    color: #0a4064;
    margin-top: 12px;
}

/* ---------- Steps ---------- */
.dwd-mkt-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 44px;
}

.dwd-mkt-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 16.5%;
    right: 16.5%;
    height: 1px;
    background: repeating-linear-gradient(90deg, #d7dee4 0 8px, transparent 8px 16px);
    z-index: 0;
}

.dwd-mkt-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
}

.dwd-mkt-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0a4064;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 16px;
    font-size: 17px;
    box-shadow: 0 0 0 6px #fff;
}

/* ---------- Feature grid ---------- */
.dwd-mkt-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.dwd-mkt-feature-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    padding: 26px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.18s ease, border-color 0.18s ease;
}

.dwd-mkt-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--dwd-accent, #f6c733), transparent 85%);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.dwd-mkt-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(10, 64, 100, 0.12);
    border-color: rgba(10, 64, 100, 0.15);
    color: inherit;
}

.dwd-mkt-feature-card:hover::before {
    opacity: 1;
}

.dwd-mkt-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, #0a4064, #0d5a8f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
    box-shadow: 0 6px 14px rgba(10, 64, 100, 0.22);
}

.dwd-mkt-feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.dwd-mkt-feature-card p {
    font-size: 14px;
    color: #5b6472;
    margin: 0;
    line-height: 1.55;
}

/* ---------- Feature section (module page + sub-page bodies) ---------- */
.dwd-mkt-feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid #eef0f2;
}

.dwd-mkt-feature-section:last-child {
    border-bottom: none;
}

.dwd-mkt-feature-section.dwd-mkt-reverse .dwd-mkt-feature-text {
    order: 2;
}

.dwd-mkt-feature-text ul {
    margin: 18px 0 0;
    padding-left: 20px;
}

.dwd-mkt-feature-text li {
    margin-bottom: 8px;
    color: #3c4450;
}

@media (max-width: 860px) {
    .dwd-mkt-feature-section {
        grid-template-columns: 1fr;
    }
    .dwd-mkt-feature-section.dwd-mkt-reverse .dwd-mkt-feature-text {
        order: 0;
    }
}

/* ---------- Proof section ---------- */
.dwd-mkt-proof {
    background: #f7f9fb;
}

.dwd-mkt-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.dwd-mkt-proof-card {
    background: #fff;
    border: 1px solid #e7ebef;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    color: #9aa4af;
    font-size: 13.5px;
    box-shadow: 0 1px 2px rgba(15, 30, 44, 0.03);
}

.dwd-mkt-proof-card strong {
    display: block;
    color: #9ca3af;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

/* ---------- Client logos ---------- */
.dwd-mkt-logos {
    position: relative;
    padding: 64px 0 56px;
    background:
        radial-gradient(720px 320px at 8% 0%, rgba(13, 90, 143, 0.35), transparent 60%),
        radial-gradient(640px 280px at 100% 100%, rgba(246, 199, 51, 0.08), transparent 55%),
        linear-gradient(180deg, #071b2c 0%, #0a2c46 100%);
    overflow: hidden;
}

.dwd-mkt-hero + .dwd-mkt-logos {
    padding-top: 8px;
    background:
        radial-gradient(640px 280px at 100% 100%, rgba(246, 199, 51, 0.08), transparent 55%),
        linear-gradient(180deg, #0a4064 0%, #08263c 42%, #071b2c 100%);
}

.dwd-mkt-logos-home {
    padding: 72px 0 60px;
}

.dwd-mkt-logos h2 {
    color: #fff;
}

.dwd-mkt-eyebrow-on-dark {
    color: #d8ecff;
    background: rgba(255, 255, 255, 0.1);
}

.dwd-mkt-logos-intro {
    margin-bottom: 36px;
}

.dwd-mkt-logos-sub {
    margin: 12px auto 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.6;
}

.dwd-logo-marquee {
    --dwd-logo-gap: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.dwd-logo-row {
    overflow: hidden;
}

.dwd-logo-track {
    display: flex;
    width: max-content;
    animation: dwd-logo-scroll var(--dwd-logo-duration, 40s) linear infinite;
}

.dwd-logo-row-reverse .dwd-logo-track {
    animation-name: dwd-logo-scroll-reverse;
}

.dwd-logo-marquee:hover .dwd-logo-track {
    animation-play-state: paused;
}

.dwd-logo-set {
    display: flex;
    gap: var(--dwd-logo-gap);
    padding-right: var(--dwd-logo-gap);
}

@keyframes dwd-logo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes dwd-logo-scroll-reverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.dwd-logo-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 196px;
    height: 96px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.dwd-logo-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.dwd-logo-card img {
    max-width: 100%;
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.dwd-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

@media (max-width: 640px) {
    .dwd-mkt-logos {
        padding: 48px 0 40px;
    }
    .dwd-logo-card {
        width: 160px;
        height: 84px;
        padding: 12px 14px;
        border-radius: 14px;
    }
    .dwd-logo-card img {
        max-height: 56px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dwd-logo-marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }
    .dwd-logo-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 24px;
        gap: 18px;
    }
    .dwd-logo-set {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
        gap: 18px;
    }
    .dwd-logo-clone {
        display: none;
    }
}

/* ---------- Modules strip ---------- */
.dwd-mkt-modules-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.dwd-mkt-module-chip {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    padding: 20px 18px;
    font-size: 13.5px;
    transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.18s ease, border-color 0.18s ease;
}

.dwd-mkt-module-chip:hover {
    border-color: rgba(10, 64, 100, 0.18);
    box-shadow: 0 14px 28px rgba(10, 64, 100, 0.1);
    transform: translateY(-3px);
    color: inherit;
}

.dwd-mkt-module-chip .dwd-mkt-chip-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 12px;
}

.dwd-mkt-module-chip h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #0f1e2c;
}

.dwd-mkt-module-chip p {
    margin: 0;
    color: #6b7280;
    font-size: 12.5px;
}

/* ---------- Excel-mini-section ---------- */
.dwd-mkt-excel-section {
    position: relative;
    background: radial-gradient(600px 300px at 15% 0%, rgba(255, 255, 255, 0.08), transparent 60%), linear-gradient(135deg, #0a2c46, #0a4064);
    color: #fff;
    border-radius: 20px;
    padding: 52px 48px;
    text-align: center;
    overflow: hidden;
}

.dwd-mkt-excel-section h2 {
    color: #fff;
}

.dwd-mkt-excel-section p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 12px auto 0;
}

/* ---------- FAQ ---------- */
.dwd-mkt-faq-item {
    border-bottom: 1px solid #eaecef;
    padding: 20px 0;
}

.dwd-mkt-faq-item summary {
    font-weight: 700;
    font-size: 15.5px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f1e2c;
    transition: color 0.15s ease;
}

.dwd-mkt-faq-item summary:hover {
    color: #0a4064;
}

.dwd-mkt-faq-item summary::-webkit-details-marker {
    display: none;
}

.dwd-mkt-faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: #0a4064;
    margin-left: 12px;
}

.dwd-mkt-faq-item[open] summary::after {
    content: '\2212';
}

.dwd-mkt-faq-item p {
    margin: 14px 0 0;
    color: #4b5563;
    line-height: 1.6;
}

/* ---------- Final CTA ---------- */
.dwd-mkt-final-cta {
    background: radial-gradient(700px 340px at 85% 0%, rgba(246, 199, 51, 0.12), transparent 60%), linear-gradient(135deg, #071b2c, #0a4064);
    color: #fff;
    border-radius: 22px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dwd-mkt-final-cta h2 {
    color: #fff;
}

.dwd-mkt-breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.dwd-mkt-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.dwd-mkt-internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.dwd-mkt-internal-links a {
    background: #f1f4f7;
    color: #0a4064;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13.5px;
    text-decoration: none;
    font-weight: 600;
}

.dwd-mkt-internal-links a:hover {
    background: #e2e8ee;
}

/* ---------- Pricing cards ---------- */
.dwd-mkt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.dwd-mkt-pricing-card {
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dwd-mkt-pricing-card h3 {
    font-size: 18px;
    margin: 0;
}

.dwd-mkt-pricing-card .dwd-mkt-price-line {
    font-size: 14.5px;
    color: #5b6472;
}

.dwd-mkt-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.dwd-mkt-pricing-card li {
    padding: 6px 0;
    font-size: 14px;
    color: #3c4450;
}

.dwd-mkt-pricing-card li i {
    color: #28a745;
    margin-right: 8px;
}

/* ---------- Comparison table ---------- */
.dwd-mkt-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dwd-mkt-compare-table th, .dwd-mkt-compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eef0f2;
    font-size: 14.5px;
}

.dwd-mkt-compare-table th {
    background: #0a4064;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.dwd-mkt-compare-table td:first-child {
    font-weight: 700;
    color: #0f1e2c;
}

.dwd-mkt-compare-table .dwd-mkt-yes {
    color: #198754;
    font-weight: 700;
}

.dwd-mkt-compare-table .dwd-mkt-no {
    color: #dc3545;
}

/* ---------- Contact form ---------- */
.dwd-mkt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 860px) {
    .dwd-mkt-pricing-grid {
        grid-template-columns: 1fr;
    }
    .dwd-mkt-compare-table {
        display: block;
        overflow-x: auto;
    }
    .dwd-mkt-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Footer ---------- */
.dwd-mkt-footer {
    background: #0a1f33;
    color: rgba(255, 255, 255, 0.75);
    padding: 44px 0 28px;
}

.dwd-mkt-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dwd-mkt-footer-logo img {
    height: 34px;
    filter: brightness(0) invert(1);
}

.dwd-mkt-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dwd-mkt-footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
}

.dwd-mkt-footer-nav a:hover {
    color: #fff;
}

.dwd-mkt-footer-social a {
    color: rgba(255, 255, 255, 0.75);
    margin-left: 16px;
    font-size: 16px;
}

.dwd-mkt-footer-bottom {
    padding-top: 18px;
    font-size: 13px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
    .dwd-mkt-pain-grid,
    .dwd-mkt-steps,
    .dwd-mkt-feature-grid {
        grid-template-columns: 1fr;
    }
    .dwd-mkt-modules-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .dwd-mkt-hero {
        padding: 90px 0 48px;
    }
    .dwd-mkt-excel-section,
    .dwd-mkt-final-cta {
        padding: 32px 22px;
    }
}
