﻿/* =========================================================
   DuaFlow Landing Page Theme Overrides
   Author: Digital Rush Pte Ltd
   Visual refresh layered on top of the legacy upstream dashboard template.
   Loaded AFTER landing-page.css + custom.css so these rules win.
   Safe: no structural changes, no CMS dependencies.
   ========================================================= */

:root {
    --df-ink: #0E1E2B;          /* deep ocean */
    --df-ink-2: #103E55;        /* mid teal */
    --df-accent: #1FB6A6;       /* wave teal */
    --df-accent-2: #6FE0CD;     /* light teal */
    --df-sun: #F4B860;          /* warm highlight */
    --df-surface: #F6F9FC;
    --df-muted: #5A6B7A;
    --df-border: rgba(14, 30, 43, 0.08);
    --df-shadow-sm: 0 6px 18px rgba(14, 30, 43, 0.06);
    --df-shadow-md: 0 18px 40px rgba(14, 30, 43, 0.12);
    --df-shadow-lg: 0 30px 60px rgba(14, 30, 43, 0.18);
    --df-radius: 18px;
}

/* ------- Typography polish ------- */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--df-ink);
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.01em;
}

/* ------- Top announcement bar ------- */
.main-header .announcement.bg-dark {
    background: linear-gradient(90deg, var(--df-ink) 0%, var(--df-ink-2) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.main-header .announcement p {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* ------- Navigation ------- */
.main-header .navbar {
    padding-top: 14px;
    padding-bottom: 14px;
}
.main-header .navbar .nav-link {
    font-weight: 500;
    color: var(--df-ink);
    padding-left: 14px;
    padding-right: 14px;
    transition: color .2s ease;
}
.main-header .navbar .nav-link:hover,
.main-header .navbar .nav-link.active {
    color: var(--df-accent);
}
.main-header .navbar .btn {
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
}
.main-header .navbar .btn.btn-outline-dark {
    border-color: var(--df-ink);
    color: var(--df-ink);
}
.main-header .navbar .btn.btn-outline-dark:hover {
    background: var(--df-ink);
    color: #fff;
}

/* ------- HERO: kill the harsh green, ship a modern ocean gradient ------- */
.main-banner.bg-primary {
    background: radial-gradient(1200px 600px at 85% -10%, rgba(31, 182, 166, 0.35), transparent 60%),
                radial-gradient(900px 600px at 0% 110%, rgba(111, 224, 205, 0.25), transparent 55%),
                linear-gradient(135deg, var(--df-ink) 0%, var(--df-ink-2) 60%, #155B70 100%) !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Decorative wave glyph echoing the shell logo */
.main-banner.bg-primary::before {
    content: "";
    position: absolute;
    inset: auto -120px -160px auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(closest-side, rgba(31, 182, 166, 0.45), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}
.main-banner.bg-primary::after {
    content: "";
    position: absolute;
    left: -100px;
    top: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(closest-side, rgba(255, 255, 255, 0.12), transparent 70%);
    pointer-events: none;
}

/* Hero badge */
.main-banner .badge.bg-white {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #fff !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.72rem;
    padding: 0.55rem 1rem !important;
}

/* Hero heading + sub */
.main-banner h1 {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1rem;
}
.main-banner h6 {
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    max-width: 32rem;
}

/* Hero buttons */
.main-banner .banner-btn .btn {
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.main-banner .banner-btn .btn:first-child {
    background: linear-gradient(135deg, var(--df-accent) 0%, var(--df-accent-2) 100%);
    color: var(--df-ink);
    border: none;
    box-shadow: 0 12px 28px rgba(31, 182, 166, 0.35);
}
.main-banner .banner-btn .btn:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(31, 182, 166, 0.45);
    color: var(--df-ink);
}
.main-banner .banner-btn .btn + .btn,
.main-banner .banner-btn .btn.btn-outline-dark:not(:first-child) {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
}
.main-banner .banner-btn .btn + .btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    color: #ffffff;
}

/* Dashboard preview frame */
.main-banner .dash-preview {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.06);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    transform: translateZ(0);
}
.main-banner .dash-preview .preview-img {
    border-radius: 16px;
    display: block;
}

/* Trusted-by row inside hero */
.main-banner .container .row.mt-4 p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.main-banner .container .row.mt-4 p b {
    color: #fff;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}
.main-banner .landing_logo {
    filter: brightness(0) invert(1) opacity(0.7);
    transition: opacity .2s ease;
    max-height: 36px;
    width: auto !important;
    object-fit: contain;
}
.main-banner .landing_logo:hover {
    opacity: 1;
}

/* ------- Features section ------- */
.features-section.bg-dark {
    background: linear-gradient(180deg, #0B1721 0%, var(--df-ink) 100%) !important;
    padding-top: 100px;
    padding-bottom: 100px;
}
.features-section .title h2,
.features-section .title h1 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}
.features-section .text-uppercase {
    color: var(--df-accent);
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.78rem;
}
.features-section .card,
.features-section [class*="feature"] .card,
.features-section .feature-card {
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--df-radius);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.features-section .card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 182, 166, 0.4);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

/* ------- Plan / pricing section ------- */
#plan {
    background: var(--df-surface);
    padding-top: 100px;
    padding-bottom: 100px;
}
#plan .card,
#plan .pricing-card,
#plan .plan-card {
    border: 1px solid var(--df-border);
    border-radius: var(--df-radius);
    background: #fff;
    box-shadow: var(--df-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
#plan .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--df-shadow-md);
    border-color: var(--df-accent);
}

/* ------- Generic section spacing ------- */
.section-gap {
    padding-top: 90px;
    padding-bottom: 90px;
}

/* ------- Join us / newsletter ------- */
.site-footer,
footer.site-footer {
    background: #ffffff !important;
    border-top: 1px solid var(--df-border);
    padding-top: 70px;
    padding-bottom: 30px;
}
.site-footer .footer-logo img {
    max-height: 56px;
    width: auto;
}
.site-footer h4,
.site-footer h5 {
    color: var(--df-ink);
    font-weight: 700;
}
.site-footer p,
.site-footer a {
    color: var(--df-muted);
}
.site-footer a:hover {
    color: var(--df-accent);
}

/* Newsletter form polish */
.site-footer .form-control {
    border-radius: 999px;
    padding: 12px 18px;
    border: 1px solid var(--df-border);
}
.site-footer .btn {
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
    background: var(--df-ink);
    border: none;
    color: #fff;
}
.site-footer .btn:hover {
    background: var(--df-accent);
    color: var(--df-ink);
}

/* ------- Mobile tweaks ------- */
@media (max-width: 768px) {
    .main-banner.bg-primary {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .main-banner h1 {
        font-size: 2rem;
    }
    .main-banner .banner-btn .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* ------- Reduced motion ------- */
@media (prefers-reduced-motion: reduce) {
    .main-banner .banner-btn .btn,
    .features-section .card,
    #plan .card {
        transition: none;
    }
}

/* =========================================================
   DuaFlow Static Info Sections
   Stats, Why, Modules, How, Compliance, Audience, CTA
   ========================================================= */

.df-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--df-accent);
    margin-bottom: 0.75rem;
}
.df-section-title {
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    font-weight: 800;
    color: var(--df-ink);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.df-section-lead {
    font-size: 1.05rem;
    color: var(--df-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ----- Stats strip ----- */
.df-stats {
    background: linear-gradient(180deg, #ffffff 0%, var(--df-surface) 100%);
    padding: 3rem 0;
    border-bottom: 1px solid var(--df-border);
}
.df-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--df-ink);
    line-height: 1;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, var(--df-ink) 0%, var(--df-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.df-stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--df-muted);
    font-weight: 600;
}

/* ----- Why DuaFlow pillars ----- */
.df-why { background: #ffffff; }
.df-pillar {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--df-border);
    border-radius: var(--df-radius);
    padding: 1.75rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.df-pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--df-shadow-md);
    border-color: rgba(31, 182, 166, 0.35);
}
.df-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(31, 182, 166, 0.15), rgba(31, 182, 166, 0.05));
    color: var(--df-accent);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.df-pillar h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--df-ink);
    margin-bottom: 0.5rem;
}
.df-pillar p {
    color: var(--df-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ----- Modules grid (dark) ----- */
.df-modules {
    background: linear-gradient(180deg, var(--df-ink) 0%, #0B1721 100%);
    color: #fff;
}
.df-mod {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all .2s ease;
    height: 100%;
}
.df-mod:hover {
    background: rgba(31, 182, 166, 0.12);
    border-color: rgba(31, 182, 166, 0.45);
    transform: translateY(-2px);
}
.df-mod i {
    font-size: 1.4rem;
    color: var(--df-accent-2);
    flex-shrink: 0;
}
.df-mod span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

/* ----- How it works steps ----- */
.df-how { background: var(--df-surface); }
.df-step {
    height: 100%;
    background: #fff;
    border-radius: var(--df-radius);
    padding: 2rem 1.75rem;
    position: relative;
    box-shadow: var(--df-shadow-sm);
    border: 1px solid var(--df-border);
}
.df-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--df-accent) 0%, var(--df-accent-2) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(31, 182, 166, 0.35);
}
.df-step h5 {
    color: var(--df-ink);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.df-step p {
    color: var(--df-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ----- Compliance band ----- */
.df-compliance {
    background:
        radial-gradient(circle at 20% 30%, rgba(31, 182, 166, 0.18) 0%, transparent 55%),
        linear-gradient(135deg, var(--df-ink) 0%, var(--df-ink-2) 100%);
    color: #fff;
    padding: 5rem 0;
}
.df-compliance .df-section-title { color: #fff; }
.df-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.df-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.88);
}
.df-checklist i {
    color: var(--df-accent-2);
    background: rgba(31, 182, 166, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.df-compliance-card {
    background: #fff;
    color: var(--df-ink);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
}
.df-compliance-badge {
    position: absolute;
    top: -22px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--df-accent) 0%, var(--df-accent-2) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 12px 24px rgba(31, 182, 166, 0.4);
}
.df-compliance-title {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--df-muted);
    margin-bottom: 1rem;
}
.df-compliance-rows > div {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--df-border);
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.9rem;
}
.df-compliance-rows > div:last-child {
    border-bottom: 0;
    font-size: 1.1rem;
    padding-top: 0.85rem;
}
.df-compliance-rows span { color: var(--df-muted); }
.df-compliance-rows b { color: var(--df-ink); }
.df-compliance-qr {
    text-align: center;
    font-size: 4rem;
    color: var(--df-ink);
    margin-top: 1rem;
    opacity: 0.85;
}

/* ----- Audience cards ----- */
.df-audience { background: #fff; }
.df-aud {
    height: 100%;
    text-align: center;
    padding: 1.75rem 1.25rem;
    border-radius: var(--df-radius);
    background: var(--df-surface);
    border: 1px solid var(--df-border);
    transition: all .25s ease;
}
.df-aud:hover {
    background: #fff;
    box-shadow: var(--df-shadow-md);
    transform: translateY(-3px);
}
.df-aud i {
    font-size: 2rem;
    color: var(--df-accent);
    background: rgba(31, 182, 166, 0.1);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.df-aud h6 {
    font-weight: 700;
    color: var(--df-ink);
    margin-bottom: 0.4rem;
}
.df-aud p {
    color: var(--df-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ----- CTA band ----- */
.df-cta {
    padding: 4rem 0;
    background: #fff;
}
.df-cta-card {
    background:
        radial-gradient(circle at 80% 20%, rgba(111, 224, 205, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, var(--df-ink) 0%, var(--df-ink-2) 100%);
    border-radius: 24px;
    padding: 3rem;
    color: #fff;
    box-shadow: var(--df-shadow-lg);
}
.df-cta-card h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.4rem, 2vw, 2rem);
}
.df-cta-card .btn-light {
    color: var(--df-ink);
    background: #fff;
    border: none;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    transition: transform .2s ease, box-shadow .2s ease;
}
.df-cta-card .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}

@media (max-width: 768px) {
    .df-stats { padding: 2rem 0; }
    .df-stat-num { font-size: 1.8rem; }
    .df-compliance { padding: 3rem 0; }
    .df-cta-card { padding: 2rem 1.5rem; }
}

/* =========================================================
   Header overlap fix + stronger hero override
   ========================================================= */

/* Pin the entire header above the hero so the dashboard preview
   image (right column) can't visually bleed up over the navbar.   */
body .main-header {
    position: relative;
    z-index: 20;
    background: var(--df-ink);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

/* Now that the navbar sits on a dark band, recolor the links
   and the Login / Register buttons so they read on dark.          */
body .main-header .navbar-brand img { filter: none; }
body .main-header .navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
}
body .main-header .navbar .nav-link:hover,
body .main-header .navbar .nav-link.active {
    color: var(--df-accent-2);
}
body .main-header .navbar .btn.btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: transparent;
    backdrop-filter: blur(6px);
}
body .main-header .navbar .btn.btn-outline-dark:hover {
    background: var(--df-accent);
    border-color: var(--df-accent);
    color: #ffffff;
}
body .main-header .navbar .btn.btn-outline-dark i,
body .main-header .navbar .btn.btn-outline-dark svg {
    color: currentColor;
    stroke: currentColor;
}
body .main-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Make sure the hero sits BELOW the header (no negative margin
   pulling the right column upward) and push the dashboard
   preview down a bit so it never crowds the navbar.               */
body section.main-banner.bg-primary {
    margin-top: 0 !important;
    padding-top: 70px !important;
    background: radial-gradient(1200px 600px at 85% -10%, rgba(31, 182, 166, 0.35), transparent 60%),
                radial-gradient(900px 600px at 0% 110%, rgba(111, 224, 205, 0.25), transparent 55%),
                linear-gradient(135deg, #0E1E2B 0%, #103E55 60%, #155B70 100%) !important;
    color: #ffffff !important;
}
body section.main-banner.bg-primary .dash-preview,
body section.main-banner.bg-primary .col-xxl-8 > div,
body section.main-banner.bg-primary .col-md-6:last-child {
    margin-top: 12px;
    position: relative;
    z-index: 1;
}
body section.main-banner.bg-primary .container-offset { position: relative; z-index: 1; }

/* Mobile: stack header buttons neatly */
@media (max-width: 575.98px) {
    body .main-header .navbar .btn.btn-outline-dark {
        padding: 6px 12px;
    }
    body .main-header .navbar .btn.btn-outline-dark .hide-mob { display: none; }
}

/* =========================================================
   Header overlap fix + stronger hero override
   ========================================================= */

/* Pin the entire header above the hero so the dashboard preview
   image (right column) can't visually bleed up over the navbar.   */
body .main-header {
    position: relative;
    z-index: 20;
    background: var(--df-ink);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

/* Now that the navbar sits on a dark band, recolor the links
   and the Login / Register buttons so they read on dark.          */
body .main-header .navbar-brand img { filter: none; }
body .main-header .navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
}
body .main-header .navbar .nav-link:hover,
body .main-header .navbar .nav-link.active {
    color: var(--df-accent-2);
}
body .main-header .navbar .btn.btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: transparent;
    backdrop-filter: blur(6px);
}
body .main-header .navbar .btn.btn-outline-dark:hover {
    background: var(--df-accent);
    border-color: var(--df-accent);
    color: #ffffff;
}
body .main-header .navbar .btn.btn-outline-dark i,
body .main-header .navbar .btn.btn-outline-dark svg {
    color: currentColor;
    stroke: currentColor;
}
body .main-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Make sure the hero sits BELOW the header (no negative margin
   pulling the right column upward) and push the dashboard
   preview down a bit so it never crowds the navbar.               */
body section.main-banner.bg-primary {
    margin-top: 0 !important;
    padding-top: 70px !important;
    background: radial-gradient(1200px 600px at 85% -10%, rgba(31, 182, 166, 0.35), transparent 60%),
                radial-gradient(900px 600px at 0% 110%, rgba(111, 224, 205, 0.25), transparent 55%),
                linear-gradient(135deg, #0E1E2B 0%, #103E55 60%, #155B70 100%) !important;
    color: #ffffff !important;
}
body section.main-banner.bg-primary .dash-preview,
body section.main-banner.bg-primary .col-xxl-8 > div,
body section.main-banner.bg-primary .col-md-6:last-child {
    margin-top: 12px;
    position: relative;
    z-index: 1;
}
body section.main-banner.bg-primary .container-offset { position: relative; z-index: 1; }

/* Mobile: stack header buttons neatly */
@media (max-width: 575.98px) {
    body .main-header .navbar .btn.btn-outline-dark {
        padding: 6px 12px;
    }
    body .main-header .navbar .btn.btn-outline-dark .hide-mob { display: none; }
}

/* =========================================================
   Header strip: WHITE band so the DuaFlow shell+wave logo
   reads cleanly. Overrides the dark band from earlier.
   ========================================================= */
body .main-header {
    background: #ffffff !important;
    box-shadow: 0 1px 0 var(--df-border), 0 6px 16px rgba(14, 30, 43, 0.04);
}

/* Navbar links back to ink on white */
body .main-header .navbar .nav-link {
    color: var(--df-ink) !important;
    font-weight: 600;
}
body .main-header .navbar .nav-link:hover,
body .main-header .navbar .nav-link.active {
    color: var(--df-accent) !important;
}

/* Login / Register as solid pills, visible on white */
body .main-header .navbar .btn.btn-outline-dark {
    border: 1.5px solid var(--df-ink) !important;
    color: var(--df-ink) !important;
    background: transparent !important;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
}
body .main-header .navbar .btn.btn-outline-dark:hover {
    background: var(--df-accent) !important;
    border-color: var(--df-accent) !important;
    color: #ffffff !important;
}
body .main-header .navbar-toggler {
    border-color: var(--df-ink) !important;
}

/* Logo: drop any inverting filters, let the artwork show as-is */
body .main-header .navbar-brand img {
    filter: none !important;
    opacity: 1 !important;
}

/* Announcement bar stays dark above the white header */
body .main-header .announcement.bg-dark {
    background: linear-gradient(90deg, var(--df-ink) 0%, var(--df-ink-2) 100%) !important;
    color: #fff;
    border-bottom: 0;
}

/* =========================================================
   Header strip: WHITE band so the DuaFlow shell+wave logo
   reads cleanly. Overrides the dark band from earlier.
   ========================================================= */
body .main-header {
    background: #ffffff !important;
    box-shadow: 0 1px 0 var(--df-border), 0 6px 16px rgba(14, 30, 43, 0.04);
}

/* Navbar links back to ink on white */
body .main-header .navbar .nav-link {
    color: var(--df-ink) !important;
    font-weight: 600;
}
body .main-header .navbar .nav-link:hover,
body .main-header .navbar .nav-link.active {
    color: var(--df-accent) !important;
}

/* Login / Register as solid pills, visible on white */
body .main-header .navbar .btn.btn-outline-dark {
    border: 1.5px solid var(--df-ink) !important;
    color: var(--df-ink) !important;
    background: transparent !important;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
}
body .main-header .navbar .btn.btn-outline-dark:hover {
    background: var(--df-accent) !important;
    border-color: var(--df-accent) !important;
    color: #ffffff !important;
}
body .main-header .navbar-toggler {
    border-color: var(--df-ink) !important;
}

/* Logo: drop any inverting filters, let the artwork show as-is */
body .main-header .navbar-brand img {
    filter: none !important;
    opacity: 1 !important;
}

/* Announcement bar stays dark above the white header */
body .main-header .announcement.bg-dark {
    background: linear-gradient(90deg, var(--df-ink) 0%, var(--df-ink-2) 100%) !important;
    color: #fff;
    border-bottom: 0;
}

/* =========================================================
   Additional Content Sections
   Compare, Outcomes, Day-one, FRCS Deep Dive, Migrate, FAQs
   ========================================================= */

/* ----- Old vs New comparison ----- */
.df-compare { background: #ffffff; }
.df-compare-card {
    height: 100%;
    border-radius: var(--df-radius);
    padding: 2rem;
    border: 1px solid var(--df-border);
    background: var(--df-surface);
}
.df-compare-card h3 {
    font-weight: 800;
    color: var(--df-ink);
    margin-bottom: 1.25rem;
}
.df-compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.df-compare-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    color: var(--df-ink);
    font-size: 0.97rem;
    border-bottom: 1px dashed var(--df-border);
}
.df-compare-card li:last-child { border-bottom: 0; }
.df-compare-card li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 2px;
}
.df-compare-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.df-compare-old { background: #FBF6F1; border-color: #F1E1D0; }
.df-compare-old .df-compare-tag { background: #F4D9C0; color: #8A4B1F; }
.df-compare-old li i { background: rgba(220, 80, 60, 0.12); color: #C04030; }
.df-compare-old li { color: #5B4636; }

.df-compare-new {
    background: linear-gradient(180deg, #ffffff 0%, #E9FBF7 100%);
    border-color: rgba(31, 182, 166, 0.3);
    box-shadow: 0 12px 32px rgba(31, 182, 166, 0.12);
}
.df-compare-new .df-compare-tag { background: var(--df-accent); color: #fff; }
.df-compare-new li i { background: rgba(31, 182, 166, 0.18); color: var(--df-accent); }

/* ----- Outcomes (dark band) ----- */
.df-outcomes {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(31, 182, 166, 0.22) 0%, transparent 55%),
        linear-gradient(135deg, var(--df-ink) 0%, var(--df-ink-2) 100%);
    color: #fff;
}
.df-outcome {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--df-radius);
    height: 100%;
    transition: all .25s ease;
}
.df-outcome:hover {
    background: rgba(31, 182, 166, 0.12);
    border-color: rgba(31, 182, 166, 0.45);
    transform: translateY(-3px);
}
.df-outcome-num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--df-accent-2);
    margin-bottom: 0.5rem;
}
.df-outcome-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.45;
}

/* ----- Day-one feature columns ----- */
.df-dayone { background: var(--df-surface); }
.df-dayone-h {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--df-ink);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.df-dayone-h i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(31, 182, 166, 0.12);
    color: var(--df-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.df-dayone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--df-border);
    box-shadow: var(--df-shadow-sm);
}
.df-dayone-list li {
    padding: 0.5rem 0;
    color: var(--df-ink);
    font-size: 0.93rem;
    border-bottom: 1px dashed var(--df-border);
    position: relative;
    padding-left: 1.5rem;
}
.df-dayone-list li:last-child { border-bottom: 0; }
.df-dayone-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--df-accent);
}

/* ----- FRCS Deep Dive ----- */
.df-frcs {
    background: #ffffff;
    padding: 5rem 0;
    border-top: 1px solid var(--df-border);
    border-bottom: 1px solid var(--df-border);
}
.df-frcs-flow { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.df-frcs-step {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--df-surface);
    border-radius: 14px;
    border: 1px solid var(--df-border);
    align-items: flex-start;
}
.df-frcs-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--df-accent), var(--df-accent-2));
    color: #fff;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.df-frcs-step b { color: var(--df-ink); display: block; margin-bottom: 0.2rem; }
.df-frcs-step p { color: var(--df-muted); margin: 0; font-size: 0.92rem; line-height: 1.5; }

.df-frcs-panel {
    background: linear-gradient(160deg, var(--df-ink) 0%, var(--df-ink-2) 100%);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;
    box-shadow: var(--df-shadow-lg);
}
.df-frcs-panel h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.df-frcs-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.df-frcs-chip i { color: var(--df-accent-2); }
.df-frcs-note {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(31, 182, 166, 0.12);
    border: 1px solid rgba(31, 182, 166, 0.3);
    border-radius: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}
.df-frcs-note i { color: var(--df-accent-2); font-size: 1.2rem; flex-shrink: 0; }

/* ----- Migration / onboarding ----- */
.df-migrate { background: #ffffff; }
.df-migrate-card {
    height: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--df-radius);
    background: var(--df-surface);
    border: 1px solid var(--df-border);
    transition: all .25s ease;
}
.df-migrate-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--df-shadow-md);
    background: #fff;
    border-color: rgba(31, 182, 166, 0.3);
}
.df-migrate-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--df-accent) 0%, var(--df-accent-2) 100%);
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 12px 24px rgba(31, 182, 166, 0.3);
}
.df-migrate-card h5 { color: var(--df-ink); font-weight: 700; margin-bottom: 0.5rem; }
.df-migrate-card p { color: var(--df-muted); margin: 0; }

/* ----- Static FAQs ----- */
.df-faqs { background: var(--df-surface); }
.df-faq {
    background: #fff;
    border: 1px solid var(--df-border);
    border-radius: 14px;
    margin-bottom: 1rem;
    padding: 0;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.df-faq[open] {
    border-color: rgba(31, 182, 166, 0.4);
    box-shadow: var(--df-shadow-sm);
}
.df-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: var(--df-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.df-faq summary::-webkit-details-marker { display: none; }
.df-faq summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--df-accent);
    font-weight: 400;
    line-height: 1;
    transition: transform .25s ease;
}
.df-faq[open] summary::after { content: "\2013"; transform: rotate(0deg); }
.df-faq p {
    margin: 0;
    padding: 0 1.25rem 1.1rem;
    color: var(--df-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .df-outcomes { padding: 3rem 0; }
    .df-outcome-num { font-size: 1.8rem; }
    .df-frcs { padding: 3rem 0; }
    .df-frcs-panel { padding: 1.5rem; }
}

/* =========================================================
   Additional Content Sections
   Compare, Outcomes, Day-one, FRCS Deep Dive, Migrate, FAQs
   ========================================================= */

/* ----- Old vs New comparison ----- */
.df-compare { background: #ffffff; }
.df-compare-card {
    height: 100%;
    border-radius: var(--df-radius);
    padding: 2rem;
    border: 1px solid var(--df-border);
    background: var(--df-surface);
}
.df-compare-card h3 {
    font-weight: 800;
    color: var(--df-ink);
    margin-bottom: 1.25rem;
}
.df-compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.df-compare-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    color: var(--df-ink);
    font-size: 0.97rem;
    border-bottom: 1px dashed var(--df-border);
}
.df-compare-card li:last-child { border-bottom: 0; }
.df-compare-card li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 2px;
}
.df-compare-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.df-compare-old { background: #FBF6F1; border-color: #F1E1D0; }
.df-compare-old .df-compare-tag { background: #F4D9C0; color: #8A4B1F; }
.df-compare-old li i { background: rgba(220, 80, 60, 0.12); color: #C04030; }
.df-compare-old li { color: #5B4636; }

.df-compare-new {
    background: linear-gradient(180deg, #ffffff 0%, #E9FBF7 100%);
    border-color: rgba(31, 182, 166, 0.3);
    box-shadow: 0 12px 32px rgba(31, 182, 166, 0.12);
}
.df-compare-new .df-compare-tag { background: var(--df-accent); color: #fff; }
.df-compare-new li i { background: rgba(31, 182, 166, 0.18); color: var(--df-accent); }

/* ----- Outcomes (dark band) ----- */
.df-outcomes {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(31, 182, 166, 0.22) 0%, transparent 55%),
        linear-gradient(135deg, var(--df-ink) 0%, var(--df-ink-2) 100%);
    color: #fff;
}
.df-outcome {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--df-radius);
    height: 100%;
    transition: all .25s ease;
}
.df-outcome:hover {
    background: rgba(31, 182, 166, 0.12);
    border-color: rgba(31, 182, 166, 0.45);
    transform: translateY(-3px);
}
.df-outcome-num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--df-accent-2);
    margin-bottom: 0.5rem;
}
.df-outcome-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.45;
}

/* ----- Day-one feature columns ----- */
.df-dayone { background: var(--df-surface); }
.df-dayone-h {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--df-ink);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.df-dayone-h i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(31, 182, 166, 0.12);
    color: var(--df-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.df-dayone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--df-border);
    box-shadow: var(--df-shadow-sm);
}
.df-dayone-list li {
    padding: 0.5rem 0;
    color: var(--df-ink);
    font-size: 0.93rem;
    border-bottom: 1px dashed var(--df-border);
    position: relative;
    padding-left: 1.5rem;
}
.df-dayone-list li:last-child { border-bottom: 0; }
.df-dayone-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--df-accent);
}

/* ----- FRCS Deep Dive ----- */
.df-frcs {
    background: #ffffff;
    padding: 5rem 0;
    border-top: 1px solid var(--df-border);
    border-bottom: 1px solid var(--df-border);
}
.df-frcs-flow { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.df-frcs-step {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--df-surface);
    border-radius: 14px;
    border: 1px solid var(--df-border);
    align-items: flex-start;
}
.df-frcs-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--df-accent), var(--df-accent-2));
    color: #fff;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.df-frcs-step b { color: var(--df-ink); display: block; margin-bottom: 0.2rem; }
.df-frcs-step p { color: var(--df-muted); margin: 0; font-size: 0.92rem; line-height: 1.5; }

.df-frcs-panel {
    background: linear-gradient(160deg, var(--df-ink) 0%, var(--df-ink-2) 100%);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;
    box-shadow: var(--df-shadow-lg);
}
.df-frcs-panel h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.df-frcs-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.df-frcs-chip i { color: var(--df-accent-2); }
.df-frcs-note {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(31, 182, 166, 0.12);
    border: 1px solid rgba(31, 182, 166, 0.3);
    border-radius: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}
.df-frcs-note i { color: var(--df-accent-2); font-size: 1.2rem; flex-shrink: 0; }

/* ----- Migration / onboarding ----- */
.df-migrate { background: #ffffff; }
.df-migrate-card {
    height: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--df-radius);
    background: var(--df-surface);
    border: 1px solid var(--df-border);
    transition: all .25s ease;
}
.df-migrate-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--df-shadow-md);
    background: #fff;
    border-color: rgba(31, 182, 166, 0.3);
}
.df-migrate-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--df-accent) 0%, var(--df-accent-2) 100%);
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 12px 24px rgba(31, 182, 166, 0.3);
}
.df-migrate-card h5 { color: var(--df-ink); font-weight: 700; margin-bottom: 0.5rem; }
.df-migrate-card p { color: var(--df-muted); margin: 0; }

/* ----- Static FAQs ----- */
.df-faqs { background: var(--df-surface); }
.df-faq {
    background: #fff;
    border: 1px solid var(--df-border);
    border-radius: 14px;
    margin-bottom: 1rem;
    padding: 0;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.df-faq[open] {
    border-color: rgba(31, 182, 166, 0.4);
    box-shadow: var(--df-shadow-sm);
}
.df-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: var(--df-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.df-faq summary::-webkit-details-marker { display: none; }
.df-faq summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--df-accent);
    font-weight: 400;
    line-height: 1;
    transition: transform .25s ease;
}
.df-faq[open] summary::after { content: "\2013"; transform: rotate(0deg); }
.df-faq p {
    margin: 0;
    padding: 0 1.25rem 1.1rem;
    color: var(--df-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .df-outcomes { padding: 3rem 0; }
    .df-outcome-num { font-size: 1.8rem; }
    .df-frcs { padding: 3rem 0; }
    .df-frcs-panel { padding: 1.5rem; }
}

/* =========================================================
   Mobile / small-screen logo & header adjustments
   ========================================================= */
@media (max-width: 575.98px) {
    body .main-header .navbar-brand img,
    body .main-header .header-left img {
        max-height: 56px !important;
        width: auto !important;
    }
    body .main-header .navbar { padding-top: 6px; padding-bottom: 6px; }
    body .main-header .ms-auto .btn { padding: 0.4rem 0.7rem; }
    body section.main-banner.bg-primary h1 { font-size: 1.9rem !important; line-height: 1.2 !important; }
    body section.main-banner.bg-primary h6 { font-size: 0.95rem !important; }
}
@media (min-width: 576px) and (max-width: 991.98px) {
    body .main-header .navbar-brand img,
    body .main-header .header-left img {
        max-height: 72px !important;
        width: auto !important;
    }
}

/* =========================================================
   Mobile / small-screen logo & header adjustments
   ========================================================= */
@media (max-width: 575.98px) {
    body .main-header .navbar-brand img,
    body .main-header .header-left img {
        max-height: 56px !important;
        width: auto !important;
    }
    body .main-header .navbar { padding-top: 6px; padding-bottom: 6px; }
    body .main-header .ms-auto .btn { padding: 0.4rem 0.7rem; }
    body section.main-banner.bg-primary h1 { font-size: 1.9rem !important; line-height: 1.2 !important; }
    body section.main-banner.bg-primary h6 { font-size: 0.95rem !important; }
}
@media (min-width: 576px) and (max-width: 991.98px) {
    body .main-header .navbar-brand img,
    body .main-header .header-left img {
        max-height: 72px !important;
        width: auto !important;
    }
}

/* =========================================================
   Custom page (/pages/*) layout � match landing page theme
   Applies DuaFlow look-and-feel to .common-banner hero and
   .static-content admin-authored HTML body so /pages/about_us,
   /pages/terms_and_conditions and /pages/privacy_policy share
   the landing page's typography, spacing and color system.
   ========================================================= */
body section.common-banner.bg-primary {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1100px 520px at 12% -10%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 60%),
        linear-gradient(135deg, var(--df-ink) 0%, var(--df-ink-2) 60%, #155B70 100%) !important;
    color: #fff;
    padding: 90px 0 70px;
}
body section.common-banner.bg-primary::before {
    content: "";
    position: absolute;
    inset: auto -10% -40% auto;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255,255,255,0.10), rgba(255,255,255,0));
    pointer-events: none;
}
body section.common-banner .title h1 {
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

/* Admin-authored content body */
body section.static-content {
    background: #fff;
    padding-top: 64px;
    padding-bottom: 64px;
}
body section.static-content > .container > .mb-5 {
    color: var(--df-ink);
    font-size: 1.0625rem;
    line-height: 1.75;
}
body section.static-content h1,
body section.static-content h2,
body section.static-content h3,
body section.static-content h4,
body section.static-content h5,
body section.static-content h6 {
    color: var(--df-ink);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 2rem;
    margin-bottom: 0.85rem;
}
body section.static-content h1 { font-size: clamp(1.75rem, 2.6vw, 2.25rem); }
body section.static-content h2 { font-size: clamp(1.5rem, 2.2vw, 1.875rem); }
body section.static-content h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
body section.static-content h4 { font-size: 1.25rem; }
body section.static-content p {
    color: #2a3a4a;
    margin-bottom: 1.1rem;
}
body section.static-content a {
    color: var(--df-ink-2);
    text-decoration: underline;
    text-underline-offset: 2px;
}
body section.static-content a:hover { color: var(--df-ink); }
body section.static-content ul,
body section.static-content ol {
    padding-left: 1.35rem;
    margin-bottom: 1.25rem;
}
body section.static-content li {
    margin-bottom: 0.4rem;
    color: #2a3a4a;
}
body section.static-content blockquote {
    border-left: 4px solid var(--df-ink-2);
    background: var(--df-surface);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    color: var(--df-ink);
}
body section.static-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}
body section.static-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0 1.5rem;
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 8px;
    overflow: hidden;
}
body section.static-content table th,
body section.static-content table td {
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #eef2f6;
    vertical-align: top;
}
body section.static-content table thead th {
    background: var(--df-surface);
    color: var(--df-ink);
    font-weight: 600;
    text-align: left;
}
body section.static-content hr {
    border: 0;
    border-top: 1px solid #e6ecf2;
    margin: 2rem 0;
}
body section.static-content code,
body section.static-content pre {
    background: var(--df-surface);
    color: var(--df-ink);
    border-radius: 6px;
}
body section.static-content code { padding: 0.1rem 0.35rem; font-size: 0.95em; }
body section.static-content pre {
    padding: 0.9rem 1rem;
    overflow-x: auto;
    margin: 1.25rem 0;
}

@media (max-width: 575.98px) {
    body section.common-banner.bg-primary { padding: 60px 0 44px; }
    body section.common-banner .title h1 { font-size: 1.6rem !important; line-height: 1.2 !important; }
    body section.static-content { padding-top: 40px; padding-bottom: 40px; }
    body section.static-content > .container > .mb-5 { font-size: 1rem; line-height: 1.7; }
}
