/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    border-radius: 16px;
    background: #1B3458;
    color: white;


    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    width: 100%;
    max-width: 587px;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;

    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.cookie-btn.accept {

    color: white;
    border-radius: 12px;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);

}

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 4rem;
    height: 4rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 600;
    color: #6c63ff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border-radius: 8px;
    background: linear-gradient(180deg, #9994E7 0%, #676BC2 100%);
    padding: 12px 24px;
}

.nav-menu a {
    text-decoration: none;


    transition: color 0.3s ease;
    color: #FFF;
    text-align: center;

    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.nav-menu a:hover {
    color: #6c63ff;
}

.nav-cta {
    background: #6c63ff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.6rem;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #5a52d5;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: url("./img/bg.png");
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 2;

}

.hero-text {
    flex: 1;
    min-width: 35rem;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
    display: flex;
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    flex: 1 0 0;
}

.hero-text h1 {

    margin-bottom: 2rem;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.hero-text p {

    opacity: 0.9;

    color: #4B5563;

    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-form {
    flex: 1;
    min-width: 35rem;
    max-width: 40rem;
}

.registration-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.registration-form input {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.registration-form input:focus {
    outline: none;
    border-color: #6c63ff;
}

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

.phone-input {
    display: flex;
    margin-bottom: 1.5rem;
}

.country-flag {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 0.8rem 0 0 0.8rem;
    padding: 1.5rem 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    min-width: 8rem;
    justify-content: center;
    color: #333333;
}

.phone-input input {
    margin-bottom: 0;
    border-radius: 0 0.8rem 0.8rem 0;
    border-left: none;
}

.register-btn {
    width: 100%;
    background: #6c63ff;
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #5a52d5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: #f8f9ff;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.feature-card {
    background: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 28rem;
    max-width: 35rem;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 8rem;
    height: 8rem;
    /*background: linear-gradient(135deg, #8b5fbf 0%, #6c63ff 100%);*/
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 4rem;
    height: 4rem;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.4rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 28rem;
    max-width: 32rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
    border-color: #6c63ff;
    background: linear-gradient(135deg, #8b5fbf 0%, #6c63ff 100%);
    color: white;
    transform: scale(1.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #6c63ff;
}

.service-card.featured h4 {
    color: white;
}

.service-card h4 span {
    font-size: 1.4rem;
    font-weight: 400;
}

.service-card p {
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 1.4rem;
}

.service-button {
    background: #8b5fbf;
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.4rem;
}

.service-card.featured .service-button {
    background: #fff;
    color: #6c63ff;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Statistics Section */
.statistics {
    padding: 8rem 0;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    color: white;
}

.statistics h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 5rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 25rem;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.6rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: #f8f9ff;
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5rem;
}

.faq-list {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    border-radius: 8px;
    background: #F5F5F5;

    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-item summary {
    padding: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.3s ease;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item summary:hover {
    background: #f8f9ff;
}

.faq-item p {
    padding: 0 2rem 2rem;
    color: #666;
    line-height: 1.6;
    font-size: 1.4rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: #f0f0f0;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 25rem;
    max-width: 28rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-avatar {
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.3rem;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #f8f9ff;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    flex: 1;
    min-width: 20rem;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
    display: flex;
    width: 323px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.contact-item h4 {
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #666;
    font-size: 1.4rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #B8ADFE 0%, #676BC2 100%);

    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 4rem;
    height: 4rem;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    /*border-radius: 3rem;*/
    backdrop-filter: blur(10px);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    background: linear-gradient(180deg, #9994E7 0%, #676BC2 100%);
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-cta {
    background: #fff;
    color: #6c63ff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
}

/* Success Page Styles */
.success-main {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.success-content {
    text-align: center;
    max-width: 50rem;
}

.success-icon {
    margin-bottom: 3rem;
}

.success-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.success-content p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.btn-primary {
    background: #6c63ff;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #5a52d5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.privacy__title {
    color: #1B1816;
    text-align: center;

    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.btn-secondary {
    background: transparent;
    color: #6c63ff;
    padding: 1.2rem 2.5rem;
    border: 2px solid #6c63ff;
    border-radius: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #6c63ff;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {

    html {
        font-size: 9px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .nav-menu {
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero {
        padding: 4rem 0;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-form {
        max-width: 100%;
    }

    .registration-form {
        padding: 2rem;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-5px);
    }

    .stats-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 25rem;
        text-align: center;
    }

    .nav-menu {
        display: none;
    }

    .privacy__title {

        font-size: 35px;
    }

    .contact-item {

        width: 100%;
 
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .features h2,
    .services h2,
    .statistics h2,
    .faq h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .testimonials-grid {
        gap: 1.5rem;
    }

    .phone-input {
        flex-direction: column;
    }

    .country-flag {
        border-radius: 0.8rem 0.8rem 0 0;
        border-right: 1px solid #e0e0e0;
    }

    .phone-input input {
        border-radius: 0 0 0.8rem 0.8rem;
        border-left: 1px solid #e0e0e0;
        border-top: none;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-nav {
        padding: 1.5rem;
    }
}