/* Platform Styles */

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

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #0F0F0F;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: auto;
    min-height: 800px;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 800px;
    background: url('../assets/financial-products/hero-bg-new.png') center/cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.hero-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.0625;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.8);
    max-width: 747px;
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.033;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-bottom .section-title {
    margin-bottom: 0;
}

.hero-bottom .section-subtitle {
    margin-top: 24px;
    margin-bottom: 40px;
}

.hero-bottom .diagram-image {
    margin-bottom: 0;
}

.platform-main {
    padding: 0 0 80px 0;
}

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

/* Section */
.section {
    margin-bottom: 160px;
}

.section--last {
    margin-bottom: 0;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #0F0F0F;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.111;
    letter-spacing: 0.01em;
    color: #777E90;
    margin-bottom: 40px;
}

.diagram-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0px 8px 60px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 40px;
    height: 40px;
    color: #A175FF;
}

.card-icon--green {
    color: #00B41D;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.083;
    letter-spacing: 0.01em;
    text-align: center;
    color: #A175FF;
}

.card-title--green {
    color: #00B41D;
}

.card-description {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.125;
    letter-spacing: 0.01em;
    text-align: center;
    color: rgba(161, 117, 255, 0.8);
}

.card-description--green {
    color: rgba(0, 180, 29, 0.8);
}

/* Section Header */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.section-description {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.0625;
    letter-spacing: 0.01em;
    color: #1B04BE;
}

/* Features Tags */
.features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.feature-tag {
    background: #FFFFFF;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 100px;
    padding: 12px 16px;
    box-shadow: 0px 8px 60px 0px rgba(0, 0, 0, 0.05);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.111;
    letter-spacing: 0.01em;
    color: #007770;
}

/* Highlight Box */
.highlight-box {
    background: rgba(0, 119, 112, 0.1);
    border-radius: 32px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #007770;
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.111;
    letter-spacing: 0.01em;
    color: #007770;
}

/* Service Basis */
.basis-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    counter-reset: basis-counter;
    padding: 0;
    margin: 0;
}

.basis-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    counter-increment: basis-counter;
}

.basis-item::before {
    content: counter(basis-counter) ".";
    font-size: 32px;
    font-weight: 600;
    line-height: 1.0625;
    letter-spacing: 0.01em;
    color: #1B04BE;
    flex-shrink: 0;
}

.basis-text {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.0625;
    letter-spacing: 0.01em;
    color: #1B04BE;
}

/* Why Kyrgyzstan Section */
.section--kyrgyzstan {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.kyrgyzstan-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-title--red {
    color: #C51918;
}

.kyrgyzstan-description {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.083;
    color: #007770;
}

.kyrgyzstan-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 32px;
}

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

.kyrgyzstan-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 24px;
    padding: 24px 18px;
    box-shadow: 0 8px 60px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.kyrgyzstan-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: #0F0F0F;
}

.kyrgyzstan-card-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.125;
    color: #777E90;
}

.kyrgyzstan-highlight {
    background: rgba(0, 119, 112, 0.1);
    border-radius: 24px;
    padding: 24px;
}

.kyrgyzstan-highlight-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #007770;
}

/* CTA Section */
.cta-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.section-title--gradient {
    background: linear-gradient(135deg, rgba(255, 0, 184, 1) 0%, rgba(255, 130, 4, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.111;
    letter-spacing: 0.01em;
    color: #777E90;
}

.cta-note {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.143;
    letter-spacing: 0.01em;
    color: rgba(119, 126, 144, 0.6);
}

.cta-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-input {
    background: #FFFFFF;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 16px;
    padding: 19px 16px;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.125;
    letter-spacing: 0.01em;
    color: #777E90;
    width: 400px;
    box-shadow: 0px 8px 60px 0px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: border-color 0.3s ease;
}

.cta-input:focus {
    border-color: #007FFF;
}

.cta-input::placeholder {
    color: #777E90;
}

.cta-button {
    background: #007FFF;
    border: none;
    border-radius: 16px;
    padding: 18px 16px;
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.111;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    width: 120px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 600px;
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-bottom .section-subtitle {
        color: #FFFFFF;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 24px;
    }
    
    .features-tags {
        flex-direction: column;
    }
    
    .feature-tag {
        text-align: center;
    }
    
    .basis-text {
        font-size: 24px;
    }
    
    .kyrgyzstan-cards {
        grid-template-columns: 1fr;
    }
    
    .kyrgyzstan-image {
        height: 300px;
    }
    
    .kyrgyzstan-description {
        font-size: 20px;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-input {
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
}

