/* ========================================
   CG Experts - Main Stylesheet
   Light Theme, Clean, Conversion-Optimized
   ======================================== */

/* CSS Variables - Light Theme */
:root {
    --accent-main: #CFFF04;
    --accent-blue-mid: #4a8aae;
    --bg-primary: #fafafa;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --text-primary: #0a0a0a;
    --text-secondary: #666666;
    --text-muted: #888888;
    --border-color: #e5e5e5;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 60px rgba(207, 255, 4, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: #0a0a0a;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: var(--transition-base);
    width: calc(100% - 48px);
    max-width: 1400px;
}

.nav.scrolled .nav-container {
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    position: relative;
    background: transparent;
    border-radius: 50px;
    border: 1px solid transparent;
    gap: 24px;
    transition: all 0.3s ease;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-blue-mid);
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-slogan {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.nav-dropdown-trigger:hover {
    color: var(--accent-blue-mid);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(207, 255, 4, 0.1);
}

.nav-dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

.nav-dropdown-contact {
    background: var(--accent-main) !important;
    color: #000 !important;
    font-weight: 800;
    margin: 8px;
    border-radius: 20px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.nav-dropdown-contact:hover {
    background: #b8e600 !important;
}

@media (max-width: 1024px) {
    .nav-slogan {
        display: none;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .nav-toggle {
        display: none;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-main);
    color: #0a0a0a !important;
    box-shadow: 0 2px 8px rgba(207, 255, 4, 0.3);
}

.btn-primary:hover {
    background: #b8e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(207, 255, 4, 0.4);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: #f5f5f5;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(207, 255, 4, 0.25) 0%,
        rgba(74, 138, 174, 0.15) 30%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(207, 255, 4, 0.1);
    border: 1px solid rgba(207, 255, 4, 0.2);
    border-radius: 30px;
    width: fit-content;
    font-size: 0.85rem;
    color: #7a8500;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title .thin-line {
    font-weight: 300;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-main), var(--accent-blue-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-video-container {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    --mouse-x: -500px;
    --mouse-y: -500px;
}

.hero-video-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: radial-gradient(
        400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(207, 255, 4, 0.6) 0%,
        rgba(207, 255, 4, 0.6) 30%,
        transparent 70%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 2px;
    pointer-events: none;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-clients {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    text-align: center;
    font-weight: 400;
    max-width: 700px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Sticky Availability Widget */
.availability-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #000;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 100;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.availability-widget.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Collapsed State */
.widget-collapsed {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
}

.collapsed-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.live-pulse-small {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

/* Expanded State */
.widget-expanded {
    display: none;
    padding: 16px 20px;
    width: auto;
}

.widget-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    min-height: 120px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(207, 255, 4, 0.3);
    border-top-color: var(--accent-main);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.loading-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.availability-widget.expanded .widget-collapsed {
    display: none;
}

.availability-widget.expanded .widget-expanded {
    display: block;
}

.availability-widget.expanded {
    cursor: default;
    border-radius: 16px;
}

.widget-compact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.compact-gif {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.compact-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compact-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.compact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.compact-number {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.compact-number.highlight {
    color: var(--accent-main);
}

.compact-suffix {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.widget-live-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-text {
    font-size: 11px;
    font-weight: 600;
    color: #22c55e;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.widget-cta-line {
    text-align: center;
    margin: 12px 0 8px;
}

.cta-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-main);
}

.widget-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-contact a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.widget-contact a:hover {
    color: var(--accent-main);
}

@media (max-width: 768px) {
    .availability-widget {
        bottom: 16px;
        right: 16px;
        left: 16px;
        min-width: auto;
    }
}

/* ========================================
   Process/Timeline Section
   ======================================== */
.process {
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff, transparent);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 0;
    pointer-events: none;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue-mid);
    margin-bottom: 16px;
}

/* Timeline Layout */
.timeline {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, rgba(207, 255, 4, 0), rgba(207, 255, 4, 1) 18%, rgba(207, 255, 4, 1) 82%, rgba(207, 255, 4, 0));
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-step {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    justify-content: center;
}

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

.step-left-content,
.step-right-content {
    flex: 1;
    padding: 0 2rem;
}

.step-left-content {
    display: flex;
    justify-content: flex-end;
}

.step-right-content {
    display: flex;
    justify-content: flex-start;
}

.step-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--accent-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(207, 255, 4, 0.3);
    z-index: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.step-image {
    position: relative;
    flex-shrink: 0;
    width: 480px;
    height: 270px;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.8s ease-in-out;
    display: block;
}

/* For image cycling containers */
.image-cycle img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.image-cycle img.active {
    opacity: 1;
    position: relative;
}

.step-text {
    max-width: 400px;
    text-align: left;
}

.step-left-content .step-text {
    text-align: right;
}

.step-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.step-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    opacity: 0.7;
    font-style: italic;
    line-height: 1.4;
}

/* Reveal Slider for Step 02 */
.reveal-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.reveal-slider-container .reveal-before {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    opacity: 1;
}

.reveal-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.reveal-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    opacity: 1;
}

.reveal-line-vertical {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-main);
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 0 16px rgba(207, 255, 4, 0.8), 0 0 32px rgba(207, 255, 4, 0.4);
}

/* Pricing Container and Toggle */
.pricing-container {
    margin-top: 1rem;
}

.pricing-toggle {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--accent-main);
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-toggle:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-panel {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    max-width: 400px;
}

.pricing-panel.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.slider-top-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.duration-top,
.price-top {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-top {
    color: var(--text-primary);
}

.starting-at {
    font-size: 0.75rem;
    font-weight: 400;
    font-style: italic;
    color: #999;
    opacity: 0.7;
}

.duration-slider {
    width: 100%;
    display: block;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    border-radius: 2px;
    outline: none;
    margin: 1rem 0;
}

.duration-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-main);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quality-toggles {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.quality-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #ddd;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.quality-btn:hover {
    border-color: var(--accent-main);
    color: var(--text-primary);
}

.quality-btn.active {
    background: var(--accent-main);
    border-color: var(--accent-main);
    color: #000;
    font-weight: 600;
}

/* ========================================
   Portfolio Section
   ======================================== */
.portfolio {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.portfolio {
    position: relative;
}

.portfolio-fade {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-secondary) 80%);
    pointer-events: none;
    z-index: 1;
}

.show-more-btn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 24px auto 0;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.4);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.show-more-btn:hover {
    color: var(--text-primary);
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-top-color: var(--accent-main);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.nda-message {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.nda-gif {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
}

.nda-message p {
    margin: 0;
}

/* Who We Are Section */
.who-we-are {
    padding: 120px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.founders-header {
    text-align: center;
    margin-bottom: 48px;
}

.founders-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.founders-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.founders-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.founders-footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.founders-footer .founders-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.founders-footer .founders-intro {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto 20px;
}

.founders-footer .btn {
    font-size: 0.8125rem;
    padding: 10px 20px;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 48px;
}

.founder-card:nth-child(even) {
    flex-direction: row-reverse;
}

.founder-image {
    width: 280px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.albert-slideshow,
.damian-slideshow {
    position: relative;
}

.albert-slide,
.damian-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: opacity;
    transform: translateZ(0);
}

.albert-slide.active,
.damian-slide.active {
    opacity: 1;
}

.founder-info {
    flex: 1;
    text-align: left;
}

.founder-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.founder-alias {
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
}

.founder-role {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

.founder-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.founder-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.5);
}

.founder-creds span {
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

.who-text {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.who-subtitle {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.portfolio-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image,
.portfolio-video {
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.portfolio-image img,
.portfolio-video video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}



.portfolio-content {
    padding: 24px;
}

.portfolio-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue-mid);
    margin-bottom: 8px;
}

.portfolio-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.portfolio-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Reveal slider - interactive before/after */
.reveal-slider-container {
    position: relative;
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.reveal-slider-container .reveal-before {
    width: 100%;
    height: auto;
    display: block;
}

.reveal-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.reveal-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reveal-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--accent-main);
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 16px rgba(207, 255, 4, 0.8), 0 0 32px rgba(207, 255, 4, 0.4);
}

.reveal-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent-main);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(207, 255, 4, 0.6);
}

.reveal-line::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

/* ========================================
   Team Section (Index Page)
   ======================================== */
.team {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-card.featured {
    border: 2px solid var(--accent-main);
}

.team-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f0f0f0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-image.initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-main);
}

.team-image.initials span {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.team-content {
    padding: 24px;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Team Page (team.html)
   ======================================== */
.team-hero {
    padding: 160px 0 80px;
    background: var(--bg-primary);
    text-align: center;
}

.team-page {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Team Member Image */
.member-image.multiplied {
    position: relative;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .team-member {
        grid-template-columns: 1fr 1fr;
    }
}

.member-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: multiply;
}

.member-image.initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-main);
}

.member-image.initials span {
    font-size: 6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.member-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.member-role {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-blue-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.member-nickname {
    display: block;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.member-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 120px 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.services-note {
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 32px;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 20px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
    border-color: var(--accent-main);
}

.service-card .badge {
    background: var(--accent-main);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 20px;
}

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

.service-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f5f5f5;
}

.service-image-container img,
.service-image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cad-crossfade {
    position: relative;
}

.cad-crossfade .cad-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cad-crossfade .cad-img-1 {
    animation: cadFade 4s infinite;
}

.cad-crossfade .cad-img-2 {
    animation: cadFade 4s infinite 2s;
    opacity: 0;
}

@keyframes cadFade {
    0%, 45% { opacity: 1; }
    55%, 100% { opacity: 0; }
}

.service-image-container .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.service-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.service-price {
    align-self: flex-end;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(207, 255, 4, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    margin-top: 8px;
}

/* ========================================
   ICP Section
   ======================================== */
.icp-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.icp-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.icp-content .section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(207, 255, 4, 0.1);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: 24px;
}

.icp-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.icp-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.icp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.icp-card {
    background: var(--bg-primary);
    border-radius: 20px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.icp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.icp-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f5f5f5;
}

.icp-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.icp-image-container img.icp-mesh {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.icp-image-container:hover img.icp-photo {
    opacity: 0;
}

.icp-image-container:hover img.icp-mesh {
    opacity: 1;
}

.icp-card-content {
    padding: 24px;
}

.icp-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.icp-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.icp-roles {
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 32px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.icp-roles p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.icp-roles strong {
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .icp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .icp-grid {
        grid-template-columns: 1fr;
    }
    
    .icp-section {
        padding: 80px 0;
    }
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 120px 0;
    background: var(--accent-main);
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.info-item:hover {
    opacity: 0.7;
}

.info-icon-large {
    font-size: 48px;
    color: #000;
    font-weight: 900;
    line-height: 1;
}

.info-text-large {
    font-size: 20px;
    color: #000;
    font-weight: 700;
}

.contact-clients {
    font-size: 13px;
    color: rgba(10, 10, 10, 0.6);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-items {
        gap: 40px;
    }
    
    .info-icon-large {
        font-size: 36px;
    }
    
    .info-text-large {
        font-size: 16px;
    }
}

/* ========================================
   Jobs Page
   ======================================== */
.jobs-hero {
    padding: 160px 0 80px;
    background: var(--bg-secondary);
    text-align: center;
}

.why-join {
    padding: 80px 0;
    background: var(--bg-primary);
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-join-card {
    background: var(--bg-secondary);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.why-join-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.why-join-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.why-join-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.why-join-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.open-positions {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.positions-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.job-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: background 0.2s;
}

.job-header:hover {
    background: var(--bg-secondary);
}

.job-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    padding: 4px 12px;
    border-radius: 20px;
}

.job-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.job-toggle:hover {
    background: var(--accent-main);
}

.toggle-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
}

.job-details {
    display: none;
    padding: 0 32px 32px;
    border-top: 1px solid var(--border-color);
}

.job-card.expanded .job-details {
    display: block;
}

.job-section {
    margin-top: 24px;
}

.job-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-section ul {
    margin-left: 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.job-apply {
    margin-top: 32px;
    display: inline-block;
}

.general-application {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.general-application h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.general-application p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hiring-process {
    padding: 80px 0;
    background: var(--bg-primary);
}

.process-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step .step-number {
    width: 56px;
    height: 56px;
    background: var(--accent-main);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-join-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        padding: 20px 24px;
    }
    
    .job-details {
        padding: 0 24px 24px;
    }
    
    .job-title {
        font-size: 18px;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0 30px;
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.main-content {
    position: relative;
    z-index: 1;
    background: #0a0a0a;
    margin-bottom: 500px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact h4,
.footer-legal h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-contact p,
.footer-legal p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--accent-main);
    transition: opacity 0.2s;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-offices .office-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.office-address {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.office-address strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.office-address span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.office-time {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    margin-top: 4px;
}

.office-time::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.office-time.open::before {
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

.office-time.closed::before {
    background: #3b82f6;
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-page {
    padding: 120px 0 80px;
    min-height: 60vh;
    background: var(--bg-primary);
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.legal-page .last-updated {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 12px;
    color: var(--text-primary);
}

.legal-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-legal-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-legal-links .divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Image Optimization
   ======================================== */
img {
    max-width: 100%;
    height: auto;
    content-visibility: auto;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([loading]) {
    opacity: 1;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .timeline::before {
        display: none;
    }
    
    .timeline-step {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-left-content,
    .step-right-content {
        width: 100%;
        padding: 0;
        justify-content: center;
    }
    
    .step-left-content .step-text {
        text-align: left;
    }
    
    .timeline-step .step-number {
        order: -1;
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }
    
    .step-image {
        width: 100%;
        max-width: 400px;
        height: 220px;
    }
    
    .step-text {
        max-width: 400px;
        text-align: center;
    }
    
    .pricing-panel {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 1.5rem 4rem;
        min-height: auto;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .process {
        padding: 80px 0;
    }
    
    .timeline {
        gap: 60px;
    }
    
    .step-text h3 {
        font-size: 1.4rem;
    }
}
