/* NextGenOra homepage — dedicated layout (avoids stale cache on styles.css) */

/* ── Hero slideshow ── */
.hero-v2 {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    margin-top: 72px;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.4s ease, transform 8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-v2-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(7, 11, 20, 0.92) 0%, rgba(7, 11, 20, 0.78) 42%, rgba(15, 23, 42, 0.55) 100%),
        linear-gradient(180deg, transparent 60%, rgba(7, 11, 20, 0.95) 100%);
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 5rem;
    max-width: 680px;
}

.hero-v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fbbf24;
    margin-bottom: 1.25rem;
}

.hero-v2-eyebrow::before {
    content: '';
    width: 2rem;
    height: 2px;
    background: #fbbf24;
}

.hero-v2-title {
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 0.5rem;
}

.hero-v2-title span {
    color: #fbbf24;
}

.hero-v2-tagline {
    font-size: 1.15rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 1.25rem;
}

.hero-v2-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 34rem;
}

.hero-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.hero-v2-actions .btn-gold {
    background: #fbbf24;
    color: #0f172a;
    border: 1px solid #f59e0b;
    font-weight: 600;
    padding: 0.9rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.25);
}

.hero-v2-actions .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.38);
}

.hero-v2-actions .btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.9rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-v2-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
}

.hero-v2-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
}

.hero-v2-dot {
    width: 2.5rem;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}

.hero-v2-dot.is-active {
    background: #fbbf24;
    width: 3.5rem;
}

/* ── Trust bar (below hero) ── */
.trust-bar {
    background: #0f172a;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.trust-stat-label {
    display: block;
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* ── Value pillars ── */
.pillars {
    padding: 5rem 0;
    background: #fff;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pillar-card {
    padding: 1.75rem 1.5rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.pillar-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #f59e0b;
    margin-bottom: 0.75rem;
}

.pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.pillar-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
}

/* ── Compact services ── */
.services-v2 {
    padding: 5rem 0;
    background: #f8fafc;
}

.services-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.service-compact {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
    border-color: #cbd5e1;
}

.service-compact-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.service-compact-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #fbbf24;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.service-compact h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.service-compact p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.service-compact-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-compact-link:hover {
    color: #f59e0b;
}

.services-v2-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ── Process (clean horizontal) ── */
.process-v2 {
    padding: 5rem 0;
    background: #fff;
}

.process-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.process-v2-step {
    padding: 1.5rem 1.25rem;
    border-top: 3px solid #fbbf24;
    background: #f8fafc;
}

.process-v2-step span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.process-v2-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: #0f172a;
}

.process-v2-step p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
}

/* ── Section headers (shared) ── */
.home-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.home-section-header .section-kicker {
    color: #f59e0b;
}

.home-section-header .section-title {
    margin-bottom: 0.75rem;
}

.home-section-header .section-subtitle {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid,
    .process-v2-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-compact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-v2 {
        min-height: auto;
        margin-top: 64px;
    }

    .hero-v2-content {
        padding: 3rem 0 4.5rem;
    }

    .trust-bar-grid,
    .pillars-grid,
    .process-v2-grid {
        grid-template-columns: 1fr;
    }

    .hero-v2-dots {
        bottom: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 0.5s ease;
        transform: none !important;
    }
}
