/* =====================================================
   hero.css — Hero Section (Light / Professional)
   ===================================================== */
.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 0;
    overflow: hidden;
    background: var(--bg);
}

/* Very subtle top-left geometric highlight */
.hero-glow-1 {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 10% 40%, rgba(22,163,74,0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.hero-glow-2 {
    position: absolute;
    top: 0; right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 30%, rgba(37,99,235,0.03) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* ---- Badge pill ---- */
.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tagline-accent {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-2);
    margin-top: 16px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}

.hero-tagline-accent span {
    color: var(--text-3);
}

/* ---- Headline ---- */
.hero h1 {
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--text-1);
    margin-bottom: 0;
}

.hero-h1-accent {
    color: var(--green);
    -webkit-text-fill-color: var(--green);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.65;
    margin-top: 20px;
    margin-bottom: 32px;
    font-weight: 400;
}

/* ---- Right Column: 4 Capability Cards ---- */
.hero-right {
    position: relative;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: var(--t);
}
.hero-feature-card:hover {
    border-color: rgba(22,163,74,0.3);
    box-shadow: 0 6px 20px rgba(22,163,74,0.08);
    transform: translateY(-2px);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.hero-card-icon {
    font-size: 1.2rem;
    line-height: 1;
}
.hero-feature-card h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-1);
    margin: 0;
    letter-spacing: -0.01em;
}

.hero-feature-card p {
    font-size: 0.8rem;
    color: var(--text-2);
    line-height: 1.5;
    margin: 0;
}

/* ---- Action buttons ---- */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

/* ---- Industries scroll strip ---- */
.hero-industries {
    width: 100%;
    border-top: 1px solid var(--border);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-1);
}

.hero-industries::before,
.hero-industries::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.hero-industries::before { left: 0; background: linear-gradient(to right, var(--bg-1), transparent); }
.hero-industries::after  { right: 0; background: linear-gradient(to left, var(--bg-1), transparent); }

.industries-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 16px;
}

.industries-track {
    display: flex;
    gap: 10px;
    animation: scroll-industries 30s linear infinite;
    width: max-content;
}
.industries-track:hover { animation-play-state: paused; }

@keyframes scroll-industries {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.industry-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
    transition: var(--t);
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.industry-chip:hover {
    border-color: var(--green);
    color: var(--green-dark);
    background: rgba(22,163,74,0.04);
}
.industry-chip-icon { font-size: 1rem; }

/* ---- Responsive ---- */
@media (max-width: 1000px) {
    .hero { padding-top: 90px; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 550px) {
    .hero-card-grid { grid-template-columns: 1fr; }
}
