/* ============================================
   Point4 Studios - Premium Website Styles
   ============================================ */

/* CSS Variables - Dark Mode (Default) */
:root {
    /* Brand Colors */
    --color-primary: #0a0f1a;
    /* Accent Colors - From Logo */
    --color-accent: #3b82f6;
    --color-accent-light: #60a5fa;
    --color-accent-cyan: #7EEDEB;
    
    /* Text Colors */
    --color-text: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    
    /* Surface Colors */
    --color-surface: #0f172a;
    --color-surface-elevated: #1e293b;
    --color-border: rgba(148, 163, 184, 0.1);
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, var(--color-accent-cyan) 0%, var(--color-accent) 100%);
    --gradient-btn-primary: linear-gradient(135deg, #7EEDEB 0%, #3b82f6 50%, #2563eb 100%);
    
    /* Shadows */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', var(--font-primary);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border Radius */
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-primary);
    transition: background-color var(--transition-base), color var(--transition-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   Utility Classes
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Header
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-primary);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.header-scrolled {
    background: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 var(--container-padding);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.logo:hover .logo-img {
    transform: scale(1.02);
}

.logo-img-large {
    margin-top: -50px;
    height: 200px;
    width: auto;
    display: block;
}

.footer-brand .logo-img-large {
    margin-bottom: var(--space-md);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-list a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-base);
}

.nav-list a:hover {
    color: var(--color-text);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a.active {
    color: var(--color-text);
}

.nav-list a.active::after {
    width: 100%;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    background: rgba(59, 130, 246, 0.06);
}

.nav-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    opacity: 0.6;
    color: var(--color-accent-cyan);
    transition: opacity var(--transition-fast);
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
    opacity: 1;
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.lang-toggle:hover {
    background: var(--color-surface-elevated);
    color: var(--color-text);
}

.lang-current {
    color: var(--color-accent);
}

.lang-separator {
    color: var(--color-text-muted);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Desktop Sidebar Navigation
   ============================================ */

@media (min-width: 1025px) {
    body {
        margin-left: 240px;
    }
    
    .header {
        top: 0;
        left: 0;
        right: auto;
        bottom: 0;
        width: 240px;
        height: 100vh;
        border-bottom: none;
        border-right: 1px solid var(--color-border);
        background: var(--color-primary);
    }
    
    .header-scrolled {
        box-shadow: none;
        background: var(--color-primary);
    }
    
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        height: 100vh;
        padding: var(--space-xl) var(--space-lg);
        gap: var(--space-3xl);
    }
    
    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-left: 0;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .nav {
        flex: 1;
        width: 100%;
        align-items: flex-start;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
        width: 100%;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        font-size: 0.9375rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        color: var(--color-text-secondary);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }
    
    .nav-list a::after {
        display: none;
    }
    
    .nav-list a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%) scaleY(0);
        width: 3px;
        height: 20px;
        background: var(--gradient-accent);
        border-radius: 0 3px 3px 0;
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .nav-list a:hover,
    .nav-list a.active {
        color: var(--color-text);
        background: rgba(126, 237, 235, 0.04);
        padding-left: 18px;
    }
    
    .nav-list a:hover::before,
    .nav-list a.active::before {
        transform: translateY(-50%) scaleY(1);
    }
    
    .nav-list a.active {
        font-weight: 500;
    }
    
    .header-controls {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: var(--space-sm);
        margin-top: auto;
    }
    
    .lang-toggle {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-btn-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25), 0 0 0 1px rgba(126, 237, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35), 0 0 0 1px rgba(126, 237, 235, 0.2);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(148, 163, 184, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(126, 237, 235, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    border-color: rgba(126, 237, 235, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(126, 237, 235, 0.08);
}

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

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
    white-space: nowrap;
}

.btn-sm .btn-icon {
    width: 16px;
    height: 16px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    overflow: hidden;
    background: var(--color-primary);
}

.hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 72px;
        min-height: 100vh;
    }
    
    .hero-bottom-bar {
        position: relative;
        left: 0;
        padding: var(--space-sm) 0;
    }
    
    .hero-bottom-bar .container {
        padding-left: var(--container-padding);
    }
}

/* Ambient background glow */
.hero-ambient-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 70% 40%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 30% 60%, rgba(126, 237, 235, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid texture */
.hero-grid-floor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(148, 163, 184, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.025) 1px, transparent 1px);
    background-size: 120px 120px;
    background-position: center center;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 100%);
}

/* Restrained particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--color-accent-cyan);
    opacity: 0;
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-particles::before {
    width: 2px;
    height: 2px;
    top: 30%;
    left: 60%;
    animation-delay: 0s;
    box-shadow: 
        80px 120px 0 0 var(--color-accent-cyan),
        -60px 80px 0 0 var(--color-accent-cyan),
        150px -40px 0 0 var(--color-accent-cyan),
        -100px 150px 0 0 var(--color-accent-cyan),
        200px 60px 0 0 var(--color-accent-cyan);
}

.hero-particles::after {
    width: 1.5px;
    height: 1.5px;
    top: 60%;
    left: 70%;
    animation-delay: 7s;
    box-shadow: 
        -120px -60px 0 0 var(--color-accent-cyan),
        90px 100px 0 0 var(--color-accent-cyan),
        -40px -100px 0 0 var(--color-accent-cyan),
        180px -20px 0 0 var(--color-accent-cyan);
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0); }
    20% { opacity: 0.4; }
    50% { opacity: 0.15; transform: translateY(-20px); }
    80% { opacity: 0.3; }
}

/* Hero Layout: Two-column editorial — left-dominant */
.hero-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-4xl) 0 var(--space-3xl);
    flex: 1;
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: left;
    max-width: 620px;
    z-index: 3;
    transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
    padding-left: var(--space-xl);
}

/* Subtle ambient glow behind the text block */
.hero-content::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse at 30% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    background: rgba(126, 237, 235, 0.06);
    border: 1px solid rgba(126, 237, 235, 0.18);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--color-accent-cyan);
    border-radius: var(--radius-full);
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(126, 237, 235, 0.5);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.2vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: var(--space-xl);
}

.hero-title-line {
    display: block;
}

.hero-title-line.accent {
    color: var(--color-accent-cyan);
    -webkit-text-fill-color: var(--color-accent-cyan);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    color: var(--color-text-secondary);
    max-width: 480px;
    margin: 0 0 var(--space-sm) 0;
    line-height: 1.65;
}

.hero-tagline {
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    color: var(--color-text-muted);
    max-width: 480px;
    margin: 0 0 var(--space-2xl) 0;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: var(--space-md);
}

.hero-cta .btn {
    gap: var(--space-sm);
}

.hero-cta .btn-icon {
    width: 18px;
    height: 18px;
}

/* Hero Visual — Cinematic Video Sculpture */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 420px;
}

/* Environmental ambient glow behind the sculpture */
.hero-visual::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 10%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse 60% 50% at 50% 50%,
        rgba(59, 130, 246, 0.08) 0%,
        rgba(126, 237, 235, 0.03) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.hero-video-sculpture {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, 
        rgba(15, 23, 42, 0.6) 0%, 
        rgba(10, 15, 26, 0.7) 100%
    );
    border: 1px solid rgba(148, 163, 184, 0.06);
    box-shadow: 
        0 0 0 1px rgba(59, 130, 246, 0.04),
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(59, 130, 246, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-video-sculpture:hover {
    border-color: rgba(126, 237, 235, 0.1);
    box-shadow: 
        0 0 0 1px rgba(59, 130, 246, 0.07),
        0 28px 70px rgba(0, 0, 0, 0.45),
        0 0 100px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

/* Cinematic bloom behind the sculpture */
.hero-video-sculpture::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse 70% 60% at 50% 40%,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(126, 237, 235, 0.04) 30%,
        transparent 60%);
    pointer-events: none;
    z-index: -1;
    filter: blur(30px);
    animation: sculptureBloom 10s ease-in-out infinite;
}

@keyframes sculptureBloom {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}

/* Edge blur / vignette around the frame */
.hero-video-sculpture::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 40px 10px rgba(10, 15, 26, 0.5);
    pointer-events: none;
    z-index: 2;
}

.hero-video-sculpture-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(126, 237, 235, 0.03) 35%,
        transparent 65%);
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
    animation: sculptureGlow 8s ease-in-out infinite;
}

@keyframes sculptureGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.04); }
}

.hero-video-sculpture-frame {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 24px;
}

/* Atmospheric dark overlay on the video for cinematic integration */
.hero-video-sculpture-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 26, 0.15) 0%,
        rgba(10, 15, 26, 0.05) 40%,
        rgba(10, 15, 26, 0.2) 100%
    );
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* Soft edge diffusion */
.hero-video-sculpture-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 30px 8px rgba(10, 15, 26, 0.35);
    z-index: 3;
    pointer-events: none;
}

.hero-video-sculpture-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: brightness(0.92) saturate(0.95);
}

/* Hero Bottom Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid var(--color-border);
    padding: var(--space-xl) 0;
    background: var(--color-primary);
    z-index: 10;
}

.hero-bottom-bar .container {
    padding-left: calc(300px + var(--container-padding));
    padding-right: var(--container-padding);
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 20px;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
}

.hero-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.12);
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    border-radius: 14px;
    color: var(--color-accent-cyan);
    flex-shrink: 0;
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.12);
}

.hero-feature-icon svg {
    width: 26px;
    height: 26px;
}

.hero-feature-text h4 {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
    line-height: 1.3;
}

.hero-feature-text p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.hero-feature-divider {
    display: none;
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--space-5xl) 0;
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

/* ============================================
   Services Section
   ============================================ */

/* ============================================
   Services Section — Premium Asymmetric Layout
   ============================================ */

.services {
    position: relative;
    background: var(--color-surface);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0;
    overflow: hidden;
}

.services > .container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: 100%;
    max-width: none;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Top Row */
.services-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* Headline (left) */
.services-headline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.services-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.services-tag:empty {
    display: none;
}

.services-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2.8vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
}

.services-title .highlight {
    color: var(--color-accent-cyan);
}

.services-subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 440px;
}

.services-claim {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent-cyan);
}

/* Featured Card (right) */
.services-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: rgba(8, 12, 20, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-xl);
    padding: 32px;
    overflow: hidden;
    align-items: center;
}

.services-featured-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-featured-main h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.services-featured-main p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.services-mini-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-mini-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.services-mini-list li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.services-featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-featured-visual img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

/* Cards Row */
.services-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Service Card */
.service-card {
    background: rgba(8, 12, 20, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: rgba(126, 237, 235, 0.12);
    transform: translateY(-3px);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.service-card p {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

/* Service Icon */
.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.12);
    border: 1.5px solid rgba(59, 130, 246, 0.35);
    border-radius: 12px;
    color: var(--color-accent-cyan);
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.12);
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

/* Link */
.services-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color 0.3s ease;
}

.services-link:hover {
    color: var(--color-accent-cyan);
}

.services-link span {
    transition: transform 0.3s ease;
}

.services-link:hover span {
    transform: translateX(3px);
}

/* Footer Bar */
.services-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(8, 12, 20, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-xl);
    padding: 20px 28px;
}

.services-footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.services-footer-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

.services-footer-text {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* ============================================
   About Section
   ============================================ */

/* ============================================
   About Section — Premium Editorial Layout
   ============================================ */

.about {
    position: relative;
    background: var(--color-primary);
    overflow: hidden;
    padding: var(--space-xl) 0 var(--space-2xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-ambient-glow {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about > .container {
    max-width: none;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: var(--space-3xl);
    align-items: start;
}

.about-content {
    max-width: none;
}

/* Two-line headline */
.about-title {
    margin-top: var(--space-md);
    margin-bottom: var(--space-lg);
}

.about-title-line {
    display: block;
}

.about-title-accent {
    color: var(--color-accent-cyan);
}

.about-lead {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 520px;
}

/* Divider */
.about-divider {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent));
    margin: var(--space-xl) 0;
    border-radius: 1px;
}

/* Text paragraphs */
.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.about-text p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Value Cards — Horizontal 4-column */
.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.about-value-card {
    position: relative;
    padding: 14px;
    background: rgba(8, 12, 20, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.06);
    border-radius: var(--radius-xl);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(126, 237, 235, 0.12) 50%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-value-card:hover {
    border-color: rgba(126, 237, 235, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(126, 237, 235, 0.03);
}

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

.about-value-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(59, 130, 246, 0.06) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.about-value-card:hover .about-value-glow {
    opacity: 1;
}

.about-value-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.12);
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    border-radius: 14px;
    margin-bottom: var(--space-lg);
    color: var(--color-accent-cyan);
    transition: all 0.4s ease;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.1);
}

.about-value-icon svg {
    width: 18px;
    height: 18px;
}

.about-value-card:hover .about-value-icon {
    border-color: rgba(126, 237, 235, 0.4);
    box-shadow: 0 0 24px rgba(126, 237, 235, 0.15);
}

.about-value-number {
    position: relative;
    z-index: 1;
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.about-value-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.about-value-card p {
    position: relative;
    z-index: 1;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.about-value-line {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent));
    border-radius: 1px;
}

/* Right Side: How We Work */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: sticky;
    top: var(--space-2xl);
}

.about-work-card {
    position: relative;
    padding: var(--space-xl);
    background: rgba(8, 12, 20, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.about-work-card:hover {
    border-color: rgba(126, 237, 235, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.about-work-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(59, 130, 246, 0.06) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.about-work-card:hover .about-work-glow {
    opacity: 1;
}

.about-work-tag {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.about-work-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.about-work-body {
    position: relative;
    z-index: 1;
}

.about-work-body p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.about-work-body p + p {
    margin-top: 6px;
}

.about-work-separator {
    width: 100%;
    height: 1px;
    background: rgba(148, 163, 184, 0.1);
    margin: var(--space-md) 0;
}

/* ============================================
   Process Section
   ============================================ */

/* ============================================
   Process Section — Horizontal Steps
   ============================================ */

.process {
    position: relative;
    background: var(--color-surface);
    overflow: hidden;
    padding: var(--space-lg) 0 var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.process-ambient-glow {
    position: absolute;
    top: 5%;
    right: -5%;
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Step Connectors */


/* ============================================
   Clients Section
   ============================================ */

.clients {
    position: relative;
    background: var(--color-primary);
    overflow: hidden;
    padding: var(--space-xl) 0 var(--space-2xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.clients-ambient-glow {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Hero Row */
.clients-hero-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.clients-hero-content {
    max-width: 600px;
}

.clients-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.clients-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.2));
}

.clients-hero-content .section-label {
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: block;
}

.clients-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.clients-title-line {
    display: block;
}

.clients-title-accent {
    color: var(--color-accent);
}

.clients-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 480px;
}

/* 4 Cards */
.clients-cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.client-card {
    position: relative;
    background: rgba(11, 16, 28, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.client-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.client-card-featured {
    border-left: 3px solid var(--color-accent);
    box-shadow: inset 4px 0 12px rgba(59, 130, 246, 0.05);
}

.client-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.client-card:hover .client-card-glow {
    opacity: 1;
}

.client-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.14);
    border: 1.5px solid rgba(59, 130, 246, 0.35);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--color-accent-cyan);
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.12);
}

.client-card-icon svg {
    width: 22px;
    height: 22px;
}

.client-card-num {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent-cyan);
    margin-bottom: var(--space-xs);
    display: block;
}

.client-card h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    line-height: 1.35;
}

.client-card-divider {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-cyan));
    margin-bottom: var(--space-sm);
    border-radius: 1px;
    opacity: 0.5;
}

.client-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: var(--space-md);
    flex: 1;
}

.client-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-top: auto;
    transition: all var(--transition-fast);
}

.client-card-link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.client-card-link:hover {
    color: var(--color-accent-cyan);
}

.client-card-link:hover svg {
    transform: translateX(3px);
}

/* Bottom CTA Bar */
.clients-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    background: rgba(11, 16, 28, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    overflow: hidden;
}

.clients-cta-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.04), transparent 60%);
    pointer-events: none;
}

.clients-cta-left {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex: 1.2;
}

.clients-cta-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(59, 130, 246, 0.14);
    border: 1.5px solid rgba(59, 130, 246, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-cyan);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.15);
}

.clients-cta-icon svg {
    width: 24px;
    height: 24px;
}

.clients-cta-headline {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.clients-cta-headline > span:first-child {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
}

.clients-cta-headline > span:last-child {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
}

.clients-cta-accent {
    color: var(--color-accent);
}

.clients-cta-divider {
    width: 1px;
    height: 50px;
    background: rgba(148, 163, 184, 0.12);
    min-width: 1px;
}

.clients-cta-mid {
    flex: 1;
    max-width: 340px;
}

.clients-cta-mid p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0;
}

.clients-cta-btn {
    white-space: nowrap;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
}

/* Clients Responsive */
@media (max-width: 1024px) {
    .clients-hero-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .clients-hero-content {
        max-width: none;
    }

    .clients-hero-visual {
        order: -1;
    }

    .clients-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .clients-lead {
        max-width: 540px;
        margin: 0 auto;
    }

    .clients-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-cta {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

    .clients-cta-left {
        flex-direction: column;
    }

    .clients-cta-divider {
        width: 60px;
        height: 1px;
    }

    .clients-cta-mid {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .clients-cards {
        grid-template-columns: 1fr;
    }

    .clients-image {
        max-width: 260px;
    }

    .clients-cta-headline > span:first-child,
    .clients-cta-headline > span:last-child {
        font-size: 1rem;
    }
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    background: var(--color-primary);
    position: relative;
    padding: var(--space-xl) 0 var(--space-2xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* Left Info */
.contact-info {
    max-width: 520px;
}

.contact-info .section-label {
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: block;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.contact-title-line {
    display: block;
}

.contact-title-accent {
    color: var(--color-accent);
}

.contact-title-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-cyan));
    margin-bottom: var(--space-lg);
    border-radius: 1px;
}

.contact-lead {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* Contact Methods Card */
.contact-methods-card {
    background: rgba(11, 16, 28, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.14);
    border: 1.5px solid rgba(59, 130, 246, 0.35);
    border-radius: var(--radius-md);
    color: var(--color-accent-cyan);
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.12);
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
}

.contact-method-content {
    display: flex;
    flex-direction: column;
}

.contact-method-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-method-value {
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.contact-method-value:hover {
    color: var(--color-accent);
}

/* Promise Card */
.contact-promise-card {
    background: rgba(11, 16, 28, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-promise-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.14);
    border: 1.5px solid rgba(59, 130, 246, 0.35);
    border-radius: 50%;
    color: var(--color-accent-cyan);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.contact-promise-icon svg {
    width: 24px;
    height: 24px;
}

.contact-promise-content h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.contact-promise-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(11, 16, 28, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(11, 16, 28, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

/* Security Note */
.form-security {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    padding: var(--space-sm) var(--space-md);
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-md);
}

.form-security svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Privacy Checkbox */
.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-accent);
}

.form-privacy label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.form-privacy a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-privacy a:hover {
    color: var(--color-accent-light);
}

/* Submit Button */
.contact-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
}

/* Form Trust */
.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
}

.form-trust svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

/* Form Success State */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-2xl);
}

.form-success.active {
    display: flex;
}

.success-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    border: 1.5px solid rgba(59, 130, 246, 0.35);
    border-radius: var(--radius-full);
    color: var(--color-accent-cyan);
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.15);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--color-text-secondary);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--color-primary);
    border-top: 1px solid var(--color-border);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav h4,
.footer-legal h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.footer-nav ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a,
.footer-legal a {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--color-accent);
}

.footer-controls {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-lang-toggle,
.footer-lang-toggle:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
}

.footer-lang-current {
    font-weight: 500;
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-visual {
        position: relative;
        top: auto;
    }

    .hero-video-sculpture {
        max-width: 320px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .services-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .services-headline {
        text-align: center;
        align-items: center;
    }
    
    .services-featured-card {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-footer-bar {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .services-footer-left {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    section[id] {
        scroll-margin-top: 80px;
    }

    .nav {
        display: block;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-primary);
        padding: 2rem;
        z-index: 999;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav.active .nav-list li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav.active .nav-list li:nth-child(1) { transition-delay: 0.05s; }
    .nav.active .nav-list li:nth-child(2) { transition-delay: 0.10s; }
    .nav.active .nav-list li:nth-child(3) { transition-delay: 0.15s; }
    .nav.active .nav-list li:nth-child(4) { transition-delay: 0.20s; }
    .nav.active .nav-list li:nth-child(5) { transition-delay: 0.25s; }
    .nav.active .nav-list li:nth-child(6) { transition-delay: 0.30s; }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
        opacity: 0;
        transform: translateX(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

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

    .nav-list a {
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--color-text);
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        padding: 1rem 0;
    }

    .nav-list a:hover {
        color: var(--color-accent);
    }

    .nav-icon {
        width: 20px;
        height: 20px;
        opacity: 0.7;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Contact section mobile optimizations */
    .contact-grid {
        gap: var(--space-xl);
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-lead {
        margin-bottom: var(--space-lg);
    }

    .contact-methods-card {
        padding: var(--space-md);
        gap: var(--space-sm);
        margin-bottom: var(--space-md);
    }

    .contact-method-icon {
        width: 40px;
        height: 40px;
    }

    .contact-method-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-promise-card {
        display: none;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
        padding: var(--space-md) 0 var(--space-lg);
    }
    
    .hero-content {
        text-align: center;
        order: 1;
        max-width: none;
        padding-left: 0;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 3rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle,
    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-visual {
        order: -1;
        min-height: auto;
    }
    
    .hero-video-sculpture {
        max-width: 280px;
        aspect-ratio: 3/4;
    }
    
    .logo-img {
        height: 50px;
        max-width: 100%;
    }
    
    .logo-img-large {
        height: 80px;
        margin-top: 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 8px;
        justify-items: center;
    }
    
    .hero-feature-divider {
        display: none;
    }
    
    .hero-feature {
        padding: 4px 0;
        align-items: center;
        justify-content: center;
        width: auto;
    }
    
    .hero-feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .hero-feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-feature-text h4 {
        font-size: 0.875rem;
    }
    
    .hero-feature-text p {
        font-size: 0.75rem;
    }
    
    .process-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    

    
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        position: relative;
        top: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-description {
        max-width: none;
    }
    
    .footer-controls {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    .btn-sm {
        padding: 10px 18px;
        font-size: 0.8125rem;
    }

    .btn-icon {
        width: 16px;
        height: 16px;
    }

    .btn-sm .btn-icon {
        width: 14px;
        height: 14px;
    }

    .clients-image {
        max-width: 240px;
    }

    /* Disable performance-heavy effects on mobile */
    .hero-video-sculpture::before,
    .hero-video-sculpture-glow {
        animation: none;
        opacity: 0.6;
    }

}

@media (max-width: 480px) {
    .services-cards-row {
        grid-template-columns: 1fr;
    }
    
    .services-featured-card {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-subtitle, .hero-subtitle, .hero-tagline {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-video-sculpture {
        max-width: 220px;
        border-radius: 20px;
    }
    
    .hero-video-sculpture-frame {
        border-radius: 20px;
    }
    
    .contact-form-wrapper {
        padding: var(--space-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .header,
    .footer-controls,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}

/* ============================================
   Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-border: rgba(255, 255, 255, 0.3);
        --color-text-secondary: rgba(255, 255, 255, 0.8);
    }
}

/* ============================================
   Trust Section
   ============================================ */

.trust {
    position: relative;
    background: var(--color-surface);
    overflow: hidden;
    padding: var(--space-xl) 0 var(--space-2xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.trust-ambient-glow {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Top Row: Text + Visual */
/* ============================================
   Resource Section
   ============================================ */

.resource {
    position: relative;
    background: var(--color-primary);
    overflow: hidden;
    padding: var(--space-xl) 0 var(--space-2xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.resource-ambient-glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.resource-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: var(--space-3xl);
    align-items: center;
}

/* Badge */
.resource-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

.resource-badge svg {
    width: 14px;
    height: 14px;
}

/* Title */
.resource-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.resource-title-line {
    display: block;
}

.resource-title-accent {
    color: var(--color-accent);
}

.resource-title-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-cyan));
    margin-bottom: var(--space-lg);
    border-radius: 1px;
}

/* Description */
.resource-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

/* Features */
.resource-features {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.resource-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.resource-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.12);
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    color: var(--color-accent-cyan);
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.1);
}

.resource-feature-icon svg {
    width: 20px;
    height: 20px;
}

/* CTA Button — Outline Style */
.resource-cta {
    display: inline-flex;
    margin-bottom: var(--space-md);
}

/* Trust Text */
.resource-trust {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
}

.resource-trust svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

/* Right Visual */
.resource-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.resource-image {
    width: 100%;
    max-width: 440px;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.resource-visual:hover .resource-image {
    transform: translateY(-6px);
}

/* Resource Responsive */
@media (max-width: 1024px) {
    .resource-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .resource-title-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .resource-desc {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .resource-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .resource-trust {
        justify-content: center;
    }

    .resource-visual {
        order: -1;
    }

    .resource-image {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .resource-features {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .resource-feature {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .trust-card, .service-card, .client-card {
        max-width: 100%;
    }

    .services-top {
        grid-template-columns: 1fr;
    }
    
    .services-featured-card {
        grid-template-columns: 1fr;
    }
    
    .services-featured-visual {
        order: -1;
    }
    
    .services-cards-row {
        grid-template-columns: 1fr;
    }
    
    .services-footer-bar {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-lg);
    }

    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ============================================
   Scroll Animation Enhancements
   ============================================ */

/* Smooth scroll disabled for performance */
html {
    scroll-behavior: auto;
}

/* Prevent overflow on mobile */
img, svg {
    max-width: 100%;
    height: auto;
}

.hero-content, .section-header, .contact-info, .contact-form-wrapper {
    max-width: 100%;
}

/* Hero badge glow */
.hero-badge {
    position: relative;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-accent);
    border-radius: 100px;
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity 0.5s ease;
}

.hero-badge:hover::before {
    opacity: 0.5;
}

/* Button shine effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    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.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

/* Contact form field animations */
.form-group input,
.form-group textarea {
    transition: border-color 0.3s ease, 
                box-shadow 0.3s ease,
                transform 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

/* Footer link hover animation */
.footer a {
    position: relative;
    transition: color 0.3s ease;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

/* Navigation link underline animation */
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Values card hover */
.value-card {
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

/* Stats card glow on hover */
.stat-card:hover .stat-number {
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

/* Mobile menu overlay animation */
.nav {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-list {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}




/* ============================================
   Trust Section — Editorial Layout
   ============================================ */

.trust-editorial {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.trust-editorial-text {
    max-width: 520px;
}

.trust-editorial-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

.trust-statements {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.trust-statement {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.trust-statement-marker {
    width: 8px;
    height: 8px;
    min-width: 8px;
    margin-top: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.trust-statement-content h4 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.trust-statement-content p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Editorial Visual */
.trust-editorial-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.trust-editorial-image {
    width: 100%;
    max-width: 640px;
    height: auto;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
}

.trust-editorial-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, rgba(34, 211, 238, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.trust-editorial-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Proof Strip */
.trust-proof-strip {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: var(--space-xl) 0;
    overflow: hidden;
}

.trust-proof {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 0 var(--space-xl);
    text-align: left;
    flex: 1;
    justify-content: center;
}

.trust-proof-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.12);
    border: 1.5px solid rgba(59, 130, 246, 0.25);
    border-radius: 50%;
    color: var(--color-accent-cyan);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.trust-proof-icon svg {
    width: 20px;
    height: 20px;
}

.trust-proof-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-proof-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
}

.trust-proof-label {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.trust-proof-divider {
    width: 1px;
    height: 48px;
    background: rgba(148, 163, 184, 0.1);
    min-width: 1px;
}

/* Trust Responsive */
@media (max-width: 1024px) {
    .trust-editorial {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .trust-editorial-text {
        max-width: none;
    }

    .trust-statement {
        text-align: left;
        max-width: 480px;
        margin: 0 auto;
    }

    .trust-editorial-visual {
        order: -1;
    }

    .trust-editorial-image {
        max-width: 440px;
    }

    .trust-proof-strip {
        flex-wrap: wrap;
        gap: var(--space-md);
        padding: var(--space-lg);
    }

    .trust-proof {
        flex: 1 1 calc(50% - var(--space-lg));
        padding: var(--space-sm) var(--space-md);
        justify-content: flex-start;
    }

    .trust-proof-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .trust-proof {
        flex: 1 1 100%;
    }

    .trust-editorial-image {
        max-width: 320px;
    }
}

/* ============================================
   Process Section — Timeline Layout
   ============================================ */

.process-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.process-header .section-label {
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: block;
}

.process-header .section-title {
    margin-bottom: var(--space-sm);
}

.process-header .section-subtitle {
    max-width: 500px;
    margin: 0 auto;
}

/* Timeline */
.process-timeline {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Center line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(59, 130, 246, 0.3) 0%, 
        rgba(126, 237, 235, 0.15) 50%,
        rgba(59, 130, 246, 0.05) 100%
    );
    z-index: 0;
}

.process-timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-lg);
    align-items: center;
    min-height: 100px;
    position: relative;
}

.process-timeline-content {
    padding: var(--space-sm);
}

.process-timeline-num {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.process-timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.process-timeline-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    max-width: 320px;
}

.process-timeline-right .process-timeline-content {
    text-align: left;
}

.process-timeline-left .process-timeline-content {
    text-align: right;
}

.process-timeline-left .process-timeline-content p {
    margin-left: auto;
}

/* Timeline Node */
.process-timeline-node {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border: 3px solid var(--color-surface);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}

.process-timeline-line {
    display: none;
}

.process-timeline-empty {
    /* Empty cell for alternating layout */
}

/* Process Responsive */
@media (max-width: 1024px) {
    .process-timeline::before {
        left: 20px;
        transform: none;
    }

    .process-timeline-item {
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: var(--space-md);
        min-height: auto;
        padding: var(--space-md) 0;
    }

    .process-timeline-node {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        align-self: start;
        padding-top: 4px;
    }

    .process-timeline-content {
        grid-column: 2;
        grid-row: 1;
        padding: 0;
        text-align: left;
    }

    .process-timeline-empty {
        display: none;
    }

    .process-timeline-left .process-timeline-content,
    .process-timeline-right .process-timeline-content {
        text-align: left;
    }

    .process-timeline-left .process-timeline-content p {
        margin-left: 0;
    }

    .process-timeline-content p {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .process-timeline-item {
        gap: var(--space-sm);
        padding: var(--space-sm) 0;
    }

    .process-timeline::before {
        left: 16px;
    }

    .process-timeline-node {
        padding-top: 2px;
    }

    .process-timeline-dot {
        width: 14px;
        height: 14px;
    }

    .process-timeline-content h3 {
        font-size: 1.0625rem;
    }

    .process-timeline-content p {
        font-size: 0.875rem;
    }
}

/* ============================================
   Outcomes Section
   ============================================ */

.outcomes {
    position: relative;
    background: var(--color-primary);
    overflow: hidden;
    padding: var(--space-xl) 0 var(--space-2xl);
}

.outcomes-ambient-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.outcomes-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.outcomes-header .section-label {
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: block;
}

.outcomes-header .section-title {
    margin-bottom: 0;
}

.outcomes-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.outcome-block {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-lg);
    align-items: center;
    background: rgba(11, 16, 28, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: border-color 0.3s ease;
}

.outcome-block:hover {
    border-color: rgba(59, 130, 246, 0.15);
}

.outcome-before,
.outcome-after {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.outcome-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
}

.outcome-tag-before {
    color: var(--color-text-muted);
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.outcome-tag-after {
    color: var(--color-accent-cyan);
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.outcome-before p,
.outcome-after p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.outcome-before p {
    color: var(--color-text-muted);
}

.outcome-after p {
    color: var(--color-text-secondary);
}

.outcome-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.outcome-arrow svg {
    width: 24px;
    height: 24px;
}

/* Outcomes Responsive */
@media (max-width: 768px) {
    .outcome-block {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }

    .outcome-arrow {
        transform: rotate(90deg);
        margin: var(--space-sm) auto;
    }

    .outcome-tag {
        margin: 0 auto;
    }
}
