/* ============================================================
   CuraDebt Home Page — Scoped CSS for WordPress
   All rules scoped to .cd-page to prevent theme conflicts.
   Wrap page content in: <div class="cd-page"> ... </div>
   All font-size values in px (not rem) for cross-theme consistency.
   ============================================================ */

/* ===== FONTS — load this in your theme or enqueue via functions.php =====
   @import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,400&family=Archivo:wght@400;500;600;700&family=Dancing+Script:wght@600;700&display=swap');
   ======================================================================== */

/* ===== CSS VARIABLES (global — safe to keep at :root) ===== */
:root {
    --cd-green: #000000;
    --cd-green-deep: #000000;
    --cd-green-dark: #000000;
    --cd-accent: #0E7C48;
    --cd-accent-deep: #0A5D36;
    --cd-cream: #F4ECDF;
    --cd-cream-soft: #FBF7F0;
    --cd-ink: #000000;
    --cd-muted: #000000;
    --cd-line: #E6DDCD;
    --cd-gold: #F5B82E;
    --cd-white: #fff;
    --cd-shadow: 0 14px 44px -20px rgba(0, 0, 0, .28);
    --cd-shadow-sm: 0 4px 16px -8px rgba(0, 0, 0, .22);
    --cd-display: "Newsreader", Georgia, serif;
    --cd-body: "Archivo", -apple-system, sans-serif;
}

/* ===== BASE RESET (scoped) ===== */
.cd-page *,
.cd-page *::before,
.cd-page *::after {
    box-sizing: border-box;
}

/* ===== ROOT WRAPPER (replaces body{}) ===== */
.cd-page {
    font-family: var(--cd-body) !important;
    color: var(--cd-ink);
    background: var(--cd-white);
    line-height: 1.65 !important;
    font-size: 20px !important;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* ===== ELEMENTS ===== */
.cd-page img {
    max-width: 100%;
    display: block;
}

.cd-page a {
    color: inherit !important;
    text-decoration: none !important;
}

.cd-page p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Kill WordPress theme bullet points on ALL lists inside the wrapper */
.cd-page ul,
.cd-page ol {
    margin: 0;
    padding: 0;
    list-style: none !important;
    list-style-type: none !important;
}

/* margin/padding intentionally NOT !important here so specific rules like
   .included-box li { padding: 6px 0 } can still override via normal cascade */
.cd-page li {
    list-style: none !important;
    list-style-type: none !important;
}

.cd-page li::before,
.cd-page li::marker {
    content: none !important;
    display: none !important;
}

.cd-page h1,
.cd-page h2,
.cd-page h3,
.cd-page h4,
.cd-page h5,
.cd-page h6 {
    font-family: var(--cd-display) !important;
    font-weight: 500 !important;
    line-height: 1.14 !important;
    letter-spacing: -.015em;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
}

/* Blanket override — prevent theme from capitalizing/uppercasing anything
   (classes like .eyebrow that need text-transform set their own values AFTER this
   and must also use !important to win) */
.cd-page * {
    text-transform: none !important;
}

/* ===== LAYOUT ===== */
.cd-page .wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 26px;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.cd-page .eyebrow {
    font-family: var(--cd-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase !important;
    color: var(--cd-gold);
}

.cd-page .section-tag {
    font-family: var(--cd-body);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: .04em;
    color: var(--cd-green);
    display: block;
    margin-bottom: 10px;
}

/* ===== TOP BAR + HEADER ===== */
.cd-page .topbar {
    background: var(--cd-green-dark);
    color: #ffffff;
    font-size: 16px;
    padding: 5px 0;
}

.cd-page .topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cd-page .topbar a {
    color: #fff !important;
    font-weight: 600;
}

.cd-page header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cd-line);
}

.cd-page .nav {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 60px;
}

.cd-page .logo img {
    height: 40px;
    width: auto;
    display: block;
}

.cd-page .navlinks {
    display: flex;
    gap: 22px;
    margin-left: 6px;
    font-weight: 500;
    font-size: 16px;
    align-items: center;
}

.cd-page .navlinks a:hover {
    color: var(--cd-accent) !important;
}

.cd-page .nav-item {
    position: relative;
}

.cd-page .nav-top {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.cd-page .nav-top::after {
    content: "▾";
    font-size: .7em;
    opacity: .7;
}

.cd-page .nav-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid var(--cd-line);
    border-radius: 10px;
    box-shadow: var(--cd-shadow);
    min-width: 280px;
    padding: 8px;
    display: none;
    z-index: 80;
}

.cd-page .nav-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 7px;
    color: var(--cd-ink) !important;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.cd-page .nav-menu a:hover {
    background: var(--cd-accent);
    color: #fff !important;
}

.cd-page .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
    display: none;
}

.cd-page .nav-item:last-child .nav-menu {
    left: auto;
    right: 0;
}

@media (hover:hover) and (pointer:fine) {
    .cd-page .nav-item:hover .nav-menu {
        display: block;
    }

    .cd-page .nav-item:hover::after {
        display: block;
    }
}

.cd-page .nav-cta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.cd-page .nav-cta .btn {
    white-space: nowrap;
}

.cd-page .nav-cta .mobile-cta {
    display: none;
}

.cd-page .phone {
    font-weight: 700;
    color: var(--cd-green-deep);
    font-size: 17px;
    white-space: nowrap;
}

/* ===== BUTTONS ===== */
.cd-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 18px !important;
    cursor: pointer;
    border: none;
    transition: transform .15s, background .2s;
    font-family: var(--cd-body) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.cd-page .btn-primary {
    background: var(--cd-accent);
    color: #fff !important;
    box-shadow: var(--cd-shadow-sm);
}

.cd-page .btn-primary:hover {
    background: var(--cd-accent-deep);
    transform: translateY(-1px);
}

.cd-page .btn-cream {
    background: var(--cd-cream);
    color: var(--cd-ink) !important;
}

.cd-page .btn-cream:hover {
    background: #fff;
}

.cd-page .btn-outline {
    background: #fff;
    border: 1.5px solid var(--cd-accent);
    color: var(--cd-accent-deep) !important;
}

.cd-page .btn-outline:hover {
    background: var(--cd-cream);
}

/* ===== CTA DROPDOWN ===== */
.cd-page .cta-drop {
    position: relative;
    display: inline-block;
}

.cd-page .cta-drop-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid var(--cd-line);
    border-radius: 10px;
    box-shadow: var(--cd-shadow);
    min-width: 280px;
    padding: 6px;
    display: none;
    z-index: 70;
    text-align: left;
}

.cd-page .cta-drop.open .cta-drop-menu {
    display: block;
}

.cd-page .cta-drop::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
    display: none;
}

@media (hover:hover) and (pointer:fine) {
    .cd-page .cta-drop:hover .cta-drop-menu {
        display: block;
    }

    .cd-page .cta-drop:hover::after {
        display: block;
    }
}

.cd-page .cta-drop-menu a {
    display: block;
    padding: 11px 14px;
    border-radius: 7px;
    color: var(--cd-ink) !important;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.cd-page .cta-drop-menu a:hover {
    background: var(--cd-accent);
    color: #fff !important;
}

.cd-page .cta-drop-head {
    padding: 8px 14px 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase !important;
    color: var(--cd-muted);
}

/* ===== HERO HEADLINE ===== */
.cd-page .hero-headline {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 30px;
}

.cd-page .hero-headline h1 {
    font-size: clamp(32px, 4vw, 48px) !important;
    color: var(--cd-ink);
    line-height: 1.12 !important;
}

.cd-page .hero-headline p {
    margin-top: 14px;
    font-size: 18px;
    color: var(--cd-muted);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HERO SECTION ===== */
.cd-page .hero {
    /* background: var(--cd-cream-soft); */
    border-bottom: 1px solid var(--cd-line);
    padding: 22px 0 30px;
}

.cd-page .hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.05fr 1.1fr;
    gap: 34px;
    align-items: start;
}

.cd-page .hero-illus {
    align-self: start;
}

.cd-page .hero-illus img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.cd-page .hero-mid {
    text-align: center;
}

.cd-page .hero-mid > h2.form-title {
    font-family: var(--cd-display) !important;
    font-size: 24px !important;
    color: var(--cd-ink);
    font-weight: 600 !important;
    margin-bottom: 14px !important;
}

/* ===== CARD ===== */
.cd-page .card {
    background: #fff;
    border: 1px solid var(--cd-line);
    border-radius: 14px;
    box-shadow: var(--cd-shadow);
    overflow: hidden;
    text-align: left;
}

.cd-page .card-head {
    background: var(--cd-green-deep);
    color: #fff;
    padding: 12px 22px;
    text-align: center;
}

.cd-page .card-bullets {
    padding: 10px 22px 3px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: var(--cd-cream-soft);
    border-bottom: 1px solid var(--cd-line);
}

.cd-page .card-bullets .cb {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 600;
    color: var(--cd-green-dark);
}

.cd-page .card-bullets .cb svg {
    color: var(--cd-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.cd-page .card-head h2 {
    color: #fff !important;
    font-family: var(--cd-display) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.cd-page .card-head p {
    font-size: 16px;
    opacity: 1;
    margin-top: 3px;
}

.cd-page .card-body {
    padding: 14px 22px 16px;
}

/* ===== FORM FIELDS ===== */
.cd-page .field {
    margin-bottom: 9px;
}

.cd-page .field label {
    display: block;
    font-weight: 500;
    font-size: 15px !important;
    color: var(--cd-ink);
    margin-bottom: 3px;
}

.cd-page .field-note {
    font-size: 14px;
    color: var(--cd-accent-deep);
    font-weight: 600;
    margin: 7px 0 0;
    display: none;
    line-height: 1.35;
}

.cd-page .field-note.show {
    display: block;
}

.cd-page .field-note::before {
    content: "✓ ";
    font-weight: 700;
}

.cd-page .field-note.is-link::before {
    content: none;
}

.cd-page .field-note.is-link {
    color: var(--cd-ink);
    font-weight: 500;
}

.cd-page .field-note.is-link a {
    color: var(--cd-accent-deep) !important;
    font-weight: 700;
    text-decoration: underline !important;
}

.cd-page .field-error {
    font-size: 14px;
    color: #C0392B;
    font-weight: 600;
    margin: 6px 0 0;
    display: none;
    line-height: 1.3;
}

.cd-page .field-error.show {
    display: block;
}

.cd-page .err {
    display: none;
}

.cd-page .sidebar_frm_result {
    display: none;
    margin: 10px 0 0;
    color: var(--cd-accent-deep);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.cd-page #contact_me_2 {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.cd-page .field input.invalid,
.cd-page .field select.invalid {
    border-color: #C0392B;
    background: #FDF3F2;
}

.cd-page .field input,
.cd-page .field select {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--cd-line);
    border-radius: 8px;
    font-family: var(--cd-body) !important;
    font-size: 17px !important;
    background: var(--cd-cream-soft);
}

.cd-page .field input:focus,
.cd-page .field select:focus {
    outline: none;
    border-color: var(--cd-accent);
    background: #fff;
}

.cd-page .two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cd-page .consent {
    font-size: 11px;
    color: var(--cd-muted);
    line-height: 1.35;
    margin: 12px 0 0;
    display: flex;
    gap: 6px;
    opacity: 1;
}

.cd-page .trust-micro {
    font-size: 13px;
    color: var(--cd-accent-deep);
    font-weight: 600;
    text-align: center;
    margin: 10px 0 0;
    line-height: 1.5;
}

.cd-page .consent-text {
    font-size: 11px;
    color: var(--cd-muted);
    line-height: 1.4;
    margin: 12px 0 0;
    opacity: 1;
}

.cd-page .consent input {
    flex-shrink: 0;
    margin-top: 3px;
}

.cd-page .form-sub {
    width: 100%;
    font-size: 17px !important;
    padding: 13px;
}

.cd-page .form-reassure {
    text-align: center;
    font-size: 14px;
    color: var(--cd-muted);
    margin-top: 9px;
}

.cd-page .alt-links {
    display: flex;
    gap: 10px;
    margin-top: 11px;
    justify-content: center;
    font-size: 17px;
    font-weight: 600;
}

.cd-page .alt-links a {
    color: var(--cd-green-deep) !important;
}

.cd-page .alt-links a:hover {
    text-decoration: underline !important;
}

/* ===== INCLUDED BOX ===== */
.cd-page .included-box {
    background: #fff;
    border: 1px solid var(--cd-line);
    border-radius: 14px;
    padding: 24px 26px;
    box-shadow: var(--cd-shadow-sm);
}

.cd-page .included-box h3 {
    font-family: var(--cd-display) !important;
    font-size: 21px !important;
    color: var(--cd-ink);
    font-weight: 700 !important;
    margin-bottom: 14px !important;
    text-transform: none !important;
}

.cd-page .included-box ul {
    list-style: none !important;
}

.cd-page .included-box li {
    display: flex;
    gap: 9px;
    padding: 6px 0 !important;
    font-size: 18px;
    color: var(--cd-ink);
}

.cd-page .included-box li svg {
    color: var(--cd-green);
    flex-shrink: 0;
    margin-top: 4px;
}

.cd-page .included-box .alt2 {
    margin: 16px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cd-page .included-box .alt2 a {
    font-weight: 700;
    color: var(--cd-accent-deep) !important;
    font-size: 18px;
}

.cd-page .included-box .blurb {
    font-size: 17px;
    color: var(--cd-muted);
    border-top: 1px solid var(--cd-line);
    padding-top: 16px;
    line-height: 1.55;
}

.cd-page .included-box .blurb strong {
    color: var(--cd-ink);
}

/* ===== INTRO LINE ===== */
.cd-page .intro-line {
    background: var(--cd-cream-soft);
    border-bottom: 1px solid var(--cd-line);
    padding: 30px 0;
    text-align: center;
}

.cd-page .intro-line p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--cd-muted);
    font-size: 18px;
}

.cd-page .intro-line strong {
    color: var(--cd-ink);
}

/* ===== REVIEWS STRIP ===== */
.cd-page .reviews-strip {
    background: #fff;
    border-top: 1px solid var(--cd-line);
    border-bottom: 1px solid var(--cd-line);
    padding: 26px 0;
}

.cd-page .rev-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.cd-page .rev-logo {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.cd-page .rev-logo img {
    height: 90px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: transform .2s;
}

.cd-page .rev-logo:hover img {
    transform: translateY(-2px);
}

/* ===== GENERIC SECTION ===== */
.cd-page section.block {
    padding: 60px 0;
}

.cd-page .center-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 38px;
}

.cd-page .center-head h2 {
    font-size: clamp(29px, 3.2vw, 38px) !important;
    color: var(--cd-ink);
    margin-top: 6px !important;
}

.cd-page .center-head p {
    margin-top: 12px;
    color: var(--cd-muted);
    font-size: 17px;
    font-weight: 500;
}

/* ===== EXPERIENCE SECTION ===== */
.cd-page .exp {
    background: var(--cd-cream-soft);
    border-top: 1px solid var(--cd-line);
    border-bottom: 1px solid var(--cd-line);
}

.cd-page .exp .wrap {
    max-width: 1140px;
}

.cd-page .exp h2 {
    font-size: clamp(29px, 3.2vw, 37px) !important;
    color: var(--cd-ink);
    text-align: center;
}

.cd-page .exp p {
    margin-top: 16px;
    color: var(--cd-muted);
    font-size: 18px;
    text-align: center;
}

/* ===== FOUNDER ===== */
.cd-page .founder-grid {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 40px;
    align-items: center;
}

.cd-page .founder-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--cd-shadow);
    border: 1px solid var(--cd-line);
}

.cd-page .founder-photo img {
    width: 100%;
}

.cd-page .founder-quote {
    font-family: var(--cd-display) !important;
    font-size: 22px;
    line-height: 1.42;
    color: var(--cd-ink);
}

.cd-page .founder-quote .mk {
    color: var(--cd-gold);
    font-size: 27px;
    line-height: 0;
    vertical-align: -.25em;
}

.cd-page .founder-by {
    margin-top: 16px;
}

.cd-page .signature-img {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 2px;
}

.cd-page .founder-by .n {
    font-weight: 700;
    color: var(--cd-ink);
}

.cd-page .founder-by .r {
    font-size: 14px;
    color: var(--cd-muted);
    margin-top: 2px;
}

.cd-page .founder-by a {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    color: var(--cd-accent-deep) !important;
    font-size: 16px;
}

/* ===== SERVICES ===== */
.cd-page .svc-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cd-page .svc {
    background: #fff;
    border: 1px solid var(--cd-line);
    border-radius: 12px;
    padding: 28px 32px;
    display: block;
    text-align: left;
    transition: box-shadow .2s;
}

.cd-page .svc:hover {
    box-shadow: var(--cd-shadow);
}

.cd-page .svc-ic {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--cd-cream);
    display: grid;
    place-items: center;
    color: var(--cd-green-deep);
    margin-bottom: 14px;
}

.cd-page .svc-head h3 {
    font-size: 22px !important;
    color: var(--cd-ink);
    font-weight: 600 !important;
    text-align: left;
}

.cd-page .svc-head .why {
    font-size: 17px;
    color: var(--cd-muted);
    margin-top: 14px;
    max-width: none;
    text-align: left;
}

.cd-page .svc-head .why strong {
    color: var(--cd-green-deep);
    font-weight: 600;
}

.cd-page .svc ul {
    list-style: none !important;
    margin: 10px 0 0 !important;
}

.cd-page .svc li {
    display: flex;
    gap: 8px;
    font-size: 18px;
    color: var(--cd-muted);
    padding: 4px 0 !important;
}

.cd-page .svc li svg {
    color: var(--cd-green);
    flex-shrink: 0;
    margin-top: 4px;
}

.cd-page .svc li strong {
    color: var(--cd-ink);
    font-weight: 600;
}

.cd-page .svc .more {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    color: var(--cd-accent-deep) !important;
    font-size: 17px;
    white-space: nowrap;
}

.cd-page .svc .more:hover {
    text-decoration: underline !important;
}

/* ===== HOW IT WORKS ===== */
.cd-page .how {
    background: var(--cd-green-dark);
    color: #ffffff;
}

.cd-page .how .center-head h2 {
    color: #fff !important;
}

.cd-page .how .center-head p {
    color: rgba(255, 255, 255, .9);
}

.cd-page .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    counter-reset: s;
}

.cd-page .step .num {
    counter-increment: s;
    font-family: var(--cd-display) !important;
    font-size: 37px;
    color: var(--cd-gold);
    font-weight: 600 !important;
}

.cd-page .step .num::before {
    content: "0" counter(s);
}

.cd-page .step h3 {
    color: #fff !important;
    font-size: 18px !important;
    margin: 8px 0 6px !important;
    font-weight: 500 !important;
}

.cd-page .step p {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
}

/* ===== ACCREDITATIONS ===== */
.cd-page .creds {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
}

.cd-page .cred {
    background: #fff;
    border: 1px solid var(--cd-line);
    border-radius: 10px;
    padding: 20px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cd-page .cred img {
    height: 56px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 11px;
}

.cd-page .cred h4 {
    font-family: var(--cd-body) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--cd-ink);
}

.cd-page .cred p {
    font-size: 14px;
    color: var(--cd-muted);
    margin-top: 5px;
    line-height: 1.4;
}

/* ===== LOAN SECTION ===== */
.cd-page .loan {
    background: var(--cd-green-dark);
    color: #fff;
}

.cd-page .loan-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 46px;
    align-items: center;
}

.cd-page .loan .section-tag {
    color: var(--cd-gold);
}

.cd-page .loan h2 {
    color: #fff !important;
    font-size: clamp(30px, 3.2vw, 40px) !important;
}

.cd-page .loan p {
    color: rgba(255, 255, 255, .9);
    margin-top: 14px;
    font-size: 17px;
}

.cd-page .loan-points {
    list-style: none !important;
    margin: 20px 0 26px !important;
}

.cd-page .loan-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 6px 0 !important;
    font-size: 17px;
    color: #fff;
}

.cd-page .loan-points svg {
    color: #fff;
    flex-shrink: 0;
    margin-top: 4px;
}

.cd-page .loan-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--cd-shadow);
}

.cd-page .loan-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--cd-line);
}

.cd-page .loan-step:last-child {
    border-bottom: none;
}

.cd-page .ls-n {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cd-accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--cd-display) !important;
    font-weight: 700 !important;
    font-size: 19px;
    flex-shrink: 0;
}

.cd-page .loan-step strong {
    color: var(--cd-ink);
    font-size: 17px;
}

.cd-page .loan-step p {
    color: var(--cd-muted);
    font-size: 16px;
    margin-top: 3px;
}

/* ===== FAQ ===== */
.cd-page .faq {
    background: var(--cd-cream-soft);
    border-top: 1px solid var(--cd-line);
}

.cd-page .faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.cd-page .faq-vert {
    font-family: var(--cd-display) !important;
    font-size: 22px !important;
    color: var(--cd-green-deep);
    font-weight: 600 !important;
    margin: 32px 0 13px !important;
    padding-bottom: 7px !important;
    border-bottom: 2px solid var(--cd-cream);
}

.cd-page .faq-vert:first-child {
    margin-top: 0 !important;
}

.cd-page .faq-item {
    background: #fff;
    border: 1px solid var(--cd-line);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.cd-page .faq-q {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 17px !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--cd-ink);
}

.cd-page .faq-q .pl {
    color: var(--cd-green);
    font-size: 21px;
    transition: transform .25s;
    flex-shrink: 0;
}

.cd-page .faq-item.open .faq-q .pl {
    transform: rotate(45deg);
}

.cd-page .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s, padding .3s;
}

.cd-page .faq-a-inner {
    padding: 0 20px 16px;
    color: var(--cd-muted);
    font-size: 18px;
}

.cd-page .faq-a-inner a {
    color: var(--cd-accent-deep) !important;
    font-weight: 600;
    text-decoration: underline !important;
}

.cd-page .faq-item.open .faq-a {
    max-height: 380px;
}

@media (hover:hover) and (pointer:fine) {
    .cd-page .faq-item:hover .faq-a {
        max-height: 380px;
    }

    .cd-page .faq-item:hover .faq-q .pl {
        transform: rotate(45deg);
    }
}

/* ===== RESOURCE HUB ===== */
.cd-page .hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.cd-page .hub-col h4 {
    font-family: var(--cd-body) !important;
    color: var(--cd-green-deep);
    font-size: 18px !important;
    letter-spacing: .08em;
    text-transform: uppercase !important;
    margin-bottom: 11px !important;
    padding-bottom: 7px !important;
    border-bottom: 1px solid var(--cd-line);
}

.cd-page .hub-col a {
    display: block;
    font-size: 16px;
    padding: 5px 0;
    color: var(--cd-muted) !important;
}

.cd-page .hub-col a:hover {
    color: var(--cd-accent) !important;
}

/* ===== CTA BAND ===== */
.cd-page .cta-band {
    background: var(--cd-green-deep);
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.cd-page .cta-band h2 {
    color: #fff !important;
    font-size: clamp(26px, 3vw, 35px) !important;
    font-weight: 500 !important;
}

.cd-page .cta-band p {
    opacity: .9;
    margin: 12px auto 22px;
    max-width: 500px;
}

/* ===== SCROLL REVEAL ===== */
.cd-page .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s, transform .6s;
}

.cd-page .reveal.in {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 900px) {
    .cd-page .navlinks,
    .cd-page .phone {
        display: none;
    }

    .cd-page .topbar {
        display: none;
    }

    .cd-page .nav-cta .desktop-cta {
        display: none;
    }

    .cd-page .nav-cta .mobile-call {
        display: inline-flex;
        white-space: nowrap;
        font-size: 14px;
        padding: 10px 13px;
    }

    .cd-page .nav-cta .mobile-eval {
        display: none;
    }

    .cd-page .nav-cta .btn {
        padding: 10px 16px;
        font-size: 15px !important;
    }

    .cd-page .hero {
        padding: 14px 0 24px;
    }

    .cd-page .hero-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .cd-page .hero-illus {
        display: none;
    }

    .cd-page .hero-mid {
        order: -1;
    }

    .cd-page .card-head {
        padding: 13px 20px;
    }

    .cd-page .card-body {
        padding: 14px 20px 16px;
    }

    .cd-page .field {
        margin-bottom: 9px;
    }

    .cd-page .founder-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cd-page .loan-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cd-page .steps,
    .cd-page .hub-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cd-page .creds {
        grid-template-columns: repeat(3, 1fr);
    }

    .cd-page .rev-divider {
        display: none;
    }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 620px) {
    .cd-page {
        font-size: 19px !important;
    }

    .cd-page .svc {
        padding: 22px 20px;
    }

    .cd-page .steps,
    .cd-page .hub-grid,
    .cd-page .two {
        grid-template-columns: 1fr;
    }

    .cd-page .creds {
        grid-template-columns: 1fr 1fr;
    }

    .cd-page .rev-grid {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 22px;
    }

    .cd-page .rev-logo img {
        height: 84px;
    }

    .cd-page .section-tag {
        font-size: 18px;
    }

    .cd-page .center-head h2,
    .cd-page .exp h2,
    .cd-page .loan h2,
    .cd-page .founder h2 {
        font-size: 27px !important;
    }

    .cd-page .card-head h2 {
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

    .cd-page .card-head {
        padding: 13px 16px;
    }

    .cd-page .field label {
        font-size: 14px !important;
        font-weight: 500;
    }
}
