/* ==========================================================
   HIGH-IMPACT VISUAL SINGLE SOLUTION STYLES
   ========================================================== */

/* 1. Hero Parallax Banner */
.interactive-hero {
    position: relative;
    height: 60vh;
    min-height: 460px;
    background: #060b14;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transform: scale(1.05);
    transition: transform 0.8s ease;
}

.interactive-hero:hover .hero-parallax-bg {
    transform: scale(1.1);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 17, 30, 0.2) 0%, rgba(6, 11, 20, 0.95) 100%);
}

.glow-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(178, 138, 68, 0.15) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.division-pill {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-gold);
    background: rgba(178, 138, 68, 0.15);
    border: 1px solid rgba(178, 138, 68, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-glitch-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}


/* 2. Reveal Hover Cards Grid */
.services-reveal-section {
    padding: 100px 40px;
    background: #fafaf9;
}

.section-container {
    max-width: 1240px;
    margin: 0 auto;
}

.section-title-wrapper.center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.section-subtext {
    font-size: 13px;
    color: var(--text-muted);
}

.reveal-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.reveal-card {
    position: relative;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.card-bg-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-card:hover .card-bg-media {
    transform: scale(1.1);
}

.card-gradient-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 17, 30, 0.2) 0%, rgba(6, 11, 20, 0.9) 100%);
    transition: opacity 0.4s ease;
}

/* Default Unhovered State */
.card-default-state {
    position: absolute;
    inset: 0;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-card:hover .card-default-state {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.service-num {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-gold);
}

.card-default-state h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 6px;
}

.hover-prompt {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
}

/* Hover Revealed State */
.card-hover-reveal {
    position: absolute;
    inset: 0;
    background: rgba(6, 11, 20, 0.94);
    backdrop-filter: blur(10px);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-card:hover .card-hover-reveal {
    opacity: 1;
    transform: translateY(0);
}

.service-num-light {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.card-hover-reveal h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
}

.card-hover-reveal p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.service-tags span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--navy-dark);
    background: var(--primary-gold);
    padding: 4px 10px;
    border-radius: 4px;
}


/* 3. Methodology Roadmap */
.roadmap-section {
    padding: 90px 40px;
    background: #ffffff;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.roadmap-card {
    background: #fcfbf9;
    border-radius: 12px;
    padding: 28px 22px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.roadmap-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 30px rgba(178, 138, 68, 0.12);
}

.road-step-num {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.road-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.road-icon svg {
    width: 18px;
    height: 18px;
}

.roadmap-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.roadmap-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* 4. Stats Counter Strip */
/* ==========================================================
   STATS COUNTER STRIP (ALIGNMENT FIX)
   ========================================================== */
.counter-strip-section {
    padding: 60px 40px;
    background: var(--navy-dark);
    color: #ffffff;
}

.counter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Flexbox wrapper forces all numbers, $, B, + onto the exact same baseline */
.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number-wrapper .currency,
.stat-number-wrapper .counter,
.stat-number-wrapper .unit {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: 1;
    display: inline-block;
}

.counter-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .counter-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.counter-item h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--primary-gold);
    margin-bottom: 4px;
    line-height: 1;
}

.counter-item span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}


/* 5. CTA Floating Card */
.interactive-cta-section {
    padding: 90px 40px;
    background: #fafaf9;
}

.cta-floating-card {
    background: linear-gradient(135deg, #101a2d 0%, #060b14 100%);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(178, 138, 68, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-floating-card h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 12px;
}

.cta-floating-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}


/* Responsive Mobile Breakpoints */
@media (max-width: 992px) {

    .reveal-cards-grid,
    .roadmap-grid,
    .counter-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-glitch-title {
        font-size: 32px;
    }
}

/* 3-Column Grid Support for Divisions with 3 Services */
.reveal-cards-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .reveal-cards-grid.three-col {
        grid-template-columns: 1fr;
    }
}