/* HERO */
.hero {
    padding: 140px 56px 90px;
    text-align: center
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    letter-spacing: -2.5px
}

.hero-sub {
    max-width: 500px
}

/* OVERVIEW PILLS */
.features-overview {
    padding: 72px 56px 0
}

.overview-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto
}

.overview-pill {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color .2s, box-shadow .2s
}

.overview-pill:hover {
    border-color: rgba(26, 61, 255, .25);
    box-shadow: 0 4px 16px rgba(26, 61, 255, .07)
}

.pill-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(26, 61, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pill-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pill-label {
    font-size: .84rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3
}

/* FEATURE BLOCKS */
.features-section {
    padding: 80px 56px 100px
}

.feature-block {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 100px
}

.feature-block:last-child {
    margin-bottom: 0
}

.feature-block.reverse {
    direction: rtl
}

.feature-block.reverse > * {
    direction: ltr
}

.feature-eyebrow {
    font-family: var(--ff);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px
}

.feature-title {
    font-family: var(--ff);
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 14px
}

.feature-desc {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px
}

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 61, 255, .06);
    color: var(--blue);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: .78rem;
    font-weight: 600
}

.chip::before {
    content: '✓';
    font-size: .7rem
}

.feature-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1.5px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    min-height: 280px
}

.feature-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: contain;
    max-height: 340px
}

/* SOON SECTION */
.soon-section {
    background: #fff;
    padding: 72px 56px
}

.soon-inner {
    max-width: 1100px;
    margin: 0 auto
}

.soon-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px
}

.soon-card {
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative
}

.soon-badge {
    display: inline-block;
    background: rgba(255, 165, 0, .1);
    color: #92400e;
    border: 1px solid rgba(255, 165, 0, .3);
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 10px;
    margin-bottom: 14px
}

.soon-card h3 {
    font-family: var(--ff);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -.5px;
    margin-bottom: 8px;
    opacity: .7
}

.soon-card p {
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.65;
    opacity: .8
}

/* FAQ */
.faq-section {
    background: var(--bg);
    padding: 90px 56px
}

@media (max-width: 1024px) {
    .hero {
        padding: 110px 22px 72px
    }

    .features-overview {
        padding: 48px 22px 0
    }

    .overview-grid {
        grid-template-columns:1fr 1fr
    }

    .features-section {
        padding: 56px 22px 72px
    }

    .feature-block {
        grid-template-columns:1fr;
        gap: 36px;
        margin-bottom: 64px
    }

    .feature-block.reverse {
        direction: ltr
    }

    .soon-section {
        padding: 56px 22px
    }

    .soon-grid {
        grid-template-columns:1fr
    }

    .faq-section {
        padding: 64px 22px
    }
}

@media (max-width: 600px) {
    .overview-grid {
        grid-template-columns:1fr
    }
}
