@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #79c142;
    --primary-light: #9be05c;
    --bg-dark: #14151a;
    --bg-soft: #1d1f26;
    --bg-card: #22242c;
    --text-main: #f5f6f7;
    --text-muted: #b7bcc6;
    --border: rgba(255, 255, 255, .08);
}

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

html {
    background:
        radial-gradient(1100px 520px at 15% -5%, rgba(121, 193, 66, .16), transparent 60%),
        radial-gradient(900px 480px at 100% 0%, rgba(121, 193, 66, .10), transparent 55%),
        var(--bg-dark);
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    font-family: "Work Sans", sans-serif;
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 20px 3rem;
    color: var(--text-main);
    line-height: 1.6;
}

a {
    color: var(--primary-light);
}

/* Header */
.top-header {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

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

.nav-menu li a {
    color: var(--text-main);
    text-decoration: none;
    transition: color .2s;
    font-weight: 600;
    font-size: 15px;
}

.nav-menu li a:hover {
    color: var(--primary);
}

/* Buttons */
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    color: #12180b;
    cursor: pointer;
    text-align: center;
    border: none;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 25px rgba(121, 193, 66, .25);
}

.cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 32px rgba(121, 193, 66, .35);
}

.cta-ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, .25);
}

.cta-ghost:hover {
    background: rgba(255, 255, 255, .14);
    box-shadow: none;
}

button {
    font-family: inherit;
}

/* Search */
form#search-form {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 4px;
    margin: 22px auto;
    max-width: 800px;
    gap: 8px;
}

span.filter-btn {
    border-radius: 50rem;
    background: var(--bg-card);
    padding: .6rem 1rem;
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

input.form-control.search-input {
    background: none;
    border: none;
    color: var(--text-main);
    flex-grow: 1;
    outline: none;
    font-size: 15px;
    padding: 8px;
}

form#search-form button[type="submit"] {
    padding: 10px;
    background: var(--primary);
    border-radius: 50%;
    border: none;
    color: #12180b;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

/* Hero */
.hero {
    position: relative;
    margin: 10px 0 30px;
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 40px 40px;
    background: linear-gradient(180deg, rgba(20, 21, 26, 0) 0%, rgba(20, 21, 26, .75) 45%, rgba(20, 21, 26, .97) 100%);
}

.hero-overlay h1 {
    text-align: left;
    margin: 12px 0 10px;
    font-size: 38px;
    line-height: 1.15;
    color: #fff;
    max-width: 700px;
}

.hero-overlay p {
    color: var(--text-muted);
    max-width: 560px;
    margin-top: 0;
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.badge {
    display: inline-block;
    background: rgba(121, 193, 66, .18);
    border: 1px solid rgba(121, 193, 66, .4);
    color: var(--primary-light);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

/* Typography */
h1, h2 {
    color: var(--primary);
    text-align: center;
}

h1 {
    font-size: 30px;
    font-weight: 700;
}

h2 {
    margin-top: 10px;
    font-size: 26px;
    font-weight: 700;
}

h3 {
    color: var(--text-main);
    font-size: 18px;
}

p {
    margin-top: 10px;
    line-height: 1.8;
    color: var(--text-muted);
}

.muted {
    color: var(--text-muted);
    text-align: center;
    max-width: 620px;
    margin: 8px auto 0;
}

.center {
    text-align: center;
}

blockquote {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 22px 26px;
    margin: 26px 0;
    border-left: 4px solid var(--primary);
    font-style: italic;
    border-radius: 12px;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    color: var(--primary-light);
    font-size: 14px;
}

strong {
    color: var(--primary-light);
}

ul li, ol li {
    margin: 8px 0 8px 22px;
    color: var(--text-muted);
}

/* Sections & panels */
.section {
    margin-top: 46px;
}

.panel {
    margin: 30px 0;
    padding: 26px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
}

/* Chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    justify-content: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: background .2s, border-color .2s;
}

.chip:hover {
    background: rgba(121, 193, 66, .14);
    border-color: rgba(121, 193, 66, .4);
    color: var(--primary-light);
}

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    transition: transform .2s ease, border-color .2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(121, 193, 66, .35);
}

.card h3 {
    margin: 6px 0 8px;
}

.card p {
    margin: 0;
    font-size: 14.5px;
}

.pill {
    display: inline-block;
    background: rgba(121, 193, 66, .16);
    color: var(--primary-light);
    border: 1px solid rgba(121, 193, 66, .35);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 3px 10px;
    border-radius: 50px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #12180b;
    font-weight: 800;
    margin-bottom: 10px;
}

.step h3 {
    margin: 4px 0 6px;
}

.step p {
    font-size: 14.5px;
    margin-top: 0;
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
}

.two h3 {
    margin-bottom: 10px;
}

/* Checklist */
.checklist {
    list-style: none;
    padding-left: 0;
    margin: 14px 0 0;
}

.checklist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-muted);
    margin: 12px 0;
}

.tick {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(121, 193, 66, .16);
    border: 1px solid rgba(121, 193, 66, .35);
    color: var(--primary-light);
    font-weight: 900;
    flex: 0 0 auto;
    font-size: 13px;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 15px;
}

th, td {
    padding: 12px 14px;
    border: 1px solid var(--border);
    text-align: left;
}

th {
    background: var(--primary);
    color: #12180b;
    font-weight: 800;
}

tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, .03);
}

tbody tr:hover {
    background: rgba(121, 193, 66, .08);
}

/* FAQ */
.faq {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 12px;
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    color: var(--primary);
    font-size: 20px;
    font-weight: 400;
    margin-left: 12px;
    transition: transform .2s ease;
}

.faq[open] summary::after {
    transform: rotate(45deg);
}

.faq p {
    margin-top: 12px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 15px 20px;
    border-top: 1px solid var(--border);
    margin-top: 50px;
}

footer .footer-logo img {
    width: 110px;
    margin: 0 auto 16px;
}

footer nav {
    font-size: 14px;
    margin-bottom: 12px;
}

footer nav a {
    color: var(--text-muted);
    text-decoration: none;
}

footer nav a:hover {
    color: var(--primary-light);
}

footer p {
    font-size: 13px;
    color: var(--text-muted);
    opacity: .7;
}

img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 14px 4px;
    }

    h1 {
        font-size: 24px;
    }

    .hero-overlay h1 {
        font-size: 26px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--bg-soft);
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 14px;
        margin-top: 8px;
        z-index: 5;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 16px 0;
    }

    .nav-menu.active {
        display: block;
        animation: slideDown .25s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .grid-3, .grid-2, .two, .steps {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 320px;
    }

    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        margin-bottom: 14px;
        border: 1px solid var(--border);
        border-radius: 10px;
        overflow: hidden;
    }

    td {
        border: none;
        border-bottom: 1px solid var(--border);
        position: relative;
        padding-left: 50%;
    }

    td:before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        top: 12px;
        font-weight: 800;
        font-size: .65rem;
        text-transform: uppercase;
        color: var(--primary-light);
    }
}

@media (max-width: 576px) {
    body {
        padding: 0 14px 2rem;
    }

    .hero-overlay {
        padding: 40px 20px 26px;
    }
}
