/* =====================================================
   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;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22,163,74,0.07);
    border: 1px solid rgba(22,163,74,0.2);
    color: var(--green-dark);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 28px;
    cursor: pointer;
    transition: var(--t);
}
.hero-badge:hover {
    background: rgba(22,163,74,0.12);
    border-color: rgba(22,163,74,0.35);
}

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

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

.hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

/* ---- Headline ---- */
.hero h1 {
    font-size: clamp(2.6rem, 4.8vw, 4.8rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-1);
    max-width: 820px;
    margin-bottom: 0;
}

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

/* ---- Subtitle row ---- */
.hero-meta-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    margin-top: 24px;
    margin-bottom: 36px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 520px;
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
}

.hero-new-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 0.82rem;
    color: var(--text-2);
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-1);
}
.hero-new-tag:hover { color: var(--text-1); border-color: var(--border-mid); background: var(--bg-2); }
.hero-new-tag strong { color: var(--green); font-weight: 600; }

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

/* ---- 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: 900px) {
    .hero { padding-top: 90px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-meta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
}
