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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
    background: #0a0a0f;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    min-height: 100vh;
}

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

.section-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #007aff;
    margin-bottom: 8px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #fff;
}

.section-title .highlight {
    color: #007aff;
}

p {
    color: #b0b0b8;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #b0b0b8;
    text-decoration: none;
    transition: color 0.3s;
    padding: 6px 0;
}

.nav-link:hover {
    color: #fff;
}

.nav-cta {
    background: #007aff;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #0055b3;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

section {
    padding: 80px 0;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: #0a0a0f;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 122, 255, 0.12);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #007aff;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-title .hero-highlight {
    color: #007aff;
}

.hero-desc {
    font-size: 18px;
    color: #b0b0b8;
    max-width: 540px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #007aff;
    color: #fff;
}

.btn-primary:hover {
    background: #0055b3;
    transform: scale(1.02);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 0.5px solid rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
    background: transparent;
    color: #007aff;
    border: 1.5px solid #007aff;
    padding: 8px 20px;
    font-size: 14px;
}

.btn-outline:hover {
    background: #007aff;
    color: #fff;
}

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

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #6a6a72;
}

.services-grid,
.pricing-grid,
.steps-grid {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

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

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

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

.service-card,
.pricing-card,
.step-card,
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 30px;
    border: 0.5px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s;
}

.service-card:hover,
.pricing-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
}

.service-card h3,
.pricing-card h3,
.step-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p,
.step-card p {
    color: #b0b0b8;
    font-size: 15px;
}

.service-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.service-tag {
    display: inline-block;
    background: rgba(0, 122, 255, 0.12);
    color: #007aff;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card.popular {
    border: 1px solid #007aff;
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-6px);
}

.pricing-badge {
    display: inline-block;
    background: #007aff;
    color: #fff;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    color: #b0b0b8;
}

.pricing-card .btn {
    width: 100%;
}

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

.about-avatar {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    border: 0.5px solid rgba(255, 255, 255, 0.04);
}

.about-content p {
    font-size: 17px;
    color: #b0b0b8;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-feature span {
    font-size: 24px;
}

.about-feature strong {
    display: block;
    font-size: 15px;
    color: #fff;
}

.about-feature p {
    font-size: 13px;
    color: #6a6a72;
    margin: 0;
}

.step-card {
    text-align: center;
}

.step-number {
    font-size: 40px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    margin-bottom: 8px;
}

.faq-grid {
    max-width: 700px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    padding: 0 20px;
}

.faq-question {
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    color: #007aff;
}

.faq-question span {
    font-size: 22px;
    transition: 0.3s;
    color: #6a6a72;
}

.faq-question.active span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 18px;
    font-size: 15px;
    color: #b0b0b8;
}

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

.contacts-info p {
    font-size: 17px;
    color: #b0b0b8;
    margin-bottom: 24px;
}

.contacts-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    color: #b0b0b8;
    text-decoration: none;
    font-weight: 500;
    border: 0.5px solid rgba(255, 255, 255, 0.04);
    transition: 0.3s;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.contact-link .contact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link .contact-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contacts-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 24px;
    border: 0.5px solid rgba(255, 255, 255, 0.04);
}

.contacts-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.contacts-form input,
.contacts-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 0.5px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 12px;
    transition: 0.3s;
}

.contacts-form input::placeholder,
.contacts-form textarea::placeholder {
    color: #6a6a72;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
    outline: none;
    border-color: #007aff;
    background: rgba(255, 255, 255, 0.04);
}

.contacts-form .btn {
    width: 100%;
}

.footer {
    padding: 40px 0 20px;
    background: rgba(10, 10, 15, 0.8);
    border-top: 0.5px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.footer-brand p {
    font-size: 14px;
    color: #6a6a72;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #6a6a72;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #6a6a72;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-social a .footer-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a .footer-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #4a4a52;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    .about-grid {
        gap: 40px;
    }
    .about-avatar {
        width: 200px;
        height: 200px;
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        border-top: 0.5px solid rgba(255, 255, 255, 0.04);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 34px;
    }
    .hero-desc {
        font-size: 16px;
    }
    .hero-stats {
        gap: 20px;
    }
    .stat-number {
        font-size: 24px;
    }

    .section-title {
        font-size: 30px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-avatar {
        margin: 0 auto;
    }
    .about-features {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .contacts-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        text-align: center;
    }
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .contacts-social {
        flex-direction: column;
    }
    .contact-link {
        justify-content: center;
    }
}
