:root {
    --primary-color: #096c6c;
}

/* HEADER */
.blog-header {
    background: #0b6b6b;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}

/* SECTION */
.features-section {
    padding: 40px 0;
}

/* ROW */
.feature-row {
    padding: 80px 20px;
}

/* 🔥 ALTERNATE BACKGROUND */
.feature-row:nth-child(even) {
    background: #efefef;
}

.feature-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* REVERSE */
.feature-row.reverse .feature-inner {
    direction: rtl;
}

.feature-row.reverse .feature-inner > * {
    direction: ltr;
}

/* TEXT */
.feature-text h2 {
    font-size: 25px !important;
    font-weight: 600;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* IMAGE */
.feature-img {
    display: flex;
    justify-content: center;
}

.feature-img img {
    width: 100%;
    max-width: 460px;
    border-radius: 12px;
    padding: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .feature-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-text p {
        text-align: center;
    }
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 35px;
}

.hero-text {
    color: #d4f1ef;
    font-size: 1rem;
}

.demo-btn {
    background: #fff;
    color: var(--primary-color) !important;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.demo-btn:hover {
    background: var(--primary-hover);
    color: var(--primary-color) !important;
}

.stats-cta-section {
    padding: 15% 0 !important;
}

.stats-box {
    background: #222;
    border-radius: 6px;
    padding: 50px 90px;
    color: #fff;
}

/* LEFT */
.section-title {
    font-size: 20px;
    font-weight: 600;
}

.stats-row {
    margin-top: 10px;
}

/* STATS */
.stat-item {
    position: relative;
}

.stat-item h3 {
    color: #1fd6d6;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 1.15rem !important;
    color: #cfcfcf;
    line-height: 1.4;
}

/* vertical dividers */
@media (min-width: 992px) {
    .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 12%;
        height: 76%;
        width: 1px;
        background: #333;
    }
}

/* RIGHT */
.section-desc {
    font-size: 18px;
    font-weight: 600;
    /* color: #bfbfbf; */
}

.trial-title {
    font-size: 16px;
    font-weight: 600;
}

.trial-subtitle {
    font-size: 12px;
    color: #9a9a9a;
}

/* FORM */
.cta-form input {
    height: 46px;
    font-size: 13px;
    border-radius: 4px;
    border: none;
    padding: 10px 14px;
}

.trial-btn {
    background: #0a6c6c;
    color: #fff;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 4px;
    border: none;
    white-space: nowrap;
}

.trial-btn:hover {
    background: #095f5f;
}

/* MOBILE */
@media (max-width: 767px) {
    .stats-box {
        padding: 30px;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input {
        margin-bottom: 10px;
    }

    .right-content,
    .left-content {
        max-width: 100%;
        text-align: center;
    }
}
