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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

/* Header */
header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

@media screen and (max-width:767px){
    header {
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);            }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a1a1a;
}

.logo-icon {
    width: 32px;
    height: 32px;
    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #656A6F;
}

.logo-subtitle {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.nav-register {
    background: #F4F4F4;
    color: #1a1a1a;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-register:hover {
    background: #e8e8e8;
}

@media (min-width: 768px) {
    header {
        padding: 12px 0;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 13px;
    }

    .nav-register {
        background: rgba(203, 203, 203, 0.48);
        padding: 10px 30px;
        border-radius: 20px;
        font-size: 16px;
    }
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.badge {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 24px;
}

h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    color:rgb(87, 87, 87);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.image-card {
    width: 240px;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.image-card:nth-child(2) {
    height: 380px;
}


.cta-button {
    background: #F4F4F4;
    color: #1a1a1a;
    padding: 10px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.global-stats {
    font-size: 32px;
    color: #666;
}

/* Key Benefits */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: #1C1C1E;
;
    color: white;
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 20px;
    margin-bottom: 20px;
}

.benefit-icon img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 14px;
    line-height: 1.5;
    color: #b0b0b0;
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
    background: #1C1C1E;
;
    color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card {
    height: 250px;
    background: white;
    color: #1a1a1a;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    align-content: end;
}

.step-number {
    font-size: 290px;
    font-weight: 800;
    color: rgba(224, 224, 224, 0.88);
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    z-index: 0;
    line-height: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.step-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 24px;
}

/* Mobile App Section */
.mobile-app {
    padding: 80px 0;
    background: white;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: #f0f0f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    img {
        width: 100%;
        height: 100%;
    }
}

.app-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.app-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.app-features {
    list-style: none;
    margin-bottom: 32px;
}

.app-features li {
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
}

.app-features li:before {
    content: "•";
    margin-right: 12px;
    color: #7B3FF2;
    font-weight: bold;
}

.app-disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
}

.app-note {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #f8f9fa;
}

.stats h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-card {
    background: #1C1C1E;
;
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #b0b0b0;
}

/* Partners */
.partners {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.partners h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

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

.partner-logo {
    width: 200px;
    height: 80px;
    background: #f0f0f0;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Registration Form */
.registration {
    padding: 80px 0;
    background: #000D19;
    color: white;
}

.registration-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.registration-text {
    flex: 1;
}

.registration-form {
    flex: 1;
    max-width: 400px;
}

.registration h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.registration-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    color: white;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .registration-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .registration-form {
        width: 100%;
    }

    .registration h2 {
        font-size: 36px;
    }

    .registration-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

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

.form-input {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.form-input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: white;
    color: #0A0A0A;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #f0f0f0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

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

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

.faq h2 {
    font-size: 48px;
    font-weight: 800;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 24px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #7B3FF2;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #7B3FF2;
    color: white;
    border-color: #7B3FF2;
    transform: rotate(45deg);
}

.faq-answer {
    padding-top: 16px;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Disclaimer */
.disclaimer {
    padding: 40px 0;
    background: #f8f9fa;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px !important;
    }

    .app-content {
        grid-template-columns: 1fr;
    }

    .image-grid {
        flex-direction: column;
        align-items: center;
    }

    .registration-subtitle {
        font-size: 30px;
    }

    .faq-question {
        font-size: 16px;
    }
}