.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    max-width: 620px;
    margin: 0 auto 52px;
    line-height: 1.75;
    position: relative;
}

.btn-hero-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 201, 141, .45);
}

.btn-hero-ghost:hover {
    border-color: white;
}

/* ── SHARED ── */

/* ── FOR WHOM ── */
.forwhom {
    padding: 80px 24px;
    background: white;
}

.forwhom-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 768px) {
    .forwhom-inner {
        grid-template-columns:1fr;
        gap: 40px;
    }
}

.forwhom-text .section-label {
    text-align: left;
}

.forwhom-text p {
    margin-top: 14px;
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.75;
}

.audience-cards {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .audience-cards {
        grid-template-columns:1fr;
    }
}

.aud-card {
    background: var(--gray);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 22px 20px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.aud-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.aud-icon {
    font-size: 30px;
    margin-bottom: 12px;
    display: block;
}

.aud-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.aud-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── NEEDS ── */
.needs {
    background: var(--navy2);
    padding: 72px 24px;
    text-align: center;
}

.needs-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.needs h2 {
    margin-bottom: 14px;
}

.needs-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.need-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: left;
    transition: background .2s, border-color .2s;
}

.need-item:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(0, 201, 141, .3);
}

.need-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-light), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
}

.need-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.need-item p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.6;
}

/* ── HOW TO START ── */
.how-header {
    text-align: center;
    margin-bottom: 56px;
}

.steps-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-light), var(--green));
    border-radius: 2px;
}

@media (max-width: 600px) {
    .steps-timeline::before {
        left: 25px;
    }
}

.step-row {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 0 0 44px 0;
    position: relative;
}

.step-row:last-child {
    padding-bottom: 0;
}

@media (max-width: 600px) {
    .step-num {
        width: 52px;
        height: 52px;
        font-size: 16px;
    }
}

.step-content {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    flex: 1;
    box-shadow: var(--shadow);
    transition: border-color .2s, box-shadow .2s;
}

.step-content:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-hover);
}

.step-content h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.step-content ul {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
}

.step-content ul li {
    font-size: 13.5px;
    color: var(--text);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-content ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

/* ── CAPABILITIES ── */
.capabilities {
    background: white;
    padding: 80px 24px;
}

.capabilities-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.cap-header {
    max-width: 600px;
    margin-bottom: 52px;
}

.cap-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.cap-card {
    border: 2px solid var(--border);
    border-radius: 18px;
    padding: 28px 26px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
}

.cap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-light), var(--green));
    opacity: 0;
    transition: opacity .2s;
}

.cap-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.cap-card:hover::before {
    opacity: 1;
}

.cap-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.cap-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.cap-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── BUYERS DATABASE ── */
.buyers-db {
    background: linear-gradient(135deg, var(--navy) 0%, #0d1e3a 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.buyers-db::after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 141, .12) 0%, transparent 70%);
}

.buyers-db-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 768px) {
    .buyers-db-inner {
        grid-template-columns:1fr;
        gap: 40px;
    }
}

.buyers-db-left .section-label {
    text-align: left;
}

.buyers-db-left p {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    margin-top: 14px;
}

.db-cards {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .db-cards {
        grid-template-columns:1fr;
    }
}

/* ── TELEGRAM ── */
@media (max-width: 680px) {
    .telegram-inner {
        grid-template-columns:1fr;
        text-align: center;
        padding: 40px 28px;
        gap: 28px;
    }
}

.telegram-inner .section-label {
    text-align: left;
    position: relative;
    z-index: 1;
}

@media (max-width: 680px) {
    .telegram-inner .section-label {
        text-align: center;
    }
}

/* ── CONDITIONS ── */
.conditions {
    padding: 80px 24px;
    background: white;
}

.conditions-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.conditions-inner .section-title {
    margin-bottom: 12px;
}

.conditions-inner .section-sub {
    margin: 0 auto 48px;
}

.cond-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: left;
}

.cond-card {
    background: var(--gray);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px 22px;
    transition: border-color .2s, box-shadow .2s;
}

.cond-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
}

.cond-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--gray2);
    line-height: 1;
    margin-bottom: 12px;
}

.cond-card h3 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.cond-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── CTA FORM ── */
.cta-form-section {
    background: linear-gradient(135deg, var(--blue) 0%, #0d40a0 100%);
    padding: 80px 24px;
}

.cta-form-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 700px) {
    .cta-form-inner {
        grid-template-columns:1fr;
        gap: 40px;
    }
}

.cta-left h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(20px, 3.5vw, 34px);
    font-weight: 900;
    color: white;
    line-height: 1.25;
    margin-bottom: 16px;
}

.cta-left p {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin-bottom: 28px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: 14px 20px;
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
}

.cta-phone:hover {
    background: rgba(255, 255, 255, .18);
}

.cta-phone span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    display: block;
    margin-top: 2px;
}

.cta-form {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
}

.cta-form h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 22px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: #fafbff;
    outline: none;
    transition: border-color .2s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--blue);
}

/* ── FOOTER ── */

.cta-form .error {
    font-size: 12px;
    color: var(--rose);
    text-align: center;
    visibility: hidden;
}