*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --g-start: #97c74e;
    --g-end: #2ab9a5;
    --grad: linear-gradient(150deg, #97c74e 0%, #2ab9a5 100%);
    --dark: #0f1f1c;
    --text: #1e2d28;
    --muted: #5a7269;
    --card-bg: #fff;
    --border: #ddeee8;
    --radius: 14px;
}

body {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    background: #f0faf6;
    color: var(--text);
    margin: 0;
}

/* ── HERO ── */
.hero {
    background: var(--grad);
    padding: 64px 24px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 5px 16px;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.65;
}

.hero p a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--text);
    border: none;
    border-radius: 999px;
    padding: 12px 26px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform .15s, box-shadow .15s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    color: var(--text);
}

.btn-hero .dot {
    width: 26px;
    height: 26px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-hero .dot svg {
    width: 12px;
    height: 12px;
}

/* ── STATS STRIP ── */
.stats-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

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

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-lbl {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ── CARDS ── */
.section-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 64px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 28px;
}

.masonry {
    column-count: 3;
    column-gap: 18px;
}

@media(max-width:860px) {
    .masonry {
        column-count: 2;
    }
}

@media(max-width:540px) {
    .masonry {
        column-count: 1;
    }
}

.t-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    break-inside: avoid;
    margin-bottom: 18px;
    display: inline-block;
    width: 100%;
    transition: box-shadow .2s, transform .2s;
}

.t-card:hover {
    box-shadow: 0 8px 32px rgba(42, 185, 165, 0.12);
    transform: translateY(-2px);
}

.t-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--grad);
    color: #fff;
}

.t-name {
    font-size: .875rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

.t-role {
    font-size: .75rem;
    color: var(--muted);
    margin: 0;
    margin-top: 1px;
}

.t-menu {
    background: none;
    border: none;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.t-body {
    font-size: .865rem;
    color: #3d4f47;
    line-height: 1.68;
    margin: 0;
}

/* ── FORM ── */
.form-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    max-width: 640px;
    margin: 0 auto 80px;
}

.form-wrap h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
}

.form-wrap .lead {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

label.fl {
    font-size: .83rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
    display: block;
}

label.fl .req {
    color: #e05252;
    margin-left: 2px;
}

.form-control {
    border: 1px solid var(--border);
    border-radius: 9px;
    font-size: .875rem;
    padding: 10px 14px;
    color: var(--text);
    font-family: inherit;
    width: 100%;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.form-control:focus {
    border-color: #2ab9a5;
    box-shadow: 0 0 0 3px rgba(42, 185, 165, 0.15);
}

.form-hint {
    font-size: .76rem;
    color: #a0b0aa;
    margin-top: 4px;
}

.file-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-file-pick {
    padding: 8px 16px;
    background: #f0faf6;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
}

.file-name {
    font-size: .83rem;
    color: #aaa;
}

.btn-submit {
    display: inline-block;
    background: var(--grad);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: opacity .15s, transform .15s;
    margin-top: 6px;
}

.btn-submit:hover {
    opacity: .9;
    transform: translateY(-1px);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}