:root {
    --accent: #a3e635;
    --accent-hover: #84cc16;
    --accent-light: rgba(163, 230, 53, 0.20);
    --accent-shadow: rgba(163, 230, 53, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: #fafcf7;
    color: #1f2937;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* HEADER */

.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
}

.logo img {
    width: 42px;
    height: 42px;
}

.footer-logo img {
    width: 72px;
    margin: 0 auto 20px;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #1f2937;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.25s;
}

.btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 12px 30px var(--accent-shadow);
}

.btn-secondary {
    background: #e5e7eb;
    color: #111827;
}

.btn-outline {
    background: transparent;
    color: #111827;
    border: 1px solid #d1d5db;
}

/* HERO */
.hero {
    padding: 90px 0;
    background:
        radial-gradient(
            circle at top right,
            var(--accent-light),
            transparent 35%
        );
}

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

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 32px;
}

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

.hero-image img {
    width: 100%;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(132, 204, 22, 0.15);
    box-shadow: 0 20px 60px rgba(132, 204, 22, 0.08);
}

/* SECTIONS */

.features,
.benefits,
.workflow,
.how-it-works {
    padding: 100px 0;
}

.features h2,
.benefits h2,
.workflow h2,
.how-it-works h2,
.cta h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}


.features h2::after,
.benefits h2::after,
.workflow h2::after,
.how-it-works h2::after,
.cta h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: var(--accent);
}


.features > .container > h2,
.benefits > .container > h2 {
    margin-bottom: 50px;
}

/* CARDS */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #ececec;
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(132, 204, 22, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.card p {
    color: #6b7280;
}

/* STEPS */

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    background: white;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 18px;
}

.step span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
}

.step h3 {
    margin-bottom: 8px;
}

/* WORKFLOW */

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

.workflow-image img {
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(132, 204, 22, 0.15);
    box-shadow: 0 20px 60px rgba(132, 204, 22, 0.08);
}

.workflow-text ul {
    list-style: none;
}

.workflow-text li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 18px;
}

.workflow-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* CTA */

.cta {
    padding: 120px 0;
    text-align: center;
    background: white;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 36px;
    font-size: 20px;
    color: #6b7280;
}

/* FOOTER */

.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    background: white;
}

.footer p {
    color: #6b7280;
    margin-top: 10px;
}

/* MOBILE */

@media (max-width: 900px) {

    .hero-content,
    .workflow-content,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .features,
    .benefits,
    .workflow,
    .how-it-works {
        padding: 70px 0;
    }

    .features h2,
    .benefits h2,
    .workflow h2,
    .how-it-works h2,
    .cta h2 {
        font-size: 32px;
    }

    .header .container {
        height: 70px;
    }

    .logo span {
        font-size: 18px;
    }
}



.hero-image {
    position: relative;
}

.hero-badges {
    position: absolute;
    right: -20px;
    top: 40px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge {
    background: white;
    border: 1px solid rgba(132, 204, 22, 0.18);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.08);
    white-space: nowrap;
}


@media (max-width: 900px) {

    .hero-badges {
        position: static;
        margin-top: 20px;
        align-items: center;
    }

    .badge {
        width: fit-content;
    }

}


.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 20px;
    color: #111827;
}

.hero-stats span {
    color: #6b7280;
    font-size: 14px;
}