body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6f5fb;
    color: #1e213a;
    margin: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 26px;
}
header {
    background: #fff;
    border-bottom: 3px solid #7a6ff8;
    box-shadow: 0 4px 12px rgba(122,111,248,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}
.flex-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 39px;
    position: relative;
}
.bar {
    width: 13px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #7a6ff8 50%, #53eba1 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 26px;
    box-shadow: 0 2px 7px rgba(122,111,248,0.20);
}
.bar1 { height:30px; }
.bar2 { height:38px; }
.bar3 { height:48px; }
.currency {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #7a6ff8;
    font-weight: bold;
    text-shadow: 0 2px 4px #d2cfff20;
}
.arrow {
    position: absolute;
    bottom: 100%; left: 50%;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #7a6ff8;
    transform: translateX(-50%);
}
.logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: #7a6ff8;
    font-family: 'Segoe UI', Arial, sans-serif;
    letter-spacing: 1.7px;
    text-shadow: 0 1px 5px #e4e1f820;
}
nav {
    display: flex;
    gap: 20px;
}
nav a {
    color: #1e213a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: color 0.2s, border 0.2s;
}
nav a:hover {
    color: #7a6ff8;
    border-bottom: 2px solid #53eba1;
}
@media (max-width: 900px) {
    .flex-header { flex-direction: column; gap: 8px; }
    nav { gap: 13px; }
}

/* Hero Layout */
.main-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 420px;
    background: linear-gradient(100deg, #e2edf8 60%, #eee7ff 120%);
    border-radius: 22px;
    margin: 44px 19px 38px 19px;
    box-shadow: 0 12px 40px rgba(122,111,248,0.09);
    padding: 48px 42px 14px 35px;
}
.hero-left {
    flex: 1.2;
}
.hero-left h1 {
    font-size: 2.7rem;
    color: #7a6ff8;
    margin-bottom: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}
.brand {
    color: #2e4057;
    background: linear-gradient(80deg, #53eba1 60%, #7a6ff8 150%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #2e4057;
}
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.hero-graphic {
    width: 210px;
    height: 250px;
    background: linear-gradient(135deg, #7a6ff8 60%, #53eba1 120%);
    border-radius: 33px 33px 75px 75px;
    margin-left: 36px;
    box-shadow: 0 14px 38px #7a6ff84c;
    opacity: 0.93;
}
@media (max-width: 1000px) {
    .main-hero { flex-direction: column; align-items: flex-start; padding: 38px 19px 10px 19px; }
    .hero-right { margin-top: 23px; align-self:center;}
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, #7a6ff8 65%, #53eba1 145%);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 13px 42px;
    font-size: 1.135rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.17s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px #86e6c340;
}
.btn-primary:hover {
    background: linear-gradient(90deg,#53eba1 55%,#7a6ff8 120%);
    color:#222;
}

/* Loan Categories / Card Stack */
.loan-categories {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 2px 19px #53eba13a;
    margin: 22px 16px 39px 16px;
    padding: 40px 22px 32px 22px;
}
.loan-categories h2 {
    text-align: center;
    color: #7a6ff8;
    margin-bottom: 30px;
    font-size: 1.64rem;
}
.card-stack {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.loan-card {
    min-width: 200px;
    min-height: 130px;
    background: linear-gradient(120deg, #f8f9fd 80%, #7a6ff8 12%);
    border-radius: 16px 38px 16px 16px;
    box-shadow: 0 2px 15px #7a6ff820;
    padding: 24px 20px 18px 20px;
    border-left: 8px solid #53eba1;
    transition: box-shadow 0.11s;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: center;
}
.loan-card.special, .loan-card.women {
    border-left: 8px solid #7a6ff8;
    background: linear-gradient(110deg, #e4e2fa 75%, #53eba1 120%);
}
.loan-card h3 {
    color: #2e4057;
    margin-bottom: 7px;
    font-size: 1.1rem;
}
.loan-card p {
    color: #464e8b;
    font-size: 1.02rem;
    font-weight: 400;
    margin: 0;
}

/* How It Works (Workflow) */
.workflow {
    margin: 36px 18px;
    padding: 42px 12px 32px 12px;
    background: linear-gradient(120deg,#f8f9fd 60%, #53eba110 120%);
    border-radius: 18px;
    box-shadow: 0 2px 24px #53eba13a;
}
.workflow h2 {
    text-align: center;
    color: #7a6ff8;
    margin-bottom: 30px;
}
.steps {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    margin: 0 6px;
    border-radius: 20px;
    padding: 22px 18px 14px 18px;
    min-width: 110px;
    box-shadow: 0 2px 9px #7a6ff82a;
}
.step-icon {
    font-size: 2.1em;
    margin-bottom: 9px;
    color: #53eba1;
}

/* Benefits Band */
.benefit-band {
    background: #e2edf8;
    border-radius: 16px;
    box-shadow: 0 2px 19px #7a6ff810;
    margin: 30px 14px 32px 14px;
    padding: 29px 13px 10px 13px;
}
.benefit-band h2 {
    color: #2e4057;
    text-align: center;
    font-size: 1.41rem;
    margin-bottom: 28px;
}
.benefit-list {
    display: flex; flex-wrap: wrap;
    gap: 26px; justify-content: center;
    list-style: none; margin: 0; padding: 0;
}
.benefit-list li {
    flex: 1 1 110px;
    background: #fff;
    padding: 22px 16px;
    border-radius: 15px;
    min-width: 210px;
    margin: 8px;
    box-shadow: 0 2px 10px #53eba13c;
    display: flex; flex-direction: column;
    align-items: flex-start;
}
.benefit-title {
    color: #7a6ff8;
    font-weight: 700;
    margin-bottom: 6px;
}
.benefit-desc {
    color: #222;
    font-size: 1rem;
    font-weight: 400;
}

/* Testimonials Carousel/Section */
.testimonial-section {
    margin: 42px 6px;
    padding: 42px 11px 24px 11px;
    background: linear-gradient(95deg, #7a6ff80a 38%, #53eba122 100%);
    border-radius: 15px;
    box-shadow: 0 8px 26px #7a6ff820;
}
.testimonial-section h2 {
    color: #2e4057;
    text-align: center;
    margin-bottom: 10px;
}
.testimonial-carousel {
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    margin-top: 26px;
}
.testimonial {
    background: #fff;
    border-left: 5px solid #7a6ff8;
    border-radius: 10px;
    box-shadow: 0 2px 8px #7a6ff830;
    padding: 18px 17px 15px 15px;
    color: #2e4057;
    width: 240px;
    min-height: 80px;
    font-size: 1.07rem;
}
.testimonial span {
    color: #53eba1;
    font-size: 0.93em;
    display: block; margin-top: 8px;
    font-style: italic;
}

/* Contact */
.contact-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 17px #53eba13c;
    margin: 34px 13px 0 13px;
    padding: 23px 16px 18px 16px;
    text-align: center;
}
.contact-section h2 {
    color: #7a6ff8;
    margin-bottom: 18px;
}
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 38px;
    justify-content: center;
    margin-bottom: 15px;
}
.contact-cards div {
    background: #eee7ff;
    border-radius: 15px;
    min-width: 200px;
    box-shadow: 0 1px 4px #7a6ff81a;
    padding: 16px 13px;
    color: #2e4057;
}
.contact-section a.btn-primary {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

/* Footer */
footer {
    background: #7a6ff8;
    color: #fff;
    text-align: center;
    padding: 20px 0 16px 0;
    font-size: 1rem;
    margin-top: 33px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -2px 8px #53eba13a;
}

/* Responsive */
@media (max-width: 650px) {
    .container, main { padding: 0 2px!important;}
    .main-hero, .loan-categories, .workflow, .benefit-band, .testimonial-section, .contact-section, footer { margin-left:4px; margin-right:4px;}
    .main-hero { flex-direction: column; align-items: flex-start; padding: 22px 6px 10px 10px;}
    .hero-right { margin-left:0; }
    .logo-text { font-size: 1.18rem; }
    .testimonial-carousel, .card-stack, .steps, .benefit-list, .contact-cards { flex-direction: column; gap:13px; }
}
