/* CSS Variables */
:root {
    /* Brand palette (Lyto CI) - Cool Contrast Option */
    --color-primary: #1e130d;         /* Deep brand brown */
    --color-primary-light: #3a2516;   /* Slightly lighter brown */
    --color-primary-hover: #2d1c12;   /* Hover state */
    
    /* Gold accents - warm base */
    --color-accent: #d9a441;          /* Primary golden accent */
    --color-accent-light: #f2d9a0;    /* Soft gold / highlight */
    --color-accent-dark: #c28b34;     /* Darker gold for hover/active */
    --color-accent-darker: #a8722a;   /* Deep gold for depth */
    --color-accent-subtle: #faf5e8;   /* Very light gold for backgrounds */
    
    /* NEW: Cool contrast accent - Sage Teal */
    --color-secondary: #6b8e7f;        /* Muted sage teal - cool contrast */
    --color-secondary-light: #8fb3a3;  /* Lighter sage */
    --color-secondary-dark: #4a6b5a;  /* Darker sage for hover - more contrast */
    --color-secondary-darker: #3a5548; /* Very dark sage for active states */
    --color-secondary-subtle: hsl(154, 14%, 98%); /* Very light sage for backgrounds */
    
    /* Brown tones - sophisticated range */
    --color-brown-light: #8b715a;      /* Medium brown */
    --color-brown-medium: #1D0F07;    /* Darkest CI tone */
    --color-brown-dark: #3a2516;      /* Deep brown */
    
    /* Backgrounds - subtle variations */
    --color-bg: #fff8ec;              /* Warm cream background */
    --color-bg-alt: #f7ead6;          /* Section background */
    --color-bg-elevated: #fef9f0;     /* Elevated cards/sections */
    --color-bg-warm: #faf5e8;         /* Warm tinted background */
    --color-bg-dark: #140c08;         /* Dark background */
    --color-bg-overlay: rgba(30, 19, 13, 0.85); /* Dark overlay */
    
    /* Text - refined hierarchy */
    --color-text: #1e130d;            /* Primary text */
    --color-text-light: #1D0F07;      /* Secondary text - darkest CI tone */
    --color-text-muted: #8b715a;      /* Muted text */
    --color-text-on-dark: #fff8ec;    /* Text on dark backgrounds */
    --color-text-on-accent: #1e130d;  /* Text on gold/light backgrounds */
    --color-text-on-secondary: #ffffff; /* Text on sage backgrounds */
    
    /* UI Colors */
    --color-white: #ffffff;
    --color-border: #e3d2bd;
    --color-border-light: #f0e6d4;    /* Subtle borders */
    --color-border-dark: #c9b89a;     /* Stronger borders */
    --color-border-gold: #d9a441;     /* Gold border accent */
    --color-border-sage: #6b8e7f;     /* Sage border accent */
    
    /* Status colors - warm + cool balance */
    --color-success: #6b8e7f;         /* Sage green */
    --color-warning: #d9a441;         /* Gold for warnings */
    --color-error: #a8722a;          /* Deep gold-brown */
    --color-info: #6b8e7f;            /* Sage for info */
    
    --font-serif: 'Newsreader', Georgia, serif;
    --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Tech accent colors – warm + cool balance */
    --color-neon-blue: #6b8e7f;      /* Sage for tech elements */
    --color-neon-cyan: #8fb3a3;      /* Light sage */
    --color-terminal-green: #d9a441;  /* Gold for highlights */
    --color-electric-purple: #1D0F07; /* Darkest CI tone */
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 8rem;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Ensure content sits above floating rectangles */
.header,
.hero,
.strategy,
.operating-system,
.portfolio,
.team,
.cta,
.footer,
.mobile-nav {
    position: relative;
    z-index: 1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 em, h1 em {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-text-on-secondary);
}

.btn-primary:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 107, 90, 0.4);
}

.btn-primary:active {
    background: var(--color-secondary-darker);
    transform: translateY(0);
}

.btn-secondary {
    background: var(--color-secondary-subtle);
    color: var(--color-secondary-dark);
    border: 1px solid var(--color-border-sage);
}

.btn-secondary:hover {
    border-color: var(--color-secondary-dark);
    background: var(--color-secondary-dark);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(74, 107, 90, 0.3);
}

/* Accent button using gold */
.btn-accent {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
}

.btn-accent:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 164, 65, 0.3);
}

/* NEW: Sage button - cool contrast */
.btn-sage {
    background: var(--color-secondary);
    color: var(--color-text-on-secondary);
}

.btn-sage:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 107, 90, 0.4);
}

/* Sage outline button - subtle alternative */
.btn-outline-sage {
    background: transparent;
    color: var(--color-secondary-dark);
    border: 2px solid var(--color-secondary);
}

.btn-outline-sage:hover {
    background: var(--color-secondary-subtle);
    border-color: var(--color-secondary-dark);
    color: var(--color-secondary-dark);
    transform: translateY(-2px);
}

/* Gold outline button - subtle alternative */
.btn-outline-gold {
    background: transparent;
    color: var(--color-accent-dark);
    border: 2px solid var(--color-accent);
}

.btn-outline-gold:hover {
    background: var(--color-accent-subtle);
    border-color: var(--color-accent-dark);
    color: var(--color-accent-darker);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-border-light);
}

.btn-white:hover {
    background: var(--color-bg-elevated);
    border-color: var(--color-border-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 19, 13, 0.1);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.section-tag-light {
    color: var(--color-text-on-dark);
}

/* Header */
.header {
    position: fixed;
    top: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--spacing-lg) * 2);
    max-width: 1200px;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--color-white);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 2px 12px rgba(30, 19, 13, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--color-secondary-dark);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-secondary);
    color: var(--color-text-on-secondary) !important;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(107, 142, 127, 0.3);
}

.nav-cta::after {
    content: '→';
    transition: transform 0.2s ease;
}

.nav-cta:hover::after {
    transform: translateX(3px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu-btn.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--spacing-lg) * 2);
    max-width: 1200px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    flex-direction: column;
    gap: var(--spacing-md);
    border: 1px solid var(--color-border);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    padding: calc(120px + var(--spacing-2xl)) var(--spacing-lg) var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-visual {
    flex-shrink: 0;
}

/* Hero Perspective Grid Background */
.hero-wireframe-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-wireframe-bg .wireframe-svg {
    width: 100%;
    height: 100%;
}

/* Gradient fade overlay - fades from top-left */
.hero-grid-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse 80% 70% at 15% 25%,
        var(--color-bg) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* Perspective Grid Lines - lighter */
.perspective-line {
    stroke: var(--color-accent);
    stroke-width: 0.5;
    opacity: 0;
    fill: none;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawPerspectiveLine 2.5s ease-out forwards;
}

/* Stagger the line animations */
.perspective-line:nth-child(1) { animation-delay: 0.1s; }
.perspective-line:nth-child(2) { animation-delay: 0.15s; }
.perspective-line:nth-child(3) { animation-delay: 0.2s; }
.perspective-line:nth-child(4) { animation-delay: 0.25s; }
.perspective-line:nth-child(5) { animation-delay: 0.3s; }
.perspective-line:nth-child(6) { animation-delay: 0.35s; }
.perspective-line:nth-child(7) { animation-delay: 0.4s; }
.perspective-line:nth-child(8) { animation-delay: 0.45s; }
.perspective-line:nth-child(9) { animation-delay: 0.5s; }

/* Diagonal lines with slightly different timing */
.perspective-diagonal {
    animation-delay: 0.6s;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}

.perspective-diagonal:nth-of-type(4) { animation-delay: 0.65s; }
.perspective-diagonal:nth-of-type(5) { animation-delay: 0.7s; }
.perspective-diagonal:nth-of-type(6) { animation-delay: 0.75s; }
.perspective-diagonal:nth-of-type(7) { animation-delay: 0.8s; }
.perspective-diagonal:nth-of-type(8) { animation-delay: 0.85s; }
.perspective-diagonal:nth-of-type(9) { animation-delay: 0.9s; }
.perspective-diagonal:nth-of-type(10) { animation-delay: 0.95s; }
.perspective-diagonal:nth-of-type(11) { animation-delay: 1.0s; }
.perspective-diagonal:nth-of-type(12) { animation-delay: 1.05s; }
.perspective-diagonal:nth-of-type(13) { animation-delay: 1.1s; }
.perspective-diagonal:nth-of-type(14) { animation-delay: 1.15s; }

@keyframes drawPerspectiveLine {
    to {
        stroke-dashoffset: 0;
        opacity: 0.15;
    }
}

/* Traveling glow segments along lines (Vercel-style) */
.glow-travel {
    stroke: var(--color-accent);
    stroke-width: 1;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 30 570;
    filter: blur(0.5px);
    opacity: 0;
}

/* Horizontal traveling glows */
.glow-h1 {
    animation: glowTravelH 12s linear infinite;
    animation-delay: 2s;
}

.glow-h2 {
    animation: glowTravelH 14s linear infinite;
    animation-delay: 7s;
}

.glow-h3 {
    animation: glowTravelH 11s linear infinite;
    animation-delay: 11s;
}

/* Vertical traveling glows */
.glow-v1 {
    animation: glowTravelV 10s linear infinite;
    animation-delay: 4s;
}

.glow-v2 {
    animation: glowTravelV 12s linear infinite;
    animation-delay: 9s;
}

.glow-v3 {
    animation: glowTravelV 11s linear infinite;
    animation-delay: 6s;
}

@keyframes glowTravelH {
    0% {
        stroke-dashoffset: 600;
        opacity: 0;
    }
    5% {
        opacity: 0.4;
    }
    95% {
        opacity: 0.4;
    }
    100% {
        stroke-dashoffset: -600;
        opacity: 0;
    }
}

@keyframes glowTravelV {
    0% {
        stroke-dashoffset: 300;
        opacity: 0;
    }
    5% {
        opacity: 0.4;
    }
    95% {
        opacity: 0.4;
    }
    100% {
        stroke-dashoffset: -300;
        opacity: 0;
    }
}

/* Green variant for sustainability page */
.hero-grid-green .perspective-line {
    stroke: var(--color-secondary);
    opacity: 0.06;
}

.hero-grid-green .glow-travel {
    stroke: var(--color-secondary-light);
    opacity: 0;
}

.hero-grid-fade-green {
    background: radial-gradient(circle at 15% 15%, rgba(255,248,236,0.9) 0%, rgba(255,248,236,0) 50%);
}

/* Sustainability hero wrapper */
.sustainability-hero-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

.hero-stat-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.stat-card-hero {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    min-width: 200px;
    transition: var(--transition);
}

.stat-card-hero:hover {
    border-color: var(--color-primary);
    transform: translateX(-4px);
}

.stat-label-hero {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
}

.stat-value-hero {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Strategy Section */
.strategy {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
}

.strategy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.strategy-left {
    display: flex;
    flex-direction: column;
}

.strategy-header {
    margin-bottom: var(--spacing-lg);
}

.strategy-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.strategy-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.strategy-attributes {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: calc(0.75rem * 1.6 + var(--spacing-md));
}

.attribute {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-secondary-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.attribute:hover {
    background: rgba(107, 142, 127, 0.1);
}

.attribute-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    color: var(--color-white);
}

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

.attribute-content h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.attribute-content p {
    font-size: 0.875rem;
    color: #1D0F07;
}

/* Global Partner Network Map Attribute */
.attribute-map {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
}

.attribute-map-visual {
    position: relative;
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.world-map-svg {
    width: 100%;
    max-width: 600px;
    height: auto;
    color: var(--color-text);
}

.continent-blob {
    transition: opacity 0.3s ease;
}

.continent-usa,
.continent-europe {
    transition: opacity 0.3s ease;
}

.transatlantic-line {
    stroke: --color-neon-cyan;
    animation: dash-flow 2s linear infinite;
}

@keyframes dash-flow {
    to {
        stroke-dashoffset: -5;
    }
}

.attribute-map:hover .continent-blob {
    opacity: 0.8;
}

.attribute-map:hover .continent-usa,
.attribute-map:hover .continent-europe {
    opacity: 1;
}

/* SVG Pulse dots for active markets - scales with the map */
.pulse-ring-svg {
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
    animation: pulse-ring-svg 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-ring-europe {
    animation-delay: 1s;
}

.pulse-core-svg {
    filter: drop-shadow(0 0 4px #22d3ee);
}

@keyframes pulse-ring-svg {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    60% {
        opacity: 0;
        transform: scale(2.5);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Operating System Section - The Schematic */
.operating-system {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Grid Background Pattern */
.os-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.os-grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, transparent 0%, var(--color-bg-dark) 100%);
}

/* Circuit Connection Lines */
.os-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}

.operating-system:hover .os-connections {
    opacity: 0.4;
}

.connection-line {
    fill: none;
    stroke: var(--color-neon-blue);
    stroke-width: 1.5;
    stroke-dasharray: 8 4;
    filter: url(#glow);
    opacity: 0.5;
    transition: opacity 0.3s ease, stroke 0.3s ease;
}

.connection-line.active {
    stroke: var(--color-neon-cyan);
    opacity: 1;
    stroke-dasharray: none;
    animation: flowLine 2s linear infinite;
}

@keyframes flowLine {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -24; }
}

.os-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.os-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.os-header .section-tag {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-neon-blue);
    letter-spacing: 0.15em;
    background: rgba(107, 142, 127, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(107, 142, 127, 0.2);
}

.os-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.os-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-sans);
    font-weight: 400;
}

/* Bento Grid Layout */
.os-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
        "card1 card2 card3"
        "card4 card5 card5"
        "card6 card6 card6";
    gap: var(--spacing-md);
}

/* Card Base Styles - Glassmorphism Module */
.os-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.os-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.os-card:hover {
    border-color: var(--color-neon-blue);
    box-shadow: 
        0 0 30px rgba(107, 142, 127, 0.2),
        0 0 60px rgba(107, 142, 127, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* Card Size Variations - Grid Areas */
.os-card[data-card="1"] { grid-area: card1; }
.os-card[data-card="2"] { grid-area: card2; }
.os-card[data-card="3"] { grid-area: card3; }
.os-card[data-card="4"] { grid-area: card4; }
.os-card[data-card="5"] { grid-area: card5; }
.os-card[data-card="6"] { grid-area: card6; }

.os-card-inner {
    padding: var(--spacing-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.os-card--wide .os-card-inner {
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: stretch;
}

@media (min-width: 900px) {
    .os-card--wide .os-card-inner {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Metrics-only card styling */
.os-card-inner--metrics-only {
    justify-content: center;
    align-items: center;
}

.os-card-inner--metrics-only .os-card-visual--metrics {
    width: 100%;
    margin-bottom: 0;
    padding: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 900px) {
    .os-card-inner--metrics-only .os-card-visual--metrics {
        padding: var(--spacing-xl);
    }
}

/* Card Connectors - Circuit Nodes */
.os-card-connector {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
}

.os-card:hover .os-card-connector {
    border-color: var(--color-neon-blue);
    box-shadow: 0 0 10px var(--color-neon-blue);
    background: var(--color-neon-blue);
}

.os-card-connector--top {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.os-card-connector--bottom {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.os-card-connector--left {
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
}

.os-card-connector--right {
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
}

/* Card Visual Elements */
.os-card-visual {
    margin-bottom: var(--spacing-md);
    height: 60px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.os-card--wide .os-card-visual {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 900px) {
    .os-card--wide .os-card-visual {
        width: 300px;
    }
}

.os-card-icon {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.os-card:hover .os-card-icon {
    color: var(--color-neon-cyan);
}

/* Mini Graph Visualization */
.os-card-graph {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    flex: 1;
}

.graph-bar {
    flex: 1;
    height: var(--height);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.graph-bar--accent {
    background: var(--color-neon-blue);
    opacity: 0.6;
}

.os-card:hover .graph-bar {
    background: rgba(255, 255, 255, 0.25);
}

.os-card:hover .graph-bar--accent {
    background: var(--color-neon-cyan);
    opacity: 1;
    box-shadow: 0 0 10px var(--color-neon-cyan);
}

/* Code Snippet Visual */
.os-card-visual--code {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.code-snippet {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    line-height: 1.6;
    margin: 0;
    white-space: pre;
    overflow: hidden;
}

.code-keyword { color: #c792ea; }
.code-var { color: var(--color-neon-cyan); }
.code-prop { color: rgba(255, 255, 255, 0.7); }
.code-string { color: var(--color-terminal-green); }
.code-number { color: #f59e0b; }

/* Metrics Visual */
.os-card-visual--metrics {
    flex-direction: row;
    justify-content: space-around;
    width: 200px;
    min-width: 200px;
    height: auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

.metric-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.metric-value {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-neon-cyan);
}

.metric-label {
    font-family: var(--font-sans);
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

.metric-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Card Content */
.os-card--wide .os-card-content {
    flex: 1;
    min-width: 0;
}

.os-card-number {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
    opacity: 1;
}

.os-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
    transition: color 0.3s ease;
}

.os-card:hover h3 {
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.os-card-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

/* OS Card Badge for Multi-Market */
.os-card-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(107, 142, 127, 0.1);
    border: 1px solid rgba(107, 142, 127, 0.3);
    border-radius: var(--radius-sm);
}

.os-card-badge svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--color-terminal-green);
    margin-top: 1px;
}

.os-card-badge span {
    font-size: 0.65rem;
    color: var(--color-terminal-green);
    line-height: 1.4;
    font-weight: 500;
}

/* Syntax Highlighting for Key Terms */
.highlight {
    color: var(--color-accent-dark);
    font-weight: 500;
}

.highlight-alt {
    color: var(--color-secondary);
    font-weight: 600;
}

/* Card Glow Animation on Hover */
@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(107, 142, 127, 0.3); }
    50% { box-shadow: 0 0 40px rgba(107, 142, 127, 0.5); }
}

.os-card.active {
    animation: borderGlow 2s ease-in-out infinite;
}

/* Connected Card State */
.os-card.connected {
    border-color: rgba(107, 142, 127, 0.4);
    background: rgba(107, 142, 127, 0.05);
}

.os-card.connected .os-card-connector {
    border-color: var(--color-neon-blue);
    background: rgba(107, 142, 127, 0.3);
}


/* Portfolio Section */
.portfolio {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg);
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.portfolio-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

/* Portfolio Intro & Life Events Timeline */
.portfolio-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
    line-height: 1.7;
}

/* Full-Width Timeline - Infinite Scroll Animation */
.life-timeline-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Gradient fade edges for smooth appearance */
.life-timeline-wrapper::before,
.life-timeline-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.life-timeline-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg) 0%, transparent 100%);
}

.life-timeline-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-bg) 0%, transparent 100%);
}

.life-timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* The animated track containing both sets of events */
.timeline-track {
    display: flex;
    animation: timeline-scroll 90s linear infinite;
    width: max-content;
}


@keyframes timeline-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.timeline-events {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    gap: 0;
}

.timeline-event {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100px;
    flex-shrink: 0;
    cursor: default;
    padding: 0 8px;
    position: relative;
}

/* Connecting line between events */
.timeline-event::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--color-border) 0%,
        var(--color-accent-light) 50%,
        var(--color-border) 100%
    );
    z-index: -1;
}

/* The dot marker on the timeline */
.timeline-marker {
    width: 14px;
    height: 14px;
    background: var(--color-white);
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--color-white), 0 0 12px rgba(90, 122, 107, 0.3);
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}


.timeline-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border-radius: var(--radius-full);
    border: 2px solid var(--color-border);
    transition: var(--transition);
    flex-shrink: 0;
}


.timeline-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    transition: var(--transition);
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

a.brand-card-large {
    display: block;
    text-decoration: none;
    color: inherit;
}

.brand-card-large {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease,
                border-color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.brand-card-large:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.brand-card-large:hover .brand-cta {
    background: var(--color-secondary-dark);
    color: var(--color-white);
}

.brand-card-large:hover .cta-arrow {
    transform: translateX(4px);
}

.brand-card-large:hover .brand-visual-pattern {
    opacity: 0.6;
}

.brand-visual {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Visual Pattern Overlay */
.brand-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.4) 0%, transparent 40%);
}

/* Floating Geometric Shapes */
.brand-visual-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    transition: transform 0.6s ease;
}

.brand-card-large:hover .floating-shape {
    transform: scale(1.1);
}

/* Hey Balu - Warm, subtle */
.brand-heybalu {
    background: 
        radial-gradient(ellipse at 0% 100%, rgba(251, 191, 36, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
}

.brand-heybalu .floating-shape.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
    top: -30px;
    right: 20%;
    animation: float-slow 8s ease-in-out infinite;
}

.brand-heybalu .floating-shape.shape-2 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.5);
    bottom: 20px;
    left: -20px;
    animation: float-slow 6s ease-in-out infinite reverse;
}

.brand-heybalu .floating-shape.shape-3 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    top: 40%;
    right: 10%;
    animation: float-slow 5s ease-in-out infinite 1s;
}

/* Bo & Birdie - Soft, subtle */
.brand-bobirdie {
    background: 
        radial-gradient(ellipse at 100% 100%, rgba(249, 168, 212, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 0%, rgba(251, 207, 232, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
}

.brand-bobirdie .floating-shape.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(249, 168, 212, 0.15), rgba(244, 114, 182, 0.08));
    top: 10%;
    left: 10%;
    animation: float-slow 7s ease-in-out infinite;
}

.brand-bobirdie .floating-shape.shape-2 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
    bottom: -10px;
    right: 25%;
    animation: float-slow 5s ease-in-out infinite 0.5s;
}

.brand-bobirdie .floating-shape.shape-3 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.4), rgba(249, 168, 212, 0.15));
    top: -20px;
    right: -20px;
    animation: float-slow 9s ease-in-out infinite reverse;
}

/* Famwalls - Cool, subtle */
.brand-famwalls {
    background: 
        radial-gradient(ellipse at 0% 100%, rgba(143, 179, 163, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(107, 142, 127, 0.15) 0%, transparent 50%),
        linear-gradient(160deg, #fef9f0 0%, #f7ead6 50%, #f0e6d4 100%);
}

.brand-famwalls .floating-shape.shape-1 {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(143, 179, 163, 0.15), rgba(107, 142, 127, 0.08));
    bottom: -30px;
    left: 15%;
    animation: float-slow 8s ease-in-out infinite 0.3s;
}

.brand-famwalls .floating-shape.shape-2 {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.5);
    top: 20%;
    right: 10%;
    animation: float-slow 6s ease-in-out infinite;
}

.brand-famwalls .floating-shape.shape-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.5), rgba(147, 197, 253, 0.2));
    top: 10%;
    left: -10px;
    animation: float-slow 7s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Brand Visual Content */
.brand-visual-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    text-align: center;
    padding: var(--spacing-lg);
}

.brand-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
}

.brand-logo {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.brand-card-large:hover .brand-logo {
    transform: scale(1.08) translateY(-4px);
}

.brand-info {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.brand-info p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin: 0;
}

.brand-tags span {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--color-bg);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
}

/* Brand Card Footer with CTA and Social Proof */
.brand-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    gap: var(--spacing-sm);
}

.brand-social-proof {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.brand-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary-dark);
    background: var(--color-secondary-subtle);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.brand-cta:hover {
    background: var(--color-secondary-dark);
    color: var(--color-white);
}

.cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-weight: 400;
}

/* Team Section */
.team {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Team Location Subsection */
.team-location {
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

/* Team Connection Map */
.team-map-bg {
    position: absolute;
    top: 0;
    right: -5%;
    bottom: 0;
    width: 60%;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.connection-map {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Map Connection Lines (dotted) */
.map-connection {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 1.5;
    stroke-dasharray: 6 4;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.map-connection-long {
    stroke-dasharray: 8 6;
    opacity: 0.3;
}

.team:hover .map-connection {
    opacity: 0.6;
}

.team:hover .map-connection-long {
    opacity: 0.5;
}

/* Country Dots */
.country-dot {
    fill: var(--color-accent);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.country-dot-us {
    opacity: 0.4;
}

.team:hover .country-dot {
    opacity: 0.8;
}

/* Hub Dot (Düsseldorf) */
.hub-dot {
    fill: var(--color-accent);
    opacity: 1;
}

.hub-dot-inner {
    fill: var(--color-white);
}

.hub-glow {
    opacity: 0.4;
    animation: hubGlowPulse 2s ease-in-out infinite;
}

@keyframes hubGlowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* Hub Pulse Rings - radiating outward */
.hub-pulse-ring {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 2;
    opacity: 0;
    transform-origin: 420px 180px;
    animation: hubRingPulse 3s ease-out infinite;
}

.hub-pulse-ring-2 {
    animation-delay: 1.5s;
}

@keyframes hubRingPulse {
    0% {
        r: 10;
        opacity: 0.8;
        stroke-width: 3;
    }
    100% {
        r: 60;
        opacity: 0;
        stroke-width: 1;
    }
}

/* Animated Pulse Dots traveling along paths */
.pulse-dot {
    fill: var(--color-accent-light);
    opacity: 0.9;
}

.pulse-dot-us {
    fill: var(--color-neon-cyan);
}

/* Map Labels */
.country-label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 500;
    fill: var(--color-text-muted);
    opacity: 0.6;
    text-anchor: middle;
}

.country-label-us {
    font-size: 8px;
}

.hub-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    fill: var(--color-accent);
    text-anchor: middle;
    opacity: 0.8;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team > .team-container {
    display: block;
}

.team > .team-container > .team-content {
    text-align: center;
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
}

.team-location .team-container {
    min-height: 450px;
    display: flex;
    align-items: center;
}

.team-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding-right: var(--spacing-xl);
}

.team-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-lg);
}

.team-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.team-subtext {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    padding-left: var(--spacing-md);
    border-left: 2px solid var(--color-border);
}

/* Team Grid - Member Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.member-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.member-image-placeholder svg {
    width: 40%;
    height: 40%;
    color: var(--color-text-muted);
    opacity: 0.4;
}

.member-info {
    padding: var(--spacing-lg);
    text-align: center;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.member-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.member-bio {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.member-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: var(--spacing-md);
}

.member-tags span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: var(--color-secondary-subtle);
    color: var(--color-secondary-dark);
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border-sage);
}

.member-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

/* Team Location Subsection */
.team-location {
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--color-border);
}

.team-location .team-container {
    min-height: auto;
}

.team-location .team-content {
    width: 50%;
}

/* Responsive Team Grid */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .team-location .team-content {
        width: 100%;
    }
}

/* CTA Section */
.cta {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-xl);
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.footer-column a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-muted);
}

.footer-column a:hover {
    color: var(--color-primary);
}

/* Footer Markets Trust Badges */
.footer-markets {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.footer-markets-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.footer-market {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--color-text);
    font-weight: 400;
}

.market-flag {
    font-size: 1rem;
}

.footer-market-divider {
    color: var(--color-border);
    font-weight: 300;
}

.footer-seal {
    display: flex;
    justify-content: center;
    padding: var(--spacing-sm) 0;
}

.footer-seal a {
    display: inline-block;
    transition: opacity 0.2s ease;
}

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

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

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

.hero-title,
.hero-subtitle,
.hero-ctas,
.hero-visual {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    animation-delay: 0.1s;
}

.hero-ctas {
    animation-delay: 0.2s;
}

.hero-visual {
    animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav {
        position: relative;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .mobile-nav .nav-cta {
        display: inline-flex;
        margin-top: var(--spacing-sm);
    }
    
    .hero {
        padding-top: calc(80px + var(--spacing-md));
        min-height: 70vh;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-stat-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .strategy-container {
        grid-template-columns: 1fr;
    }
    
    .strategy-attributes {
        margin-top: 0;
    }
    
    .os-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "card1 card2"
            "card3 card4"
            "card5 card5"
            "card6 card6";
    }
    
    
    .os-connections {
        display: none;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .team-content {
        width: 100%;
        padding-right: 0;
    }
    
    .team-map-bg {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 300px;
        margin-top: var(--spacing-lg);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-markets {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .os-bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "card1"
            "card2"
            "card3"
            "card4"
            "card5"
            "card6";
    }
    
    .os-card-visual--metrics {
        width: 100%;
        justify-content: space-between;
    }
    
    .life-timeline-wrapper {
        padding: var(--spacing-md) 0;
    }
    
    .life-timeline-wrapper::before,
    .life-timeline-wrapper::after {
        width: 40px;
    }
    
    .timeline-track {
        animation-duration: 60s;
    }
    
    .timeline-event {
        width: 80px;
        padding: 0 6px;
    }
    
    .timeline-marker {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .timeline-label {
        font-size: 0.5rem;
    }
    
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 5rem;
    }
    
    .header {
        width: calc(100% - var(--spacing-sm) * 2);
        top: var(--spacing-sm);
    }
    
    .nav {
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .logo-img {
        height: 22px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-stat-cards {
        width: 100%;
    }
    
    .stat-card-hero {
        width: 100%;
    }
}

/* ==========================================================================
   JOBS PAGE STYLES
   ========================================================================== */

/* Ensure all job sections are above floating rectangles */
.jobs-hero-new,
.jobs-hero,
.benefits-naturida,
.people-mission,
.reviews,
.life-at-lyto,
.benefits,
.growing,
.insights,
.values,
.process,
.positions,
.contact-person,
.job-detail-hero,
.job-about-lyto,
.job-brands,
.job-description,
.apply-cta {
    position: relative;
    z-index: 1;
}

/* Jobs Hero Section */
.jobs-hero {
    min-height: 90vh;
    padding: calc(120px + var(--spacing-2xl)) var(--spacing-lg) var(--spacing-3xl);
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-2xl);
    max-width: 100%;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.jobs-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.jobs-hero-content,
.jobs-hero-visual {
    position: relative;
    z-index: 2;
}

.jobs-hero-content {
    padding-left: calc((100vw - 1400px) / 2 + var(--spacing-lg));
    flex: 1;
    max-width: 900px;
}

.jobs-hero-visual {
    padding-right: calc((100vw - 1400px) / 2 + var(--spacing-lg));
    flex-shrink: 0;
}

.jobs-hero-title {
    color: var(--color-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.jobs-hero-title em {
    color: #d4af37;
}

.section-tag-light {
    color: #fff;
}

.btn-secondary-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}

.btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.jobs-hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.jobs-hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* =====================================================
   NEW JOBS HERO - Marquee Style (Naturida-inspired)
   ===================================================== */
.jobs-hero-new {
    min-height: auto;
    padding-top: calc(100px + var(--spacing-3xl));
    background: var(--color-bg);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.jobs-hero-content-new {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.jobs-hero-title-new {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.jobs-hero-title-new em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--color-primary);
}

.jobs-hero-subtitle-new {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.jobs-hero-ctas-new {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.jobs-hero-ctas-new .btn {
    background: var(--color-secondary);
    color: var(--color-text-on-secondary);
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.jobs-hero-ctas-new .btn:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 107, 90, 0.3);
}

.jobs-hero-ctas-new .btn-arrow {
    transition: transform 0.3s ease;
}

.jobs-hero-ctas-new .btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Marquee Container */
.marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding-bottom: var(--spacing-lg);
}

.marquee-row {
    width: 100%;
    overflow: hidden;
    margin-bottom: var(--spacing-xs);
}

.marquee-track {
    display: flex;
    gap: var(--spacing-md);
    width: fit-content;
    will-change: transform;
}

/* Left scrolling animation */
.marquee-left .marquee-track {
    animation: marquee-scroll-left 35s linear infinite;
}

/* Right scrolling animation */
.marquee-right .marquee-track {
    animation: marquee-scroll-right 35s linear infinite;
    transform: translateX(-50%); /* Start from offset position */
}

@keyframes marquee-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.marquee-item {
    flex-shrink: 0;
    width: 320px;
    height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.marquee-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marquee-item:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for new hero */
@media (max-width: 768px) {
    .jobs-hero-new {
        padding-top: calc(80px + var(--spacing-xl));
    }
    
    .jobs-hero-content-new {
        margin-bottom: var(--spacing-2xl);
    }
    
    .jobs-hero-title-new {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .jobs-hero-subtitle-new {
        font-size: 1rem;
    }
    
    .marquee-item {
        width: 260px;
        height: 180px;
    }
    
    .marquee-row {
        margin-bottom: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .marquee-item {
        width: 200px;
        height: 140px;
    }
    
    .jobs-hero-ctas-new .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

.jobs-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.jobs-stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
    min-width: 140px;
}

.jobs-stat-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.2);
}

.jobs-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1.2;
}

.jobs-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--spacing-xs);
}

/* People Mission Section */
.people-mission {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--color-white);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-2xl);
}

.mission-content {
    max-width: 600px;
}

.mission-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

.mission-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.mission-visual {
    flex-shrink: 0;
    flex: 1;
    max-width: 500px;
}

.mission-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, #f0f5f2 0%, #e8f0ed 100%);
    border: 1px solid rgba(107, 142, 127, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md) var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* Reviews Section */
.reviews {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.reviews-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.reviews-intro {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.rating-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.rating-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.review-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Life at Lyto Photo Gallery */
.life-at-lyto {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.life-container {
    max-width: 1200px;
    margin: 0 auto;
}

.life-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.life-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: var(--spacing-md);
}

.gallery-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item--large {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

/* Insights Section */
.insights {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    z-index: 1;
}

.insights-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.insights-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
}

.insights-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.insights-visual {
    display: flex;
    justify-content: center;
}

.podcast-preview {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.podcast-preview:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.podcast-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video embed styling - no 3D transform */
.podcast-preview:has(iframe) {
    transform: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 560px;
}

.podcast-preview:has(iframe):hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.podcast-preview iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Benefits Section Naturida Style (Jobs) */
.benefits-naturida {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.benefits-naturida-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-naturida-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.benefit-naturida-card {
    background: #f5f5f4;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.benefit-naturida-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-naturida-icon svg {
    width: 48px;
    height: 48px;
    color: #3d5a3d;
}

.benefit-naturida-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
}

.benefit-naturida-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 640px) {
    .benefits-naturida-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-naturida-card {
        padding: 2rem 1.5rem;
    }
}

/* Benefits Section (Jobs) - Legacy Dark Theme */
.benefits {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.benefits-header .section-tag {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-neon-blue);
    letter-spacing: 0.15em;
    background: rgba(107, 142, 127, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(107, 142, 127, 0.2);
}

.benefits-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-top: var(--spacing-md);
}

.benefits-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-neon-blue);
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(107, 142, 127, 0.15);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-neon-blue) 0%, var(--color-neon-cyan) 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Growing Section */
.growing {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
}

.growing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.growing-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
}

.growing-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.growing-subtext {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    padding-left: var(--spacing-md);
    border-left: 3px solid var(--color-accent);
}

.growing-visual {
    display: flex;
    justify-content: center;
}

.growth-chart {
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-md);
    height: 200px;
    padding: var(--spacing-lg);
    padding-bottom: calc(var(--spacing-lg) + 30px);
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.chart-bar {
    width: 50px;
    height: var(--height);
    background: linear-gradient(180deg, var(--color-border) 0%, #d4d4d4 100%);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    position: relative;
    transition: var(--transition);
}

.chart-bar:hover {
    background: linear-gradient(180deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
}

.chart-bar--accent {
    background: linear-gradient(180deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
}

.chart-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* Values Section */
.values {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg);
}

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

.values-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.values-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.values-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
}

.value-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

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

/* Process Section */
.process {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
}

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

.process-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.process-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.process-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-border) 100%);
}

.process-step {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
    position: relative;
    transition: var(--transition);
}

.process-step::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 32px;
    width: 14px;
    height: 14px;
    background: var(--color-white);
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    box-sizing: content-box;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover::before {
    background: var(--color-accent);
    transform: translateX(-8px) scale(1.2);
    box-shadow: 0 0 0 6px rgba(90, 122, 107, 0.15);
}

.process-step:hover {
    transform: translateX(8px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-darker) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    width: 70px;
    opacity: 0.9;
}

.step-content {
    flex: 1;
    padding-top: 4px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.step-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Open Positions Section */
.positions {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg);
}

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

.positions-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.positions-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.positions-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
}

.positions-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.position-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-sage);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.position-card:hover {
    border-color: var(--color-secondary-dark);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(74, 107, 90, 0.15);
}

/* Compact Position Cards */
.position-card--compact {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    padding: 1.25rem 1.5rem;
    align-items: center;
}

.position-card--compact:hover {
    transform: translateY(-2px);
}

.position-card--compact .position-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.position-card--compact h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.position-card--compact .position-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.position-card--compact .position-desc {
    grid-column: 1;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.position-card--compact .position-arrow {
    grid-column: 2;
    grid-row: 1 / 3;
    font-size: 1.25rem;
    color: var(--color-accent);
    transition: transform 0.2s ease;
}

.position-card--compact:hover .position-arrow {
    transform: translateX(4px);
}

.position-card--initiative {
    background: linear-gradient(135deg, #f0f5f2 0%, #e8f0ed 100%);
    border-color: rgba(107, 142, 127, 0.2);
}

.position-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.position-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.position-location {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.position-type {
    font-size: 0.8rem;
}

.position-type {
    background: var(--color-secondary-subtle);
    color: var(--color-secondary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.position-info p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 500px;
}

.position-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: var(--transition);
}

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

.position-card:hover .position-cta svg {
    transform: translateX(4px);
}

.positions-note {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--color-border);
}

.positions-note p {
    font-size: 1rem;
    color: var(--color-text-light);
}

.positions-note a {
    color: var(--color-accent);
    font-weight: 600;
}

.positions-note a:hover {
    text-decoration: underline;
}

/* Contact Person Section */
.contact-person {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content {
    margin-bottom: var(--spacing-xl);
}

.contact-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

.contact-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.contact-content h2 em {
    color: var(--color-white);
    font-style: italic;
}

.contact-text {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.7;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-avatar {
    flex-shrink: 0;
}

.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.contact-role {
    display: block;
    font-size: 0.85rem;
    color: var(--color-neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-sm);
}

.contact-email {
    font-size: 1rem;
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: var(--transition);
}

.contact-email:hover {
    border-color: var(--color-white);
}

.contact-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: #fff;
    font-size: 0.95rem;
}

.location-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.location-icon svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.location-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.location-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.location-info address,
.contact-location address {
    font-size: 0.9rem;
    font-style: normal;
    color: #fff;
}

/* Podcast Links */
.podcast-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.podcast-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.podcast-link:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.podcast-link svg {
    width: 24px;
    height: 24px;
}

/* Job Detail Page Styles */
.job-detail-hero {
    min-height: 70vh;
    padding: calc(120px + var(--spacing-2xl)) var(--spacing-lg) var(--spacing-3xl);
    display: flex;
    align-items: center;
    background: #FFF8EC;
    position: relative;
    z-index: 1;
}

.job-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(217, 164, 65, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 142, 127, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.job-detail-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Job Detail Hero with Image Layout */
.job-detail-hero--with-image {
    min-height: auto;
    padding: calc(120px + var(--spacing-2xl)) var(--spacing-lg) var(--spacing-2xl);
}

.job-detail-hero-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.job-detail-hero--with-image .job-detail-hero-content {
    flex: 1;
    margin: 0;
    max-width: 600px;
}

.job-detail-hero-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-image-stack {
    position: relative;
    width: 420px;
    height: 480px;
}

.hero-image {
    position: absolute;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image--main {
    width: 340px;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.hero-image--secondary {
    width: 280px;
    height: 220px;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 4px solid var(--color-white);
}

.hero-image-stack:hover .hero-image--main {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-stack:hover .hero-image--secondary {
    transform: translateY(-4px) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

/* Compact Photo Gallery for Job Detail */
.photo-gallery--compact {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
}

@media (max-width: 1200px) {
    .job-detail-hero-wrapper {
        gap: var(--spacing-2xl);
    }
    
    .hero-image-stack {
        width: 360px;
        height: 420px;
    }
    
    .hero-image--main {
        width: 300px;
        height: 340px;
    }
    
    .hero-image--secondary {
        width: 240px;
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .job-detail-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .job-detail-hero--with-image .job-detail-hero-content {
        max-width: 700px;
    }
    
    .job-detail-hero--with-image .job-highlights {
        align-items: flex-start;
    }
    
    .job-detail-hero--with-image .job-meta-badges {
        justify-content: center;
    }
    
    .job-detail-hero-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-stack {
        width: 100%;
        height: 280px;
        position: relative;
    }
    
    .hero-image--main {
        width: 60%;
        height: 240px;
        left: 5%;
        top: 0;
    }
    
    .hero-image--secondary {
        width: 50%;
        height: 150px;
        right: 0;
        bottom: 0;
    }
    
    .photo-gallery--compact {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (max-width: 768px) {
    .job-detail-hero--with-image {
        padding: calc(100px + var(--spacing-lg)) var(--spacing-md) var(--spacing-xl);
    }
    
    .job-detail-hero-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .job-detail-hero--with-image {
        padding: calc(90px + var(--spacing-lg)) var(--spacing-md) var(--spacing-lg);
    }
    
    .photo-gallery--compact {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
        gap: var(--spacing-sm);
    }
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    margin-bottom: var(--spacing-lg);
    transition: var(--transition);
}

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

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

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

.job-detail-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.job-detail-title em {
    font-style: normal;
    font-family: inherit;
    color: var(--color-primary);
    font-weight: 400;
    font-size: 0.5em;
    vertical-align: baseline;
    white-space: nowrap;
    display: inline;
}

.job-detail-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
}

.job-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 500;
}

.highlight-item svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.job-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.meta-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-lg svg {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

/* Job About Lyto Section */
.job-about-lyto {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.job-about-container {
    max-width: 800px;
    margin: 0 auto;
}

.job-about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
}

.job-about-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.job-about-content .highlight-box {
    background: linear-gradient(135deg, #f0f5f2 0%, #e8f0ed 100%);
    border-left: 4px solid var(--color-accent);
    padding: var(--spacing-lg);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-weight: 500;
    color: var(--color-primary);
}

/* Job Brands Section */
.job-brands {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg);
    position: relative;
    z-index: 1;
}

.job-brands-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.job-brands-container h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

.brands-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-2xl);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.brand-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    text-align: left;
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.brand-card .brand-logo {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.brand-card .brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.brand-audience {
    display: block;
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.brand-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Job Description Section */
.job-description {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.job-description-container {
    max-width: 1200px;
    margin: 0 auto;
}

.job-description-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.job-description-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
}

.job-description-header h2 em {
    font-style: normal;
    font-family: inherit;
    color: var(--color-primary);
    font-weight: 400;
    font-size: 0.5em;
    vertical-align: baseline;
    white-space: nowrap;
    display: inline;
}

.job-description-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.job-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.job-detail-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.job-detail-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(90, 122, 107, 0.08);
}

.job-detail-card--benefits {
    background: #FFF8EC;
    border-color: var(--color-border);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, #6366f1 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.job-detail-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
}

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

.job-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.job-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.job-list li:last-child {
    margin-bottom: 0;
}

/* Apply CTA Section */
.apply-cta {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: hsl(154, 14%, 98%);
    color: var(--color-primary);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.apply-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(107, 142, 127, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(217, 164, 65, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.apply-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.apply-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.apply-content h2 em {
    color: var(--color-secondary);
}

.apply-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.apply-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.apply-content .btn svg {
    margin-right: 0.5rem;
}

/* Jobs Page Scroll Animations */
.review-card,
.benefit-card,
.value-card,
.process-step,
.position-card {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.review-card.animate-in,
.benefit-card.animate-in,
.value-card.animate-in,
.process-step.animate-in,
.position-card.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Jobs Page Responsive Styles */
@media (max-width: 1440px) {
    .jobs-hero-content {
        padding-left: var(--spacing-xl);
    }
    
    .jobs-hero-visual {
        padding-right: var(--spacing-xl);
    }
}

@media (max-width: 1024px) {
    .jobs-hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding-top: calc(80px + var(--spacing-md));
        padding-bottom: var(--spacing-2xl);
    }
    
    .jobs-hero-content {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .jobs-hero-visual {
        padding-right: 0;
    }
    
    .jobs-hero-ctas {
        justify-content: center;
    }
    
    .mission-container {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-visual {
        max-width: 100%;
        width: 100%;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-item--large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .insights-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .podcast-preview {
        transform: none;
        max-width: 100%;
        width: 100%;
    }
    
    .podcast-preview:hover {
        transform: scale(1.02);
    }
    
    .podcast-preview:has(iframe):hover {
        transform: translateY(-4px);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .growing-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .growing-subtext {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--color-accent);
        padding-top: var(--spacing-md);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .job-details-grid {
        grid-template-columns: 1fr;
    }
    
    .job-detail-hero {
        min-height: auto;
        padding-top: calc(80px + var(--spacing-md));
    }
    
    .job-detail-hero-content {
        max-width: 100%;
    }
    
    .job-detail-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Job Detail Hero - Mobile Structure */
    .job-detail-hero {
        text-align: center;
        padding: calc(100px + var(--spacing-lg)) var(--spacing-md) var(--spacing-2xl);
    }
    
    .job-detail-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
    }
    
    .job-detail-hero-content .section-tag {
        margin-bottom: 0;
    }
    
    .job-detail-title {
        margin-bottom: 0;
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .job-detail-subtitle {
        margin-bottom: 0;
        font-size: 1rem;
    }
    
    .job-highlights {
        width: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: var(--radius-lg);
        padding: var(--spacing-md) var(--spacing-lg);
        gap: 0;
        margin-bottom: 0;
        box-shadow: 0 4px 16px rgba(0,0,0,0.06);
        align-items: flex-start;
    }
    
    .highlight-item {
        font-size: 0.9rem;
        padding: var(--spacing-sm) 0;
        justify-content: flex-start;
        text-align: left;
    }
    
    .highlight-item:not(:last-child) {
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    
    .job-meta-badges {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-xs);
        margin-bottom: 0;
    }
    
    .meta-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .job-detail-hero .btn-lg {
        width: 100%;
        max-width: 320px;
    }
    
    .jobs-hero {
        background-size: 105% auto !important;
        background-position: center bottom !important;
        padding-bottom: 58vw !important;
        min-height: auto;
    }
    
    .jobs-stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .jobs-stat-card {
        min-width: auto;
        padding: var(--spacing-md);
    }
    
    .jobs-stat-value {
        font-size: 1.5rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .growing-visual {
        width: 100%;
    }
    
    .growth-chart {
        width: 100%;
        gap: var(--spacing-sm);
    }
    
    .chart-bar {
        flex: 1;
        min-width: 0;
        width: auto;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        padding-left: 30px;
    }
    
    .process-timeline::before {
        left: 10px;
    }
    
    .process-step::before {
        left: -26px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    
    .step-number {
        font-size: 2rem;
        width: 50px;
    }
    
    .position-card {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .position-card--compact {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }
    
    .position-card--compact .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        grid-column: 1;
    }
    
    .position-card--compact .position-desc {
        grid-column: 1;
    }
    
    .position-card--compact .position-arrow {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
    }
    
    .position-cta {
        align-self: flex-end;
    }
    
    .contact-card {
        flex-direction: column;
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-location {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .job-detail-hero {
        min-height: auto;
        text-align: center;
        padding-top: calc(80px + var(--spacing-md));
    }
    
    .back-link {
        justify-content: center;
    }
    
    .job-highlights {
        align-items: flex-start;
    }
    
    .job-meta-badges {
        justify-content: center;
    }
    
    .job-about-content .highlight-box {
        border-left: none;
        border-top: 4px solid var(--color-accent);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    
    .brand-card {
        text-align: center;
    }
    
    .brand-card .brand-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    /* Job Detail Hero - Mobile Structure Improvements */
    .job-detail-hero {
        padding: calc(90px + var(--spacing-lg)) var(--spacing-md) var(--spacing-2xl);
    }
    
    .job-detail-hero-content {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .job-detail-hero-content .section-tag {
        margin-bottom: 0;
    }
    
    .job-detail-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 0;
        line-height: 1.15;
    }
    
    .job-detail-title em {
        display: inline;
        font-size: 0.5em;
        margin-top: 0;
        color: var(--color-primary);
        white-space: nowrap;
        font-family: inherit;
    }
    
    .job-detail-subtitle {
        font-size: 1.05rem;
        margin-bottom: 0;
        line-height: 1.6;
        color: var(--color-text-light);
    }
    
    .job-highlights {
        background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.95) 100%);
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: var(--radius-lg);
        padding: var(--spacing-md);
        gap: var(--spacing-xs);
        margin-bottom: 0;
        box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        align-items: flex-start;
    }
    
    .highlight-item {
        font-size: 0.9rem;
        padding: var(--spacing-xs) 0;
        justify-content: flex-start;
        text-align: left;
    }
    
    .highlight-item:not(:last-child) {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-bottom: var(--spacing-sm);
    }
    
    .highlight-item svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .job-meta-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
        margin-bottom: 0;
    }
    
    .meta-badge {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
        justify-content: center;
        background: rgba(255,255,255,0.8);
        border: 1px solid rgba(0,0,0,0.08);
    }
    
    .meta-badge:last-child {
        grid-column: 1 / -1;
    }
    
    .meta-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .job-detail-hero .btn-lg {
        margin-top: var(--spacing-xs);
    }
    
    /* Other 480px styles */
    .jobs-hero {
        background-size: 115% auto !important;
        padding-bottom: 65vw !important;
    }
    
    .jobs-hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .jobs-hero-ctas .btn {
        width: 100%;
    }
    
    .growth-chart {
        gap: var(--spacing-xs);
        padding: var(--spacing-sm);
        padding-bottom: calc(var(--spacing-sm) + 25px);
        width: 100%;
        max-width: 100%;
    }
    
    .chart-bar {
        width: 100%;
        flex: 1;
        min-width: 0;
    }
    
    .chart-label {
        font-size: 0.65rem;
        bottom: -25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
}

/* ==========================================================================
   SUSTAINABILITY PAGE STYLES
   ========================================================================== */

/* Sustainability Hero Section */
.sustainability-hero {
    min-height: 80vh;
    padding: calc(120px + var(--spacing-2xl)) var(--spacing-lg) var(--spacing-3xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-2xl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sustainability-hero-content {
    flex: 1;
    max-width: 650px;
}

.sustainability-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.sustainability-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    max-width: 540px;
    line-height: 1.7;
}

.sustainability-hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.sustainability-hero-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-icon-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-icon {
    width: 180px;
    height: 180px;
    color: var(--color-terminal-green);
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.eco-pulse {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--color-terminal-green);
    opacity: 0;
    animation: pulse-out 3s ease-out infinite;
}

.eco-pulse-2 {
    animation-delay: 1.5s;
}

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

/* Problem Section */
.sustainability-problem {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.sustainability-container {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.problem-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.problem-stat {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.problem-stat:hover {
    border-color: #ef4444;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.1);
}

.problem-stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ef4444;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.problem-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.problem-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Approach Section */
.sustainability-approach {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.approach-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(107, 142, 127, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 142, 127, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.approach-grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, transparent 0%, var(--color-bg-dark) 100%);
}

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

.approach-header .section-tag {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-terminal-green);
    letter-spacing: 0.15em;
    background: rgba(107, 142, 127, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(107, 142, 127, 0.2);
}

.approach-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.approach-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.approach-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 142, 127, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.approach-card:hover {
    border-color: var(--color-terminal-green);
    box-shadow: 
        0 0 30px rgba(107, 142, 127, 0.2),
        0 0 60px rgba(107, 142, 127, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.approach-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.approach-card-icon svg {
    width: 100%;
    height: 100%;
}

.approach-card:hover .approach-card-icon {
    color: var(--color-terminal-green);
}

.approach-card-number {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-terminal-green);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.approach-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
    transition: color 0.3s ease;
}

.approach-card:hover h3 {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.approach-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* Impact Section */
.sustainability-impact {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg);
    position: relative;
    z-index: 1;
}

.impact-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.impact-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.impact-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
    line-height: 1.7;
}

.impact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.impact-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--color-terminal-green);
}

.impact-card-large {
    grid-column: 1 / -1;
    flex-direction: row;
}

.impact-card-visual {
    padding: var(--spacing-xl);
    background: var(--color-secondary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.impact-card-large .impact-card-visual {
    min-width: 280px;
    min-height: auto;
}

.impact-metric {
    text-align: center;
}

.impact-metric-value {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-terminal-green);
    line-height: 1;
}

.impact-metric-unit {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-top: var(--spacing-xs);
}

.impact-card-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.impact-card-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Comparison Section */
.sustainability-comparison {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.comparison-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.comparison-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row-header {
    background: var(--color-bg);
}

.comparison-cell {
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
}

.comparison-cell-label {
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-bg);
}

.comparison-row-header .comparison-cell-label {
    background: transparent;
}

.comparison-row-header .comparison-cell {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.comparison-cell-traditional {
    color: var(--color-text-light);
    background: rgba(239, 68, 68, 0.03);
}

.comparison-cell-ondemand {
    color: var(--color-text);
    background: rgba(107, 142, 127, 0.05);
}

.comparison-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.comparison-icon-bad {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.comparison-icon-good {
    background: rgba(107, 142, 127, 0.15);
    color: var(--color-terminal-green);
}

/* Commitment Section */
.sustainability-commitment {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg);
    position: relative;
    z-index: 1;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.commitment-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.commitment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.commitment-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.commitment-item:hover {
    border-color: var(--color-terminal-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 142, 127, 0.1);
}

.commitment-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(154, 14%, 98%) 0%, hsl(154, 20%, 92%) 100%);
    border-radius: var(--radius-md);
    color: var(--color-secondary);
}

.commitment-item-icon svg {
    width: 24px;
    height: 24px;
}

.commitment-item-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.commitment-item-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Sustainability Responsive Styles */
@media (max-width: 1024px) {
    .sustainability-hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding-top: calc(80px + var(--spacing-md));
        padding-bottom: var(--spacing-2xl);
    }
    
    .sustainability-hero-content {
        max-width: 100%;
    }
    
    .sustainability-hero-subtitle {
        max-width: 100%;
    }
    
    .sustainability-hero-ctas {
        justify-content: center;
    }
    
    .eco-icon-container {
        width: 200px;
        height: 200px;
    }
    
    .eco-icon {
        width: 120px;
        height: 120px;
    }
    
    .eco-pulse {
        width: 140px;
        height: 140px;
    }
    
    .problem-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-cards {
        grid-template-columns: 1fr;
    }
    
    .impact-card-large {
        flex-direction: column;
    }
    
    .impact-card-large .impact-card-visual {
        min-width: auto;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .commitment-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        margin-bottom: var(--spacing-sm);
    }
    
    .comparison-row:last-child {
        margin-bottom: 0;
    }
    
    .comparison-cell-label {
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        background: var(--color-text);
        color: var(--color-white);
        border-bottom: none;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .comparison-row-header {
        display: none;
    }
    
    .comparison-cell-traditional,
    .comparison-cell-ondemand {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
        padding: var(--spacing-md);
    }
    
    .comparison-cell-traditional::before,
    .comparison-cell-ondemand::before {
        content: attr(data-label);
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.7;
    }
    
    .comparison-cell-traditional::before {
        color: #ef4444;
    }
    
    .comparison-cell-ondemand::before {
        color: var(--color-terminal-green);
    }
    
    .comparison-cell .comparison-icon {
        position: absolute;
        right: var(--spacing-md);
        top: 50%;
        transform: translateY(-50%);
    }
    
    .comparison-cell-traditional,
    .comparison-cell-ondemand {
        position: relative;
        padding-right: calc(var(--spacing-md) + 32px);
    }
}

@media (max-width: 480px) {
    .sustainability-hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .sustainability-hero-ctas .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Sustainability Section (Home Page)
   ========================================================================== */

.sustainability-home {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: linear-gradient(180deg, #0a1a14 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.sustainability-home-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sustainability-home-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.sustainability-home-header .section-tag {
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

.sustainability-home-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.15;
}

.sustainability-home-header h2 em {
    font-family: 'Newsreader', Georgia, serif;
    font-style: italic;
    color: #22c55e;
}

.sustainability-home-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.sustainability-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.sustainability-home-card {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 12px;
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sustainability-home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.4) 50%, transparent 100%);
}

.sustainability-home-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.3);
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.04) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(34, 197, 94, 0.1);
}

.sustainability-home-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--spacing-xs);
    color: #22c55e;
}

.sustainability-home-icon svg {
    width: 100%;
    height: 100%;
}

.sustainability-home-metric {
    font-size: 2.25rem;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.sustainability-home-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.sustainability-home-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}

.sustainability-home-footer {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.sustainability-home-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .sustainability-home-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .sustainability-home-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0 var(--spacing-sm);
        text-align: left;
        padding: var(--spacing-md);
    }
    
    .sustainability-home-icon {
        grid-row: span 2;
        width: 36px;
        height: 36px;
        margin: 0;
        align-self: center;
    }
    
    .sustainability-home-metric {
        font-size: 1.5rem;
        margin-bottom: 0.125rem;
    }
    
    .sustainability-home-card h3 {
        display: inline;
        margin-right: 0.25rem;
        font-size: 0.9375rem;
    }
    
    .sustainability-home-card p {
        grid-column: 2;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .sustainability-home-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .sustainability-home-icon {
        grid-row: auto;
        margin: 0 auto var(--spacing-xs);
    }
    
    .sustainability-home-card p {
        grid-column: 1;
    }
    
    .sustainability-home-metric {
        font-size: 1.75rem;
    }
}

