/* ============================================
   SIRATIM - PROCESS PAGE STYLES
   ============================================ */

/* Section 1: Process Hero */
.process-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom, var(--bg-white) 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.process-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--divider), transparent);
}

.process-hero-grid {
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    gap: 2rem;
}

.process-hero-content {
    opacity: 1;
    transform: translateY(0);
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
}

.process-hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateX(-50px);
    will-change: transform, opacity;
    text-align: center;
}

.process-hero-subline {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 500;
    background: linear-gradient(135deg, var(--brand-red) 0%, #C4121F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateX(40px);
    will-change: transform, opacity;
    text-align: center;
}

.process-hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.8;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    text-align: center;
}

.process-hero-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.process-3d-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F8F8 0%, #E8E8E8 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: scale(0.95);
    will-change: transform, opacity;
}

#process-threejs-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.process-video-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    border-radius: var(--radius-lg);
}

.process-video-fallback.active {
    display: block;
}

/* Section 2: Stepper Timeline */
.process-stepper {
    background: var(--bg-white);
    position: relative;
    padding: 6rem 0;
}

.process-stepper .section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.stepper-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

.stepper-line {
    position: absolute;
    left: 70px;
    top: 100px;
    bottom: 100px;
    width: 3px;
    background: linear-gradient(to bottom, var(--divider), var(--divider));
    transform-origin: top;
    transform: scaleY(0);
    transition: background 0.4s ease;
    border-radius: 2px;
}

@media (max-width: 767px) {
    .stepper-line {
        left: 35px;
        width: 2px;
        top: 70px;
        bottom: 70px;
    }
}

.stepper-line.active {
    background: linear-gradient(to bottom, var(--brand-red), var(--brand-red));
    box-shadow: 0 0 12px rgba(164, 22, 26, 0.3);
}

.process-step-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 5rem;
    opacity: 0.4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-card.active {
    opacity: 1;
}

.process-step-card:not(.active) .step-title,
.process-step-card:not(.active) .step-description,
.process-step-card:not(.active) .step-list li {
    color: #666666;
}

.process-step-card:not(.active) .step-title {
    color: #444444;
}

.process-step-card:last-child {
    margin-bottom: 0;
}

.step-number-wrapper {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 4px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #999999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 3;
}

.process-step-card.active .step-number {
    background: linear-gradient(135deg, var(--brand-red) 0%, #C4121F 50%, var(--brand-red) 100%);
    border-color: var(--brand-red);
    border-width: 5px;
    color: var(--bg-white);
    box-shadow: 0 8px 32px rgba(164, 22, 26, 0.5), 0 0 20px rgba(164, 22, 26, 0.3);
    transform: scale(1.1);
}

.process-step-card.active .step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--brand-red);
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.step-content-card {
    flex: 1;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid transparent;
    border: 1px solid rgba(164, 22, 26, 0.1);
}

.step-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(164, 22, 26, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.step-content-card:hover::before {
    opacity: 1;
}

.process-step-card.active .step-content-card {
    border-left-color: var(--brand-red);
    border-left-width: 6px;
    border-color: rgba(164, 22, 26, 0.4);
    box-shadow: 0 12px 40px rgba(164, 22, 26, 0.2);
    transform: translateX(12px);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 50%, #FAFAFA 100%);
}

.process-step-card.active .step-content-card::before {
    opacity: 1;
    background: radial-gradient(circle at top left, rgba(164, 22, 26, 0.12) 0%, rgba(164, 22, 26, 0.05) 50%, transparent 100%);
}

.step-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: left 0.6s ease, opacity 0.3s ease;
}

.process-step-card.active .step-shine {
    opacity: 1;
    left: 100%;
}

.step-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-text);
    transition: all 0.4s ease;
    letter-spacing: -0.01em;
}

.process-step-card.active .step-title {
    color: var(--brand-red);
    transform: translateX(4px);
    background: linear-gradient(135deg, var(--brand-red) 0%, #C4121F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.step-details {
    margin-top: var(--spacing-md);
}

.step-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary-text);
    margin-bottom: var(--spacing-md);
    transition: color 0.4s ease;
}

.process-step-card.active .step-description {
    color: #333333;
    font-weight: 500;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--secondary-text);
    transition: all 0.3s ease;
}

.process-step-card.active .step-list li {
    color: #222222;
    transform: translateX(4px);
    font-weight: 500;
}

.step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(164, 22, 26, 0.4);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.process-step-card.active .step-list li::before {
    color: var(--brand-red);
    transform: scale(1.3);
    text-shadow: 0 0 12px rgba(164, 22, 26, 0.4);
    font-weight: 700;
}

/* Section 3: Turnaround Time */
.process-turnaround {
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 50%, #F8F8F8 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.process-turnaround::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-red) 20%, var(--brand-red) 80%, transparent);
    opacity: 0.3;
}

.process-turnaround .section-header {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.turnaround-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.turnaround-timeline {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--divider), var(--divider));
    border-radius: 2px;
    z-index: 0;
    opacity: 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--brand-red), #C4121F);
    border-radius: 2px;
    transition: height 0.6s ease;
    box-shadow: 0 0 12px rgba(164, 22, 26, 0.3);
}

.turnaround-grid {
    gap: 2rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.turnaround-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    height: 100%;
    border: 2px solid rgba(164, 22, 26, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.turnaround-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-red), #C4121F);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
    border-radius: 24px 24px 0 0;
}

.turnaround-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(164, 22, 26, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.turnaround-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(164, 22, 26, 0.2);
    border-color: rgba(164, 22, 26, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 50%, #FAFAFA 100%);
}

.turnaround-card:hover::before {
    transform: scaleX(1);
}

.turnaround-card:hover::after {
    opacity: 1;
}

.turnaround-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--brand-red), #C4121F);
    color: var(--bg-white);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px) scale(0.8);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(164, 22, 26, 0.3);
}

.turnaround-card:hover .turnaround-card-badge {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.turnaround-card-badge.rush-badge {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.turnaround-card-badge.reorder-badge {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.turnaround-card-icon-wrapper {
    position: relative;
    padding: 2.5rem 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.turnaround-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(164, 22, 26, 0.08), rgba(164, 22, 26, 0.03));
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    transform: scale(0);
}

.turnaround-card-icon svg {
    width: 48px;
    height: 48px;
    color: var(--brand-red);
    filter: drop-shadow(0 2px 8px rgba(164, 22, 26, 0.2));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(164, 22, 26, 0.15) 0%, transparent 70%);
    opacity: 0;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.turnaround-card:hover .turnaround-card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(164, 22, 26, 0.15), rgba(164, 22, 26, 0.08));
}

.turnaround-card:hover .turnaround-card-icon svg {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 4px 12px rgba(164, 22, 26, 0.4));
}

.turnaround-card-content {
    padding: 0 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.turnaround-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.turnaround-card:hover .turnaround-card-title {
    color: var(--brand-red);
}

.turnaround-card-time {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    opacity: 0;
    transform: translateY(10px);
}

.time-number {
    background: linear-gradient(135deg, var(--brand-red) 0%, #C4121F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.time-separator {
    color: var(--brand-red);
    font-weight: 400;
}

.time-unit {
    font-size: 0.4em;
    color: var(--secondary-text);
    font-weight: 500;
    margin-left: 0.25rem;
}

.turnaround-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.turnaround-card:hover .turnaround-card-text {
    color: #333333;
}

.turnaround-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: auto;
    opacity: 0;
    transform: translateY(10px);
}

.feature-item {
    font-size: 0.875rem;
    color: var(--secondary-text);
    text-align: left;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-red);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.turnaround-card:hover .feature-item {
    color: #333333;
    transform: translateX(4px);
}

.turnaround-card:hover .feature-item::before {
    transform: scale(1.2);
}

/* Section 4: Requirements */
.process-requirements {
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 50%, #F8F8F8 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.process-requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-red) 20%, var(--brand-red) 80%, transparent);
    opacity: 0.3;
}

.process-requirements .section-header {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.requirements-checklist {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

.requirement-item {
    display: flex;
    gap: 1.5rem;
    padding: 2.25rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 20px;
    border: 2px solid rgba(164, 22, 26, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.requirement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red), #C4121F);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
    border-radius: 20px 20px 0 0;
}

.requirement-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(164, 22, 26, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.requirement-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(164, 22, 26, 0.15);
    border-color: rgba(164, 22, 26, 0.3);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 50%, #FAFAFA 100%);
}

.requirement-item:hover::before {
    transform: scaleX(1);
}

.requirement-item:hover::after {
    opacity: 1;
}

.requirement-icon-wrapper {
    flex-shrink: 0;
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red) 0%, #C4121F 50%, var(--brand-red) 100%);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(164, 22, 26, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.requirement-check svg {
    width: 28px;
    height: 28px;
    stroke-width: 3;
}

.check-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--brand-red);
    opacity: 0;
    animation: checkPulse 2s ease-out infinite;
}

@keyframes checkPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.requirement-item:hover .requirement-check {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(164, 22, 26, 0.4);
}

.requirement-item:hover .check-pulse {
    animation: checkPulse 1.5s ease-out infinite;
}

.requirement-content {
    flex: 1;
    padding-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.requirement-title {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.requirement-item:hover .requirement-title {
    background: linear-gradient(135deg, var(--brand-red) 0%, #C4121F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.requirement-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 0.75rem;
    transition: color 0.3s ease;
}

.requirement-item:hover .requirement-text {
    color: #333333;
}

.requirement-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(164, 22, 26, 0.1), rgba(164, 22, 26, 0.05));
    border: 1px solid rgba(164, 22, 26, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(5px);
}

.requirement-item:hover .requirement-tag {
    opacity: 1;
    transform: translateY(0);
}

.requirement-tag.optional {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.1), rgba(100, 100, 100, 0.05));
    border-color: rgba(100, 100, 100, 0.2);
    color: #666666;
}

/* Section 5: CTA */
.process-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.process-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 1;
}

.process-cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--bg-white);
    letter-spacing: -0.02em;
}

.process-cta-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.process-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive - Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .process-hero {
        padding: 3rem 0 2rem;
    }
    
    .process-hero-grid {
        gap: 2rem;
    }
    
    .process-hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .process-hero-3d {
        min-height: 350px;
    }
    
    .process-3d-container {
        height: 400px;
        max-width: 100%;
    }
    
    .process-hero-3d {
        min-height: 350px;
    }
    
    .process-3d-container {
        height: 400px;
        max-width: 100%;
    }
    
    .process-stepper {
        padding: 5rem 0;
    }
    
    .stepper-wrapper {
        max-width: 100%;
        padding: 1.5rem 0;
    }
    
    .stepper-line {
        left: 50px;
        top: 80px;
        bottom: 80px;
    }
    
    .step-number {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .process-step-card {
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .step-content-card {
        padding: 2rem;
    }
    
    .step-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .requirements-checklist {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .turnaround-grid {
        gap: 1.5rem;
    }
    
    .turnaround-card {
        padding: 2.25rem 1.75rem;
    }
}

/* Responsive - Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .process-hero {
        padding: calc(var(--header-height) + 2rem) 0 3rem;
    }
    
    .process-hero-grid {
        min-height: auto;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        display: flex !important;
        flex-direction: column;
    }
    
    .process-hero-grid .col-12 {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .process-hero-content {
        text-align: center !important;
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .process-hero-title {
        font-size: clamp(3.5rem, 14vw, 5rem);
        margin-bottom: 1.25rem;
        line-height: 1.1;
        letter-spacing: -0.03em;
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .process-hero-subline {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        margin-bottom: 1.25rem;
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .process-hero-description {
        font-size: clamp(1rem, 4vw, 1.125rem);
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
        text-align: center !important;
        display: block;
    }
    
    .process-hero-3d {
        display: none;
    }
    
    .process-3d-container {
        display: none;
    }
    
    .process-stepper {
        padding: 3rem 0;
    }
    
    .process-stepper .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .section-description {
        font-size: clamp(0.9375rem, 3vw, 1.0625rem);
    }
    
    .stepper-wrapper {
        padding: 1rem 0;
    }
    
    .stepper-line {
        left: 30px;
        width: 2px;
        top: 60px;
        bottom: 60px;
    }
    
    .process-step-card {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .step-number-wrapper {
        flex-shrink: 0;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        border-width: 3px;
    }
    
    .step-content-card {
        padding: 1.5rem;
        flex: 1;
        border-left: 3px solid transparent;
    }
    
    .process-step-card.active .step-content-card {
        transform: translateX(4px);
        border-left-color: var(--brand-red);
    }
    
    .step-title {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        margin-bottom: 0.875rem;
    }
    
    .step-description {
        font-size: clamp(0.9375rem, 3vw, 1rem);
        margin-bottom: 1rem;
    }
    
    .step-list {
        margin-top: 0.5rem;
    }
    
    .step-list li {
        font-size: clamp(0.875rem, 3vw, 0.9375rem);
        padding-left: 1.5rem;
        margin-bottom: 0.625rem;
        line-height: 1.6;
    }
    
    .process-turnaround {
        padding: 3rem 0;
    }
    
    .process-turnaround .section-header {
        margin-bottom: 2rem;
    }
    
    .turnaround-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .turnaround-timeline {
        display: none;
    }
    
    .turnaround-card {
        padding: 0;
    }
    
    .turnaround-card-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.25rem 0.75rem;
        font-size: 0.6875rem;
    }
    
    .turnaround-card-icon-wrapper {
        padding: 2rem 1.5rem 1rem;
    }
    
    .turnaround-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .turnaround-card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .icon-pulse {
        width: 60px;
        height: 60px;
    }
    
    .turnaround-card-content {
        padding: 0 1.5rem 2rem;
    }
    
    .turnaround-card-title {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }
    
    .turnaround-card-time {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .turnaround-card-text {
        font-size: clamp(0.875rem, 3vw, 0.9375rem);
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .turnaround-card-features {
        gap: 0.5rem;
    }
    
    .feature-item {
        font-size: 0.8125rem;
        padding-left: 1.25rem;
    }
    
    .process-requirements {
        padding: 3rem 0;
    }
    
    .process-requirements .section-header {
        margin-bottom: 2rem;
    }
    
    .requirements-checklist {
        gap: 1.25rem;
    }
    
    .requirement-item {
        padding: 1.75rem;
        flex-direction: row;
        text-align: left;
        gap: 1.25rem;
    }
    
    .requirement-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .requirement-check {
        width: 56px;
        height: 56px;
    }
    
    .requirement-check svg {
        width: 24px;
        height: 24px;
    }
    
    .requirement-title {
        font-size: clamp(1.125rem, 3vw, 1.375rem);
    }
    
    .requirement-text {
        font-size: clamp(0.9375rem, 2.5vw, 1rem);
    }
    
    .requirement-tag {
        font-size: 0.6875rem;
        padding: 0.25rem 0.75rem;
    }
    
    .requirement-check {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        flex-shrink: 0;
        margin: 0;
    }
    
    .requirement-content {
        padding-top: 0;
    }
    
    .requirement-title {
        font-size: clamp(1.125rem, 4vw, 1.25rem);
        margin-bottom: 0.375rem;
    }
    
    .requirement-text {
        font-size: clamp(0.875rem, 3vw, 0.9375rem);
        line-height: 1.6;
    }
    
    .process-cta {
        padding: 3rem 0;
    }
    
    .process-cta-content {
        padding: 0 0.5rem;
    }
    
    .process-cta-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
    }
    
    .process-cta-text {
        font-size: clamp(1rem, 3vw, 1.125rem);
        margin-bottom: 2rem;
    }
    
    .process-cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .process-cta-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Responsive - Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .process-hero {
        padding: calc(var(--header-height) + 1.5rem) 0 2.5rem;
    }
    
    .process-hero-grid {
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        display: flex !important;
        flex-direction: column;
    }
    
    .process-hero-grid .col-12 {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .process-hero-content {
        padding: 0 1rem;
        text-align: center !important;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .process-hero-title {
        font-size: clamp(3rem, 15vw, 4.5rem);
        margin-bottom: 1rem;
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .process-hero-subline {
        font-size: clamp(1.125rem, 5vw, 1.375rem);
        margin-bottom: 1rem;
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .process-hero-description {
        font-size: clamp(0.9375rem, 4vw, 1rem);
        padding: 0 0.75rem;
        text-align: center !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .process-hero-3d {
        display: none;
    }
    
    .process-3d-container {
        display: none;
    }
    
    .process-stepper {
        padding: 2.5rem 0;
    }
    
    .stepper-line {
        left: 25px;
        top: 50px;
        bottom: 50px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
    
    .process-step-card {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .step-content-card {
        padding: 1.25rem;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 0.875rem;
    }
    
    .step-list li {
        font-size: 0.8125rem;
        padding-left: 1.25rem;
    }
    
    .turnaround-card-icon-wrapper {
        padding: 1.5rem 1.25rem 0.75rem;
    }
    
    .turnaround-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .turnaround-card-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .icon-pulse {
        width: 50px;
        height: 50px;
    }
    
    .turnaround-card-content {
        padding: 0 1.25rem 1.5rem;
    }
    
    .turnaround-card-time {
        font-size: 1.75rem;
    }
    
    .feature-item {
        font-size: 0.75rem;
    }
    
    .requirement-item {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .requirement-check {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    
    .requirement-title {
        font-size: 1.0625rem;
    }
    
    .requirement-text {
        font-size: 0.8125rem;
    }
    
    .process-cta {
        padding: 2.5rem 0;
    }
    
    .process-cta-title {
        font-size: 1.5rem;
    }
    
    .process-cta-text {
        font-size: 0.9375rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .process-step-card,
    .turnaround-card,
    .requirement-item {
        transition: none;
    }
    
    .step-shine {
        display: none;
    }
    
    .process-step-card.active .step-content-card {
        transform: none;
    }
}

