@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --primary: #7bb86f;
    --primary-dark: #5a8c4c;
    --secondary: #eaf6e2;
    --accent: #f5fbe8;
    --text: #222;
    --text-light: #666;
    --bg: #f8f9f6;
    --white: #fff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    --radius: 18px;
}

body {
    font-family: 'Inter', sans-serif;
}


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

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg);
    color: #232d1b;
    line-height: 1.6;
    position: relative;
}

body::before {
    display: none;
}

header,
.hero,
.why-crypto,
.features,
.comparison,
.faq,
.contact,
.footer {
    position: relative;
    z-index: 1;
    /* Ensures content is above overlay */
}

.hero-image {
    display: none;
}

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

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 4px 16px;
    border-radius: 12px;
}

.get-started-btn {
    color: #232d1b;
    border: 1px solid #3D5539;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.08rem;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(122, 184, 111, 0.08);
}

.get-started-btn:hover {
    /* background: #7bb86f; */
    color: #fff;
}

.menu-icon {
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.hero {
    background: url('../Images/Frame 7.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 48px 0 32px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 64px;
    margin-bottom: 16px;
    color: #232d1b;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-text .highlight {
    color: #7bb86f;
    font-weight: 800;
}

.hero-text p {
    color: #444;
    margin-bottom: 18px;
    font-size: 1.18rem;
    /* font-weight: 500; */
}

.hero-text .note {
    margin-top: 18px;
    font-size: 1rem;
    color: #b0b0b0;
    font-style: italic;
}

.hero-image img {
    width: 400px;
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero .get-started-btn {
    background: #7bb86f;
    color: #fff;
    font-weight: 700;
    font-size: 1.12rem;
    box-shadow: 0 2px 8px rgba(122, 184, 111, 0.12);
    margin-bottom: 8px;
}

.hero .get-started-btn:hover {
    background: #5a8c4c;
    color: #fff;
}

.why-crypto {
    background: var(--white);
    padding: 48px 0 32px 0;
}

.why-crypto h2 {
    text-align: center;
    margin-bottom: 32px;
    color: #181d16;
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.stats-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03), 0 0.5px 1.5px rgba(0, 0, 0, 0.04);
    border: 1px solid #f2f4f2;
    padding: 32px 32px 24px 32px;
    min-width: 320px;
    /* max-width: 370px; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #181d16;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.card-title img {
    background: #eaf6e2;
    border-radius: 50%;
    padding: 6px;
    width: 38px;
    height: 38px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.card:nth-child(2) .card-title img {
    background: #f3fcd9;
}

.card-body {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-top: 8px;
    flex-wrap: wrap;
    align-items: stretch;
}

.stat-block {
    flex: 1 1 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 140px;
    min-height: 80px;
    box-sizing: border-box;
}

.card:first-child .card-body>div:first-child {
    /* background: #f3fcd9; */
}

.card:first-child .card-body>div:last-child {
    background: #e3fbe3;
}

.card:nth-child(2) .card-body>div:first-child {
    /* background: #f3f3f3; */
}

.card:nth-child(2) .card-body>div:last-child {
    background: #dbf3f7;
}

.card-body .stat {
    color: #181d16;
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 6px;
}

.card-body {
    font-size: 1.08rem;
    font-weight: 500;
    color: #232d1b;
}

.highlight-box {
    display: flex;
    align-items: center;
    /* background: var(--accent); */
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    /* padding: 32px; */
    margin-top: 24px;
    gap: 32px;
    justify-content: space-between;
    background-color: #D5E490;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
}

.highlight-text {
    flex: 1;
}

.highlight-text .big {
    font-size: 2.2rem;
    font-weight: 700;
    color: #b6e388;
}

.highlight-text p {
    margin: 12px 0 18px 0;
    color: black;
    font-size: 1.08rem;
}

.highlight-image img {
    width: 302px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.features {
    background: var(--white);
    padding: 48px 0 32px 0;
}

.features-label {
    background: #eaf6e2;
    color: #5a8c4c;
    display: inline-block;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.features h2 {
    margin-bottom: 32px;
    color: #232d1b;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.feature-card {
    background-color: #eeebeb;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
}

.feature-title {
    font-weight: 700;
    color: #5a8c4c;
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.feature-desc {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

.feature-image img {
    /* width: 100%; */
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.comparison {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 48px 0 32px 0;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 32px;
    color: #232d1b;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.comparison .vs {
    color: #ffe066;
}

.comparison-table-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.comparison-table {
    border-collapse: separate;
    border-spacing: 3px;
    min-width: 400px;
    color: var(--text);
}

.comparison-table th,
.comparison-table td {
    /* background: var(--white); */
    /* Фон у каждой ячейки отдельно */
    padding: 16px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}








.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-image img {
    width: 150px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq {
    background: var(--white);
    padding: 48px 0 32px 0;
}

.faq-label {
    /* color: var(--primary-dark); */
    display: inline-block;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 32px;
    color: #232d1b;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.faq-item {
    background: var(--accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    text-align: left;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text);
    background-color: rgb(239, 237, 237);
}

.faq-answer {
    display: none;
    padding: 0 24px 18px 24px;
    color: var(--text-light);
    font-size: 1rem;
}

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

.contact {
    /* background: var(--accent); */
    padding: 48px 0 32px 0;
}

.contact-wrapper {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 260px;
}

.contact-info h3 {
    margin-bottom: 18px;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 18px;
}

.contact-info li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.contact-socials a {
    margin-right: 12px;
    font-size: 1.3rem;
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-form {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    background: var(--white);
}

.contact-form textarea {
    min-height: 80px;
    resize: vertical;
}

.send-message-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 0;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.send-message-btn:hover {
    background: var(--primary-dark);
}

.footer {
    background: #191E18;
    color: #eaf6e2;
    padding: 48px 0 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-links {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-links h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #b6e388;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #eaf6e2;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: #b6e388;
}

.app-links img {
    margin-bottom: 8px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.footer-bottom {
    text-align: center;
    padding: 18px 0 0 0;
    font-size: 0.95rem;
    opacity: 0.8;
    color: #b6e388;
}

@media (max-width: 900px) {

    .hero-content,
    .contact-wrapper,
    .comparison-table-wrapper,
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .stats-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .card {
        min-width: 220px;
        max-width: 100%;
        width: 100%;
    }

    .card-body {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 8px;
    }

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

    .highlight-box {
        flex-direction: column;
        gap: 18px;
        padding: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        min-width: unset;
        font-size: 0.95rem;
    }
}


.comparison {
    background: #3D5539;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

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

.title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.title .vs {
    color: #d0ff8b;
}

.comparison-content {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    justify-content: space-between;
}

.comparison-table-wrapper {
    flex: 2;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #d4eaa2;
    border-radius: 12px;
    overflow: hidden;
    color: #000;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    border-bottom: 5px solid #3D5539;
    border-right: 3px solid #3D5539;
    text-align: left;
    font-size: 16px;
}

.comparison-table th {
    background-color: #b7d785;
    font-weight: bold;

}

.comparison-table tr:last-child td {
    border-bottom: none;

}

.comparison-image {
    flex: 1;
    max-width: 400px;
}

.comparison-image img {
    width: 100%;
    height: 335px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.plus-circle-outline {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid black;
    color: black;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    /* font-weight: bold; */
    font-size: 20px;
}



.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 1px solid #000;
    /* straight, thin, black line */
    background: transparent;
    padding: 8px 0;
    margin-bottom: 20px;
    width: 100%;
    outline: none;
    font-size: 16px;
    border-radius: 0;
    /* ensures border is straight */
    box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 1px solid #1D3823;
    /* dark green on focus */
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* vertically centers both parts */
    background-color: #D3E38F;
    padding: 40px;
    border-radius: 43px;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    max-width: 45%;
}

.contact-form {
    flex: 1;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}






.send-message-btn {
    margin-top: 20px;
    background-color: #1D3823;
    color: #D3E38F;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .hero-text p {
        font-size: 14px;
        width: 60%;
    }
}

@media (max-width: 768px) {
    .big {
        font-size: 40px !important;
    }

    .text-2 {
        font-size: 18px !important;
    }

    .responsive-flex-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 30px 15px;
    }

    .features-label {
        font-size: 14px;
        padding: 6px 12px;
        display: inline-block;
        margin-bottom: 10px;
    }

    .features h2 {
        font-size: 24px;
        line-height: 1.3;
        text-align: left;
    }

    .feature-card {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 10px;
        width: 100% !important;
        margin-bottom: 20px;
    }

    .feature-card img {
        height: 40px !important;
        margin-left: 0 !important;
    }

    .feature-title {
        font-size: 18px;
        font-weight: 600;
    }

    .feature-desc {
        font-size: 14px;
        line-height: 1.4;
    }

    .feature-image img {
        width: 100% !important;
        /* height: auto !important; */
        margin-bottom: 20px;
    }

    .row {
        flex-direction: column;
    }

    .col-6 {
        width: 100%;
        padding: 0 !important;
    }

    .image-2 {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center;
        width: 100% !important;
        margin-bottom: 16px;
        gap: 12px;
    }

    .feature-card img {
        height: 40px !important;
        margin-left: 0 !important;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .line-break {
        display: none;
    }
}

@media (max-width: 768px) {
    .feature-img {
        height: 200px !important;
        width: 100%;
    }
}

.feature-img {
    height: 330px;
    width: 85%;
}


.comparison-desktop {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.comparison-mobile {
    display: none;
}

@media (max-width: 768px) {
    .comparison-desktop {
        display: none;
    }

    .comparison-mobile {
        display: block;
    }

    .comparison-table {
        width: 100%;
        margin-bottom: 20px;
        border-collapse: collapse;
        border-radius: 16px;
        overflow: hidden;
        background-color: #f1f4d3;
        font-family: Inter, sans-serif;
    }

    .comparison-table thead th {
        background-color: #dfeabc;
        padding: 12px;
        font-size: 16px;
        text-align: left;
        color: #000;
    }

    .comparison-table td {
        padding: 12px;
        font-size: 14px;
        color: #333;
        border-top: 1px solid #ccc;
        vertical-align: top;
    }

    .comparison-table small {
        font-size: 12px;
        color: #666;
    }

    .comparison-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        margin-top: 10px;
    }
}

.faq-question .plus-circle-outline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-size: 20px;
    font-weight: 700;
    color: #3D5539;
    border: 2px solid #3D5539;
    border-radius: 50%;
    background-color: transparent;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .faq-question .plus-circle-outline {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        display: none !important;
    }
}

@media (max-width: 768px) {
    section.contact {
        margin: 20px;
        /* Adjust as needed (e.g. 16px or 24px) */
    }
}