/* OneClickMoney KZ - Базовые стили */

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

:root {
    --primary-color: #FDB813;
    --secondary-color: #fe303f;
    --text-color: #333;
    --bg-color: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
}

.main-loader {
    display: none;
}

/* Container */
#main-shell {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-color);
}

/* Header Index */
#header-index {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.left-blk-head {
    display: flex;
    gap: 30px;
}

.left-blk-head-elm {
    display: flex;
    align-items: center;
    gap: 15px;
}

.left-blk-head-elm img {
    width: 50px;
    height: 50px;
}

.count-head-m {
    font-size: 24px;
    font-weight: bold;
}

.desc-head-m {
    font-size: 12px;
    opacity: 0.9;
}

.right-blk-head {
    display: flex;
    gap: 20px;
    align-items: center;
}

.reg-head-elm {
    display: flex;
    align-items: center;
    gap: 15px;
}

.regestration-link a,
.login-link a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.complaint__index-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.complaint__index-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Navigation Header */
#header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-sclled {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.menu-head {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu-head a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-head a:hover {
    color: var(--primary-color);
}

.menu-head ul {
    display: none;
    position: absolute;
    background: white;
    box-shadow: var(--shadow);
    padding: 10px;
    list-style: none;
}

.menu-head li:hover ul {
    display: block;
}

.link-loan-head a {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.link-loan-head a:hover {
    transform: scale(1.05);
}

/* Calculator Section */
#main-calc {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    color: white;
    text-align: center;
}

.calculator-main {
    max-width: 800px;
    margin: 0 auto;
}

.logo-calc {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.desc-logo-calc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.calculator-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    color: var(--text-color);
}

.calc-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #667eea;
}

.calc-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.calc-controls {
    margin-bottom: 30px;
}

.calc-control-group {
    margin-bottom: 30px;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calc-label-text {
    font-size: 18px;
    font-weight: 500;
}

.calc-value {
    font-size: 24px;
    font-weight: bold;
    color: #FDB813;
}

.calc-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.calc-range::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 14px;
    color: #999;
}

.calc-result {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.calc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

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

.calc-result-label {
    font-size: 18px;
    color: #666;
}

.calc-result-value {
    font-size: 28px;
    font-weight: bold;
    color: #667eea;
}

.calc-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #FDB813 0%, #f39c12 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
}

.calc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 184, 19, 0.6);
}

.calc-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

/* Fast Pay Section */
.fast-pay {
    background: white;
    padding: 60px 40px;
    text-align: center;
}

.fast-pay__title {
    font-size: 32px;
    margin-bottom: 30px;
}

.fast-pay__text-decoration-red {
    color: var(--secondary-color);
}

.fast-pay__button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.3s;
}

.fast-pay__button:hover {
    transform: scale(1.05);
}

/* Payment Systems */
.payment-systems {
    background: #f8f9fa;
    padding: 60px 40px;
    text-align: center;
}

.title-payment-sys {
    font-size: 24px;
    margin-bottom: 40px;
}

.payment-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.image-pay-wr {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.image-pay-wr:hover {
    transform: translateY(-5px);
}

.image-pay-wr img {
    height: 60px;
}

/* Advantages Section */
.advantages-main {
    padding: 80px 40px;
    background: white;
}

.title-advantages-m {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-blk {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.advantage-blk:hover {
    transform: translateY(-10px);
}

.image-advantage {
    position: relative;
    margin-bottom: 20px;
}

.image-advantage img {
    width: 100px;
    height: 100px;
}

.number-advantage {
    position: absolute;
    top: 0;
    right: 30%;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.desc-advantage {
    font-size: 16px;
    line-height: 1.5;
}

/* Questions Section */
.questions-main {
    background: #f8f9fa;
    padding: 80px 40px;
}

.title-questions-m {
    text-align: center;
    margin-bottom: 40px;
}

.title-questions-m h2 {
    font-size: 32px;
}

.title-questions-m a {
    color: var(--text-color);
    text-decoration: none;
}

.content-questions-m {
    max-width: 900px;
    margin: 0 auto;
}

.question-m-blk {
    background: white;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s;
}

.question-m-blk:hover {
    transform: translateX(5px);
}

.question-m-blk > p {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.desc-quest-m-blk {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.desc-quest-m-blk ul {
    margin-left: 20px;
    margin-top: 10px;
}

/* CEO/SEO Section */
.ceo-main {
    padding: 80px 40px;
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.ceo-main h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.ceo-main p {
    margin-bottom: 15px;
}

.ceo-main ul {
    margin-left: 20px;
}

.ceo-main li {
    margin-bottom: 10px;
}

/* Info Section */
.info {
    background: #f8f9fa;
    padding: 60px 40px;
}

.info__title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.info__container {
    max-width: 1000px;
    margin: 0 auto;
}

.info__text {
    margin-bottom: 20px;
    line-height: 1.8;
}

.info__text a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 40px 30px;
}

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

.footer__container-wr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__block-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer__list {
    list-style: none;
}

.footer__list-item {
    margin-bottom: 10px;
}

.footer__list-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__list-item a:hover {
    color: var(--primary-color);
}

.complaint__footer-wr {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
}

.complaint__footer-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.complaint__footer-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s;
}

.complaint__footer-btn:hover {
    background: #d62634;
}

.footer__text {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    opacity: 0.8;
    font-size: 14px;
}

.footer__logo {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__logo-cont {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.footer__logo-text {
    margin-top: 10px;
    opacity: 0.8;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer__social a {
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.footer__social a:hover {
    background: var(--primary-color);
}

/* MFO Catalog Section */
#mfo-section {
    padding: 80px 40px;
    background: white;
}

.mfo-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mfo-section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
}

.mfo-section-subtitle {
    font-size: 18px;
    color: #666;
}

.mfo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.mfo-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.mfo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.mfo-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.mfo-logo {
    font-size: 48px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.mfo-name-rating {
    flex: 1;
}

.mfo-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-color);
}

.mfo-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mfo-stars {
    color: #FDB813;
    font-size: 18px;
}

.star {
    color: #ddd;
}

.star.filled {
    color: #FDB813;
}

.star.half {
    background: linear-gradient(90deg, #FDB813 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mfo-rating-text {
    font-weight: bold;
    color: var(--text-color);
}

.mfo-reviews {
    font-size: 14px;
    color: #999;
}

.mfo-details {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.mfo-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

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

.mfo-detail-label {
    color: #666;
    font-size: 14px;
}

.mfo-detail-value {
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.mfo-approval {
    color: #28a745;
    font-weight: bold;
}

.mfo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.mfo-feature-tag {
    background: #e8f4fd;
    color: #667eea;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.mfo-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #FDB813 0%, #f39c12 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.3);
}

.mfo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 184, 19, 0.5);
}

/* Live Counter */
.live-counter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-text {
    font-weight: 600;
    font-size: 16px;
}

.live-stats {
    display: flex;
    gap: 40px;
}

.live-stat {
    text-align: center;
}

.live-stat-value {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #FDB813;
}

.live-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Loan Notifications */
.loan-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transform: translateX(-400px);
    transition: transform 0.3s ease-out;
}

.loan-notification.show {
    transform: translateX(0);
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.notification-text {
    font-size: 14px;
    color: var(--text-color);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.reviews-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 60px;
    color: var(--text-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.review-meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #999;
}

.review-city::after {
    content: "•";
    margin-left: 10px;
}

.review-rating {
    color: #FDB813;
    font-size: 16px;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-amount {
    display: inline-block;
    background: #e8f4fd;
    color: #667eea;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    #header-index {
        padding: 15px 20px;
    }
    
    .left-blk-head {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .left-blk-head-elm {
        min-width: calc(50% - 7.5px);
    }
}

@media (max-width: 768px) {
    /* Header */
    #header-index {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }
    
    .left-blk-head {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .left-blk-head-elm {
        width: 100%;
        padding: 15px;
    }
    
    .left-blk-head-elm img {
        width: 40px;
        height: 40px;
    }
    
    .count-head-m {
        font-size: 24px;
    }
    
    .desc-head-m p {
        font-size: 12px;
    }
    
    .right-blk-head {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }
    
    .reg-head-elm {
        width: 100%;
        justify-content: center;
    }
    
    .complaint__index-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    /* Fixed Header */
    .header-inner {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }
    
    .menu-head {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .menu-head > li {
        width: 100%;
        text-align: center;
    }
    
    /* Calculator */
    #main-calc {
        padding: 40px 20px;
    }
    
    .logo-calc {
        font-size: 28px;
    }
    
    .desc-logo-calc {
        font-size: 14px;
    }
    
    .calculator-wrapper {
        padding: 25px 20px;
    }
    
    .calc-title {
        font-size: 24px;
    }
    
    .calc-subtitle {
        font-size: 14px;
    }
    
    .calc-label-text {
        font-size: 16px;
    }
    
    .calc-value {
        font-size: 20px;
    }
    
    .calc-result {
        padding: 20px;
    }
    
    .calc-result-label {
        font-size: 14px;
    }
    
    .calc-result-value {
        font-size: 22px;
    }
    
    .calc-button {
        font-size: 18px;
        padding: 16px;
    }
    
    /* MFO Section */
    #mfo-section {
        padding: 60px 20px;
    }
    
    .mfo-section-title {
        font-size: 28px;
    }
    
    .mfo-section-subtitle {
        font-size: 16px;
    }
    
    .mfo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mfo-card {
        padding: 20px;
    }
    
    .mfo-logo {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
    
    .mfo-name {
        font-size: 18px;
    }
    
    /* Advantages */
    .title-advantages-m {
        font-size: 28px;
        padding: 0 20px;
    }
    
    .advantages {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .advantage-blk {
        padding: 20px;
    }
    
    .image-advantage img {
        width: 80px;
        height: 80px;
    }
    
    .number-advantage {
        font-size: 14px;
    }
    
    .desc-advantage {
        font-size: 16px;
    }
    
    /* Reviews */
    .reviews-section {
        padding: 60px 20px;
    }
    
    .reviews-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* Live Counter */
    .live-counter {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }
    
    .live-stats {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .live-stat-value {
        font-size: 24px;
    }
    
    /* Payment Systems */
    .payment-systems {
        padding: 40px 20px;
    }
    
    .title-payment-sys {
        font-size: 16px;
    }
    
    /* FAQ */
    .ceo-main {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .title-ceo {
        font-size: 28px;
    }
    
    .question-m-blk {
        padding: 20px;
    }
    
    .question-title {
        font-size: 16px;
    }
    
    .answer-m-blk {
        font-size: 14px;
    }
    
    /* Footer */
    footer {
        padding: 40px 20px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column h3 {
        font-size: 18px;
    }
    
    /* Notifications */
    .loan-notification {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 15px;
        font-size: 13px;
    }
    
    .notification-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    /* Modal */
    .modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
    
    .form-input {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .form-submit {
        padding: 14px;
        font-size: 16px;
    }
    
    /* Fast Pay */
    .fast-pay {
        padding: 40px 20px;
    }
    
    .fast-pay__title {
        font-size: 24px;
    }
    
    .fast-pay__wrapper {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .calc-title {
        font-size: 20px;
    }
    
    .mfo-section-title {
        font-size: 24px;
    }
    
    .title-advantages-m {
        font-size: 24px;
    }
    
    .reviews-title {
        font-size: 24px;
    }
    
    .mfo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .mfo-logo {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .calc-result {
        padding: 15px;
    }
    
    .calc-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .live-stat-value {
        font-size: 20px;
    }
    
    .live-stat-label {
        font-size: 12px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #667eea;
}

.modal-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Form Styles */
.app-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.form-input {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
}

.form-input::placeholder {
    color: #999;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.form-checkbox a {
    color: #667eea;
    text-decoration: none;
}

.form-submit {
    background: linear-gradient(135deg, #FDB813 0%, #f39c12 100%);
    color: white;
    padding: 16px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 184, 19, 0.6);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* Success Modal */
.success-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    color: white;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 28px;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
}

.success-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.success-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Overlay */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

/* Utility Classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
