/* Auto-generated from provided HTML + styles.css */

/* Complete Lending - Shared Styles */

/* ===== CSS VARIABLES ===== */
:root {
    /* Sage Green Palette */
    --sage: #8B9D83;
    --sage-light: #A8B8A0;
    --sage-dark: #6B7D63;
    --sage-muted: #9BAD93;
    
    /* Supporting Colors */
    --warm-cream: #F8F6F1;
    --warm-white: #FDFCFA;
    --soft-gold: #C4A86B;
    --gold-light: #D4B87B;
    --text-primary: #2D3436;
    --text-secondary: #5A6366;
    --text-muted: #7D8A8D;
    --border-light: #E8E4DC;
    --shadow-soft: 0 4px 24px rgba(45, 52, 54, 0.06);
    --shadow-medium: 0 8px 40px rgba(45, 52, 54, 0.1);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--warm-white);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--sage);
    color: white;
    padding: 1.125rem 2.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1.125rem 2.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border: 1.5px solid var(--border-light);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--sage);
    color: var(--sage-dark);
}

.btn-chat {
    background: white;
    color: var(--sage-dark);
    padding: 1.125rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
}

.btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 7rem 3rem;
}

.section-cream {
    background: var(--warm-cream);
}

.section-white {
    background: white;
}

.section-dark {
    background: var(--text-primary);
    color: white;
}

.section-sage {
    background: linear-gradient(135deg, var(--sage-dark) 0%, #5A6B53 100%);
    color: white;
}

.section-sage-light {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--soft-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-dark .section-header h2 {
    color: white;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.section-sage .section-header h2,
.section-sage-light .section-header h2 {
    color: white;
}

.section-sage .section-header p,
.section-sage-light .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== SECTION TESTIMONIALS ===== */
.section-testimonial {
    margin-top: 3rem;
    text-align: center;
}

.section-testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.section-testimonial-author {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.section-sage .section-testimonial-quote,
.section-sage-light .section-testimonial-quote {
    color: rgba(255, 255, 255, 0.9);
}

.section-sage .section-testimonial-author,
.section-sage-light .section-testimonial-author {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE BASE ===== */
@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }
}


/* Inline block 1 */
:root {
            /* Sage Green Palette */
            --sage: #8B9D83;
            --sage-light: #A8B8A0;
            --sage-dark: #6B7D63;
            --sage-muted: #9BAD93;
            
            /* Supporting Colors */
            --warm-cream: #F8F6F1;
            --warm-white: #FDFCFA;
            --soft-gold: #C4A86B;
            --gold-light: #D4B87B;
            --text-primary: #2D3436;
            --text-secondary: #5A6366;
            --text-muted: #7D8A8D;
            --border-light: #E8E4DC;
            --shadow-soft: 0 4px 24px rgba(45, 52, 54, 0.06);
            --shadow-medium: 0 8px 40px rgba(45, 52, 54, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 400;
            color: var(--text-primary);
            background: var(--warm-white);
            line-height: 1.7;
            font-size: 16px;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            line-height: 1.2;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0.75rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 253, 251, 0.97);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 56px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--sage-dark);
        }

        .nav-buttons {
            display: flex;
            gap: 0.75rem;
        }

        .nav-cta {
            padding: 0.875rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-cta-secondary {
            background: transparent;
            color: var(--sage-dark);
            border: 1.5px solid var(--sage);
        }

        .nav-cta-secondary:hover {
            background: var(--sage);
            color: white;
        }

        .nav-cta-primary {
            background: var(--soft-gold);
            color: white;
            border: 1.5px solid var(--soft-gold);
        }

        .nav-cta-primary:hover {
            background: var(--gold-light);
            border-color: var(--gold-light);
            transform: translateY(-1px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 8rem 3rem 4rem;
            background: linear-gradient(165deg, var(--warm-cream) 0%, var(--warm-white) 50%, #FBF8F2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(139, 157, 131, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(139, 157, 131, 0.15);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--sage-dark);
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
        }

        .hero h1 {
            font-size: clamp(2.75rem, 5vw, 4rem);
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--sage-dark);
        }

        .hero-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: var(--soft-gold);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 540px;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--sage);
            color: white;
            padding: 1.125rem 2.25rem;
            border-radius: 6px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--sage-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            padding: 1.125rem 2.25rem;
            border-radius: 6px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            border: 1.5px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--sage);
            color: var(--sage-dark);
        }

        .hero-image {
            position: relative;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: var(--shadow-medium);
        }

        .hero-image-placeholder {
            width: 100%;
            height: 400px;
            background: transparent
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            text-align: center;
            padding: 0;
        }

        /* Hero Stats Bar - Inside Hero */
        .hero-stats {
            max-width: 1400px;
            margin: 3rem auto 0;
            width: 100%;
        }

        .hero-stats-inner {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border-light);
        }

        .hero-stat {
            text-align: center;
            padding: 1.5rem 2rem;
            border-right: 1px solid var(--border-light);
        }

        .hero-stat:last-child {
            border-right: none;
        }

        .hero-stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--sage-dark);
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Section Styles */
        .section {
            padding: 7rem 3rem;
        }

        .section-cream {
            background: var(--warm-cream);
        }

        .section-white {
            background: white;
        }

        .section-dark {
            background: var(--text-primary);
            color: white;
        }

        .section-sage {
            background: linear-gradient(135deg, var(--sage-dark) 0%, #5A6B53 100%);
            color: white;
        }

        .section-sage-light {
            background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
            color: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--soft-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            color: var(--text-primary);
            margin-bottom: 1.25rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .section-dark .section-header h2 {
            color: white;
        }

        .section-dark .section-header p {
            color: rgba(255, 255, 255, 0.8);
        }

        .section-sage .section-header h2,
        .section-sage-light .section-header h2 {
            color: white;
        }

        .section-sage .section-header p,
        .section-sage-light .section-header p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Understanding Section */
        .understanding-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .understanding-card {
            background: var(--warm-cream);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .section-white .understanding-card {
            background: var(--warm-cream);
        }

        .understanding-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-soft);
        }

        .understanding-icon {
            width: 56px;
            height: 56px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--sage-dark);
        }

        .understanding-card:nth-child(2) .understanding-icon {
            color: var(--soft-gold);
        }

        .understanding-card:nth-child(3) .understanding-icon {
            color: var(--sage);
        }

        .understanding-card h3 {
            font-size: 1.375rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .understanding-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* How It Works / Lending Simplified */
        .steps-container {
            position: relative;
            margin-top: 3rem;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 32px;
            left: calc(16.67% + 32px);
            right: calc(16.67% + 32px);
            height: 2px;
            background: linear-gradient(90deg, var(--sage-light), var(--soft-gold), var(--sage-dark));
        }

        .step {
            position: relative;
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: white;
            border: 2px solid var(--sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--sage);
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 1;
        }

        .step:nth-child(2) .step-number {
            border-color: var(--soft-gold);
            color: var(--soft-gold);
        }

        .step:nth-child(3) .step-number {
            border-color: var(--sage-dark);
            color: var(--sage-dark);
        }

        .step h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .step p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .headline-two-line {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .headline-two-line h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .headline-two-line .subheadline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: var(--soft-gold);
            font-weight: 500;
        }

        /* Section Testimonial */
        .section-testimonial {
            max-width: 700px;
            margin: 3rem auto 0;
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-soft);
        }

        .section-testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .section-testimonial-author {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Reassurance Section (A Conversation, Not a Form) */
        .reassurance-section {
            text-align: center;
        }

        .reassurance-section h2 {
            color: white;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
        }

        .reassurance-section p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }

        .reassurance-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .reassurance-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
        }

        .reassurance-feature svg {
            width: 24px;
            height: 24px;
            color: var(--soft-gold);
        }

        .btn-chat {
            background: white;
            color: var(--sage-dark);
            padding: 1.125rem 2.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            border: none;
            cursor: pointer;
        }

        .btn-chat:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .reassurance-testimonial {
            max-width: 600px;
            margin: 2.5rem auto 0;
            padding: 1.5rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            border-left: 3px solid var(--soft-gold);
        }

        .reassurance-testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-style: italic;
            color: white;
            line-height: 1.6;
            margin-bottom: 0.75rem;
        }

        .reassurance-testimonial-author {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Why Choose Us */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.08);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .why-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
        }

        .why-icon {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--soft-gold);
        }

        .why-card:nth-child(2) .why-icon,
        .why-card:nth-child(5) .why-icon {
            color: var(--sage-light);
        }

        .why-card:nth-child(3) .why-icon,
        .why-card:nth-child(6) .why-icon {
            color: #E8DCC8;
        }

        .why-card h3 {
            font-size: 1.375rem;
            margin-bottom: 1rem;
            color: white;
        }

        .why-card p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* FAQ Section */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--warm-cream);
            border-radius: 12px;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-primary);
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(139, 157, 131, 0.1);
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--sage);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-content {
            padding: 0 2rem 1.5rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-soft);
        }

        .testimonial-card.featured {
            grid-column: span 3;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            background: linear-gradient(135deg, #2D3436 0%, #3D4749 100%);
            color: white;
        }

        .testimonial-stars {
            color: var(--soft-gold);
            margin-bottom: 1.25rem;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .testimonial-card.featured .testimonial-text {
            color: white;
            font-size: 1.4rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--sage), var(--sage-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .testimonial-card:nth-child(2) .testimonial-avatar {
            background: linear-gradient(135deg, var(--soft-gold), var(--gold-light));
        }

        .testimonial-card:nth-child(3) .testimonial-avatar {
            background: linear-gradient(135deg, var(--sage-light), var(--sage));
        }

        .testimonial-card:nth-child(4) .testimonial-avatar {
            background: linear-gradient(135deg, var(--sage-dark), var(--sage));
        }

        .testimonial-card:nth-child(5) .testimonial-avatar {
            background: linear-gradient(135deg, var(--gold-light), var(--soft-gold));
        }

        .testimonial-card.featured .testimonial-avatar {
            background: linear-gradient(135deg, var(--soft-gold), var(--gold-light));
            width: 52px;
            height: 52px;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--text-primary);
        }

        .testimonial-card.featured .testimonial-name {
            color: white;
        }

        .testimonial-detail {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .testimonial-card.featured .testimonial-detail {
            color: rgba(255, 255, 255, 0.7);
        }

        .featured-highlight {
            background: rgba(196, 168, 107, 0.15);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--soft-gold);
        }

        .featured-highlight h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--soft-gold);
            margin-bottom: 0.75rem;
        }

        .featured-highlight p {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-text .section-label {
            text-align: center;
        }

        .about-text h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .about-value {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .about-value-icon {
            width: 24px;
            height: 24px;
            background: var(--sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            font-size: 0.75rem;
        }

        .about-value span {
            font-weight: 500;
            color: var(--text-primary);
        }

        .about-visual {
            position: relative;
        }

        .about-logo-card {
            background: linear-gradient(145deg, var(--warm-cream), #F5F0E6);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
        }

        .about-logo-card img {
            max-width: 280px;
            margin-bottom: 2rem;
        }

        .partnership-text {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow-soft);
        }

        .partnership-text h4 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .partnership-text p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .partnership-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.25rem;
        }

        .partnership-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .partnership-icon span {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: white;
        }

        .partnership-icon.you span {
            background: var(--sage);
        }

        .partnership-icon.complete-lending span {
            background: var(--soft-gold);
        }

        .partnership-icon.attorney span {
            background: var(--sage-dark);
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            margin-bottom: 2.5rem;
            color: white;
        }

        .cta-boxes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-box {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .cta-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .cta-box-icon {
            width: 56px;
            height: 56px;
            background: var(--warm-cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--sage-dark);
        }

        .cta-box-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: white;
            padding: 4rem 3rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-brand .logo img {
            height: 48px;
            filter: brightness(0) invert(1);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-column h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
        }

        .footer-legal a:hover {
            color: white;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content,
            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-image {
                order: -1;
            }

            .steps::before {
                display: none;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .understanding-grid,
            .why-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card.featured {
                grid-column: span 1;
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .cta-boxes {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 0.75rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .nav-buttons {
                gap: 0.5rem;
            }

            .nav-cta {
                padding: 0.75rem 1rem;
                font-size: 0.85rem;
            }

            .logo img {
                height: 44px;
            }

            .hero {
                padding: 6rem 1.5rem 3rem;
            }

            .section {
                padding: 4rem 1.5rem;
            }

            .hero-stats-inner {
                grid-template-columns: 1fr;
            }

            .hero-stat {
                border-right: none;
                border-bottom: 1px solid var(--border-light);
                padding: 1.25rem;
            }

            .hero-stat:last-child {
                border-bottom: none;
            }

            .about-values {
                grid-template-columns: 1fr;
            }

            .reassurance-features {
                flex-direction: column;
                gap: 1rem;
            }

            .partnership-icons {
                gap: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }


/* Inline block 2 */
/* Navigation Styles */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 253, 251, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E8E4DC;
    transition: all 0.3s ease;
}

.nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav .logo img {
    height: 56px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #5A6366;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6B7D63;
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
}

.nav-cta {
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-cta-secondary {
    background: #C4A86B;
    color: white;
}

.nav-cta-secondary:hover {
    background: #D4B87B;
    transform: translateY(-1px);
}

.nav-cta-primary {
    background: #8B9D83;
    color: white;
}

.nav-cta-primary:hover {
    background: #6B7D63;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .nav-cta {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .nav .logo img {
        height: 44px;
    }
}


/* Inline block 3 */
/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 3rem 4rem;
    background: linear-gradient(165deg, #F8F6F1 0%, #FDFCFA 50%, #FBF8F2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(139, 157, 131, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 157, 131, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #6B7D63;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.75rem, 5vw, 4rem);
    color: #2D3436;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    font-weight: 500;
    line-height: 1.2;
}

.hero h1 em {
    font-style: italic;
    color: #6B7D63;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #C4A86B;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero p {
    font-size: 1.125rem;
    color: #5A6366;
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero .btn-primary {
    background: #8B9D83;
    color: white;
    padding: 1.125rem 2.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.hero .btn-primary:hover {
    background: #6B7D63;
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(45, 52, 54, 0.1);
}

.hero .btn-secondary {
    background: transparent;
    color: #2D3436;
    padding: 1.125rem 2.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border: 1.5px solid #E8E4DC;
    transition: all 0.3s ease;
}

.hero .btn-secondary:hover {
    border-color: #8B9D83;
    color: #6B7D63;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 540px;
}

.hero-stat {
    text-align: center;
    padding: 1.25rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(45, 52, 54, 0.06);
    border: 1px solid #E8E4DC;
}

.hero-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #6B7D63;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: #7D8A8D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(45, 52, 54, 0.1);
}

.hero-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(145deg, #A8B8A0, #9BAD93);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-align: center;
    padding: 2rem;
}

/* Hero Testimonial */
.hero-testimonial {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 3rem;
}

.hero-testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(45, 52, 54, 0.06);
    border: 1px solid #E8E4DC;
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
}

.hero-testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #2D3436;
    line-height: 1.6;
    flex: 1;
    padding-left: 1.5rem;
    border-left: 3px solid #C4A86B;
}

.hero-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.hero-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B9D83, #6B7D63);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.hero-testimonial-name {
    font-weight: 600;
    color: #2D3436;
}

.hero-testimonial-location {
    font-size: 0.875rem;
    color: #7D8A8D;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-stats {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-testimonial {
        padding: 0 1.5rem;
    }

    .hero-testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-testimonial-quote {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid #C4A86B;
        padding-top: 1.5rem;
    }
}


/* Inline block 4 */
/* Navigating Divorce Section Styles */
.navigating-divorce {
    padding: 7rem 3rem;
    background: white;
}

.navigating-divorce .container {
    max-width: 1200px;
    margin: 0 auto;
}

.navigating-divorce .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.navigating-divorce .section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #C4A86B;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.navigating-divorce .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #2D3436;
    margin-bottom: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
}

.navigating-divorce .section-header p {
    font-size: 1.1rem;
    color: #5A6366;
    line-height: 1.8;
}

.understanding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.understanding-card {
    background: #F8F6F1;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.understanding-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 24px rgba(45, 52, 54, 0.06);
}

.understanding-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #6B7D63;
}

.understanding-card:nth-child(2) .understanding-icon {
    color: #C4A86B;
}

.understanding-card:nth-child(3) .understanding-icon {
    color: #8B9D83;
}

.understanding-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #2D3436;
    font-weight: 500;
    line-height: 1.2;
}

.understanding-card p {
    color: #5A6366;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .understanding-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navigating-divorce {
        padding: 4rem 1.5rem;
    }
}


/* Inline block 5 */
/* Lending Simplified Section Styles */
.lending-simplified {
    padding: 7rem 3rem;
    background: #F8F6F1;
}

.lending-simplified .container {
    max-width: 1200px;
    margin: 0 auto;
}

.lending-simplified .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.lending-simplified .section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #C4A86B;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.headline-two-line {
    text-align: center;
    margin-bottom: 0.5rem;
}

.headline-two-line h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #2D3436;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.headline-two-line .subheadline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #C4A86B;
    font-weight: 500;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, #A8B8A0, #C4A86B, #6B7D63);
    z-index: 0;
}

.step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: white;
    border: 2px solid #8B9D83;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B9D83;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step:nth-child(2) .step-number {
    border-color: #C4A86B;
    color: #C4A86B;
}

.step:nth-child(3) .step-number {
    border-color: #6B7D63;
    color: #6B7D63;
}

.step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2D3436;
    font-weight: 700;
    line-height: 1.2;
}

.step p {
    font-size: 0.95rem;
    color: #5A6366;
    line-height: 1.6;
}

/* Section Testimonial */
.lending-simplified .section-testimonial {
    margin-top: 3rem;
    text-align: center;
}

.lending-simplified .section-testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #5A6366;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.lending-simplified .section-testimonial-author {
    font-size: 0.9rem;
    color: #7D8A8D;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .lending-simplified {
        padding: 4rem 1.5rem;
    }
}


/* Inline block 6 */
/* Conversation Section Styles */
.conversation-section {
    padding: 7rem 3rem;
    background: linear-gradient(135deg, #6B7D63 0%, #5A6B53 100%);
    color: white;
    text-align: center;
}

.conversation-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.conversation-section h2 {
    font-family: 'Cormorant Garamond', serif;
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.conversation-section > .container > p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.reassurance-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.reassurance-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.reassurance-feature svg {
    width: 24px;
    height: 24px;
    color: #C4A86B;
}

.conversation-section .btn-chat {
    background: white;
    color: #6B7D63;
    padding: 1.125rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
}

.conversation-section .btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Section Testimonial */
.conversation-section .section-testimonial {
    margin-top: 2.5rem;
    text-align: center;
}

.conversation-section .section-testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.conversation-section .section-testimonial-author {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .conversation-section {
        padding: 4rem 1.5rem;
    }

    .reassurance-features {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Inline block 7 */
/* Why Complete Lending Section Styles */
.why-complete-lending {
    padding: 7rem 3rem;
    background: #2D3436;
    color: white;
}

.why-complete-lending .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-complete-lending .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.why-complete-lending .section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #C4A86B;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.why-complete-lending .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: white;
    margin-bottom: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
}

.why-complete-lending .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #C4A86B;
}

.why-card:nth-child(2) .why-icon,
.why-card:nth-child(5) .why-icon {
    color: #A8B8A0;
}

.why-card:nth-child(3) .why-icon,
.why-card:nth-child(6) .why-icon {
    color: #E8DCC8;
}

.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 500;
    line-height: 1.2;
}

.why-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-complete-lending {
        padding: 4rem 1.5rem;
    }
}


/* Inline block 8 */
/* CTA Section Styles */
.cta-section {
    padding: 7rem 3rem;
    background: linear-gradient(135deg, #8B9D83 0%, #6B7D63 100%);
    color: white;
    text-align: center;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 2.5rem;
    color: white;
    font-weight: 500;
    line-height: 1.2;
}

.cta-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #2D3436;
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cta-box-icon {
    width: 56px;
    height: 56px;
    background: #F8F6F1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #6B7D63;
}

.cta-box-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D3436;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .cta-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
    }
}


/* Inline block 9 */
/* Footer Styles */
.footer {
    background: #2D3436;
    color: white;
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
}

.footer-brand .logo img {
    height: 48px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-column h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-legal a:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =========================
   HERO STATS (CTA-style)
   Place EVERYTHING below the footer @media block
   ========================= */

.hero-stats {
  max-width: 1400px;
  margin: 3rem auto 0;
  width: 100%;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-stat {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
}

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--sage-dark);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-stats-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-stat {
    padding: 1.25rem;
  }
}

/* --- OVERRIDE: fix squished hero stats (bad rule sets 540px) --- */
.hero-stats {
  display: block !important;
  max-width: 1400px !important;
  width: 100% !important;
  margin: 3rem auto 0 !important;
}

.hero-stats-inner {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  width: 100% !important;
}

/* FORCE remove green frame behind hero image */
.hero-image-placeholder,
.hero-image-placeholder::before,
.hero-image::before {
  background: transparent !important;
  background-image: none !important;
}

.hero-image-placeholder {
  padding: 0 !important;
  box-shadow: none !important;
}

/* Footer logo: remove white box + size the logo correctly */
.footer .footer-brand .logo {
  display: inline-flex;
  align-items: center;
  background: transparent !important;
  padding: 0 !important;
}

.footer .footer-brand .logo img {
  display: block;
  background: transparent !important;
  max-width: 180px;
  height: auto;
}

/* FOOTER LOGO: remove the white box + force image to render */
footer.footer .footer-brand a.logo {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 1rem 0 !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  line-height: 0 !important;
}

footer.footer .footer-brand a.logo img {
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
}
/* FOOTER LOGO: remove the white box + force image to render */
footer.footer .footer-brand a.logo {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 1rem 0 !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  line-height: 0 !important;
}

footer.footer .footer-brand a.logo img {
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
}
/* FOOTER LOGO: remove the white box + force image to render */
footer.footer .footer-brand a.logo {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 1rem 0 !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  line-height: 0 !important;
}

footer.footer .footer-brand a.logo img {
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
}

.footer .footer-brand .logo::before,
.footer .footer-brand .logo::after {
  content: none !important;
  display: none !important;
}

/* Mobile: show hero text before hero image */
@media (max-width: 768px) {
  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
  }
}

/* Mobile: FORCE hero headline before image */
@media (max-width: 768px) {
  .hero .hero-content {
    display: flex !important;
    flex-direction: column !important;
  }

  .hero .hero-text {
    order: 1 !important;
  }

  .hero .hero-image {
    order: 2 !important;
  }
}

