/* Root Variables */
:root {
    --red: #E50914;
    --red-dark: #B81D24;
    --ink: #0a0a0a;
    --ice: #F5F5F1;
    --glow: rgba(229, 9, 20, 0.6);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero-services {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Video */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(229, 9, 20, 0.15) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    max-width: 1200px;
}

/* Headline */
.hero-headline {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ice);
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-headline .line {
    display: block;
    opacity: 0;
    transform: translateY(100px);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline .line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-headline .line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-headline .line:nth-child(3) {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, var(--ice) 0%, var(--red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subheadline */
.hero-subheadline {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: rgba(245, 245, 241, 0.8);
    max-width: 800px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ice);
    background: var(--red);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--glow);
}

.hero-cta:active {
    transform: translateY(0);
}

.hero-cta svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta:hover svg {
    transform: translateY(3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--red), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--ice);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: -30px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 60px;
        opacity: 0;
    }
}

/* Ripple Effect (from JS) */
.hero-cta {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        width: 90%;
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1.5rem;
    }

    .hero-subheadline {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .hero-headline .line,
    .hero-subheadline,
    .hero-cta,
    .scroll-indicator {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .scroll-line::after {
        animation: none;
    }
}

/* Services Grid Section */
.services-grid {
    position: relative;
    padding: 120px 0;
    background: var(--ink);
    overflow: hidden;
}

.services-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.services-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.services-grid-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ice);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--ice) 0%, rgba(245, 245, 241, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(245, 245, 241, 0.6);
}

/* Grid Layout */
.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

/* Service Card */
.services-grid-card {
    position: relative;
    aspect-ratio: 1 / 1.1;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(245, 245, 241, 0.1);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(50px);
}

.services-grid-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid-card:nth-child(1) {
    transition-delay: 0.1s;
}

.services-grid-card:nth-child(2) {
    transition-delay: 0.2s;
}

.services-grid-card:nth-child(3) {
    transition-delay: 0.3s;
}

.services-grid-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Card Background */
.services-grid-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-grid-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid-card:hover .services-grid-preview-image {
    opacity: 1;
    transform: scale(1);
}

.services-grid-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.2) 0%,
        rgba(10, 10, 10, 0.8) 60%,
        rgba(10, 10, 10, 0.95) 100%
    );
    transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid-card:hover .services-grid-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(229, 9, 20, 0.2) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

/* Card Content */
.services-grid-card-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
}

/* Card Icon */
.services-grid-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 241, 0.05);
    border: 1px solid rgba(245, 245, 241, 0.1);
    border-radius: 16px;
    color: var(--ice);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.services-grid-card:hover .services-grid-card-icon {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px var(--glow);
}

.services-grid-card-icon svg {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid-card:hover .services-grid-card-icon svg {
    transform: scale(1.1);
}

/* Card Text */
.services-grid-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
}

.services-grid-card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ice);
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid-card:hover .services-grid-card-title {
    transform: translateX(8px);
}

.services-grid-card-tagline {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(245, 245, 241, 0.7);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid-card:hover .services-grid-card-tagline {
    color: rgba(245, 245, 241, 0.9);
    transform: translateX(8px);
}

.services-grid-service-count {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--red);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid-card:hover .services-grid-service-count {
    opacity: 1;
    transform: translateX(8px);
}

/* Card CTA */
.services-grid-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ice);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateX(-10px);
}

.services-grid-card:hover .services-grid-card-cta {
    opacity: 1;
    transform: translateX(0);
    color: var(--red);
}

.services-grid-card-cta svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid-card-cta:hover svg {
    transform: translateX(5px);
}

/* Card Hover Effects */
.services-grid-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 20px 60px rgba(229, 9, 20, 0.2);
}

.services-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(229, 9, 20, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
}

.services-grid-card:hover::before {
    opacity: 1;
}

/* Ripple Effect */
.services-grid-card-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.3);
    transform: scale(0);
    animation: services-grid-ripple-animation 0.8s ease-out;
    pointer-events: none;
    z-index: 5;
}

@keyframes services-grid-ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        padding: 100px 0;
    }

    .services-grid-header {
        margin-bottom: 60px;
    }

    .services-grid-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        padding: 80px 0;
    }

    .services-grid-container {
        padding: 0 1.5rem;
    }

    .services-grid-header {
        margin-bottom: 50px;
    }

    .services-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid-card {
        aspect-ratio: 1 / 1;
    }

    .services-grid-card-content {
        padding: 2rem;
    }

    .services-grid-card-icon {
        width: 60px;
        height: 60px;
    }

    .services-grid-card-icon svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        padding: 60px 0;
    }

    .services-grid-container {
        padding: 0 1rem;
    }

    .services-grid-header {
        margin-bottom: 40px;
    }

    .services-grid-wrapper {
        gap: 1rem;
    }

    .services-grid-card-content {
        padding: 1.5rem;
    }

    .services-grid-card-title {
        font-size: 1.75rem;
    }

    .services-grid-card-tagline {
        font-size: 0.875rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .services-grid-card,
    .services-grid-preview-image,
    .services-grid-card-icon,
    .services-grid-card-title,
    .services-grid-card-tagline,
    .services-grid-service-count,
    .services-grid-card-cta {
        transition: none;
    }

    .services-grid-card:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .services-grid {
        background: white;
        padding: 40px 0;
    }

    .services-grid-title,
    .services-grid-card-title {
        color: black;
    }

    .services-grid-card-background {
        display: none;
    }
}

/* Process Overview Section */
.process-overview {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--ink) 0%, rgba(10, 10, 10, 0.98) 100%);
    overflow: hidden;
}

.process-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.process-overview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.process-overview-header {
    text-align: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-overview-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-overview-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ice);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--ice) 0%, rgba(245, 245, 241, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-overview-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(245, 245, 241, 0.6);
}

/* Timeline Wrapper */
.process-timeline-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    padding: 40px 0 60px;
    margin-bottom: 80px;
}

/* Hide scrollbar but keep functionality */
.process-timeline-wrapper::-webkit-scrollbar {
    height: 6px;
}

.process-timeline-wrapper::-webkit-scrollbar-track {
    background: rgba(245, 245, 241, 0.05);
    border-radius: 3px;
}

.process-timeline-wrapper::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* Timeline Container */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 900px;
    position: relative;
    padding: 0 20px;
}

/* Connecting Line */
.process-timeline-line {
    position: absolute;
    top: 24px;
    left: 15%;
    width: 70%;
    height: 3px;
    background: rgba(245, 245, 241, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.process-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--red-dark));
    border-radius: 2px;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-timeline-line.is-visible .process-timeline-progress {
    width: 100%;
}

/* Process Step */
.process-step {
    position: relative;
    flex: 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step[data-step="1"] {
    transition-delay: 0.2s;
}

.process-step[data-step="2"] {
    transition-delay: 0.4s;
}

.process-step[data-step="3"] {
    transition-delay: 0.6s;
}

.process-step[data-step="4"] {
    transition-delay: 0.8s;
}

/* Step Icon */
.process-step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 241, 0.03);
    border: 2px solid rgba(245, 245, 241, 0.1);
    border-radius: 50%;
    color: var(--ice);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.process-step:hover .process-step-icon {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 40px var(--glow);
}

.process-step-icon svg {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .process-step-icon svg {
    transform: scale(1.15);
}

/* Animated pulse effect */
.process-step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--red);
    border-radius: 50%;
    opacity: 0;
    animation: process-pulse 3s ease-in-out infinite;
}

.process-step[data-step="1"] .process-step-icon::before {
    animation-delay: 0s;
}

.process-step[data-step="2"] .process-step-icon::before {
    animation-delay: 0.75s;
}

.process-step[data-step="3"] .process-step-icon::before {
    animation-delay: 1.5s;
}

.process-step[data-step="4"] .process-step-icon::before {
    animation-delay: 2.25s;
}

@keyframes process-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

/* Step Number */
.process-step-number {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 1rem;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 0 20px var(--glow), 0 0 40px rgba(229, 9, 20, 0.4);
}

.process-step:hover .process-step-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px var(--glow), 0 0 60px rgba(229, 9, 20, 0.6);
}

/* Step Title */
.process-step-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ice);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 2px 20px rgba(245, 245, 241, 0.3);
}

.process-step:hover .process-step-title {
    color: var(--red);
    text-shadow: 0 0 25px var(--glow), 0 0 50px rgba(229, 9, 20, 0.5);
}

/* Step Description */
.process-step-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: rgba(245, 245, 241, 0.85);
    max-width: 250px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .process-step-description {
    color: rgba(245, 245, 241, 1);
    text-shadow: 0 2px 15px rgba(245, 245, 241, 0.2);
}

/* Process CTA */
.process-cta-wrapper {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-cta-wrapper.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ice);
    background: var(--red);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.process-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.process-cta-button:hover::before {
    left: 100%;
}

.process-cta-button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--glow);
}

.process-cta-button:active {
    transform: translateY(0);
}

.process-cta-button svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-overview {
        padding: 100px 0;
    }

    .process-overview-header {
        margin-bottom: 80px;
    }

    .process-timeline-wrapper {
        margin-bottom: 60px;
    }

    .process-timeline {
        min-width: 800px;
    }

    .process-step {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .process-overview {
        padding: 80px 0;
    }

    .process-overview-container {
        padding: 0 1.5rem;
    }

    .process-overview-header {
        margin-bottom: 60px;
    }

    .process-timeline-wrapper {
        padding: 40px 0 40px;
        margin-bottom: 50px;
    }

    .process-timeline {
        min-width: 720px;
        padding: 0 10px;
    }

    .process-timeline-line {
        left: 12%;
        width: 76%;
    }

    .process-step {
        max-width: 200px;
    }

    .process-step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .process-step-icon svg {
        width: 40px;
        height: 40px;
    }

    .process-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .process-overview {
        padding: 60px 0;
    }

    .process-overview-container {
        padding: 0 1rem;
    }

    .process-overview-header {
        margin-bottom: 50px;
    }

    .process-timeline {
        min-width: 640px;
    }

    .process-step {
        max-width: 180px;
    }

    .process-step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .process-step-icon svg {
        width: 36px;
        height: 36px;
    }

    .process-step-title {
        font-size: 1.25rem;
    }

    .process-step-description {
        font-size: 0.875rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .process-overview-header,
    .process-step,
    .process-cta-wrapper,
    .process-step-icon,
    .process-step-number,
    .process-step-title,
    .process-step-description {
        transition: none;
        animation: none;
    }

    .process-step-icon::before {
        animation: none;
    }

    .process-timeline-progress {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .process-overview {
        background: white;
        padding: 40px 0;
    }

    .process-overview-title,
    .process-step-title {
        color: black;
    }

    .process-timeline-wrapper {
        overflow: visible;
    }
}

/* Featured Work Showcase Section */
.featured-work-showcase {
    position: relative;
    padding: 120px 0;
    background: var(--ink);
    overflow: hidden;
}

.featured-work-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.featured-work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.featured-work-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-work-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.featured-work-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ice);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--ice) 0%, rgba(245, 245, 241, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 30px rgba(245, 245, 241, 0.3);
}

.featured-work-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(245, 245, 241, 0.85);
    text-shadow: 0 2px 15px rgba(245, 245, 241, 0.2);
}

/* Category Filters */
.featured-work-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.featured-work-filters.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.featured-work-filter-btn {
    padding: 0.75rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(245, 245, 241, 0.7);
    background: rgba(245, 245, 241, 0.05);
    border: 1px solid rgba(245, 245, 241, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.featured-work-filter-btn:hover {
    color: var(--ice);
    background: rgba(245, 245, 241, 0.1);
    border-color: rgba(245, 245, 241, 0.2);
    transform: translateY(-2px);
}

.featured-work-filter-btn.active {
    color: var(--ice);
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 4px 20px var(--glow);
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

/* Projects Grid */
.featured-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 80px;
}

/* Project Item */
.featured-work-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(245, 245, 241, 0.1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-work-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.featured-work-item.filtered-out {
    display: none;
}

/* Stagger animation delays */
.featured-work-item:nth-child(1) { transition-delay: 0.1s; }
.featured-work-item:nth-child(2) { transition-delay: 0.15s; }
.featured-work-item:nth-child(3) { transition-delay: 0.2s; }
.featured-work-item:nth-child(4) { transition-delay: 0.25s; }
.featured-work-item:nth-child(5) { transition-delay: 0.3s; }
.featured-work-item:nth-child(6) { transition-delay: 0.35s; }
.featured-work-item:nth-child(7) { transition-delay: 0.4s; }
.featured-work-item:nth-child(8) { transition-delay: 0.45s; }
.featured-work-item:nth-child(9) { transition-delay: 0.5s; }

/* Item Image */
.featured-work-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.featured-work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-work-item:hover .featured-work-img {
    transform: scale(1.1);
}

.featured-work-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-work-item:hover .featured-work-item-overlay {
    background: linear-gradient(
        180deg,
        rgba(229, 9, 20, 0.2) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

/* Item Content */
.featured-work-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 10;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-work-item:hover .featured-work-item-content {
    transform: translateY(-10px);
}

/* Category Tag */
.featured-work-category-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ice);
    background: rgba(229, 9, 20, 0.8);
    border-radius: 20px;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.featured-work-category-tag.editing {
    background: rgba(229, 9, 20, 0.8);
}

.featured-work-category-tag.design {
    background: rgba(138, 43, 226, 0.8);
}

.featured-work-category-tag.vfx {
    background: rgba(0, 191, 255, 0.8);
}

.featured-work-category-tag.3d {
    background: rgba(255, 140, 0, 0.8);
}

/* Item Title */
.featured-work-item-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ice);
    margin-bottom: 0.375rem;
    text-shadow: 0 2px 20px rgba(245, 245, 241, 0.3);
}

/* Item Type */
.featured-work-item-type {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(245, 245, 241, 0.7);
}

/* Item Hover Overlay */
.featured-work-item-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    z-index: 15;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-work-item:hover .featured-work-item-hover {
    opacity: 1;
}

/* View Button */
.featured-work-view-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ice);
    background: var(--red);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px var(--glow);
    transform: translateY(10px);
}

.featured-work-item:hover .featured-work-view-btn {
    transform: translateY(0);
}

.featured-work-view-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px var(--glow);
}

.featured-work-view-btn svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-work-view-btn:hover svg {
    transform: rotate(45deg) scale(1.1);
}

/* CTA Wrapper */
.featured-work-cta-wrapper {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-work-cta-wrapper.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.featured-work-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ice);
    background: var(--red);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.3);
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.featured-work-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.featured-work-cta-button:hover::before {
    left: 100%;
}

.featured-work-cta-button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--glow);
    text-shadow: 0 0 30px rgba(229, 9, 20, 0.6);
}

.featured-work-cta-button svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-work-cta-button:hover svg {
    transform: translateX(5px);
}

/* Lightbox */
.featured-work-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-work-lightbox.active {
    display: flex;
    opacity: 1;
}

.featured-work-lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.featured-work-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.featured-work-lightbox-info {
    margin-top: 2rem;
    text-align: center;
}

.featured-work-lightbox-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ice);
    background: var(--red);
    border-radius: 20px;
    margin-bottom: 1rem;
}

.featured-work-lightbox-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ice);
    margin-bottom: 0.5rem;
}

.featured-work-lightbox-type {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    color: rgba(245, 245, 241, 0.7);
}

.featured-work-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 241, 0.1);
    border: 1px solid rgba(245, 245, 241, 0.2);
    border-radius: 50%;
    color: var(--ice);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.featured-work-lightbox-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
}

.featured-work-lightbox-prev,
.featured-work-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 241, 0.1);
    border: 1px solid rgba(245, 245, 241, 0.2);
    border-radius: 50%;
    color: var(--ice);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.featured-work-lightbox-prev {
    left: 2rem;
}

.featured-work-lightbox-next {
    right: 2rem;
}

.featured-work-lightbox-prev:hover,
.featured-work-lightbox-next:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-work-showcase {
        padding: 100px 0;
    }

    .featured-work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .featured-work-showcase {
        padding: 80px 0;
    }

    .featured-work-container {
        padding: 0 1.5rem;
    }

    .featured-work-header {
        margin-bottom: 50px;
    }

    .featured-work-filters {
        gap: 0.75rem;
        margin-bottom: 50px;
    }

    .featured-work-filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .featured-work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-work-item {
        aspect-ratio: 16 / 9;
    }

    .featured-work-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .featured-work-lightbox-prev {
        left: 1rem;
    }

    .featured-work-lightbox-next {
        right: 1rem;
    }

    .featured-work-lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .featured-work-showcase {
        padding: 60px 0;
    }

    .featured-work-container {
        padding: 0 1rem;
    }

    .featured-work-filters {
        gap: 0.5rem;
    }

    .featured-work-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .featured-work-item-content {
        padding: 1rem;
    }

    .featured-work-item-title {
        font-size: 1rem;
    }

    .featured-work-view-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .featured-work-header,
    .featured-work-filters,
    .featured-work-item,
    .featured-work-cta-wrapper,
    .featured-work-img,
    .featured-work-view-btn {
        transition: none;
        animation: none;
    }
}

/* Print Styles */
@media print {
    .featured-work-showcase {
        background: white;
        padding: 40px 0;
    }

    .featured-work-title,
    .featured-work-item-title {
        color: black;
    }

    .featured-work-lightbox,
    .featured-work-filters {
        display: none;
    }
}

/* Why Choose Us Section Styles */
.why-choose-section {
    --wc-red: #E50914;
    --wc-red-dark: #B81D24;
    --wc-ink: #0a0a0a;
    --wc-ice: #F5F5F1;
    --wc-glow: rgba(229, 9, 20, 0.6);
    
    background: var(--wc-ink);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.why-choose-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: wc-fade-up 0.8s ease forwards;
}

.why-choose-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--wc-ice);
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.why-choose-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: rgba(245, 245, 241, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Value Cards */
.value-card {
    background: rgba(245, 245, 241, 0.03);
    border: 1px solid rgba(245, 245, 241, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(40px);
    animation: wc-fade-up 0.8s ease forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--wc-red), transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    border-color: rgba(229, 9, 20, 0.3);
    background: rgba(245, 245, 241, 0.05);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px var(--wc-glow);
}

.value-card:hover::before {
    opacity: 1;
}

/* Icon Wrapper */
.value-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--wc-red), var(--wc-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 40px var(--wc-glow);
}

.value-icon {
    width: 36px;
    height: 36px;
    color: var(--wc-ice);
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15);
}

/* Text Content */
.value-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--wc-ice);
    margin: 0 0 16px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.value-card:hover .value-heading {
    color: var(--wc-red);
}

.value-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: rgba(245, 245, 241, 0.65);
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.value-card:hover .value-description {
    color: rgba(245, 245, 241, 0.85);
}

/* Animations */
@keyframes wc-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 20px;
    }
    
    .why-choose-header {
        margin-bottom: 50px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 35px 25px;
    }
    
    .value-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .value-icon {
        width: 30px;
        height: 30px;
    }
}

/* CTA Section Styles */
.cta-section {
    --cta-red: #E50914;
    --cta-red-dark: #B81D24;
    --cta-ink: #0a0a0a;
    --cta-ice: #F5F5F1;
    --cta-glow: rgba(229, 9, 20, 0.6);
    
    position: relative;
    padding: 140px 20px;
    overflow: hidden;
    background: var(--cta-ink);
}

/* Animated Background Gradient */
.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184, 29, 36, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--cta-ink) 0%, #1a0a0e 100%);
    animation: cta-gradient-shift 20s ease infinite;
}

@keyframes cta-gradient-shift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

/* Video Background (if used) */
.cta-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(100%);
}

/* Container */
.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Main Content */
.cta-content {
    opacity: 0;
    transform: translateX(-50px);
    animation: cta-slide-in-left 1s ease forwards;
}

.cta-headline {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--cta-ice);
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.cta-subheadline {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    color: rgba(245, 245, 241, 0.7);
    margin: 0 0 48px 0;
    line-height: 1.6;
    max-width: 540px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn:hover::before {
    opacity: 1;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--cta-red), var(--cta-red-dark));
    color: var(--cta-ice);
    box-shadow: 0 10px 40px rgba(229, 9, 20, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(229, 9, 20, 0.5);
}

.cta-btn-secondary {
    background: rgba(245, 245, 241, 0.08);
    color: var(--cta-ice);
    border: 1px solid rgba(245, 245, 241, 0.2);
}

.cta-btn-secondary:hover {
    background: rgba(245, 245, 241, 0.12);
    border-color: var(--cta-red);
    transform: translateY(-4px);
}

.cta-btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-btn:hover .cta-btn-icon {
    transform: translateX(4px);
}

/* Quick Contact Form */
.cta-form-wrapper {
    opacity: 0;
    transform: translateX(50px);
    animation: cta-slide-in-right 1s ease forwards;
    animation-delay: 0.2s;
}

.cta-quick-form {
    background: rgba(245, 245, 241, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 245, 241, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
}

.cta-quick-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--cta-red), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.cta-form-header {
    margin-bottom: 32px;
}

.cta-form-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--cta-ice);
    margin: 0 0 8px 0;
}

.cta-form-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    color: rgba(245, 245, 241, 0.6);
    margin: 0;
}

/* Form Groups */
.cta-form-group {
    position: relative;
    margin-bottom: 28px;
}

.cta-input {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 245, 241, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: var(--cta-ice);
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
}

.cta-select {
    cursor: pointer;
}

.cta-select-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: rgba(245, 245, 241, 0.5);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.cta-select:focus + .cta-label + .cta-input-line + .cta-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.cta-label {
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 16px;
    color: rgba(245, 245, 241, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

.cta-input:focus + .cta-label,
.cta-input:not(:placeholder-shown) + .cta-label {
    top: -8px;
    font-size: 12px;
    color: var(--cta-red);
}

.cta-input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cta-red), var(--cta-red-dark));
    transition: width 0.3s ease;
}

.cta-input:focus ~ .cta-input-line {
    width: 100%;
}

/* Submit Button */
.cta-form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--cta-red), var(--cta-red-dark));
    border: none;
    border-radius: 12px;
    color: var(--cta-ice);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(229, 9, 20, 0.4);
}

.cta-form-submit:active {
    transform: translateY(0);
}

.cta-submit-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(245, 245, 241, 0.3);
    border-top-color: var(--cta-ice);
    border-radius: 50%;
    animation: cta-spin 0.8s linear infinite;
}

.cta-form-submit.loading .cta-submit-text,
.cta-form-submit.loading .cta-submit-icon {
    display: none;
}

.cta-form-submit.loading .cta-submit-loader {
    display: block;
}

.cta-submit-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-form-submit:hover .cta-submit-icon {
    transform: translateX(4px) translateY(-4px);
}

@keyframes cta-spin {
    to { transform: rotate(360deg); }
}

/* Form Message */
.cta-form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.cta-form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.cta-form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Glow Orbs */
.cta-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: cta-float 20s ease-in-out infinite;
    pointer-events: none;
}

.cta-glow-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--cta-red);
    top: -200px;
    left: 10%;
    animation-delay: 0s;
}

.cta-glow-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--cta-red-dark);
    bottom: -250px;
    right: 10%;
    animation-delay: 10s;
}

@keyframes cta-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Animations */
@keyframes cta-slide-in-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cta-slide-in-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 100px 20px;
    }
    
    .cta-quick-form {
        padding: 40px 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 80px 16px;
    }
    
    .cta-quick-form {
        padding: 32px 24px;
    }
}
/* CTA Form Message */
.cta-form-message {
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Visible state */
.cta-form-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Success */
.cta-form-message.success {
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.35);
}

/* Error */
.cta-form-message.error {
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.35);
}

/* FAQ Section Styles */
.faq-section {
    --faq-red: #E50914;
    --faq-red-dark: #B81D24;
    --faq-ink: #0a0a0a;
    --faq-ice: #F5F5F1;
    --faq-glow: rgba(229, 9, 20, 0.6);
    
    background: var(--faq-ink);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(184, 29, 36, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: faq-fade-up 0.8s ease forwards;
}

.faq-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--faq-ice);
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.faq-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: rgba(245, 245, 241, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item */
.faq-item {
    background: rgba(245, 245, 241, 0.03);
    border: 1px solid rgba(245, 245, 241, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: faq-fade-up 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }
.faq-item:nth-child(7) { animation-delay: 0.4s; }

.faq-item:hover {
    border-color: rgba(229, 9, 20, 0.3);
    background: rgba(245, 245, 241, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    background: rgba(229, 9, 20, 0.08);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.2);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    gap: 20px;
}

.faq-question:hover {
    background: rgba(245, 245, 241, 0.05);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--faq-red);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: scale(1.1);
}

.faq-question-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--faq-ice);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: var(--faq-red);
}

.faq-chevron {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: rgba(245, 245, 241, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--faq-red);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 32px 32px 76px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.faq-answer-content p {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: rgba(245, 245, 241, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Footer */
.faq-footer {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(245, 245, 241, 0.1);
    text-align: center;
    opacity: 0;
    animation: faq-fade-up 0.8s ease forwards 0.5s;
}

.faq-footer-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    color: var(--faq-ice);
    margin: 0 0 32px 0;
}

.faq-footer-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-footer-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.faq-footer-link:hover svg {
    transform: translateX(4px);
}

.faq-footer-link-primary {
    background: linear-gradient(135deg, var(--faq-red), var(--faq-red-dark));
    color: var(--faq-ice);
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.2);
}

.faq-footer-link-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.35);
}

.faq-footer-link-secondary {
    background: rgba(245, 245, 241, 0.08);
    color: var(--faq-ice);
    border: 1px solid rgba(245, 245, 241, 0.2);
}

.faq-footer-link-secondary:hover {
    background: rgba(245, 245, 241, 0.12);
    border-color: var(--faq-red);
    transform: translateY(-3px);
}

/* Animations */
@keyframes faq-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 20px;
    }
    
    .faq-header {
        margin-bottom: 50px;
    }
    
    .faq-question {
        padding: 24px 24px;
    }
    
    .faq-question-content {
        gap: 16px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
    
    .faq-answer-content {
        padding: 0 24px 24px 60px;
    }
    
    .faq-footer {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .faq-footer-buttons {
        flex-direction: column;
    }
    
    .faq-footer-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 20px 20px;
        gap: 12px;
    }
    
    .faq-question-content {
        gap: 12px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 52px;
    }
    
    .faq-chevron {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-header,
    .faq-footer {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .faq-answer {
        transition: max-height 0.2s ease;
    }
    
    .faq-chevron,
    .faq-icon,
    .faq-answer-content {
        transition: none;
    }
}