/* Force light mode always - never use system dark mode */
:root {
    color-scheme: light only;
}

@font-face {
    font-family: 'Neue Haas Display';
    src: url('font/NeueHaasDisplayThin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Display';
    src: url('font/NeueHaasDisplayLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Display';
    src: url('font/NeueHaasDisplayRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

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

html {
    background-color: #ffffff;
    color-scheme: light;
}

body {
    font-family: 'Neue Haas Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #000000;
    color-scheme: light;
}

/* Sticky Get Started Button (Desktop Only) */
.sticky-get-started {
    position: fixed;
    top: 24px;
    right: 40px;
    z-index: 1000;
    background-color: #5B21B6;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'Neue Haas Display', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(91, 33, 182, 0.3);
}

.sticky-get-started:hover {
    background-color: #4C1D95;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(91, 33, 182, 0.4);
}

.sticky-get-started.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hide sticky button on tablet and mobile */
@media (max-width: 1024px) {
    .sticky-get-started {
        display: none !important;
    }
}

.header {
    background-color: #ffffff;
    padding: 20px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 40px;
    margin-left: 60px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
}

.nav a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.mega-menu-content {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    display: flex;
    gap: 60px;
    min-width: 600px;
}

.mega-menu-left {
    flex: 1;
    padding-right: 30px;
    border-right: 1px solid #e5e5e5;
}

.mega-menu-label {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.mega-menu-description {
    font-size: 18px;
    font-weight: 100;
    color: #000000;
    line-height: 1.5;
}

.mega-menu-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega-menu-right a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.mega-menu-right a:hover {
    color: #5B21B6;
}

.header-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Nav Buttons (hidden on desktop) */
.mobile-nav-buttons {
    display: none;
}

/* Mobile Dropdown (hidden on desktop) */
.mobile-dropdown {
    display: none;
}

/* Mobile Dropdown Toggle (hidden on desktop) */
.mobile-dropdown-toggle {
    display: none;
}

/* Nav link wrapper for desktop */
.nav-link-wrapper {
    display: contents;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 100;
    cursor: pointer;
    transition: color 0.3s ease;
}

.phone-btn:hover {
    color: #5B21B6;
}

.phone-btn svg {
    width: 18px;
    height: 18px;
}

.get-started-btn {
    background-color: #5B21B6;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.get-started-btn:hover {
    background-color: #4C1D95;
}

/* Hero Section */
.hero {
    padding: 100px 0 120px;
    background-color: #ffffff;
    background-image: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(91, 33, 182, 0.08) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-heading {
    font-size: 80px;
    font-weight: 300;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 100;
    color: #000000;
}

.checkmark {
    flex-shrink: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #5B21B6;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-cta:hover {
    background-color: #4C1D95;
    box-shadow: 0 8px 30px rgba(91, 33, 182, 0.4);
    transform: translateY(-2px);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
}

.hero-image {
    width: 100%;
    max-width: 1100px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust Metrics Section */
.trust-metrics {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.metric-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 50px 70px;
    text-align: center;
    flex: 1;
    max-width: 400px;
}

.metric-number {
    font-size: 64px;
    font-weight: 300;
    color: #5B21B6;
    margin-bottom: 16px;
    line-height: 1;
}

.metric-label {
    font-size: 20px;
    font-weight: 100;
    color: #000000;
    line-height: 1.3;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background-color: #ffffff;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-us-title {
    font-size: 56px;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
}

.features-container {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 60px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-box.reverse {
    flex-direction: row-reverse;
}

.feature-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 60px 0;
}

.feature-content {
    flex: 1;
}

.feature-heading {
    font-size: 36px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 20px;
}

.feature-description {
    font-size: 18px;
    font-weight: 100;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 520px;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    background-color: #5B21B6;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feature-btn:hover {
    background-color: #4C1D95;
}

.feature-visual {
    flex: 0 0 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.visual-placeholder {
    font-size: 120px;
    opacity: 0.3;
}

/* Loan Types Section */
.loan-types {
    padding: 100px 0;
    background-color: #F8F9FA;
}

.loan-types-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.loan-types-title {
    font-size: 56px;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bento-box {
    background-color: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 40px;
}

.bento-heading {
    font-size: 48px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1;
}

.bento-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-link {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 100;
    padding: 12px 16px;
    transition: color 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
}

.bento-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bento-link:hover {
    color: #ffffff;
    background-color: #5B21B6;
}

.bento-link:hover svg {
    transform: translateX(4px);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: #ffffff;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.how-it-works-title {
    font-size: 56px;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.step-number {
    font-size: 24px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.step-description {
    font-size: 16px;
    font-weight: 100;
    color: #666666;
    line-height: 1.6;
    text-align: center;
}

.how-it-works-cta {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.get-started-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #5B21B6;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get-started-button:hover {
    background-color: #4C1D95;
}

.get-started-button svg {
    width: 20px;
    height: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #F8F9FA;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-title {
    font-size: 56px;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.testimonials-track {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonials-group {
    display: flex;
    justify-content: center;
    gap: 24px;
    min-width: 100%;
    flex-shrink: 0;
}

.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 20px 18px;
    width: 320px;
    max-width: 320px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
}

.google-icon {
    margin-bottom: 12px;
    width: 18px;
    height: 18px;
}

.testimonial-title {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.testimonial-text {
    font-size: 14px;
    font-weight: 100;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 16px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.author-location {
    font-size: 12px;
    font-weight: 100;
    color: #666666;
}

.carousel-btn {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: #5B21B6;
    border-color: #5B21B6;
}

.carousel-btn:hover svg {
    stroke: #ffffff;
}

.carousel-btn svg {
    transition: stroke 0.3s ease;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e5e5e5;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #5B21B6;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0 150px;
    background-color: #ffffff;
}

.final-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.final-cta-title {
    font-size: 56px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.final-cta-btn {
    background-color: #5B21B6;
    color: #ffffff;
    padding: 22px 60px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.final-cta-btn:hover {
    background-color: #4C1D95;
}

.final-cta-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    text-decoration: none;
    font-size: 22px;
    font-weight: 100;
    cursor: pointer;
    transition: color 0.3s ease;
}

.final-cta-phone:hover {
    color: #5B21B6;
}

/* Footer */
.footer {
    background-color: #5B21B6;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-columns {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 100;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.footer-eho {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 100;
}

.footer-eho .eho-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-copyright {
    font-size: 15px;
    font-weight: 100;
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1600px) {
    .hero {
        padding: 50px 0 40px;
    }
    
    .hero-container {
        gap: 35px;
    }
    
    .hero-heading {
        font-size: 60px;
        margin-bottom: 30px;
    }
    
    .hero-features {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        font-size: 18px;
        gap: 8px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .hero-cta {
        padding: 14px 32px;
        font-size: 17px;
    }
    
    .hero-image {
        max-width: 1100px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero-container {
        padding: 0 30px;
        gap: 30px;
    }
    
    .hero-heading {
        font-size: 48px;
        margin-bottom: 25px;
    }
    
    .hero-features {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .feature-item {
        font-size: 16px;
        gap: 8px;
    }
    
    .checkmark {
        width: 16px;
        height: 16px;
    }
    
    .hero-cta {
        padding: 12px 28px;
        font-size: 16px;
    }
    
    .hero-image {
        max-width: 900px;
    }
    
    .loan-types {
        padding: 70px 0;
    }
    
    .loan-types-title {
        font-size: 42px;
        margin-bottom: 50px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .bento-box {
        padding: 35px;
    }
    
    .bento-heading {
        font-size: 42px;
        margin-bottom: 26px;
    }
    
    .bento-link {
        font-size: 17px;
    }
    
    .how-it-works {
        padding: 70px 0;
    }
    
    .how-it-works-container {
        padding: 0 30px;
    }
    
    .how-it-works-title {
        font-size: 42px;
        margin-bottom: 50px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .step-card {
        padding: 35px 25px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon svg {
        width: 42px;
        height: 42px;
    }
    
    .step-number {
        font-size: 22px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .how-it-works-cta {
        margin-top: 60px;
    }
    
    .get-started-button {
        padding: 16px 36px;
        font-size: 18px;
    }
    
    .testimonials {
        padding: 70px 0;
    }
    
    .testimonials-container {
        padding: 0 30px;
    }
    
    .testimonials-title {
        font-size: 42px;
        margin-bottom: 50px;
    }
    
    .testimonials-group {
        gap: 20px;
    }
    
    .testimonial-card {
        width: 280px;
        max-width: 280px;
        padding: 18px 16px;
        min-height: 240px;
    }
    
    .testimonial-title {
        font-size: 17px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta-container {
        padding: 0 30px;
    }
    
    .final-cta-title {
        font-size: 42px;
        margin-bottom: 30px;
    }
    
    .final-cta-btn {
        padding: 20px 50px;
        font-size: 20px;
    }
    
    .final-cta-phone {
        font-size: 20px;
    }
    
    .footer-columns {
        gap: 50px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }
    
    /* Hide phone button and get started button on mobile */
    .phone-btn {
        display: none;
    }
    
    .get-started-btn {
        display: none;
    }
    
    /* Mobile navigation */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 80px 30px 50px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }
    
    /* Mobile nav link wrapper with dropdown toggle */
    .nav-link-wrapper {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 20px 0;
    }
    
    .nav-link, .nav a {
        font-size: 18px;
        color: #000000;
    }
    
    .nav-link {
        padding: 0;
        display: inline;
        flex: 1;
        pointer-events: none;
    }
    
    /* Mobile dropdown toggle button */
    .mobile-dropdown-toggle {
        display: none;
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: #000000;
        transition: transform 0.3s ease;
    }
    
    .mobile-dropdown-toggle svg {
        display: block;
        transition: transform 0.3s ease;
    }
    
    .nav-item.active .mobile-dropdown-toggle svg {
        transform: rotate(180deg);
    }
    
    /* Mobile dropdown menu */
    .mobile-dropdown {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0 0 15px 0;
        background-color: #f8f9fa;
        margin: 0 -30px;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .nav-item.active .mobile-dropdown {
        max-height: 500px;
        display: flex;
    }
    
    .mobile-dropdown a {
        color: #000000;
        text-decoration: none;
        font-size: 16px;
        font-weight: 300;
        padding: 12px 15px;
        display: block;
        transition: color 0.3s ease;
    }
    
    .mobile-dropdown a:hover {
        color: #5B21B6;
    }
    
    /* Show mobile dropdown toggle on mobile */
    .mobile-dropdown-toggle {
        display: flex !important;
    }
    
    /* Mobile nav buttons */
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 30px 20px;
        margin-top: auto;
        margin-bottom: 0;
        margin-left: -30px;
        margin-right: -30px;
        border-top: 1px solid #e5e5e5;
        flex-shrink: 0;
        background-color: #ffffff;
    }
    
    .mobile-phone-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0;
        color: #000000;
        text-decoration: none;
        font-size: 16px;
        font-weight: 100;
        order: 1;
    }
    
    .mobile-phone-btn svg {
        flex-shrink: 0;
        vertical-align: middle;
    }
    
    .mobile-get-started-btn {
        display: block;
        padding: 14px 35px;
        background-color: #5B21B6;
        color: #ffffff !important;
        text-align: center;
        border-radius: 25px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 300;
        transition: all 0.3s ease;
        order: 2;
    }
    
    .mobile-get-started-btn:hover {
        background-color: #4C1D95;
    }
    
    /* Hide mega menu on mobile */
    .mega-menu {
        display: none;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .hero {
        padding: 60px 0 40px 0;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .hero-heading {
        font-size: 40px;
        margin-bottom: 24px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 30px;
        align-items: center;
    }
    
    .feature-item {
        font-size: 20px;
        gap: 8px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .hero-cta {
        padding: 16px 40px;
        font-size: 18px;
    }
    
    .hero-cta svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .trust-metrics {
        padding: 50px 0;
    }
    
    .trust-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }
    
    .metric-card {
        padding: 40px 50px;
        max-width: 100%;
    }
    
    .metric-number {
        font-size: 48px;
    }
    
    .metric-label {
        font-size: 18px;
    }
    
    .why-us {
        padding: 60px 0;
    }
    
    .why-us-container {
        padding: 0 20px;
    }
    
    .why-us-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .features-container {
        padding: 40px;
    }
    
    .feature-box {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .feature-box.reverse {
        flex-direction: column-reverse;
    }
    
    .feature-divider {
        margin: 40px 0;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-heading {
        font-size: 28px;
    }
    
    .feature-description {
        font-size: 16px;
        margin-bottom: 24px;
        max-width: 100%;
    }
    
    .feature-visual {
        flex: 0 0 200px;
        height: 200px;
    }
    
    .feature-image {
        border-radius: 12px;
    }
    
    .visual-placeholder {
        font-size: 80px;
    }
    
    .loan-types {
        padding: 60px 0;
    }
    
    .loan-types-container {
        padding: 0 20px;
    }
    
    .loan-types-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bento-box {
        padding: 30px;
    }
    
    .bento-heading {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .bento-link {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .bento-link:hover {
        color: #000000;
        background-color: transparent;
    }
    
    .bento-link:hover svg {
        transform: none;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works-container {
        padding: 0 20px;
    }
    
    .how-it-works-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 30px 24px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-number {
        font-size: 20px;
    }
    
    .how-it-works-cta {
        margin-top: 50px;
    }
    
    .get-started-button {
        padding: 14px 32px;
        font-size: 17px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .testimonials-carousel {
        gap: 15px;
    }
    
    .testimonials-track {
        overflow: hidden;
        width: 100%;
        padding: 0 40px;
    }
    
    .testimonials-wrapper {
        display: flex;
        gap: 20px;
    }
    
    .testimonials-group {
        display: contents;
    }
    
    .testimonial-card {
        padding: 28px;
        min-height: 280px;
        width: calc(100% - 80px);
        max-width: 400px;
        flex-shrink: 0;
        margin: 0 auto;
    }
    
    .testimonial-title {
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-location {
        font-size: 14px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .final-cta {
        padding: 50px 0;
    }
    
    .final-cta-container {
        padding: 0 20px;
    }
    
    .final-cta-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .final-cta-btn {
        padding: 18px 45px;
        font-size: 19px;
    }
    
    .final-cta-phone {
        font-size: 19px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-columns {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-eho {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 30px 0;
    }
    
    .hero-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        font-size: 18px;
    }
    
    .checkmark {
        width: 16px;
        height: 16px;
    }
    
    .hero-cta {
        padding: 14px 36px;
        font-size: 17px;
    }
    
    .trust-metrics {
        padding: 40px 0;
    }
    
    .metric-card {
        padding: 30px 40px;
    }
    
    .metric-number {
        font-size: 40px;
    }
    
    .metric-label {
        font-size: 16px;
    }
    
    .why-us {
        padding: 40px 0;
    }
    
    .why-us-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .features-container {
        padding: 30px;
    }
    
    .feature-divider {
        margin: 30px 0;
    }
    
    .feature-heading {
        font-size: 24px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .feature-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .feature-visual {
        flex: 0 0 160px;
        height: 160px;
        max-width: 160px;
    }
    
    .feature-image {
        border-radius: 8px;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .visual-placeholder {
        font-size: 60px;
    }
    
    .loan-types {
        padding: 40px 0;
    }
    
    .loan-types-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .bento-box {
        padding: 24px;
    }
    
    .bento-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .bento-link {
        font-size: 15px;
        padding: 8px 0;
    }
    
    .how-it-works {
        padding: 40px 0;
    }
    
    .how-it-works-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .step-card {
        padding: 24px 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .step-number {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .how-it-works-cta {
        margin-top: 40px;
    }
    
    .get-started-button {
        padding: 12px 28px;
        font-size: 16px;
    }
    
    .get-started-button svg {
        width: 18px;
        height: 18px;
    }
    
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .testimonials-carousel {
        gap: 12px;
    }
    
    .testimonials-track {
        padding: 0 20px;
    }
    
    .testimonials-wrapper {
        gap: 16px;
    }
    
    .testimonials-group {
        display: contents;
    }
    
    .testimonial-card {
        padding: 24px;
        min-height: 250px;
        width: calc(100% - 40px);
        max-width: 350px;
        flex-shrink: 0;
        margin: 0 auto;
    }
    
    .google-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 14px;
    }
    
    .testimonial-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .testimonial-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .author-name {
        font-size: 15px;
    }
    
    .author-location {
        font-size: 13px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-dots {
        margin-top: 30px;
        gap: 8px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .final-cta-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .final-cta-btn {
        padding: 16px 40px;
        font-size: 18px;
    }
    
    .final-cta-phone {
        font-size: 18px;
    }
    
    .footer-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-column {
        align-items: center;
    }
}

