/* =====================================================
   PROCESS PAGE STYLES - GreyBox LLC
   Consistent with homepage design system
   ===================================================== */

:root {
    --neo-bg: #0a0a0a;
    --neo-surface: #101114;
    --neo-text: #eaeaea;
    --neo-muted: #b9bcc6;
    --neo-orange: #fc7a10;
    --neo-blue: #4fc3f7;
    --neo-glow-o: rgba(252,122,16,.35);
    --neo-glow-b: rgba(79,195,247,.35);
    --neo-grid: rgba(255,255,255,.055);
}

/* ===================== PAGE WRAPPER ===================== */
.process-page {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    background-color: var(--neo-bg);
    overflow: hidden;
}

/* ===================== HERO SECTION ===================== */
.process-hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.process-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    z-index: 0;
}

.process-hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(252,122,16,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79,195,247,0.08) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.process-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.process-hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-eyebrow .icon-img {
    width: 18px;
    height: 18px;
}

.process-hero .hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--neo-text);
    margin-bottom: 24px;
}

.process-hero .hero-title .highlight {
    color: var(--neo-orange);
}

.process-hero .hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--neo-muted);
    max-width: 700px;
    margin: 0 auto;
}

.process-hero .hero-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-timeline .timeline-item {
    text-align: center;
}

.hero-timeline .timeline-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(252,122,16,0.1);
    border: 2px solid rgba(252,122,16,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--neo-orange);
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.hero-timeline .timeline-item:hover .timeline-number {
    background: rgba(252,122,16,0.2);
    border-color: rgba(252,122,16,0.5);
    transform: scale(1.1);
}

.hero-timeline .timeline-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-timeline .timeline-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(252,122,16,0.3) 0%, rgba(252,122,16,0.1) 100%);
    margin-top: -30px;
}

/* ===================== PROCESS STEPS ===================== */
.process-step {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
}

.process-step.alt {
    background: linear-gradient(180deg, var(--neo-bg) 0%, #0f0f0f 100%);
}

.process-step .step-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.process-step .step-grid.reverse {
    grid-template-columns: 1fr 1.2fr;
    direction: rtl;
}

.process-step .step-grid.reverse > * {
    direction: ltr;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(252,122,16,0.1);
    border: 1px solid rgba(252,122,16,0.2);
    border-radius: 50px;
    margin-bottom: 24px;
}

.step-badge .step-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--neo-orange);
}

.step-badge .step-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
    margin-bottom: 20px;
}

.step-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--neo-muted);
    margin-bottom: 40px;
}

.step-details h3,
.step-deliverables h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 20px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.details-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--neo-muted);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.details-list li:last-child {
    border-bottom: none;
}

.details-list .check-icon {
    color: var(--neo-orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.details-list strong {
    color: var(--neo-text);
}

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

.deliverable-card {
    text-align: center;
    padding: 24px;
    background: rgba(252,122,16,0.05);
    border: 2px solid rgba(252,122,16,0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    background: rgba(252,122,16,0.1);
    border-color: rgba(252,122,16,0.4);
    transform: translateY(-5px);
}

.deliverable-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.deliverable-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-text);
}

/* Visual Cards */
.visual-card {
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    position: sticky;
    top: 100px;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.visual-icon {
    font-size: 32px;
}

.visual-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--neo-text);
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: rgba(252,122,16,0.05);
    border-radius: 8px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--neo-orange);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--neo-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visual-image {
    border-radius: 12px;
    overflow: hidden;
}

.visual-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================== TIMELINE OVERVIEW ===================== */
.timeline-overview {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
}

.timeline-overview .sec-title {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-overview .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.timeline-overview .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
}

.timeline-chart {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-bar {
    display: flex;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.timeline-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-segment:hover {
    transform: scaleY(1.1);
    z-index: 1;
}

.timeline-segment.discovery {
    background: linear-gradient(135deg, rgba(252,122,16,0.3) 0%, rgba(252,122,16,0.2) 100%);
}

.timeline-segment.design {
    background: linear-gradient(135deg, rgba(79,195,247,0.3) 0%, rgba(79,195,247,0.2) 100%);
}

.timeline-segment.build {
    background: linear-gradient(135deg, rgba(252,122,16,0.4) 0%, rgba(252,122,16,0.3) 100%);
}

.timeline-segment.deploy {
    background: linear-gradient(135deg, rgba(79,195,247,0.4) 0%, rgba(79,195,247,0.3) 100%);
}

.segment-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--neo-text);
    text-align: center;
    line-height: 1.4;
}

.segment-label span {
    font-size: 12px;
    color: var(--neo-muted);
    font-weight: 400;
}

.timeline-total {
    text-align: center;
    font-size: 18px;
    color: var(--neo-text);
    padding: 20px;
    background: rgba(252,122,16,0.05);
    border-radius: 8px;
}

.timeline-total strong {
    color: var(--neo-orange);
}

/* ===================== METHODOLOGY ===================== */
.methodology-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--neo-bg) 0%, #0f0f0f 100%);
}

.methodology-section .sec-title {
    text-align: center;
    margin-bottom: 80px;
}

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

.methodology-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.methodology-card:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-10px);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.method-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 12px;
}

.method-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--neo-muted);
}

/* ===================== CTA SECTION ===================== */
.cta-section-two {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
    overflow: hidden;
}

.cta-section-two .anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.cta-section-two .anim-icons .image-1 {
    position: absolute;
    top: 20%;
    left: 5%;
    opacity: 0.3;
}

.cta-section-two .anim-icons .image-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    opacity: 0.2;
}

.cta-section-two .outer-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section-two .sec-title {
    margin-bottom: 40px;
}

.cta-section-two .title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
}

.cta-section-two .btn-box {
    margin-top: 40px;
}

.cta-section-two .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: var(--neo-orange);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(252,122,16,0.3);
}

.cta-section-two .btn-link:hover {
    background: #ff8c2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(252,122,16,0.5);
}

.cta-section-two .btn-link .icon-img {
    width: 20px;
    height: 20px;
}

/* ===================== UTILITY CLASSES ===================== */
.color1 {
    color: var(--neo-orange);
}

.sub-title .icon-img {
    width: 18px;
    height: 18px;
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 1200px) {
    .process-hero .hero-title {
        font-size: 52px;
    }
    
    .process-step .step-grid {
        gap: 60px;
    }
    
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .process-hero {
        padding: 140px 0 100px;
    }
    
    .process-hero .hero-title {
        font-size: 42px;
    }
    
    .hero-timeline {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-timeline .timeline-connector {
        display: none;
    }
    
    .process-step .step-grid,
    .process-step .step-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        direction: ltr;
    }
    
    .visual-card {
        position: static;
    }
    
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-title {
        font-size: 36px;
    }
    
    .timeline-overview .title,
    .methodology-section .title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .process-hero {
        padding: 120px 0 80px;
    }
    
    .process-hero .hero-title {
        font-size: 32px;
    }
    
    .process-hero .hero-description {
        font-size: 16px;
    }
    
    .hero-timeline {
        margin-top: 50px;
    }
    
    .process-step,
    .timeline-overview,
    .methodology-section,
    .cta-section-two {
        padding: 80px 0;
    }
    
    .step-title {
        font-size: 28px;
    }
    
    .deliverables-grid,
    .visual-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-bar {
        flex-direction: column;
        height: auto;
    }
    
    .timeline-segment {
        width: 100%;
        padding: 16px;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-overview .title,
    .methodology-section .title,
    .cta-section-two .title {
        font-size: 32px;
    }
    
    .cta-section-two .btn-link {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .process-hero .hero-title {
        font-size: 28px;
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .timeline-overview .title,
    .methodology-section .title,
    .cta-section-two .title {
        font-size: 26px;
    }
    
    .hero-eyebrow {
        font-size: 12px;
    }
    
    .step-badge {
        padding: 10px 20px;
    }
}