/* =========================================================
   GLOBAL & RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f7f9fb;
    color: #17191d;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1140px;
}


/* =========================================================
   COLORS & DESIGN TOKENS
========================================================= */

:root {
    --navy: #102845;
    --navy-dark: #0c213a;
    --blue: #15487d;
    --blue-light: #eaf3ff;
    --orange: #e88900;
    --orange-light: #fff1d3;
    --green: #18b982;
    --green-light: #dff8ef;
    --text: #17191d;
    --muted: #64748b;
    --border: #e4e7eb;
    --background: #f7f9fb;
}


/* =========================================================
   NAVBAR & HEADER
========================================================= */

.navbar-wrapper {
    padding-top: 18px;
    position: relative;
    z-index: 1000;
}

.header-container {
    width: calc(100% - 48px);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

/* Unified Main Navigation Bar with Logo inside */
.main-navbar {
    width: 100%;
    min-height: 76px;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(228, 231, 235, 0.9);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.main-navbar:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.navbar-brand {
    padding: 0;
    margin-right: 32px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

/* Increased Logo Size */
.logo {
    height: 64px;
    width: auto;
    max-height: 70px;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.03);
}

.navbar-nav {
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-size: 15.5px;
    font-weight: 500;
    color: #24262a !important;
    padding: 8px 6px !important;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue) !important;
    font-weight: 600;
}

.signup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    background: var(--navy);
    color: #fff;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 12px;
    transition: 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.signup-btn i {
    font-size: 16px;
    opacity: 0;
    width: 0;
    transform: translateX(-8px);
    overflow: hidden;
    transition: opacity 0.3s ease, width 0.3s ease, transform 0.3s ease;
}

.signup-btn:hover {
    gap: 8px;
    color: #fff;
    background: var(--navy-dark);
    box-shadow: 0 4px 14px rgba(14, 51, 102, 0.25);
    transform: translateY(-1px);
}

.signup-btn:hover i {
    opacity: 1;
    width: 16px;
    transform: translateX(0);
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    padding-top: 50px;
    padding-bottom: 80px;
    min-height: 450px;
}

.hero-section .row {
    min-height: 360px;
}

.trusted-users {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    border: 2px solid #f7f9fb;
    margin-left: -6px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-1 {
    background: #d6a36a;
}

.avatar-2 {
    background: #527a91;
}

.avatar-3 {
    background: #2e4c36;
}

.avatar-4 {
    background: #80674d;
}

.trusted-text {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(38px, 4.4vw, 40px);
    line-height: 1.2;
    letter-spacing: -1.2px;
    font-weight: 700;
    color: #17191d;
    margin-bottom: 16px;
}

.brand-blue {
    color: var(--blue);
}

.brand-orange {
    color: var(--orange);
}

.hero-description {
    max-width: 520px;
    color: #556272;
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    font-size: 15.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn i {
    font-size: 16px;
    opacity: 0;
    width: 0;
    transform: translateX(-8px);
    overflow: hidden;
    transition: opacity 0.3s ease, width 0.3s ease, transform 0.3s ease;
}

.primary-btn:hover {
    gap: 8px;
    color: #fff;
    background: var(--navy-dark);
    box-shadow: 0 6px 18px rgba(16, 40, 69, 0.25);
    transform: translateY(-1px);
}

.primary-btn:hover i {
    opacity: 1;
    width: 16px;
    transform: translateX(0);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    font-size: 15.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.secondary-btn:hover {
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(16, 40, 69, 0.15);
    transform: translateY(-1px);
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.hero-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   COMMON BADGES & SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 680px;
    margin: 0 auto 44px;
}

.section-badge,
.loan-badge,
.how-badge,
.faq-badge,
.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 24px;
    border: 1px solid #c8ddfa;
    background: #f0f6ff;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-badge i,
.loan-badge i,
.how-badge i,
.faq-badge i,
.partner-badge i {
    font-size: 14px;
}

.section-heading h2 {
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: -0.8px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #17191d;
}

.section-heading p {
    max-width: 580px;
    margin: 0 auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   KEY FEATURES SECTION
========================================================= */

.features-section {
    padding: 40px 0 85px;
}

.feature-card {
    min-height: 210px;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 14px 32px rgba(20, 40, 60, 0.08);
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    flex-shrink: 0;
}

.blue-icon {
    background: var(--blue-light);
    color: #2563eb;
}

.green-icon {
    background: var(--green-light);
    color: #10b981;
}

.yellow-icon {
    background: var(--orange-light);
    color: #f59e0b;
}

.feature-card h3 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.feature-card h3 span {
    font-weight: 500;
    color: #64748b;
    font-size: 15px;
}

.feature-card p {
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}


/* =========================================================
   INSTANT LOAN ELIGIBILITY SECTION
========================================================= */

.loan-section {
    width: 100%;
    background: #dceafd;
    padding: 75px 0;
    overflow: hidden;
}

.loan-content {
    max-width: 440px;
    padding-left: 15px;
}

.loan-title {
    margin: 0 0 16px;
    color: #17191d;
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: -0.8px;
    font-weight: 700;
}

.loan-description {
    max-width: 440px;
    margin: 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.loan-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.loan-card {
    min-height: 210px;
    height: 100%;
    padding: 28px 22px;
    background: #ffffff;
    border: 1px solid rgba(220, 225, 232, 0.7);
    border-radius: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.loan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(46, 73, 110, 0.08);
}

.loan-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 12px;
    background: #d3f8e8;
    color: #10b981;
    flex-shrink: 0;
}

.loan-icon i {
    font-size: 22px;
}

.loan-card h3 {
    margin: 0 0 8px;
    color: #1e293b;
    font-size: 17.5px;
    line-height: 1.3;
    font-weight: 600;
}

.loan-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    flex-grow: 1;
}


/* =========================================================
   HOW IT WORKS SECTION
========================================================= */

.how-section {
    width: 100%;
    background: #f8fafc;
    padding: 75px 0 85px;
}

.how-header {
    max-width: 740px;
    margin: 0 auto 52px;
    text-align: center;
}

.how-title {
    margin: 0 0 14px;
    color: #17191d;
    font-size: 38px;
    line-height: 1.25;
    letter-spacing: -1px;
    font-weight: 700;
}

.how-description {
    margin: 0 auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

.how-steps {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.how-step-card {
    width: 100%;
    min-height: 130px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #edf0f3;
    border-left: 5px solid #10b981;
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 3px 8px rgba(25, 40, 55, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.how-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(25, 40, 55, 0.08);
}

.step-number-large {
    flex: 0 0 130px;
    color: #e2e8f0;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 600;
    text-align: center;
    user-select: none;
}

.step-content {
    flex: 1;
    padding-left: 12px;
}

.step-content h3 {
    margin: 0 0 8px;
    color: #1e293b;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.step-content p {
    max-width: 760px;
    margin: 0;
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 400;
}


/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonial-section {
    width: 100%;
    background: #f8fafc;
    padding: 60px 0 90px;
    overflow: hidden;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-heading h2 {
    margin: 0;
    color: #17191d;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -1px;
}

.testimonial-slider {
    width: 100%;
    max-width: 980px;
    min-height: 340px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-track {
    width: 100%;
    position: relative;
    min-height: 340px;
}

.testimonial-slide {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: 65px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(25px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-image-wrapper {
    width: 320px;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.testimonial-content {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 15px;
    padding-right: 25px;
}

.quote-icon {
    position: absolute;
    top: 0;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    max-width: 460px;
    margin: 0 0 28px;
    color: #334155;
    font-size: 17px;
    line-height: 1.6;
    text-align: left;
    font-weight: 500;
}

.testimonial-author {
    text-align: left;
}

.testimonial-author h3 {
    margin: 0 0 4px;
    color: #17191d;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
}

.testimonial-arrow {
    position: absolute;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--navy);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.testimonial-arrow:hover {
    background: var(--navy-dark);
    transform: scale(1.06);
}

.testimonial-prev {
    left: -55px;
}

.testimonial-next {
    right: -55px;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.testimonial-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--navy);
}


/* =========================================================
   PRICING SECTION
========================================================= */

.pricing-section {
    width: 100%;
    background: #f8fafc;
    padding: 20px 0 30px;
    margin-bottom: 50px;
    overflow: hidden;
}

.pricing-heading {
    margin-bottom: 52px;
}

.pricing-heading h2 {
    margin: 0;
    color: #17191d;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -1px;
}

.pricing-row {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.pricing-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 6px solid #10b981;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.pricing-card-header {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.pricing-card-header h3 {
    margin: 0;
    color: #17191c;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 28px 20px;
}

.old-price {
    min-height: 18px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    text-decoration: line-through;
}

.current-price {
    margin-top: 4px;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
}

.user-limit {
    margin-top: 6px;
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
}

.pricing-btn {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 14px;
    border-radius: 12px;
    background: var(--navy);
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, gap 0.3s ease;
}

.pricing-btn i {
    font-size: 15px;
    line-height: 1;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transform: translateX(-7px);
    transition: opacity 0.3s ease, width 0.3s ease, transform 0.3s ease;
}

.pricing-btn:hover {
    background: var(--navy-dark);
    color: #ffffff;
    transform: translateY(-1px);
    gap: 8px;
    box-shadow: 0 4px 14px rgba(16, 40, 69, 0.2);
}

.pricing-btn:hover i {
    opacity: 1;
    width: 15px;
    transform: translateX(0);
}

.pricing-features {
    margin-top: 24px;
}

.pricing-feature {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    background: transparent;
    transition: background-color 0.2s ease;
    user-select: none;
}

.pricing-feature:hover {
    background-color: rgba(22, 43, 69, 0.04);
}

.pricing-feature:last-child {
    margin-bottom: 0;
}

.feature-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.feature-title .feature-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-title i.bi-check-circle {
    flex: 0 0 auto;
    color: #10b981;
    font-size: 16px;
}

.feature-toggle-icon {
    font-size: 12px;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.pricing-feature.active .feature-toggle-icon,
.pricing-card.show-all-details .pricing-feature .feature-toggle-icon {
    transform: rotate(180deg);
}

.pricing-feature p.feature-desc {
    margin: 0 0 0 24px;
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 400;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
}

.pricing-feature.active p.feature-desc,
.pricing-card.show-all-details .pricing-feature p.feature-desc {
    max-height: 120px;
    opacity: 1;
    margin: 8px 0 2px 24px;
}

.view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 20px;
    color: #152b47;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    background: rgba(21, 43, 71, 0.04);
    cursor: pointer;
    transition: all 0.25s ease;
    align-self: center;
}

.view-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-more:hover {
    color: #0b2039;
    background: rgba(21, 43, 71, 0.08);
    text-decoration: none;
}


/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    width: 100%;
    background: #f8fafc;
    padding: 80px 0 100px;
}

.faq-heading {
    margin-bottom: 52px;
    text-align: center;
}

.faq-heading h2 {
    margin: 0;
    color: #17191d;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -1px;
}

.faq-list {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    width: 100%;
    margin-bottom: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq-item.active {
    border-color: #cbd5e1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    min-height: 68px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: none;
    outline: none;
    background: transparent;
    color: #17191c;
    text-align: left;
    cursor: pointer;
}

.faq-question:focus {
    outline: none;
    box-shadow: none;
}

.faq-icon {
    width: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
}

.faq-item.active .faq-icon {
    color: #64748b;
    font-size: 22px;
}

.faq-question-text {
    color: #1e293b;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, opacity 0.25s ease;
    opacity: 0;
}

.faq-answer p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 58px;
    color: #64748b;
    font-size: 15.5px;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-item.active .faq-answer p {
    padding-bottom: 24px;
}


/* =========================================================
   FINAL CTA SECTION & CONTACT FORM
========================================================= */

.final-cta-section {
    width: 100%;
    padding: 70px 0 90px;
    background: #f8fafc;
}

.final-cta-box {
    position: relative;
    min-height: 440px;
    padding: 65px 56px;
    overflow: hidden;
    border-radius: 40px;
    background: #162e4e;
}

.final-cta-content {
    position: relative;
    z-index: 5;
    max-width: 520px;
}

.final-cta-content h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.final-cta-content p {
    max-width: 460px;
    margin: 0;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.cta-circle {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
}

.circle-one {
    width: 470px;
    height: 470px;
    top: -35px;
    right: 35px;
    background: #203f6a;
}

.circle-two {
    width: 365px;
    height: 365px;
    top: 20px;
    right: 87px;
    background: #2a5082;
}

.circle-three {
    width: 255px;
    height: 255px;
    top: 80px;
    right: 142px;
    background: #38669b;
}

.contact-form-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: 40px;
    padding: 32px 24px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.contact-form-card h3 {
    margin: 0 0 20px;
    color: #1e293b;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.contact-form-card .form-control {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #ffffff;
    color: #1e293b;
    font-size: 14px;
    box-shadow: none;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card .form-control::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.contact-form-card .form-control:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.download-app-btn {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: none;
    border-radius: 12px;
    background: linear-gradient(100deg, #10b981 0%, #34d399 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.3s ease;
}

.download-app-btn i {
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, width 0.3s ease, transform 0.3s ease;
}

.download-app-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
    gap: 8px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.download-app-btn:hover i {
    opacity: 1;
    width: 16px;
    transform: translateX(0);
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.main-footer {
    width: 100%;
    background: #dbeafe;
    border-radius: 70px 70px 0 0;
    padding: 80px 0 45px;
    overflow: hidden;
}

.footer-content {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

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

.footer-logo {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-navigation {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-left: auto;
    margin-right: 40px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-nav-column a {
    color: #1e3a8a;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-column a:hover {
    color: #1d4ed8;
}

.footer-right {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-download-btn {
    width: 180px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 12px;
    background: var(--navy);
    color: #ffffff;
    font-size: 14.5px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, gap 0.3s ease;
}

.footer-download-btn i {
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, width 0.3s ease, transform 0.3s ease;
}

.footer-download-btn:hover {
    color: #ffffff;
    background: var(--navy-dark);
    transform: translateY(-1px);
    gap: 8px;
}

.footer-download-btn:hover i {
    opacity: 1;
    width: 16px;
    transform: translateX(0);
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.footer-social-icons a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-icons a:hover {
    color: #1d4ed8;
    transform: translateY(-2px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin: 32px auto 0;
    background: #93c5fd;
    opacity: 0.8;
}


/* =========================================================
   ABOUT US PAGE SPECIFIC STYLES
========================================================= */

.about-hero-section {
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 75px;
    background: #f8fafc;
}

.about-hero-content {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-title {
    margin: 0;
    color: #0f172a;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1.2px;
}

.about-hero-title .by-text {
    margin-left: 8px;
    margin-right: 8px;
    color: #334155;
    font-weight: 500;
}

.about-hero-description {
    max-width: 800px;
    margin: 18px auto 0;
    color: #64748b;
    font-size: 17.5px;
    line-height: 1.7;
    font-weight: 400;
}

.about-trusted-users {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
}

.mission-vision-section {
    width: 100%;
    padding: 90px 0 95px;
    background: #f8fafc;
}

.mission-vision-content {
    padding-right: 35px;
}

.mv-block {
    margin-bottom: 32px;
}

.mv-block:last-child {
    margin-bottom: 0;
}

.mv-block h2 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.mv-block p {
    max-width: 480px;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.mission-circle-wrapper {
    position: relative;
    width: 520px;
    height: 520px;
    margin: 0 auto;
}

.mission-circle {
    position: absolute;
    width: 410px;
    height: 410px;
    top: 55px;
    left: 55px;
    border: 2px solid #10b981;
    border-radius: 50%;
}

.circle-item {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease;
}

.circle-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #10b981;
    border-radius: 50%;
    background: #f8fafc;
    color: #1e3a8a;
    font-size: 26px;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.circle-item span {
    display: block;
    margin-top: 10px;
    color: #1e293b;
    font-size: 14.5px;
    line-height: 1.3;
    font-weight: 500;
    white-space: nowrap;
}

.circle-top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.circle-top-right {
    top: 105px;
    right: 30px;
}

.circle-bottom-right {
    bottom: 105px;
    right: 20px;
}

.circle-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-bottom-left {
    bottom: 105px;
    left: 30px;
}

.circle-top-left {
    top: 105px;
    left: 40px;
}

.circle-item:hover .circle-icon {
    background: #eafaf2;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
    transform: scale(1.08);
}

.team-section {
    width: 100%;
    padding: 85px 0 90px;
    background: #f8fafc;
}

.team-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.team-section-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
}

.team-row {
    column-gap: 35px;
    justify-content: center;
}

.team-member {
    width: 100%;
}

.team-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e2e8f0;
    border-radius: 16px;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.03);
}

.team-info {
    padding-top: 18px;
}

.team-info h3 {
    margin: 0 0 6px;
    color: #1e293b;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 700;
}

.team-info h4 {
    margin: 0 0 8px;
    color: #2563eb;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
}

.team-info p {
    max-width: 330px;
    margin: 0;
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.6;
    font-weight: 400;
}

.partner-section {
    width: 100%;
    background: #dbe9fc;
    padding: 75px 0 80px;
}

.partner-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.partner-heading h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
}

.partner-heading p {
    margin: 0;
    color: #475569;
    font-size: 16.5px;
    line-height: 1.7;
    font-weight: 400;
}

.partner-row {
    margin-top: 50px;
    --bs-gutter-x: 30px;
}

.partner-card {
    height: auto;
    min-height: 260px;
    padding: 32px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.partner-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 42px;
    padding: 0 25px;
    border: 1px solid #bfdbfe;
    border-radius: 25px;
    color: #2563eb;
    background: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}

.partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.45;
}

.partner-list li:last-child {
    margin-bottom: 0;
}

.partner-list i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #2563eb;
    font-size: 17px;
}

.partner-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.partner-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 46px;
    gap: 0;
    border-radius: 12px;
    background: var(--navy);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease, gap 0.3s ease;
}

.partner-button i {
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, width 0.3s ease, transform 0.3s ease;
}

.partner-button:hover {
    background: var(--navy-dark);
    color: #ffffff;
    transform: translateY(-1px);
    gap: 8px;
}

.partner-button:hover i {
    opacity: 1;
    width: 16px;
    transform: translateX(0);
}


/* =========================================================
   FEATURES PAGE SPECIFIC STYLES
========================================================= */

.business-stats-section {
    width: 100%;
    background: #f8fafc;
    padding: 60px 0 70px;
}

.business-stats-row {
    align-items: flex-start;
}

.business-stat {
    text-align: center;
    padding: 0 15px;
}

.business-stat h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.business-stat p {
    margin: 0;
    color: #334155;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
}

.core-features-section {
    width: 100%;
    background: #f8fafc;
    padding: 20px 0 95px;
}

.core-features-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 52px;
}

.core-features-heading h2 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -1px;
}

.core-features-heading p {
    margin: 0;
    color: #64748b;
    font-size: 16.5px;
    line-height: 1.65;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    max-width: 1040px;
    margin: 0 auto 60px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-content {
    flex: 1;
    max-width: 450px;
}

.feature-content h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-content p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
}

.feature-visual {
    flex: 0 0 52%;
    max-width: 540px;
}

.feature-image-box {
    width: 100%;
    height: 330px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    border: 1px solid rgba(218, 225, 233, 0.8);
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0 12px 36px -6px rgba(16, 40, 69, 0.09), 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px -8px rgba(16, 40, 69, 0.15), 0 4px 14px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.feature-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.feature-image-box:hover img {
    transform: scale(1.02);
}

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


/* =========================================================
   RESPONSIVE - TABLET & LARGE DEVICES
========================================================= */

@media (max-width: 991.98px) {

    .header-container {
        width: calc(100% - 32px);
    }

    .main-navbar {
        padding: 10px 20px;
        min-height: 68px;
        border-radius: 16px;
    }

    .logo {
        height: 52px;
        max-height: 56px;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid #e4e7eb;
        border-radius: 16px;
        padding: 20px 24px;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navbar-nav {
        gap: 8px;
        margin-bottom: 16px !important;
    }

    .nav-link {
        padding: 10px 0 !important;
        font-size: 15px;
    }

    .signup-btn {
        width: 100%;
        height: 44px;
        border-radius: 10px;
        font-size: 14.5px;
    }

    .hero-section {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .hero-image-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }

    .hero-image {
        max-width: 500px;
    }

    .hero-title {
        font-size: 38px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .loan-section {
        padding: 60px 0;
    }

    .loan-content {
        max-width: 600px;
        padding-left: 0;
        margin: 0 auto 25px;
        text-align: center;
    }

    .loan-title {
        font-size: 32px;
    }

    .loan-cards {
        max-width: 700px;
        margin: 0 auto;
    }

    .how-section {
        padding: 60px 0 70px;
    }

    .how-title {
        font-size: 34px;
    }

    .how-step-card {
        min-height: 120px;
        padding: 20px 24px;
    }

    .step-number-large {
        flex-basis: 100px;
        font-size: 60px;
    }

    .testimonial-slide {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    .testimonial-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .pricing-heading h2 {
        font-size: 34px;
    }

    .faq-heading h2 {
        font-size: 34px;
    }

    .final-cta-box {
        padding: 50px 36px;
        border-radius: 32px;
    }

    .final-cta-content h2 {
        font-size: 30px;
    }

    .contact-form-card {
        margin-right: 0;
        margin-top: 20px;
        max-width: 320px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .mission-vision-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .mission-circle-wrapper {
        width: 460px;
        height: 460px;
    }

    .mission-circle {
        width: 360px;
        height: 360px;
        top: 50px;
        left: 50px;
    }

    .feature-row {
        gap: 40px;
    }

    .feature-content h3 {
        font-size: 25px;
    }

    .feature-image-box {
        height: 280px;
        border-radius: 16px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE (Smartphones)
========================================================= */

@media (max-width: 767.98px) {

    .header-container {
        width: calc(100% - 24px);
    }

    .main-navbar {
        padding: 8px 16px;
        min-height: 60px;
        border-radius: 14px;
    }

    .logo {
        height: 46px;
        max-height: 50px;
    }

    .navbar-toggler {
        border: none;
        padding: 4px 6px;
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
    }

    .hero-section {
        padding-top: 35px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .hero-description {
        font-size: 15px;
        max-width: 100%;
    }

    .primary-btn {
        width: 100%;
        height: 46px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .loan-section {
        padding: 50px 0;
    }

    .loan-title {
        font-size: 28px;
    }

    .loan-description {
        font-size: 15px;
    }

    .loan-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .loan-card {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .how-section {
        padding: 50px 0 60px;
    }

    .how-title {
        font-size: 28px;
        letter-spacing: -0.6px;
    }

    .how-description {
        font-size: 14.5px;
    }

    .desktop-break {
        display: none;
    }

    .how-step-card {
        min-height: 0;
        align-items: flex-start;
        padding: 22px 18px;
        border-radius: 16px;
    }

    .step-number-large {
        flex: 0 0 60px;
        font-size: 48px;
        letter-spacing: -1px;
    }

    .step-content h3 {
        font-size: 17px;
    }

    .step-content p {
        font-size: 14px;
    }

    .testimonial-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .testimonial-image-wrapper {
        width: 240px;
        height: 240px;
    }

    .testimonial-content {
        align-items: center;
        padding: 10px 0 0;
    }

    .testimonial-text {
        font-size: 15px;
        text-align: center;
        margin-bottom: 18px;
    }

    .testimonial-author {
        text-align: center;
    }

    .pricing-heading h2 {
        font-size: 28px;
    }

    .current-price {
        font-size: 28px;
    }

    .faq-heading h2 {
        font-size: 28px;
    }

    .faq-question {
        min-height: 60px;
        padding: 0 16px;
    }

    .faq-question-text {
        font-size: 15.5px;
    }

    .faq-answer p {
        padding: 0 20px 18px 46px;
        font-size: 14px;
    }

    .final-cta-section {
        padding: 45px 0 65px;
    }

    .final-cta-box {
        min-height: auto;
        padding: 45px 22px;
        border-radius: 28px;
    }

    .final-cta-content {
        max-width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .final-cta-content h2 {
        font-size: 28px;
    }

    .final-cta-content p {
        font-size: 15px;
    }

    .contact-form-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 26px 18px;
    }

    .main-footer {
        border-radius: 40px 40px 0 0;
        padding: 60px 0 35px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .footer-logo {
        width: 240px;
    }

    .footer-navigation {
        width: 100%;
        justify-content: center;
        gap: 50px;
        margin: 0;
    }

    .footer-right {
        margin: 0;
        gap: 24px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-description {
        font-size: 15px;
    }

    .mv-block h2 {
        font-size: 30px;
    }

    .mv-block p {
        font-size: 15px;
    }

    .mission-circle-wrapper {
        width: 340px;
        height: 340px;
    }

    .mission-circle {
        width: 260px;
        height: 260px;
        top: 40px;
        left: 40px;
    }

    .circle-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .circle-item span {
        font-size: 12px;
    }

    .circle-top-right,
    .circle-top-left {
        top: 68px;
    }

    .circle-bottom-right,
    .circle-bottom-left {
        bottom: 68px;
    }

    .circle-top-right,
    .circle-bottom-right {
        right: -10px;
    }

    .circle-top-left,
    .circle-bottom-left {
        left: -10px;
    }

    .team-section-heading h2 {
        font-size: 32px;
    }

    .partner-heading h2 {
        font-size: 30px;
    }

    .partner-heading p {
        font-size: 15px;
    }

    .business-stat h2 {
        font-size: 38px;
    }

    .business-stat p {
        font-size: 18px;
    }

    .core-features-heading h2 {
        font-size: 30px;
    }

    .core-features-heading p {
        font-size: 15px;
    }

    .feature-row,
    .feature-row-reverse {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
        margin-bottom: 50px;
    }

    .feature-content {
        order: 1;
        max-width: 100%;
    }

    .feature-content h3 {
        font-size: 24px;
    }

    .feature-content p {
        font-size: 15px;
    }

    .feature-visual {
        order: 2;
        width: 100%;
    }

    .feature-image-box {
        width: 100%;
        height: 240px;
        min-height: 220px;
        border-radius: 14px;
    }
}


/* =========================================================
   RESPONSIVE - SMALL PHONES (<400px)
========================================================= */

@media (max-width: 400px) {

    .header-container {
        width: calc(100% - 16px);
    }

    .main-navbar {
        padding: 6px 12px;
        min-height: 54px;
    }

    .logo {
        height: 40px;
        max-height: 44px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .loan-title {
        font-size: 25px;
    }

    .how-title {
        font-size: 25px;
    }

    .pricing-heading h2 {
        font-size: 25px;
    }

    .faq-heading h2 {
        font-size: 25px;
    }

    .final-cta-content h2 {
        font-size: 25px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .team-section-heading h2 {
        font-size: 28px;
    }

    .partner-heading h2 {
        font-size: 26px;
    }

    .core-features-heading h2 {
        font-size: 26px;
    }
}