@font-face{
font-family: 'Poppins Light';
src: url('../fonts/Poppins-Light.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}

@font-face{
font-family: 'Poppins Bold';
src: url('../fonts/Poppins-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}

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

.header {
    position: fixed;
    top: 20px;
    left: 20px;
    width: auto;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    padding: 12px 24px;
    font-family: 'Poppins Light';
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header .big{
    font-family: 'Poppins Bold';
    color: #000000;
}

.header:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header:active {
    transform: translateY(0) scale(0.98);
}

.qr-section {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInRight 0.8s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.qr-section:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.qr-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qr-text {
    text-align: left;
}

.qr-text h3 {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 0.85em;
    color: #000000;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.qr-text p {
    font-family: 'Poppins Light', sans-serif;
    font-size: 0.75em;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.qr-code {
    width: 70px;
    height: 70px;
    background: #000000;
    border-radius: 25px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-section:hover .qr-code {
    transform: scale(1.02);
}

.qr-code svg {
    width: 100%;
    height: 100%;
    display: block;
}

.qr-badge {
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
    font-family: 'Poppins Light', sans-serif;
    font-size: 0.7em;
    padding: 4px 10px;
    border-radius: 25px;
    letter-spacing: 0.03em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body {
    font-family: 'Poppins Light', sans-serif;
    background: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

.hero-section {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding: 180px 80px 100px 80px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 5em;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    line-height: 1.05;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #ccc 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    width: 100%;
    padding: 0 80px 100px 80px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 40px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
    z-index: -1;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 24px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.feature-card p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.05em;
    font-weight: 400;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background: transparent;
    border: none;
    padding: 100px 80px;
    animation: fadeInUp 0.8s ease-out;
    border-radius: 0;
}

.container h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
}

.container > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

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

label {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 1em;
    letter-spacing: -0.01em;
}

input,
select {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    color: #ffffff;
    font-weight: 300;
}

input:focus,
select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select {
    appearance: none;
    cursor: pointer;
}

button[type="submit"] {
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    color: #000000;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 48px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

button[type="submit"]:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

button[type="submit"]:active {
    transform: scale(0.99);
}
.benefits-section {
    padding: 100px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.benefits-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 40px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }

.benefit-item::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
    z-index: -1;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item .feature-icon {
    font-size: 2.5em;
    margin-bottom: 24px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.benefit-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.benefit-item p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.05em;
    font-weight: 400;
}

.cta-section {
    text-align: center;
    padding: 100px 80px 120px 80px;
    animation: fadeInUp 0.8s ease-out;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5em;
    margin-bottom: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.cta-button {
    display: inline-block;
    padding: 22px 60px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: -0.01em;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.cta-button:active {
    transform: scale(0.99);
}
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-section {
        padding: 140px 40px 100px 40px;
    }
    
    .hero-section h1 {
        font-size: 3em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 40px 100px 40px;
    }
    
    .container {
        padding: 60px 40px;
        max-width: 100%;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-section {
        padding: 100px 40px;
    }
    
    .cta-section {
        padding: 100px 40px 120px 40px;
    }
}

@media (max-width: 600px) {
    .qr-section {
        display: none;
    }
    
    .header {
        top: 15px;
        left: 15px;
        padding: 10px 18px;
        font-size: 0.9em;
    }
    
    .hero-section {
        padding: 120px 30px 80px 30px;
    }
    
    .hero-section h1 {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .features-grid {
        padding: 0 30px 80px 30px;
        gap: 50px;
    }
    
    .container {
        padding: 60px 30px 80px 30px;
    }
    
    .container h2 {
        font-size: 2em;
    }
    
    .benefits-section h2 {
        font-size: 2.2em;
    }
    
    .cta-section h2 {
        font-size: 2.2em;
    }
}