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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0B0C10;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #C5C6C7;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #C5C6C7;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0B0C10;
    background-image: url('img/bg_img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-title-red {
    font-size: 64px;
    font-weight: 700;
    color: #66FCF1;
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -2px;
    text-shadow: 0 0 20px rgba(102, 252, 241, 0.3);
}

.hero-title-white {
    font-size: 64px;
    font-weight: 700;
    color: #C5C6C7;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: #C5C6C7;
    margin-bottom: 40px;
    line-height: 1.4;
    max-width: 600px;
}

.hero-button {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid #45A29E;
    display: inline-block;
    text-transform: uppercase;
}

.hero-button:hover {
    background: rgba(102, 252, 241, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 252, 241, 0.2);
}

/* Features Section */
.features {
    background: #0B0C10;
    padding: 80px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 30px;
}

.features h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #66FCF1;
}

.features-subtitle {
    font-size: 18px;
    color: #C5C6C7;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 30px;
}

.feature-card {
    padding: 40px;
    border: 1px solid #1F2833;
    background: #1F2833;
    margin: 0 2px 1px 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    display: block;
}

.feature-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #66FCF1;
}

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

.feature-button {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid #45A29E;
    display: inline-block;
    text-transform: uppercase;
    margin-top: 20px;
}

.feature-button:hover {
    background: rgba(102, 252, 241, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 252, 241, 0.2);
}

/* How it works section */
.how-works {
    background: #1F2833;
    padding: 80px 0;
}

.how-works-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.how-works-left {
    order: 1;
}

.how-works-right {
    order: 2;
    margin-top: 40px;
}

.how-works-left h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #66FCF1;
    line-height: 1.2;
}

.how-works-subtitle {
    font-size: 18px;
    color: #C5C6C7;
    margin-bottom: 20px;
    line-height: 1.5;
}

.interface-preview {
    padding: 0px;
    margin-bottom: 20px;
}

.interface-preview img {
    max-width: 100%;
    height: auto;
    display: block;
}

.demo-illustration {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1F2833, #45A29E);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5C6C7;
    font-size: 18px;
}

.how-works-steps {
    list-style: none;
}

.how-works-steps li {
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.how-works-steps li::before {
    content: counter(step-counter, decimal-leading-zero);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #45A29E;
    color: #0B0C10;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.how-works-steps {
    counter-reset: step-counter;
}

.step-title {
    font-size: 18px;
    font-weight: 500;
    color: #66FCF1;
    margin-bottom: 10px;
}

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

.how-works-button {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid #45A29E;
    display: inline-block;
    text-transform: uppercase;
    margin-left: 60px;
}

.how-works-button:hover {
    background: rgba(102, 252, 241, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 252, 241, 0.2);
}

/* Pricing Section */
.pricing {
    background: #0B0C10;
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #66FCF1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.pricing-card {
    background: #1F2833;
    border: 1px solid #45A29E;
    padding: 40px;
    position: relative;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    height: 100%;
}

.pricing-card.popular {
    border: 2px solid #66FCF1;
    box-shadow: 0 10px 30px rgba(102, 252, 241, 0.2);
}

.pricing-card.popular::before {
    content: 'Популярный';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #45A29E;
    color: #0B0C10;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-price {
    font-size: 32px;
    font-weight: 600;
    color: #45a29e;
    margin-bottom: 10px;
}

.plan-subtitle {
    font-size: 14px;
    color: #C5C6C7;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 30px;
}

.plan-features li {
    font-size: 14px;
    color: #C5C6C7;
    margin-bottom: 12px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.plan-features li::before {
    content: "•";
    color: #45A29E;
    position: absolute;
    left: 0;
}

/* Pricing Button */
.pricing-button {
    background: #45a29e;
    color: #C5C6C7;
    padding: 14px 28px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #45A29E;
    display: block;
    text-transform: uppercase;
    text-align: center;
    margin-top: auto;
    width: 100%;
}

.pricing-button:hover {
    background: rgba(102, 252, 241, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 252, 241, 0.2);
}

/* Comparison Table */
.comparison {
    background: #1f2833;
    padding: 80px 0;
}

.comparison-header {
    text-align: center;
    margin-bottom: 30px;
}

.comparison h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #66FCF1;
}

.comparison-subtitle {
    font-size: 18px;
    color: #C5C6C7;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.comparison-table {
    background: #0B0C10;
    border-radius: 0px;
    overflow-x: auto;
    border: 1px solid #C5C6C7;
    -webkit-overflow-scrolling: touch;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #45A29E #1F2833;
}

.comparison-table::-webkit-scrollbar {
    height: 12px;
}

.comparison-table::-webkit-scrollbar-track {
    background: #1F2833;
    border-radius: 0;
}

.comparison-table::-webkit-scrollbar-thumb {
    background: #45A29E;
    border-radius: 6px;
}

.comparison-table::-webkit-scrollbar-thumb:hover {
    background: #66FCF1;
}

.comparison-table table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.comparison-table th {
    background: #0B0C10;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #C5C6C7;
    border-bottom: 1px solid #C5C6C7;
}

.comparison-table td {
    padding: 20px;
    width: 17%;
    font-size: 14px;
    border-bottom: 1px solid #C5C6C7;
    border-right: 1px solid #C5C6C7;
    color: #C5C6C7;
}

.comparison-table .option-name {
    background: #1F2833;
    font-weight: 500;
    color: #ffffff;
    font-size: 18px;
}

.comparison-table .yes {
    background: rgba(69, 162, 158, 0.2);
    color: #C5C6C7;
    text-align: center;
}

.comparison-table .no {
    background: rgb(237 104 63 / 70%);
    color: #C5C6C7;
    text-align: center;
}

.comparison-table .price {
    background: #1F2833;
    color: #45a29e;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

/* Threats Section */
.threats {
    background: #0B0C10;
    padding: 80px 0;
}

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

.threats h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #66FCF1;
}

.threats-subtitle {
    font-size: 18px;
    color: #C5C6C7;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
}

.stat-card {
    padding: 40px;
    border-left: 1px solid #1F2833;
    text-align: left;
    background: #1F2833;
    margin-right: 2px;
    margin-bottom: 1px;
}

.stat-card:first-child {
    border-left: none;
}

.stat-card h3 {
    font-size: 24px;
    font-weight: 400;
    color: #66FCF1;
    margin-bottom: 20px;
    line-height: 1.3;
}

.stat-card p {
    font-size: 14px;
    color: #C5C6C7;
    line-height: 1.5;
    margin-bottom: 20px;
}

.stat-source {
    font-size: 12px;
    color: #45A29E;
}

.stat-source a {
    font-size: 12px;
    color: #45A29E;
    text-decoration: none;
}

/* Team Section */
.team {
    background: #1F2833;
    padding: 80px 0;
}

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

.team h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #66FCF1;
}

.team-content {
    display: grid;
    grid-template-columns: 300px 300px 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-photo {
    width: 300px;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #1F2833;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background: #0B0C10;
    border-radius: 5px;
    border: 1px solid #0B0C10;
}

.founder-quote {
    font-size: 18px;
    color: #C5C6C7;
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
}

.founder-name {
    font-size: 18px;
    font-weight: 600;
    color: #C5C6C7;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 14px;
    color: #45A29E;
    margin-bottom: 0;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.team-stat {
    background: #0B0C10;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #0B0C10;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.team-stat-title {
    background: #45A29E;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #45A29E;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.team-stat-title  h4 {
    color:#0B0C10;
}

.team-stat h4 {
    font-size: 14px;
    font-weight: 500;
    color: #45A29E;
    margin-bottom: 10px;
    line-height: 1.2;
}

.team-stat p,a {
    font-size: 12px;
    color: #C5C6C7;
    line-height: 1.4;
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials {
    background: #0B0C10;
    padding: 80px 0;
}

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

.testimonials h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #66FCF1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #1F2833;
    padding: 40px;
    border-radius: 5px;
    border: 0px solid #45A29E;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 252, 241, 0.2);
}

.testimonial-text {
    font-size: 16px;
    color: #C5C6C7;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #45A29E;
    padding-top: 20px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #45A29E;
    margin-bottom: 5px;
}

.author-position {
    font-size: 14px;
    color: #45A29E;
}

/* Contact Section */
.contact {
    background: #0B0C10;
    padding: 80px 0;
}

.contact h2 {
    font-size: 48px;
    font-weight: 400;
    color: #66FCF1;
    line-height: 1.2;
}

.contact p {
    font-size: 18px;
    color: #C5C6C7;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    padding: 15px;
    background: #1F2833;
    border: 1px solid #45A29E;
    border-radius: 5px;
    color: #C5C6C7;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #66FCF1;
}

.form-input::placeholder {
    color: #C5C6C7;
    opacity: 0.6;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: #45A29E;
    color: #0B0C10;
    padding: 16px 32px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.form-submit:hover {
    background: #66FCF1;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 252, 241, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: #C5C6C7;
    line-height: 1.5;
}

.form-checkbox label a {
    color: #45A29E;
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: #66FCF1;
}

.contact-info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px auto 0;
    flex-wrap: wrap;
    max-width: 800px;
}

.contact-item-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #C5C6C7;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.contact-item-icon:hover {
    color: #66FCF1;
}

.contact-item-icon svg {
    flex-shrink: 0;
}

.legal-info {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 20px;
    background: transparent;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(69, 162, 158, 0.2);
    text-align: center;
}

.legal-info h3 {
    font-size: 14px;
    font-weight: 400;
    color: #C5C6C7;
    margin-bottom: 10px;
    opacity: 0.7;
}

.legal-info p {
    font-size: 12px;
    color: #C5C6C7;
    margin-bottom: 5px;
    line-height: 1.4;
    opacity: 0.6;
}

.legal-info p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: #0B0C10;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #1F2833;
}

footer p {
    color: #C5C6C7;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container,
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 12, 16, 0.95);
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-title-red,
    .hero-title-white {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .threats h2,
    .features h2,
    .pricing h2,
    .team h2,
    .testimonials h2,
    .contact h2 {
        font-size: 32px;
    }

    .stats-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .how-works-container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-photo {
        width: 100%;
        height: 300px;
        justify-self: center;
    }

    .how-works-left,
    .how-works-right {
        order: unset;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .contact-info-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item-icon {
        justify-content: center;
    }

    .legal-info {
        padding: 20px;
    }

    .legal-info h3 {
        font-size: 18px;
    }

    .legal-info p {
        font-size: 13px;
    }

}

html {
    scroll-behavior: smooth;
}
