/* ============================================
   Croxyglobal Botanical — Index
   ============================================ */

/* ---- Hero ---- */
.hero {
    padding: 170px 0 100px;
}

.hero-content {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--card);
    border: 1px solid rgba(168, 188, 161, 0.5);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-soft);
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 4.7rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-subtitle {
    color: var(--ink-soft);
    font-size: 1.16rem;
    max-width: 660px;
    margin: 0 auto 38px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 66px;
}

.hero-preview {
    display: flex;
    justify-content: center;
}

.hero-preview-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 790px;
    overflow: hidden;
}

.hero-preview-item {
    padding: 34px 26px;
    text-align: center;
}

.hero-preview-item + .hero-preview-item {
    border-left: 1px solid rgba(168, 188, 161, 0.4);
}

.hero-preview-item img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin: 0 auto 14px;
    filter: hue-rotate(70deg) saturate(0.75);
}

.hero-preview-item h4 {
    font-size: 1.05rem;
    color: var(--green-deep);
    margin-bottom: 4px;
}

.hero-preview-item p {
    font-size: 0.86rem;
    color: var(--ink-muted);
}

/* ---- Features ---- */
.features {
    padding: 100px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 56px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.feature-card {
    padding: 40px 32px;
    border-radius: var(--radius) var(--radius) var(--radius) 8px;
}

.feature-card:nth-child(2) {
    border-radius: var(--radius) 8px var(--radius) var(--radius);
}

.feature-card:nth-child(3) {
    border-radius: 8px var(--radius) var(--radius) var(--radius);
}

.feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 50% 50% 50% 12%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-soft);
    margin-bottom: 24px;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: hue-rotate(70deg) saturate(0.75);
}

.feature-card h3 {
    font-size: 1.22rem;
    color: var(--green-deep);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--ink-soft);
    font-size: 0.96rem;
}

/* ---- Security ---- */
.security {
    padding: 100px 0;
}

.security-card {
    padding: 68px 52px;
    text-align: center;
    background:
        radial-gradient(ellipse 60% 70% at 50% 115%, var(--sage-soft), transparent),
        var(--card);
    border-radius: var(--radius);
}

.security-card h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    color: var(--green-deep);
    margin-bottom: 16px;
}

.security-card p {
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto 38px;
    font-size: 1.04rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 28px;
    border-radius: 999px;
    border: 1.5px solid var(--green-mid);
    background: var(--card);
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--green-deep);
}

.badge-earth {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.badge img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: hue-rotate(70deg) saturate(0.75);
}

/* ---- Use Cases ---- */
.use-cases {
    padding: 100px 0;
}

.use-cases-header {
    text-align: center;
    margin-bottom: 56px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.use-case-card {
    padding: 34px;
    border-radius: var(--radius) 10px var(--radius) var(--radius);
}

.use-case-card:nth-child(even) {
    border-radius: 10px var(--radius) var(--radius) var(--radius);
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.use-case-avatar {
    width: 56px;
    height: 56px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 50% 50% 50% 14%;
    border: 2px solid var(--sage);
}

.use-case-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.use-case-info h4 {
    font-size: 1.05rem;
    color: var(--green-deep);
}

.use-case-info p {
    font-size: 0.86rem;
    color: var(--ink-muted);
}

.use-case-quote {
    font-size: 1rem;
    color: var(--ink-soft);
    font-style: italic;
    padding-left: 18px;
    border-left: 3px solid var(--terracotta);
    border-radius: 2px;
}

/* ---- CTA ---- */
.cta {
    padding: 100px 0 120px;
}

.cta-card {
    padding: 78px 52px;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 90% at 50% -20%, rgba(107, 143, 103, 0.28), transparent),
        var(--green-deep);
    color: #F3F6EF;
    border-color: var(--green-deep);
}

.cta-card .section-title,
.cta-card h2 {
    color: #F7FAF3;
}

.cta-card h2 {
    font-size: clamp(2.1rem, 5vw, 3.3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.14;
    margin-bottom: 18px;
}

.cta-card p {
    color: rgba(243, 246, 239, 0.75);
    margin-bottom: 38px;
}

.cta-card .btn-primary {
    background: #F3F6EF;
    color: var(--green-deep);
    border-color: #F3F6EF;
}

.cta-card .btn-primary:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card:nth-child(2),
    .feature-card:nth-child(3) {
        border-radius: var(--radius) var(--radius) var(--radius) 8px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero-preview-card {
        grid-template-columns: 1fr;
    }

    .hero-preview-item + .hero-preview-item {
        border-left: none;
        border-top: 1px solid rgba(168, 188, 161, 0.4);
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-case-card,
    .use-case-card:nth-child(even) {
        border-radius: var(--radius) 10px var(--radius) var(--radius);
    }

    .security-card,
    .cta-card {
        padding: 48px 26px;
    }
}
