/*
Theme Name: MAK Corporate
Theme URI: https://makg.de/
Author: MAK Development Team
Author URI: https://makg.de/
Description: Modern corporate WordPress theme for M.A.K Germany, inspired by leading chemical industry websites. Features a clean, professional design with full responsiveness and comprehensive page templates.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mak-corporate
Tags: corporate, business, modern, responsive, custom-menu, featured-images, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

:root {
    /* EXACT Colors from KundenWebseite - HSL format */
    --primary: hsl(222, 47%, 11%); /* #0F172A */
    --primary-foreground: hsl(0, 0%, 100%);

    /* Accent an Logo-Farben angepasst (helleres Blau statt Orange) */
    --accent: hsl(210, 40%, 60%);
    --accent-foreground: hsl(0, 0%, 100%);

    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222, 47%, 11%);

    --secondary: hsl(210, 40%, 96.1%);
    --secondary-foreground: hsl(222, 47%, 11%);

    --muted: hsl(210, 40%, 96.1%);
    --muted-foreground: hsl(215, 16%, 47%);

    --border: hsl(214.3, 31.8%, 91.4%);
    --input: hsl(214.3, 31.8%, 91.4%);
    --ring: hsl(222, 47%, 11%);

    --neutral-50: hsl(0, 0%, 98%);
    --neutral-100: hsl(0, 0%, 96%);
    --neutral-900: hsl(0, 0%, 9%);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;

    /* ========================================
       EINHEITLICHE TYPOGRAFIE-SKALA
       ======================================== */
    
    /* Page Title (H1) - z.B. "PRODUCTS & SERVICES" */
    --font-size-h1: clamp(2rem, 5vw, 3rem);
    
    /* Section Title (H2) - z.B. "Our Company", "Services" */
    --font-size-h2: clamp(1.75rem, 4vw, 2.5rem);
    
    /* Subsection Title (H3) - z.B. Card-Titel, Product-Titel */
    --font-size-h3: clamp(1.25rem, 2.5vw, 1.5rem);
    
    /* Small Title (H4) - z.B. Value-Items, Feature-Titel */
    --font-size-h4: clamp(1.125rem, 2vw, 1.25rem);
    
    /* Body Text (Paragraphs) */
    --font-size-body: clamp(1rem, 1.5vw, 1.125rem);
    
    /* Small Text (Labels, Meta) */
    --font-size-small: 0.875rem;
    
    /* Extra Small Text (Badges, Tags) */
    --font-size-xs: 0.75rem;
    
    /* Einheitliche Zeilenhöhe */
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;

    /* ZERO RADIUS */
    --radius: 0rem;

    /* Container */
    --container-max: 1800px;
    --container-padding: 1.5rem; /* px-6 */
}

/* Mobile Typography Scale */
@media (max-width: 767px) {
    :root {
        --font-size-h1: 1.75rem;      /* 28px auf Mobile */
        --font-size-h2: 1.5rem;       /* 24px auf Mobile */
        --font-size-h3: 1.25rem;      /* 20px auf Mobile */
        --font-size-h4: 1.125rem;     /* 18px auf Mobile */
        --font-size-body: 1rem;       /* 16px auf Mobile */
    }
}

@media (min-width: 768px) {
    :root {
        --container-padding: 3rem; /* md:px-12 */
    }
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1;
    text-rendering: optimizeLegibility;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: 0;
    color: var(--foreground);
    letter-spacing: -0.02em; /* tracking-tight */
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    line-height: var(--line-height-tight);
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: var(--line-height-tight);
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 700;
    line-height: var(--line-height-tight);
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: 700;
    line-height: var(--line-height-tight);
}

p {
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
    line-height: var(--line-height-normal);
    font-size: var(--font-size-body);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.15s ease;
}

a:hover {
    color: var(--accent);
    opacity: 0.8;
}

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

/* ============================================
   HEADER & NAVIGATION - FIXED
   ============================================ */

.site-header {
    background-color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Subtilerer Border */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Higher than sustainability tabs (100) */
    transition: all 0.3s ease; /* duration-300 */
    backdrop-filter: blur(10px); /* Moderner Blur-Effekt */
}

.site-header.scrolled {
    padding: 0.5rem 0; /* py-2 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Stärkerer Shadow */
    background-color: rgba(15, 23, 42, 0.98); /* Leicht transparent */
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Mobile: Reduziere Navbar-Höhe */
@media (max-width: 767px) {
    .header-container {
        padding: 0.75rem var(--container-padding);
        gap: 1rem;
    }
    
    .site-logo {
        font-size: 1.5rem;
    }
    
    .site-logo img {
        max-height: 36px;
    }
    
    .main-navigation {
        padding: 0 0.5rem;
    }
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: var(--primary-foreground);
    text-decoration: none;
    letter-spacing: -0.02em; /* tracking-tighter */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.site-logo span:first-child {
    font-weight: 700;
}

.site-logo span:last-child {
    font-weight: 300; /* font-light */
}

.site-logo img {
    max-height: 48px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1); /* Invertiert dunkles Logo zu weiß für dunklen Header */
}

.main-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    padding: 0 1.5rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.lang-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    font-size: 0.9375rem;
}

.lang-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lang-link:hover {
    color: rgba(255, 255, 255, 1);
}

.lang-link:hover::before {
    opacity: 1;
}

.lang-link.active {
    color: var(--accent);
    font-weight: 700;
    background-color: rgba(102, 153, 189, 0.15); /* Accent-Farbe mit Transparenz */
}

.lang-link.active::before {
    opacity: 0;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-menu li {
    position: relative;
}

.main-menu > li > a {
    color: var(--primary-foreground);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 2.75rem;
    text-transform: none;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
    border-radius: 0.375rem;
    white-space: nowrap;
    line-height: 1.5;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.main-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background-color: var(--accent);
    transition: transform 0.3s ease;
}

.main-menu > li > a:hover {
    background-color: rgba(255, 255, 255, 0.08); /* Subtilerer Hover */
    color: var(--primary-foreground);
    transform: translateY(-1px); /* Leichter Lift-Effekt */
}

.main-menu > li > a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu */
.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); /* Stärkerer Shadow */
    list-style: none;
    min-width: 280px; /* Kompaktere Breite */
    padding: 1rem 0; /* Nur vertikales Padding */
    margin-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth Animation */
    border-radius: 0.5rem; /* Mehr abgerundete Ecken */
    display: flex;
    flex-direction: column;
    gap: 0.25rem; /* Kompakterer Abstand */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .sub-menu li {
    margin: 0;
}

.main-menu .sub-menu a {
    padding: 0.875rem 1.5rem; /* Mehr Padding */
    display: flex;
    align-items: center;
    color: var(--foreground);
    font-size: 0.9375rem; /* Größere Schrift */
    font-weight: 500; /* Leichteres Gewicht */
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0.01em;
    line-height: 1.5;
    min-height: 44px;
    border-radius: 0;
    position: relative;
}

.main-menu .sub-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.main-menu .sub-menu a:hover::before {
    transform: scaleY(1);
}

.main-menu .sub-menu a:hover {
    color: var(--accent);
    background-color: hsl(210, 40%, 97%); /* Subtilerer Hover */
    padding-left: 1.75rem; /* Leichte Verschiebung beim Hover */
}

.mobile-menu-toggle {
    display: none; /* Wird in Media Query aktiviert */
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-foreground);
    padding: 0.75rem;
    transition: all 0.2s ease;
    border-radius: 0.375rem;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Close button inside mobile menu */
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    color: var(--primary-foreground);
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    font-weight: 300;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

@media (max-width: 1536px) {
    .mobile-menu-close {
        display: flex;
    }
}

/* ============================================
   HERO SECTION - EXACT FROM KUNDENWEBSEITE
   ============================================ */

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--primary);
    color: var(--primary-foreground);
    overflow: hidden;
    margin-top: 0;
    padding: 6rem 0 3rem; /* Extra top padding for fixed header */
}

@media (min-width: 768px) {
    .hero-section {
        height: 85vh;
        min-height: 600px;
        padding: 5rem 0 0; /* Still need top padding for fixed header */
    }
}

.hero-section .hero-background {
    position: absolute;
    inset: 0; /* absolute inset-0 */
    z-index: 0;
    overflow: hidden;
}

.hero-section .hero-background img,
.hero-section .hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* opacity-40 */
    display: block;
}

.hero-section .hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--primary), rgba(15, 23, 42, 0.8), transparent); /* bg-gradient-to-r from-primary via-primary/80 to-transparent */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

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

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 calc(var(--container-padding) + 2rem);
    }
}

@media (min-width: 1280px) {
    .hero-content {
        padding: 0 calc(var(--container-padding) + 4rem);
    }
}

.hero-content > div {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hero-content > div {
        max-width: 56rem;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-content > div {
        max-width: 64rem;
        gap: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-content > div {
        max-width: 72rem;
        gap: 3rem;
    }
}

.hero-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary-foreground);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--font-size-h2);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(2rem, 4.5vw, 3.25rem);
        line-height: 1.1;
    }
}

.hero-accent-bar {
    height: 0.5rem;
    width: 6rem;
    background-color: var(--accent);
    margin: 0;
}

@media (min-width: 768px) {
    .hero-accent-bar {
        width: 8rem;
    }
}

@media (min-width: 1024px) {
    .hero-accent-bar {
        width: 10rem;
        height: 0.625rem;
    }
}

.hero-subtitle {
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6 !important;
    font-weight: 300;
    max-width: 100%;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.125rem);
        max-width: 40rem;
        margin-top: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: var(--font-size-body);
        line-height: 1.6 !important;
        max-width: 48rem;
        margin-top: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-subtitle {
        font-size: var(--font-size-body);
        max-width: 56rem;
        margin-top: 2rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    flex-direction: column;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        gap: 1.5rem;
        padding-top: 2rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem; /* px-10 */
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius); /* rounded-none */
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.05em; /* tracking-wider */
    text-transform: uppercase;
    height: 3.5rem; /* h-14 */
}

.btn-primary {
    background-color: var(--accent); /* bg-accent */
    color: var(--accent-foreground);
    border: none;
}

.btn-primary:hover {
    background-color: hsl(210, 40%, 50%); /* hover:bg-accent darker blue */
    color: var(--accent-foreground);
}

.btn-secondary {
    background-color: transparent; /* bg-transparent */
    color: var(--primary-foreground);
    border: 2px solid var(--primary-foreground); /* border-2 border-white */
}

.btn-secondary:hover {
    background-color: var(--primary-foreground); /* hover:bg-white */
    color: var(--primary); /* hover:text-primary */
    border-color: var(--primary-foreground);
}

/* ============================================
   CORPORATE GRID SECTION - EXACT
   ============================================ */

.content-section {
    padding: 6rem var(--container-padding); /* py-24 */
    background-color: var(--background); /* bg-white */
}

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

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* gap-12 */
}

@media (min-width: 1024px) {
    .corporate-grid {
        grid-template-columns: repeat(12, 1fr); /* lg:grid-cols-12 */
    }
}

.corporate-grid-left {
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* space-y-8 */
}

@media (min-width: 1024px) {
    .corporate-grid-left {
        grid-column: span 4; /* lg:col-span-4 */
        padding-right: 4rem;
    }
}

@media (min-width: 1280px) {
    .corporate-grid-left {
        padding-right: 6rem;
    }
}

.corporate-grid-left h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: -0.02em; /* tracking-tight */
    line-height: var(--line-height-tight);
    margin-bottom: 0;
}

.corporate-grid-left h2 span {
    color: var(--accent);
}

.corporate-grid-left p {
    font-size: var(--font-size-body);
    color: var(--muted-foreground);
    line-height: var(--line-height-normal);
    margin-bottom: 0;
}

.corporate-grid-right {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 */
}

@media (min-width: 640px) {
    .corporate-grid-right {
        grid-template-columns: repeat(2, 1fr); /* sm:grid-cols-2 */
    }
}

@media (min-width: 768px) {
    .corporate-grid-right {
        grid-template-columns: repeat(3, 1fr); /* md:grid-cols-3 */
    }
}

@media (min-width: 1024px) {
    .corporate-grid-right {
        grid-column: span 8; /* lg:col-span-8 */
        grid-template-columns: repeat(2, 1fr); /* lg:grid-cols-2 */
    }
}

@media (min-width: 1280px) {
    .corporate-grid-right {
        grid-template-columns: repeat(3, 1fr); /* xl:grid-cols-3 */
    }
}

/* Cards - EXACT */
.card {
    background-color: hsl(0, 0%, 98%); /* bg-neutral-50 */
    border-radius: var(--radius);
    padding: 2rem; /* p-8 */
    border: 1px solid hsl(210, 40%, 96.1%); /* border border-neutral-100 */
    transition: all 0.15s ease; /* transition-colors */
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.card:hover {
    border-color: var(--accent); /* accent */
}

.card-title {
    font-size: var(--font-size-h3);
    margin-bottom: 0.75rem; /* mb-3 */
    color: hsl(222, 47%, 11%); /* foreground */
    text-transform: uppercase;
    font-weight: 700;
    line-height: var(--line-height-tight);
}

.card-content {
    color: hsl(215, 16%, 47%); /* muted-foreground */
    font-size: var(--font-size-body);
    line-height: var(--line-height-normal);
    flex-grow: 1;
    margin-bottom: 0; /* no bottom margin needed */
}

.card-link {
    font-size: 0.875rem; /* text-sm */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em; /* tracking-wider */
    color: hsl(222, 47%, 11%); /* primary */
    display: flex;
    align-items: center;
    gap: 0.5rem; /* gap-2 */
    transition: all 0.15s ease;
}

.card:hover .card-link {
    color: var(--accent); /* accent */
}

/* ============================================
   FEATURE SECTION - BOREALIS STYLE
   ============================================ */

.feature-section {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Mobile: Dunkelblauer Rand */
@media (max-width: 767px) {
    .feature-section {
        border-left: var(--container-padding) solid var(--primary);
        border-right: var(--container-padding) solid var(--primary);
        box-sizing: border-box;
    }
}

@media (min-width: 768px) {
    .feature-section {
        grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
    }

    .feature-section-reverse {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-section-reverse .feature-image {
        order: 2;
    }

    .feature-section-reverse .feature-content {
        order: 1;
    }
}

.feature-image {
    position: relative;
    height: 500px; /* h-[500px] */
    overflow: hidden;
}

@media (min-width: 768px) {
    .feature-image {
        height: auto; /* md:h-auto */
        min-height: 500px;
    }
}

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

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.2); /* bg-primary/20 */
    z-index: 1;
    pointer-events: none;
}

.feature-content {
    background-color: var(--primary); /* bg-primary */
    color: var(--primary-foreground);
    padding: 3rem; /* p-12 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .feature-content {
        padding: 6rem; /* md:p-24 */
    }
}

.feature-content .label {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
    font-size: 0.875rem; /* text-sm */
    margin-bottom: 1rem; /* mb-4 */
}

.feature-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: 1.5rem; /* mb-6 */
    color: var(--primary-foreground);
    line-height: var(--line-height-tight);
}

.feature-content p {
    font-size: var(--font-size-body);
    color: rgba(255, 255, 255, 0.7); /* text-white/70 */
    line-height: var(--line-height-normal);
    margin-bottom: 2rem; /* mb-8 */
}

/* Feature Section - White Background Variant */
.feature-content-white {
    background-color: #ffffff;
    color: var(--primary);
}

.feature-content-white .label-dark,
.label-dark {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.feature-content-white .feature-title-dark,
.feature-title-dark {
    color: var(--primary);
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.feature-content-white .feature-text-dark,
.feature-text-dark {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .feature-content-white .feature-text-dark,
    .feature-text-dark {
        font-size: 1.25rem;
        line-height: 1.7;
    }
}

/* Feature Section - Light Variant (Team) */
.feature-section-light {
    background-color: hsl(0, 0%, 98%);
}

.feature-content-light {
    background-color: hsl(0, 0%, 100%);
    color: var(--primary);
}

.label-light {
    color: var(--accent);
}

.feature-title-light {
    color: var(--primary);
}

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

.feature-image-overlay::after {
    background-color: rgba(15, 23, 42, 0.1);
}

/* Feature Stats */
.feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid hsl(210, 40%, 96.1%);
}

.feature-stat-item {
    text-align: center;
}

.feature-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feature-stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Feature Section - Dark Variant (Values) */
.feature-section-dark {
    background-color: var(--primary);
}

.feature-content-dark {
    background-color: var(--primary);
}

.feature-image-dark::after {
    background-color: rgba(15, 23, 42, 0.3);
}

/* Values Highlights */
.values-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

.value-highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-highlight-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.value-highlight-icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    border-radius: 0.375rem;
}

.value-highlight-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-foreground);
    margin: 0 0 0.5rem 0;
}

.value-highlight-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.feature-content .btn {
    width: fit-content; /* w-fit */
    background-color: transparent;
    border: 2px solid var(--primary-foreground);
    color: var(--primary-foreground);
    padding: 0 2rem; /* px-8 */
}

.feature-content .btn:hover {
    background-color: var(--primary-foreground);
    color: var(--primary);
}

/* ============================================
   STATS SECTION - EXACT
   ============================================ */

.stats-section {
    background-color: hsl(222, 47%, 11%); /* Dark blue background - #0F172A */
    color: hsl(0, 0%, 100%); /* White text */
    padding: 4rem var(--container-padding); /* py-16 */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* border-t border-white/10 */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* grid-cols-2 */
    gap: 3rem; /* gap-12 */
    max-width: var(--container-max);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr); /* md:grid-cols-4 */
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space-y-2 */
}

.stat-item h3 {
    font-size: 3rem; /* text-5xl */
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary-foreground);
    line-height: 1;
    text-transform: none;
}

.stat-bar {
    height: 0.25rem; /* h-1 */
    width: 2.5rem; /* w-10 */
    background-color: var(--accent);
}

.stat-item p {
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    color: rgba(255, 255, 255, 0.6); /* text-white/60 */
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
}

/* ============================================
   FOOTER - EXACT
   ============================================ */

.site-footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 5rem var(--container-padding) 2rem; /* pt-20 pb-8 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* gap-12 */
    margin-bottom: 4rem; /* mb-16 */
}

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

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(12, 1fr); /* lg:grid-cols-12 */
    }
}

.footer-brand {
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* space-y-8 */
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 4; /* lg:col-span-4 */
    }
}

.footer-brand .site-logo {
    font-size: 2.25rem; /* text-4xl */
    margin-bottom: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7); /* text-white/70 */
    line-height: 1.6; /* leading-relaxed */
    max-width: 28rem; /* max-w-md */
    font-size: 1.125rem; /* text-lg */
    font-weight: 300; /* font-light */
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 1rem; /* gap-4 */
}

.footer-social a {
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
    background-color: rgba(255, 255, 255, 0.05); /* bg-white/5 */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    border-radius: var(--radius);
    color: var(--primary-foreground);
}

.footer-social a:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.footer-widget {
    grid-column: span 12;
}

@media (min-width: 1024px) {
    .footer-widget {
        grid-column: span 2; /* lg:col-span-2 */
    }
}

.footer-widget h4 {
    color: var(--accent);
    margin-bottom: 1.5rem; /* mb-6 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
}

.footer-widget ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* space-y-4 */
}

.footer-widget ul li {
    margin: 0;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.7); /* text-white/70 */
    transition: all 0.15s ease;
    font-size: 1rem;
}

.footer-widget a:hover {
    color: var(--primary-foreground); /* hover:text-white */
}

.footer-contact {
    grid-column: span 12;
}

@media (min-width: 1024px) {
    .footer-contact {
        grid-column: span 4; /* lg:col-span-4 */
    }
}

.footer-contact h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li {
    margin: 0;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
}

.footer-contact strong {
    color: var(--primary-foreground);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: var(--primary-foreground);
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    margin-top: 1rem; /* pt-4 */
}

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

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 2rem; /* pt-8 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem; /* text-sm */
    color: rgba(255, 255, 255, 0.5); /* text-white/50 */
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom > div {
    display: flex;
    gap: 2rem; /* gap-8 */
    text-transform: uppercase;
    letter-spacing: 0.05em; /* tracking-wider */
    font-weight: 700;
    font-size: 0.75rem; /* text-xs */
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.15s ease;
}

.footer-bottom a:hover {
    color: var(--primary-foreground); /* hover:text-white */
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */

.page-header {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 8rem var(--container-padding) 4rem; /* Extra top padding for fixed header */
    text-align: left;
    margin-top: 0;
}

.page-header h1 {
    font-size: var(--font-size-h1);
    color: var(--primary-foreground);
    margin-bottom: 1.5rem; /* mb-6 */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: var(--line-height-tight);
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-body);
    font-weight: 300;
    line-height: var(--line-height-normal);
    margin-bottom: 0;
}

.page-header .hero-accent-bar {
    width: 6rem;
    height: 0.5rem;
    margin-bottom: 2rem;
}

.page-content {
    padding: 6rem var(--container-padding); /* py-24 */
}

.content-wrapper {
    max-width: 56rem;
    margin: 0 auto;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ============================================
   RESPONSIVE NAVIGATION - Hamburger Menu
   ============================================ */

/* Show hamburger menu on laptops and smaller screens */
@media (max-width: 1536px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 0.375rem;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .header-actions {
        gap: 1rem;
    }

    .language-switcher {
        font-size: 0.8125rem;
    }

    /* Slide-in menu from right */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 360px; /* Breiteres Menü für mehr Platz */
        max-width: 85vw;
        height: 100vh;
        background-color: var(--primary);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        padding: 5rem 2.5rem 2rem; /* Mehr Padding für bessere Lesbarkeit */
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        z-index: 9998;
    }

    .main-navigation.active {
        right: 0;
    }
    
    /* Overlay when menu is open */
    .main-navigation::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0);
        transition: background 0.3s ease;
        pointer-events: none;
        z-index: -1;
    }
    
    .main-navigation.active::before {
        background: rgba(0, 0, 0, 0.5);
        pointer-events: auto;
    }

    .main-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
    }

    .main-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-menu li:last-child {
        border-bottom: none;
    }

    .main-menu > li > a {
        padding: 1.5rem 0; /* Mehr vertikales Padding */
        height: auto;
        font-size: 1.125rem; /* Größere, moderne Schrift im Mobile-Menü */
        letter-spacing: 0.01em; /* Weniger Letter-Spacing */
        justify-content: flex-start;
        white-space: normal;
        line-height: 1.6; /* Bessere Zeilenhöhe */
        min-height: 56px; /* Größere Touch-Targets */
        text-transform: none; /* Keine Uppercase für moderneren Look */
        font-weight: 500; /* Leichteres Gewicht */
    }
    
    .main-menu > li > a::after {
        display: none; /* Keine Underline im Mobile-Menü */
    }

    .main-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 1.5rem 0; /* Mehr Padding */
        margin-left: 1.5rem; /* Mehr Einrückung */
        margin-top: 0.5rem; /* Etwas Abstand oben */
        border: none;
        background: transparent;
        min-width: auto;
        gap: 0.25rem; /* Abstand zwischen Sub-Menü-Items */
    }

    .main-menu .sub-menu a {
        color: rgba(255, 255, 255, 0.7);
        padding: 1rem 0 1rem 1.5rem; /* Mehr Padding, mehr Einrückung */
        font-size: 1.0625rem; /* Größere Schrift */
        line-height: 1.5;
        min-height: 48px; /* Größere Touch-Targets */
        display: flex;
        align-items: center;
    }

    .main-menu .sub-menu a:hover {
        color: var(--primary-foreground);
        background: transparent;
    }
}

/* German Navigation - Show hamburger menu earlier (German text is longer) */
@media (max-width: 1100px) {
    body.lang-de .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius);
    }

    body.lang-de .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    body.lang-de .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 360px; /* Breiteres Menü für mehr Platz */
        max-width: 85vw;
        height: 100vh;
        background-color: var(--primary);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        padding: 5rem 2.5rem 2rem; /* Mehr Padding für bessere Lesbarkeit */
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        z-index: 9998;
    }

    body.lang-de .main-navigation.active {
        right: 0;
    }

    body.lang-de .mobile-menu-close {
        display: flex !important;
    }

    body.lang-de .main-navigation::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0);
        transition: background 0.3s ease;
        pointer-events: none;
        z-index: -1;
    }

    body.lang-de .main-navigation.active::before {
        background: rgba(0, 0, 0, 0.5);
        pointer-events: auto;
    }

    body.lang-de .main-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
    }

    body.lang-de .main-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.lang-de .main-menu li:last-child {
        border-bottom: none;
    }

    body.lang-de .main-menu > li > a {
        padding: 1.5rem 0; /* Mehr vertikales Padding */
        height: auto;
        font-size: 1.125rem; /* Größere, moderne Schrift im Mobile-Menü */
        letter-spacing: 0.01em; /* Weniger Letter-Spacing */
        justify-content: flex-start;
        white-space: normal;
        line-height: 1.6; /* Bessere Zeilenhöhe */
        min-height: 56px; /* Größere Touch-Targets */
        text-transform: none; /* Keine Uppercase */
        font-weight: 500;
    }
    
    body.lang-de .main-menu > li > a::after {
        display: none; /* Keine Underline im Mobile-Menü */
    }
}

/* German Navigation - gleicher Stil wie Englisch */
/* Alle spezifischen deutschen Styles entfernt - verwendet jetzt die Standard-Styles */

/* Mobile Portrait */
@media (max-width: 768px) {
    .language-switcher {
        font-size: 0.75rem;
    }
    
    .header-actions {
        gap: 0.75rem;
    }

    .hero-section {
        height: 60vh;
        min-height: 500px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-widget,
    .footer-contact {
        grid-column: span 12;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Add padding-top to main content to account for fixed header */
.site-main {
    padding-top: 0;
}

body {
    padding-top: 0;
}

/* ============================================
   ADDITIONAL PAGE STYLES
   ============================================ */

/* Page Header Styles */
/* Removed duplicate .page-header definition - using the one above */

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    transition: all 0.15s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(102, 153, 189, 0.2);
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for new pages */
@media (min-width: 768px) {
    .corporate-grid[style*="grid-template-columns: 1fr"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .corporate-grid[style*="grid-template-columns: 1fr"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================
   ABOUT US PAGE LAYOUTS
   ============================================ */

/* Legacy & Mission/Vision Grid - 2 columns on desktop */
.legacy-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .legacy-mission-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

/* Story Section - Professional Design */
.story-section {
    padding: 6rem 0;
    background-color: var(--background);
}

@media (min-width: 1024px) {
    .story-section {
        padding: 8rem 0;
    }
}

.story-container {
    max-width: 90rem;
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .story-header {
        margin-bottom: 5rem;
    }
}

.story-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.story-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.story-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

.story-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .story-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
        align-items: center;
    }
}

.story-image-container {
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .story-image-container {
        order: 1;
    }
}

.story-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background-color: var(--neutral-50);
    padding: 0.5rem;
}

.story-image-frame::before {
    content: '';
    position: absolute;
    inset: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.375rem;
    pointer-events: none;
    z-index: 1;
}

.story-main-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 0.375rem;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    .story-main-image {
        min-height: 600px;
    }
}

.story-image-frame:hover .story-main-image {
    transform: scale(1.03);
}

.story-text-container {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .story-text-container {
        order: 2;
    }
}

.story-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.story-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.7;
    margin: 0;
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .story-lead {
        font-size: 1.375rem;
    }
}

.story-body {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    .story-body {
        font-size: 1.125rem;
    }
}

/* ============================================
   STORY PROFESSIONAL SECTION - IMPROVED DESIGN
   ============================================ */

.story-professional-section {
    padding: 6rem 0;
    background-color: var(--background);
}

@media (min-width: 1024px) {
    .story-professional-section {
        padding: 8rem 0;
    }
}

.story-professional-container {
    max-width: 90rem;
    margin: 0 auto;
}

.story-professional-header {
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .story-professional-header {
        margin-bottom: 5rem;
    }
}

.story-professional-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.story-professional-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

.story-professional-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .story-professional-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 6rem;
        align-items: center;
    }
}

.story-professional-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-professional-lead {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.7;
    margin: 0;
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .story-professional-lead {
        font-size: 1.5rem;
        line-height: 1.8;
    }
}

.story-professional-body {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    .story-professional-body {
        font-size: 1.25rem;
        line-height: 1.9;
    }
}

.story-professional-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--neutral-100);
    aspect-ratio: 4 / 3;
}

.story-professional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-professional-image:hover img {
    transform: scale(1.02);
}

/* Section Headings - Matching Homepage Style */
.section-heading {
    font-size: var(--font-size-h2);
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.section-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.mv-block {
    position: relative;
    padding: 0;
    background: transparent;
}

.mv-mission {
    border-left: none;
}

.mv-vision {
    border-left: none;
}

.mv-inner {
    background-color: hsl(0, 0%, 98%);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid hsl(210, 40%, 96.1%);
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mv-block:hover .mv-inner {
    border-color: var(--accent);
}

.mv-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.mv-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Values Section - Matching Mission & Vision Design */

/* Values Section - Professional Design */
.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .values-header {
        margin-bottom: 5rem;
    }
}

.values-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    position: relative;
    padding-bottom: 1.5rem;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 90rem;
    margin: 0 auto;
}

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

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

.value-card {
    position: relative;
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 0.5rem;
    background-color: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 96.1%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: hsl(210, 40%, 97%);
}

.value-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-image-wrapper img {
    transform: scale(1.05);
}

.value-inner {
    background-color: transparent;
    border-radius: 0;
    padding: 2rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.value-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Our Team - refined layout */
.team-grid {
    margin-top: 2rem;
}

.team-grid .value-card .value-inner {
    padding: 1.75rem;
}

.team-grid .value-image-wrapper {
    height: 180px;
}

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

.team-grid .value-title {
    font-size: 1rem;
}

.team-grid .value-text {
    font-size: 0.95rem;
}

/* Team Cards - mixed design */
/* .team-card-with-image uses default value-card styles */
/* .team-card-simple has no image, just icon */

.team-card-simple .value-inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Our Values - clean numbered list */
.values-list-clean {
    list-style: none;
    margin: 2rem 0 0 0;
    padding: 0;
    display: grid;
    gap: 1.5rem;
}

.value-item-clean {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 96.1%);
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item-clean:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.value-item-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    min-width: 3rem;
}

.value-item-content {
    flex: 1;
}

.value-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.75rem 0;
}

.value-item-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin: 0;
}

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

.value-title {
    font-size: 1.125rem;
    margin: 0 0 1rem 0;
    color: hsl(222, 47%, 11%);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.value-accent-line {
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-bottom: 1.5rem;
    transition: width 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover .value-accent-line {
    width: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.value-text {
    font-size: 0.9375rem;
    color: hsl(215, 16%, 47%);
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Group Structure Grid */
.structure-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 90rem;
    margin: 0 auto;
}

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

@media (min-width: 1024px) {
    .structure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
}

.structure-card {
    padding: 4rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.structure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (min-width: 1024px) {
    .structure-card {
        padding: 6rem 4rem;
    }

    .structure-card:not(:last-child) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }
}

.structure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.structure-card-primary {
    background-color: hsl(222, 47%, 11%); /* Dark blue */
    color: hsl(0, 0%, 100%); /* White text */
}

@media (min-width: 1024px) {
    .structure-card-primary {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.structure-card-secondary {
    background-color: hsl(0, 0%, 100%); /* White background */
    color: hsl(222, 47%, 11%); /* Dark blue text */
    border: 1px solid hsl(214.3, 31.8%, 91.4%);
}

.structure-card-secondary:hover {
    border-color: var(--accent);
}

.structure-label {
    color: var(--accent); /* Accent */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 1.25rem;
}

.structure-card-primary .structure-label {
    color: var(--accent);
}

.structure-card h3 {
    font-size: var(--font-size-h3);
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    text-transform: none;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.structure-card-primary h3 {
    color: hsl(0, 0%, 100%); /* White */
}

.structure-card-secondary h3 {
    color: hsl(222, 47%, 11%); /* Dark blue */
}

.structure-location {
    margin: 0.5rem 0 1rem 0;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.structure-card-primary .structure-location {
    color: rgba(255, 255, 255, 0.75);
}

.structure-card-secondary .structure-location {
    color: hsl(215, 16%, 47%); /* Muted gray */
}

.structure-description {
    font-size: var(--font-size-body);
    line-height: var(--line-height-normal);
    font-weight: 400;
    margin: 0.5rem 0 0 0;
    max-width: 24rem;
}

@media (min-width: 1024px) {
    .structure-description {
        font-size: 1.1875rem;
    }
}

.structure-card-primary .structure-description {
    color: rgba(255, 255, 255, 0.85);
}

.structure-card-secondary .structure-description {
    color: hsl(222, 47%, 11%);
    opacity: 0.75;
}

/* ============================================
   HISTORY TIMELINE
   ============================================ */

.history-timeline {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 3rem 0 0;
}

@media (min-width: 768px) {
    .history-timeline {
        grid-template-columns: repeat(5, 1fr);
        padding: 4rem 0 0;
    }
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 2rem;
    height: 2px;
    background-color: var(--accent);
    display: none;
}

@media (min-width: 768px) {
    .history-timeline::before {
        display: block;
    }
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-bottom: 1px solid hsl(214.3, 31.8%, 91.4%);
    padding-top: 3rem;
}

@media (min-width: 768px) {
    .timeline-item {
        border-bottom: none;
        border-right: 1px solid hsl(214.3, 31.8%, 91.4%);
        padding-top: 4rem;
    }

    .timeline-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 2rem;
        right: -1px;
        width: 2px;
        height: 2rem;
        background-color: var(--accent);
        z-index: 1;
    }

    .timeline-item:last-child {
        border-right: none;
    }
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .timeline-year {
        font-size: 0.9375rem;
        padding: 0 2rem;
        margin-bottom: 2rem;
        text-align: center;
        position: relative;
    }

    .timeline-year::before {
        content: '';
        position: absolute;
        top: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid var(--accent);
    }
}

.timeline-content {
    background-color: transparent;
    border: none;
    padding: 0 1.5rem 2rem;
    width: 100%;
    transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
    .timeline-content {
        padding: 0 2rem 2.5rem;
    }
}

.timeline-item:hover .timeline-content {
    background-color: hsl(0, 0%, 98%);
}

.timeline-content h3 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .timeline-content h3 {
        font-size: 1.1875rem;
        margin-bottom: 1rem;
        text-align: center;
    }
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) {
    .timeline-content p {
        font-size: 1rem;
        text-align: center;
    }
}

/* ============================================
   OUR COMPANIES PAGE
   ============================================ */

.company-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .company-section {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.company-section-alt {
    background-color: hsl(210, 40%, 96.1%);
}

.company-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.company-header {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}

.company-accent-bar {
    width: 4rem;
    height: 4px;
    background-color: var(--accent);
    margin-bottom: 1.5rem;
}

.company-header h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.company-location {
    font-size: 1rem;
    color: hsl(215, 16%, 47%);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-location svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.company-description {
    font-size: 1.125rem;
    color: hsl(215, 16%, 47%);
    line-height: 1.8;
    margin: 0;
}

.company-features {
    margin-top: 0.5rem;
}

.features-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.25rem 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: hsl(222, 47%, 11%);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

.features-list li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.125rem;
    font-size: 1.125rem;
}

.company-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.company-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.company-image:hover img {
    transform: scale(1.03);
}

@media (min-width: 1024px) {
    .company-section-alt .company-section {
        grid-template-columns: 1fr 1fr;
    }

    .company-section-alt .company-image {
        order: 1;
    }

    .company-section-alt .company-content {
        order: 2;
    }
}

/* ============================================
   EXPERTISE & INDUSTRIES PAGE
   ============================================ */

/* Expertise page header - centered */
.page-header-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 42rem;
    margin: 1.5rem auto 0;
    text-align: center;
    display: block;
}

/* Center expertise page header when subtitle exists */
.page-header .container:has(.page-header-subtitle) {
    text-align: center;
}

.page-header .container:has(.page-header-subtitle) h1 {
    text-align: center;
}

.expertise-section-header {
    margin-bottom: 4rem;
    text-align: left;
    max-width: 56rem;
}

.expertise-section-header h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--primary);
}

.expertise-section-header p {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Expertise Sections - Minimalist Clean Design */
.expertise-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 90rem;
    margin: 0 auto;
    border-top: 1px solid hsl(210, 40%, 92%);
}

.expertise-section-item {
    position: relative;
    background: hsl(0, 0%, 100%);
    border: none;
    border-bottom: 1px solid hsl(210, 40%, 92%);
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

@media (min-width: 768px) {
    .expertise-section-item {
        flex-direction: row;
        padding: 0;
    }

    .expertise-section-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.expertise-section-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

@media (min-width: 768px) {
    .expertise-section-item:nth-child(even)::before {
        left: auto;
        right: 0;
    }
}

.expertise-section-item:hover {
    background: hsl(210, 40%, 98%);
    border-bottom-color: hsl(210, 40%, 88%);
}

.expertise-section-item:hover::before {
    transform: scaleY(1);
}

.expertise-section-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: hsl(210, 40%, 97%);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .expertise-section-image {
        width: 45%;
        height: auto;
        min-height: 400px;
    }
}

@media (min-width: 1024px) {
    .expertise-section-image {
        width: 42%;
        min-height: 450px;
    }
}

.expertise-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
    opacity: 0.85;
}

.expertise-section-item:hover .expertise-section-image img {
    opacity: 1;
}

.expertise-section-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background: hsl(0, 0%, 100%);
    justify-content: center;
}

@media (min-width: 768px) {
    .expertise-section-content {
        padding: 4rem 3rem;
        width: 55%;
    }
}

@media (min-width: 1024px) {
    .expertise-section-content {
        padding: 5rem 4rem;
        width: 58%;
    }
}

.expertise-section-title {
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: var(--primary);
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    transition: color 0.3s ease;
}

.expertise-section-item:hover .expertise-section-title {
    color: var(--accent);
}

.expertise-section-intro {
    font-size: 1.0625rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.75;
    margin: 0 0 2rem 0;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .expertise-section-intro {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

.expertise-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expertise-bullet-list li {
    font-size: 1rem;
    color: hsl(222, 47%, 35%);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
}

@media (min-width: 1024px) {
    .expertise-bullet-list li {
        font-size: 1.0625rem;
        padding-left: 1.75rem;
    }
}

.expertise-section-item:hover .expertise-bullet-list li {
    color: hsl(222, 47%, 25%);
}

.expertise-bullet-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 300;
    transition: color 0.3s ease;
}

.expertise-section-item:hover .expertise-bullet-list li::before {
    color: var(--primary);
}

.expertise-section-outro {
    font-size: 1rem;
    color: hsl(222, 47%, 40%);
    line-height: 1.75;
    margin: 0;
    font-weight: 300;
    font-style: normal;
    padding-top: 2rem;
    border-top: 1px solid hsl(210, 40%, 94%);
    transition: color 0.3s ease;
}

@media (min-width: 1024px) {
    .expertise-section-outro {
        font-size: 1.0625rem;
    }
}

.expertise-section-item:hover .expertise-section-outro {
    color: hsl(222, 47%, 30%);
    border-top-color: hsl(210, 40%, 90%);
}

/* Featured first item variant */
.expertise-section-item:first-child,
.expertise-section-item.expertise-section-item--featured {
    border-top: none;
}

.expertise-section-item:first-child .expertise-section-image,
.expertise-section-item.expertise-section-item--featured .expertise-section-image {
    height: 250px;
}

@media (min-width: 768px) {
    .expertise-section-item:first-child .expertise-section-image,
    .expertise-section-item.expertise-section-item--featured .expertise-section-image {
        width: 45%;
        height: auto;
        min-height: 400px;
    }
}

@media (min-width: 1024px) {
    .expertise-section-item:first-child .expertise-section-image,
    .expertise-section-item.expertise-section-item--featured .expertise-section-image {
        width: 42%;
        min-height: 450px;
    }
}

.expertise-section-item:first-child .expertise-section-content,
.expertise-section-item.expertise-section-item--featured .expertise-section-content {
    padding: 3rem 2rem;
}

@media (min-width: 768px) {
    .expertise-section-item:first-child .expertise-section-content,
    .expertise-section-item.expertise-section-item--featured .expertise-section-content {
        padding: 4rem 3rem;
        width: 55%;
    }
}

@media (min-width: 1024px) {
    .expertise-section-item:first-child .expertise-section-content,
    .expertise-section-item.expertise-section-item--featured .expertise-section-content {
        padding: 5rem 4rem;
        width: 58%;
    }
}

.expertise-section-item:first-child .expertise-section-title,
.expertise-section-item.expertise-section-item--featured .expertise-section-title {
    font-size: var(--font-size-h3);
    margin-bottom: 1.5rem;
}

.expertise-section-item:first-child .expertise-section-intro,
.expertise-section-item.expertise-section-item--featured .expertise-section-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .expertise-section-item:first-child .expertise-section-intro {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

/* Featured Sector Section */
.featured-sector {
    background-color: hsl(222, 47%, 11%);
    color: hsl(0, 0%, 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem var(--container-padding);
}

.featured-sector-bg {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    z-index: 1;
}

.featured-sector-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.featured-sector .container {
    position: relative;
    z-index: 10;
}

.featured-sector-content {
    max-width: 48rem;
}

.featured-sector-label {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

.featured-sector-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: hsl(0, 0%, 100%);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.featured-sector-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

/* ============================================
   SUSTAINABILITY PAGE - INEOS STYLE
   ============================================ */

/* Special Header for Innovation/Sustainability - Same as other pages */
.innovation-header {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 8rem var(--container-padding) 4rem; /* Same as .page-header */
    text-align: left;
    margin-top: 0;
}

.innovation-header h1 {
    font-size: var(--font-size-h1);
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.innovation-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-body);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0;
}

.innovation-header .hero-accent-bar {
    background: var(--accent);
    width: 6rem;
    height: 0.5rem;
    margin-bottom: 2rem;
}

/* Tabs Navigation */
.sustainability-tabs-section {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.sustainability-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 1400px;
    margin: 0 auto;
}

.sustainability-tabs::-webkit-scrollbar {
    display: none;
}

.sustainability-tab {
    flex: 0 0 auto;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sustainability-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent, #0066cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sustainability-tab:hover {
    color: #333;
}

.sustainability-tab.active {
    color: #000;
    font-weight: 600;
}

.sustainability-tab.active::after {
    transform: scaleX(1);
}

/* Mobile: 2x2 Grid for Tabs */
@media (max-width: 767px) {
    .sustainability-tabs-section {
        top: 60px;
        padding: 0;
    }

    .sustainability-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow-x: visible;
    }

    .sustainability-tab {
        flex: none;
        padding: 1rem 0.75rem;
        font-size: 0.75rem;
        text-align: center;
        white-space: normal;
        line-height: 1.3;
        border-bottom: 1px solid #e5e5e5;
        border-right: 1px solid #e5e5e5;
    }

    .sustainability-tab:nth-child(2n) {
        border-right: none;
    }

    .sustainability-tab:nth-child(n+3) {
        border-bottom: none;
    }

    .sustainability-tab::after {
        height: 2px;
    }

    .sustainability-tab.active {
        background: hsl(210, 40%, 98%);
    }
}

@media (max-width: 480px) {
    .sustainability-tabs-section {
        top: 55px;
    }

    .sustainability-tab {
        padding: 0.875rem 0.5rem;
        font-size: 0.6875rem;
    }
}

@media (min-width: 768px) {
    .sustainability-tab {
        padding: 1.5rem 3rem;
        font-size: 1.1rem;
    }
}

/* Content Panels */
.sustainability-content {
    background: #f8f9fa;
    min-height: 60vh;
}

.sustainability-panel {
    display: none;
    animation: fadeInPanel 0.4s ease;
}

.sustainability-panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Accordion */
.sustainability-accordion {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.accordion-item {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.accordion-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 3rem;
    background: none;
    border: none;
    cursor: default;
    text-align: left;
}

.accordion-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.accordion-icon {
    display: none;
}

/* Accordion Content - Always visible */
.accordion-content {
    max-height: 2000px;
    overflow: visible;
}

.accordion-content-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 3rem 3rem;
}

@media (min-width: 1024px) {
    .accordion-content-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 0 3rem 4rem;
    }
}

.accordion-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.accordion-text p {
    margin: 0 0 1.5rem;
}

.accordion-text p:last-child {
    margin-bottom: 0;
}

.accordion-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.accordion-text ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.accordion-text ul li:last-child {
    border-bottom: none;
}

.accordion-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: var(--accent, #0066cc);
    border-radius: 50%;
}

.accordion-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.accordion-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {
    .accordion-image img {
        min-height: 400px;
    }
}



/* ============================================
   INVESTORS & MEDIA PAGE
   ============================================ */

.media-main-content {
    padding: 4rem 0 6rem;
    background: hsl(0, 0%, 100%);
}

.media-section {
    margin-bottom: 6rem;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

.media-section:last-child {
    margin-bottom: 0;
}

.section-title-centered {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 3rem 0;
    text-transform: uppercase;
    line-height: var(--line-height-tight);
    letter-spacing: 0.05em;
    text-align: center;
}

.section-description-centered {
    font-size: 1rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0 0 3rem 0;
    text-align: center;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

/* 5.1 Group News - INEOS Style */
.group-news-section {
    padding: 0;
}

.group-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.group-news-card {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.group-news-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.group-news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: hsl(210, 40%, 96%);
}

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

.group-news-card:hover .group-news-image img {
    transform: scale(1.1);
}

.group-news-content {
    padding: 1.5rem;
}

.group-news-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(222, 47%, 50%);
    margin-bottom: 0.75rem;
}

.group-news-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.group-news-card:hover h3 {
    color: var(--accent);
}

.group-news-date {
    font-size: 0.8125rem;
    color: hsl(222, 47%, 45%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 5.2 Press Releases - LANXESS Style */
.press-releases-section {
    padding: 0;
}

.press-releases-list-clean {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
}

.press-release-item-clean {
    padding: 2.5rem 0;
    border-bottom: 1px solid hsl(210, 40%, 90%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.press-release-item-clean:last-child {
    border-bottom: none;
}

.press-release-item-clean:hover {
    background: hsl(0, 0%, 99%);
}

.press-release-badge-clean {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}


.press-release-content-clean {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .press-release-content-clean {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
}

.press-release-text-clean {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.press-release-title-clean {
    font-size: var(--font-size-h3);
    font-weight: 400;
    color: hsl(222, 47%, 11%);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.press-release-item-clean:hover .press-release-title-clean {
    color: var(--accent);
}

.press-release-paragraph-clean {
    font-size: 1rem;
    color: hsl(215, 16%, 47%);
    margin: 0.75rem 0 0 0;
    line-height: 1.6;
}

.press-release-date-clean {
    font-size: 0.875rem;
    color: hsl(222, 47%, 40%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.press-release-image-clean {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: hsl(210, 40%, 96%);
}

@media (min-width: 1024px) {
    .press-release-image-clean {
        height: 150px;
    }
}

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

.press-release-arrow-clean {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent);
    color: hsl(0, 0%, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 300;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.press-release-item-clean:hover .press-release-arrow-clean {
    opacity: 1;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-arrow,
.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    text-decoration: none;
    color: hsl(222, 47%, 40%);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pagination-number.active {
    background: var(--accent);
    color: hsl(0, 0%, 100%);
}

.pagination-arrow:hover,
.pagination-number:hover:not(.active) {
    background: hsl(210, 40%, 96%);
    color: hsl(222, 47%, 11%);
}

/* Press Release Modal - Professional Design */
.press-release-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    padding: 2rem;
}

.press-release-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: hsl(0, 0%, 100%);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(40px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    border-top: 5px solid var(--accent);
}

.press-release-modal.active .modal-content {
    transform: translateY(0);
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: hsl(210, 40%, 96%);
}

.modal-content::-webkit-scrollbar-thumb {
    background: hsl(222, 47%, 70%);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: hsl(222, 47%, 11%);
    color: hsl(0, 0%, 100%);
    border: none;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
    background: var(--accent);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 153, 189, 0.4);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3.5rem 2rem;
    border-bottom: 1px solid hsl(210, 40%, 92%);
    background: hsl(0, 0%, 100%);
}

.modal-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    background: rgba(102, 153, 189, 0.12);
    border-radius: 4px;
    border: 1px solid rgba(102, 153, 189, 0.2);
}

.modal-date {
    font-size: 0.875rem;
    color: hsl(222, 47%, 45%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 2.5rem 3.5rem 2.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    padding-bottom: 0;
    border-bottom: none;
    max-width: 90%;
}

.modal-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: hsl(210, 40%, 96%);
    margin: 0;
    position: relative;
}

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

.modal-body {
    padding: 3.5rem;
    background: hsl(0, 0%, 100%);
}

.modal-content-text {
    font-size: 1.1875rem;
    color: hsl(222, 47%, 28%);
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 75ch;
}

.modal-content-text p {
    margin: 0 0 2.25rem 0;
}

.modal-content-text p:last-child {
    margin-bottom: 0;
}

.modal-content-text p:first-child,
.modal-content-text .modal-intro {
    font-size: 1.3125rem;
    font-weight: 500;
    color: hsl(222, 47%, 15%);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.modal-content-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 2.5rem 0 1rem 0;
    line-height: 1.3;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid hsl(210, 40%, 92%);
}

.modal-content-text h3:first-of-type {
    margin-top: 0;
}

.modal-actions {
    display: flex;
    gap: 1.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid hsl(210, 40%, 92%);
    flex-wrap: wrap;
}

.modal-download,
.modal-share {
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.modal-download::before,
.modal-share::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s ease;
    z-index: 0;
}

.modal-download span,
.modal-share span {
    position: relative;
    z-index: 1;
}

.modal-download:hover,
.modal-share:hover {
    color: hsl(0, 0%, 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 153, 189, 0.3);
}

.modal-download:hover::before,
.modal-share:hover::before {
    left: 0;
}

.modal-share {
    border-color: hsl(222, 47%, 11%);
    color: hsl(222, 47%, 11%);
}

.modal-share::before {
    background: hsl(222, 47%, 11%);
}

.modal-share:hover {
    color: hsl(0, 0%, 100%);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

@media (max-width: 768px) {
    .media-main-content {
        padding: 4rem 0 6rem;
    }

    .media-section {
        margin-bottom: 5rem;
        padding: 2.5rem 1.5rem !important;
    }

    .section-title {
        font-size: 1.875rem;
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-description {
        text-align: center;
        font-size: 1.0625rem;
}

    .group-news-list {
        grid-template-columns: 1fr;
    }

    .press-release-item {
        padding: 2rem 1.5rem;
    }

    .press-release-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }

    .press-release-image {
        height: 200px;
    }

    .media-library-cards {
        grid-template-columns: 1fr;
    }

    .events-list {
        grid-template-columns: 1fr;
    }

    .publications-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 1rem;
    }

    .modal-header {
        padding: 2rem 1.5rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .modal-title {
        margin: 1.5rem 1.5rem 1.5rem;
        font-size: 1.5rem;
        max-width: 100%;
    }

    .modal-image {
        height: 250px;
    }

    .modal-body {
        padding: 2rem 1.5rem;
    }

    .modal-content-text {
        font-size: 1.0625rem;
    }

    .modal-content-text p:first-child {
        font-size: 1.1875rem;
    }

    .modal-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-download,
    .modal-share {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
}

/* 5.1 Group News */
.group-news-section {
    background: hsl(0, 0%, 100%);
    padding: 4rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(210, 40%, 94%);
}

/* 5.3 Media Library - Carousel Design */
.media-library-section {
    padding: 0;
}

.media-library-carousel-wrapper {
    position: relative;
    max-width: 75rem;
    margin: 3rem auto 0;
    padding: 0 4rem;
}

.media-library-carousel {
    overflow: hidden;
    position: relative;
}

.media-library-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.media-library-card-ultimate {
    min-width: 100%;
    flex-shrink: 0;
    cursor: pointer;
}

@media (min-width: 768px) {
    .media-library-image-item {
        min-width: calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .media-library-image-item {
        min-width: calc(33.333% - 1.333rem);
    }
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background: hsl(0, 0%, 100%);
    border: 2px solid hsl(210, 40%, 92%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-button:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(102, 153, 189, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--accent);
    transition: stroke 0.3s ease;
}

.carousel-button:hover svg {
    stroke: hsl(0, 0%, 100%);
}

.carousel-button-prev {
    left: 0;
}

.carousel-button-next {
    right: 0;
}

.carousel-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-button:disabled:hover {
    background: hsl(0, 0%, 100%);
    border-color: hsl(210, 40%, 92%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: hsl(210, 40%, 85%);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: hsl(210, 40%, 70%);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--accent);
    width: 2rem;
    border-radius: 0.375rem;
}

@media (max-width: 767px) {
    .media-library-carousel-wrapper {
        padding: 0 3rem;
    }

    .carousel-button {
        width: 2.5rem;
        height: 2.5rem;
    }

    .carousel-button svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Media Library Modal */
.media-library-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    padding: 2rem;
}

.media-library-modal.active {
    opacity: 1;
    visibility: visible;
}

.media-library-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.media-library-modal-content {
    position: relative;
    background: hsl(0, 0%, 100%);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(40px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    border-top: 5px solid var(--accent);
}

.media-library-modal.active .media-library-modal-content {
    transform: translateY(0);
}

.media-library-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: hsl(222, 47%, 11%);
    color: hsl(0, 0%, 100%);
    border: none;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.media-library-modal-close:hover {
    background: var(--accent);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 153, 189, 0.4);
}

.media-library-modal-header {
    padding: 3rem 3rem 2rem;
    border-bottom: 1px solid hsl(210, 40%, 92%);
    background: hsl(0, 0%, 100%);
}

.media-library-modal-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.75rem 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.media-library-modal-subtitle {
    font-size: 1rem;
    color: hsl(222, 47%, 45%);
    margin: 0;
    line-height: 1.6;
}

.media-library-modal-body {
    padding: 2.5rem 3rem 3rem;
    background: hsl(0, 0%, 100%);
}

.media-library-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.media-library-image-card {
    border-radius: 0.75rem;
    overflow: hidden;
    background: hsl(0, 0%, 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.media-library-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(102, 153, 189, 0.25);
}

.media-library-image-card-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: hsl(210, 40%, 96%);
}

.media-library-image-card-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.media-library-image-card:hover .media-library-image-card-wrapper img {
    transform: scale(1.15);
}

.media-library-image-card {
    cursor: pointer;
}

.media-library-image-card-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.media-library-image-card:hover .media-library-image-card-wrapper::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .media-library-modal {
        padding: 1rem;
    }

    .media-library-modal-content {
        max-height: 95vh;
    }

    .media-library-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .media-library-modal-body {
        padding: 1.5rem;
    }

    .media-library-images-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
}

    .media-library-image-card-wrapper {
        height: 250px;
    }
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    padding: 2rem;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.image-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.image-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: hsl(0, 0%, 100%);
    color: hsl(222, 47%, 11%);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-lightbox-close:hover {
    background: var(--accent);
    color: hsl(0, 0%, 100%);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 153, 189, 0.4);
}

.image-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-lightbox.active .image-lightbox-content {
    transform: scale(1);
}

.image-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .image-lightbox {
        padding: 1rem;
    }

    .image-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }

    .image-lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
}

.media-library-image-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.media-library-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(102, 153, 189, 0.25);
}

.media-library-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: hsl(210, 40%, 96%);
}

.media-library-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.media-library-image-item:hover .media-library-image-wrapper img {
    transform: scale(1.1);
}

.media-library-image-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.media-library-image-item:hover::after {
    opacity: 1;
}

.media-library-card-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.media-library-card-ultimate:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 48px rgba(102, 153, 189, 0.25);
    transform: translateY(-8px);
}

.media-library-card-ultimate:hover::before {
    transform: scaleX(1);
}

.media-library-card-header {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(to bottom, hsl(210, 40%, 98%), hsl(0, 0%, 100%));
}

.media-library-icon-box {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, rgba(102, 153, 189, 0.15), rgba(15, 23, 42, 0.06));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid hsl(210, 40%, 92%);
}

.media-library-card-ultimate:hover .media-library-icon-box {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-color: var(--accent);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(102, 153, 189, 0.3);
}

.media-library-icon {
    width: 2.25rem;
    height: 2.25rem;
    stroke: var(--accent);
    transition: all 0.4s ease;
}

.media-library-card-ultimate:hover .media-library-icon {
    stroke: hsl(0, 0%, 100%);
    transform: scale(1.1);
}

.media-library-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(222, 47%, 60%);
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.media-library-card-ultimate:hover .media-library-number {
    color: var(--accent);
}

.media-library-card-body {
    padding: 0 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.media-library-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.media-library-card-ultimate:hover .media-library-card-body h3 {
    color: var(--accent);
}

.media-library-card-body p {
    font-size: 0.9375rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0;
}

.media-library-card-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid hsl(210, 40%, 92%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: hsl(210, 40%, 99%);
    transition: background 0.3s ease;
}

.media-library-card-ultimate:hover .media-library-card-footer {
    background: hsl(0, 0%, 100%);
}

.media-library-link-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.media-library-link-arrow {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--accent);
    transition: all 0.3s ease;
}

.media-library-card-ultimate:hover .media-library-link-arrow {
    transform: translateX(4px);
    stroke: var(--primary);
}

/* 5.4 Events & Exhibitions - Ultimate Design */
.events-section {
    padding: 0;
}

.events-grid-ultimate {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}

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

.event-card-ultimate {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 1rem;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.event-card-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.event-card-ultimate:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 48px rgba(102, 153, 189, 0.25);
    transform: translateY(-8px);
}

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

.event-card-top {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(to bottom, hsl(210, 40%, 98%), hsl(0, 0%, 100%));
}

.event-date-ultimate {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.event-month-ultimate {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.event-year-ultimate {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    line-height: 1;
}

.event-badge-ultimate {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: rgba(102, 153, 189, 0.12);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(102, 153, 189, 0.2);
}

.event-card-content-ultimate {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-card-content-ultimate h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.event-card-ultimate:hover .event-card-content-ultimate h3 {
    color: var(--accent);
}

.event-card-content-ultimate p {
    font-size: 0.9375rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0;
}

.event-meta-ultimate {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid hsl(210, 40%, 92%);
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: hsl(222, 47%, 45%);
    font-weight: 500;
}

.event-meta-icon {
    width: 1.125rem;
    height: 1.125rem;
    stroke: var(--accent);
    flex-shrink: 0;
}

/* 5.5 Publications - Ultimate Design */
.publications-section {
    padding: 0;
}

.publications-grid-ultimate {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}

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

.publication-card-ultimate {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 1rem;
    padding: 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.publication-card-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.publication-card-ultimate:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 48px rgba(102, 153, 189, 0.25);
    transform: translateY(-8px);
}

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

.publication-card-icon-wrapper {
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(to bottom, hsl(210, 40%, 98%), hsl(0, 0%, 100%));
}

.publication-icon-svg {
    width: 3rem;
    height: 3rem;
    stroke: var(--accent);
    transition: all 0.4s ease;
}

.publication-card-ultimate:hover .publication-icon-svg {
    stroke: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.publication-card-content {
    padding: 0 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.publication-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.publication-card-ultimate:hover .publication-card-content h3 {
    color: var(--accent);
}

.publication-card-content p {
    font-size: 0.9375rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0;
}

.publication-card-action {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid hsl(210, 40%, 92%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: hsl(210, 40%, 99%);
    transition: background 0.3s ease;
}

.publication-card-ultimate:hover .publication-card-action {
    background: hsl(0, 0%, 100%);
}

.publication-card-action span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.publication-arrow-svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--accent);
    transition: all 0.3s ease;
}

.publication-card-ultimate:hover .publication-arrow-svg {
    transform: translateX(4px);
    stroke: var(--primary);
}

/* Events & Exhibitions - Simple Design */
.events-list-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}

.event-item-simple {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.event-item-simple:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.event-date-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 5rem;
    padding: 0.75rem 1rem;
    background: hsl(210, 40%, 98%);
    border-radius: 0.5rem;
    text-align: center;
}

.event-month-simple {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.event-year-simple {
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    line-height: 1;
}

.event-content-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-content-simple h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    line-height: 1.3;
}

.event-content-simple p {
    font-size: 0.9375rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.6;
    margin: 0;
}

.event-details-simple {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: hsl(222, 47%, 45%);
}

.event-location-simple,
.event-booth-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 767px) {
    .event-item-simple {
        flex-direction: column;
        gap: 1rem;
    }

    .event-date-simple {
        flex-direction: row;
        justify-content: space-between;
        min-width: auto;
        width: 100%;
    }

    .event-details-simple {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Publications - Simple Design */
.publications-list-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}

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

.publication-item-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.publication-item-simple:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.publication-content-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.publication-content-simple h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.publication-item-simple:hover .publication-content-simple h3 {
    color: var(--accent);
}

.publication-content-simple p {
    font-size: 0.9375rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.6;
    margin: 0;
}

.publication-action-simple {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.publication-action-simple span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.publication-action-simple svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--accent);
    transition: transform 0.3s ease;
}

.publication-item-simple:hover .publication-action-simple svg {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .publication-item-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .publication-action-simple {
        align-self: flex-end;
    }
}

.press-photos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .press-photos-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
        padding: 0 3rem;
    }
}

.press-photo-item {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: hsl(210, 40%, 96%);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.press-photo-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 0.75rem;
}

.press-photo-item:hover::before {
    opacity: 1;
}

@media (min-width: 768px) {
    .press-photos-grid .press-photo-item:first-child {
        height: 100%;
        grid-row: 1 / 3;
    }

    .press-photos-grid .press-photo-item:not(:first-child) {
        height: 200px;
    }
}

.press-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.press-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.press-photo-item:hover img {
    transform: scale(1.1);
}

.photo-count {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: hsl(0, 0%, 100%);
    color: hsl(222, 47%, 11%);
    font-size: 1.75rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.press-photo-item:hover .photo-count {
    background: var(--accent);
    color: hsl(0, 0%, 100%);
    transform: scale(1.1);
}

.media-library-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    display: block;
    text-align: center;
    max-width: 22rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.media-library-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s ease;
    z-index: 0;
}

.media-library-button span {
    position: relative;
    z-index: 1;
}

.media-library-button:hover {
    color: hsl(0, 0%, 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 153, 189, 0.3);
}

.media-library-button:hover::before {
    left: 0;
}

/* 5.4 Events & Exhibitions */
.events-section {
    background: hsl(0, 0%, 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.event-card {
    display: flex;
    flex-direction: column;
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: hsl(210, 40%, 96%);
}

@media (min-width: 1024px) {
    .event-image {
        height: 250px;
    }
}

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

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.event-description {
    font-size: 1rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0;
}

.events-note {
    font-size: 0.9375rem;
    color: hsl(222, 47%, 40%);
    font-style: italic;
    margin: 2rem 0 0 0;
}

/* 5.5 Publications */
.publications-section {
    background: hsl(0, 0%, 100%);
}

.publications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.publication-card {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 0.75rem;
    padding: 2.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.publication-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.publication-desc {
    font-size: 1.0625rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0;
}

.publication-link {
    color: hsl(222, 47%, 11%);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.publication-link:hover {
    color: var(--accent);
    margin: 0;
}

/* ============================================
   CAREERS PAGE
   ============================================ */

/* Why Work With Us Section */
.careers-why-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .careers-why-section {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.careers-why-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.careers-why-header {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.careers-why-header h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.careers-why-description {
    font-size: 1.125rem;
    color: hsl(215, 16%, 47%);
    line-height: 1.8;
    margin: 0;
}

.careers-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.careers-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.careers-benefit-check {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.careers-benefit-text {
    color: hsl(222, 47%, 11%);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
}

.careers-why-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.careers-why-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.careers-why-image:hover img {
    transform: scale(1.03);
}

/* Opportunities Section */
.careers-opportunities-section {
    background-color: hsl(210, 40%, 96.1%);
    padding: 5rem var(--container-padding);
}

.careers-opportunities-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .careers-opportunities-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.careers-opportunities-title {
    position: relative;
    padding-bottom: 1.5rem;
}

.careers-opportunities-title h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.careers-opportunities-subtitle {
    font-size: 1rem;
    color: hsl(215, 16%, 47%);
    margin: 0;
}

.careers-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.careers-filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: hsl(0, 0%, 100%);
    border: 1px solid hsl(214, 32%, 91%);
    border-radius: 0.5rem;
    color: hsl(222, 47%, 11%);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.careers-filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.careers-filter-btn-active {
    background-color: hsl(222, 47%, 11%);
    border-color: hsl(222, 47%, 11%);
    color: hsl(0, 0%, 100%);
}

.careers-filter-btn-active:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: hsl(0, 0%, 100%);
}

.careers-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.careers-opportunities-description {
    font-size: 1.125rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 2rem 0 2rem 0;
    max-width: 75rem;
}

.careers-opportunities-section-alt {
    background-color: hsl(0, 0%, 100%);
}

.careers-opportunities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 75rem;
}

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

.careers-opportunity-card {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.careers-opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.careers-opportunity-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.careers-opportunity-card:hover::before {
    transform: scaleY(1);
}

.careers-opportunity-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.careers-opportunity-card:hover .careers-opportunity-card-content h3 {
    color: var(--accent);
}

/* New Careers Programs Section - Split Design */
.careers-programs-section-new {
    background: hsl(0, 0%, 100%);
    padding: 0;
}

.careers-programs-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 600px;
}

@media (min-width: 1024px) {
    .careers-programs-split {
        grid-template-columns: 1fr 1fr;
    }
}

.careers-programs-split-image {
    position: relative;
    overflow: hidden;
    background: hsl(222, 47%, 11%);
}

.careers-programs-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.careers-programs-split:hover .careers-programs-split-image img {
    transform: scale(1.05);
    opacity: 0.9;
}

.careers-programs-split-content {
    background: hsl(222, 47%, 11%);
    color: hsl(0, 0%, 100%);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .careers-programs-split-content {
        padding: 5rem 3rem;
    }
}

@media (min-width: 1024px) {
    .careers-programs-split-content {
        padding: 6rem 4rem;
    }
}

.careers-programs-title-new {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    margin: 0 0 3rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.careers-programs-list-new {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.careers-program-item-new {
    border-left: 3px solid var(--accent);
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.careers-program-item-new:hover {
    border-left-color: hsl(0, 0%, 100%);
    transform: translateX(8px);
}

.careers-program-item-new h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.careers-program-item-new p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.careers-program-link-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.careers-program-link-new span {
    transition: transform 0.3s ease;
}

.careers-program-link-new:hover {
    color: hsl(0, 0%, 100%);
}

.careers-program-link-new:hover span {
    transform: translateX(4px);
}

/* New Culture Section - Vertical List Design */
.careers-culture-section-new {
    background: hsl(210, 40%, 98%);
    padding: 5rem var(--container-padding);
}

.careers-culture-header-new {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.careers-culture-header-new h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.careers-culture-content-new {
    max-width: 75rem;
    margin: 0 auto;
}

.careers-culture-text-new {
    text-align: center;
    margin-bottom: 4rem;
}

.careers-culture-intro {
    font-size: 1.5rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.careers-culture-items-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.careers-culture-item-new {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.careers-culture-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.careers-culture-item-new:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.careers-culture-item-new:hover::before {
    transform: scaleY(1);
}

.careers-culture-item-new h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.careers-culture-item-new:hover h4 {
    color: var(--accent);
}

.careers-culture-item-new p {
    font-size: 1.125rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0;
}

/* Locations Section */
.careers-locations-section {
    background: hsl(210, 40%, 98%);
    padding: 5rem var(--container-padding);
}

.careers-locations-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.careers-locations-header h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.careers-locations-subtitle {
    font-size: 1.25rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.6;
    margin: 0;
}

.careers-locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 90rem;
    margin: 0 auto;
}

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

.careers-location-card {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.careers-location-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.careers-location-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.careers-location-card:hover .careers-location-image img {
    transform: scale(1.1);
}

.careers-location-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--accent);
    color: hsl(0, 0%, 100%);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.careers-location-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.careers-location-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.careers-location-content > p {
    font-size: 1.125rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.careers-location-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.careers-location-list li {
    font-size: 1rem;
    color: hsl(222, 47%, 11%);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.careers-location-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
}

.careers-location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: auto;
}

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

.careers-location-link:hover {
    color: var(--primary);
}

.careers-location-link:hover span {
    transform: translateX(4px);
}

/* Careers Page - New Clean Design */
.careers-locations-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

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

.careers-location-card-new {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.careers-location-card-new:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.careers-location-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.careers-location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.careers-location-card-new:hover .careers-location-card-image img {
    transform: scale(1.05);
}

.careers-location-card-content {
    padding: 1.5rem 2rem 2rem;
}

.careers-location-badge-new {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.careers-location-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.75rem 0;
}

.careers-location-intro {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

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

.careers-jobs-list li {
    font-size: 0.875rem;
    color: hsl(215, 16%, 47%);
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.4;
}

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

.careers-program-card {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.careers-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.careers-program-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

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

.careers-program-icon-wrapper {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(102, 153, 189, 0.15), rgba(15, 23, 42, 0.05));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid hsl(210, 40%, 92%);
}

.careers-program-card:hover .careers-program-icon-wrapper {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 153, 189, 0.3);
}

.careers-program-icon {
    width: 2.5rem;
    height: 2.5rem;
    stroke: var(--accent);
    transition: all 0.3s ease;
}

.careers-program-card:hover .careers-program-icon {
    stroke: hsl(0, 0%, 100%);
    transform: scale(1.1);
}

.careers-program-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.careers-program-card:hover h3 {
    color: var(--accent);
}

.careers-program-card p {
    font-size: 1.125rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0;
}

.careers-culture-section {
    background: hsl(0, 0%, 100%);
    padding: 5rem var(--container-padding);
}

.careers-culture-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.careers-culture-header h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.careers-culture-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 90rem;
    margin: 0 auto;
}

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

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

.careers-culture-card {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.careers-culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.careers-culture-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

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

.careers-culture-icon-wrapper {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(102, 153, 189, 0.15), rgba(15, 23, 42, 0.05));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid hsl(210, 40%, 92%);
}

.careers-culture-card:hover .careers-culture-icon-wrapper {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-color: var(--accent);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(102, 153, 189, 0.3);
}

.careers-culture-icon {
    width: 2.5rem;
    height: 2.5rem;
    stroke: var(--accent);
    transition: all 0.3s ease;
}

.careers-culture-card:hover .careers-culture-icon {
    stroke: hsl(0, 0%, 100%);
    transform: scale(1.1);
}

.careers-culture-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.careers-culture-card:hover h3 {
    color: var(--accent);
}

.careers-culture-card p {
    font-size: 1rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0;
}

.careers-job-card {
    background-color: hsl(0, 0%, 100%);
    border: 1px solid hsl(214, 32%, 91%);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .careers-job-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.careers-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.careers-job-content {
    flex: 1;
}

.careers-job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.careers-job-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: hsl(215, 16%, 47%);
}

.careers-job-meta-item {
    display: flex;
    align-items: center;
}

.careers-job-meta-separator {
    color: hsl(215, 16%, 47%);
    opacity: 0.5;
}

.careers-job-link {
    color: hsl(222, 47%, 11%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.careers-job-card:hover .careers-job-link {
    color: var(--accent);
}

/* CTA Section */
.careers-cta-section {
    background-color: hsl(222, 47%, 11%);
    color: hsl(0, 0%, 100%);
    text-align: center;
    padding: 5rem var(--container-padding);
}

.careers-cta-content {
    max-width: 42rem;
    margin: 0 auto;
}

.careers-cta-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.careers-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.careers-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.careers-cta-btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
}

/* ============================================
   CAREER PAGE - REDESIGNED
   ============================================ */

/* Career Hero Section */
.career-hero-section {
    padding: 5rem var(--container-padding);
    background: linear-gradient(135deg, hsl(0, 0%, 100%) 0%, hsl(210, 40%, 98%) 100%);
}

.career-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 1024px) {
    .career-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.career-hero-content {
    max-width: 540px;
}

.career-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.career-hero-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1.5rem 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.career-hero-lead {
    font-size: 1.125rem;
    color: hsl(215, 16%, 47%);
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
}

.career-hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.career-stat {
    display: flex;
    flex-direction: column;
}

.career-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.career-stat-text {
    font-size: 0.875rem;
    color: hsl(215, 16%, 47%);
    margin-top: 0.25rem;
}

.career-hero-image {
    position: relative;
    overflow: hidden;
}

.career-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Career Benefits Section */
.career-benefits-section {
    padding: 5rem var(--container-padding);
    background: hsl(0, 0%, 100%);
}

.career-section-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 4rem;
}

.career-section-header h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0 1rem;
    letter-spacing: -0.02em;
}

.career-section-header p {
    font-size: 1.0625rem;
    color: hsl(215, 16%, 47%);
    line-height: 1.6;
    margin: 0;
}

.career-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

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

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

.career-benefit-card {
    background: #fff;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid hsl(210, 20%, 92%);
    position: relative;
}

.career-benefit-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.career-benefit-bar {
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 1.25rem;
}

.career-benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.75rem 0;
}

.career-benefit-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}

/* Career Locations Section */
.career-locations-section {
    padding: 5rem var(--container-padding);
    background: hsl(210, 40%, 98%);
}

.career-locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

.career-location-card {
    background: hsl(0, 0%, 100%);
    overflow: hidden;
    border: 1px solid hsl(210, 20%, 92%);
    transition: all 0.3s ease;
}

.career-location-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.career-location-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.career-location-card:hover .career-location-image img {
    transform: scale(1.08);
}

.career-location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
}

.career-location-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--accent);
    padding: 0.375rem 0.75rem;
}

.career-location-content {
    padding: 1.75rem 2rem 2rem;
}

.career-location-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.75rem 0;
}

.career-location-content > p {
    font-size: 0.9375rem;
    color: hsl(215, 16%, 47%);
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
}

.career-jobs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.career-jobs-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: hsl(215, 16%, 40%);
}

.career-jobs-list li svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Career Paths Section */
.career-paths-section {
    padding: 5rem var(--container-padding);
    background: hsl(0, 0%, 100%);
}

.career-paths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 1024px) {
    .career-paths-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
    }
}

.career-paths-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0 1rem;
    letter-spacing: -0.02em;
}

.career-paths-intro {
    font-size: 1.0625rem;
    color: hsl(215, 16%, 47%);
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
    max-width: 480px;
}

.career-paths-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.career-path-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid hsl(210, 20%, 92%);
    border-left: 3px solid var(--accent);
}

.career-path-item:hover {
    border-color: var(--accent);
    border-left-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.career-path-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    line-height: 1;
    min-width: 2.5rem;
}

.career-path-item:hover .career-path-number {
    opacity: 1;
}

.career-path-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
}

.career-path-content p {
    font-size: 0.9375rem;
    color: hsl(215, 16%, 47%);
    line-height: 1.5;
    margin: 0;
}

.career-paths-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.career-paths-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1023px) {
    .career-paths-image {
        order: -1;
    }
}

/* Career CTA Section */
.career-cta-section {
    padding: 5rem var(--container-padding);
    background: var(--primary);
    text-align: center;
}

.career-cta-content {
    max-width: 40rem;
    margin: 0 auto;
}

.career-cta-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.career-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

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

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

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: hsl(0, 0%, 100%);
    border: 1px solid hsl(214, 32%, 91%);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.contact-card-header {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.contact-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-info-value {
    font-size: 1rem;
    color: hsl(222, 47%, 11%);
    line-height: 1.6;
    font-weight: 500;
}

.contact-info-value a {
    color: hsl(222, 47%, 11%);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Contact Form */
.contact-form-wrapper {
    background-color: hsl(0, 0%, 100%);
    border: 1px solid hsl(214, 32%, 91%);
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-subtitle {
    font-size: 0.9375rem;
    color: hsl(215, 16%, 47%);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .contact-form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(222, 47%, 11%);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid hsl(214, 32%, 91%);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: hsl(222, 47%, 11%);
    background-color: hsl(0, 0%, 100%);
    transition: all 0.2s ease;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.15);
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: hsl(215, 16%, 47%);
    opacity: 0.6;
}

.contact-form-field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form-submit {
    padding: 1rem 2rem;
    background-color: hsl(222, 47%, 11%);
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form-submit:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
}

/* Contact Section - INEOS Style */
.contact-ineos-section {
    padding: 5rem var(--container-padding);
    background: #fff;
}

.contact-ineos-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}

.contact-ineos-intro h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.contact-ineos-intro p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}

.contact-ineos-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid hsl(210, 20%, 90%);
}

.contact-ineos-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid hsl(210, 20%, 90%);
    gap: 2rem;
    transition: all 0.3s ease;
}

.contact-ineos-item:hover {
    background: hsl(210, 40%, 98%);
    padding-left: 1rem;
}

.contact-ineos-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-width: 100px;
    flex-shrink: 0;
}

.contact-ineos-value {
    font-size: 1.125rem;
    color: var(--primary);
    line-height: 1.6;
    font-weight: 500;
}

.contact-ineos-value a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
    .contact-ineos-item {
        gap: 4rem;
    }

    .contact-ineos-label {
        min-width: 150px;
    }
}

/* Subsidiaries Section - INEOS Style */
.contact-subsidiaries-new {
    margin-top: 0;
    padding: 4rem 0;
    border-top: none;
    background: hsl(210, 40%, 98%);
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.contact-subsidiaries-header {
    text-align: left;
    margin-bottom: 2rem;
    max-width: none;
}

.contact-subsidiaries-header .company-accent-bar {
    display: none;
}

.contact-subsidiaries-header h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-subsidiaries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
    margin: 0;
}

.contact-subsidiary-card {
    background: #fff;
    border: none;
    border-bottom: 1px solid hsl(210, 20%, 90%);
    border-radius: 0;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 3rem;
    backdrop-filter: none;
}

.contact-subsidiary-card:first-child {
    border-top: 1px solid hsl(210, 20%, 90%);
}

.contact-subsidiary-card::before {
    display: none;
}

.contact-subsidiary-card::after {
    content: '→';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    margin-left: auto;
}

.contact-subsidiary-card:hover {
    background: #fff;
    border-color: hsl(210, 20%, 90%);
    transform: none;
    padding-left: 2.5rem;
}

.contact-subsidiary-card:hover::after {
    transform: translateX(5px);
}

.contact-subsidiary-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    min-width: 200px;
    padding: 0;
    border: none;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.contact-subsidiary-card h3::before {
    display: none;
}

.contact-subsidiary-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 1;
}

.contact-subsidiary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 150px;
}

.contact-subsidiary-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-subsidiary-value {
    font-size: 1rem;
    color: var(--primary);
    line-height: 1.5;
}

.contact-subsidiary-value a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .contact-subsidiary-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .contact-subsidiary-card::after {
        position: absolute;
        top: 2rem;
        right: 1rem;
    }

    .contact-subsidiary-card h3 {
        min-width: auto;
    }

    .contact-subsidiary-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   LEGAL PAGE
   ============================================ */

.legal-nav-section {
    background: hsl(210, 40%, 98%);
    padding: 2rem 0;
    border-bottom: 1px solid hsl(210, 40%, 92%);
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-nav-item {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(222, 47%, 30%);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.legal-nav-item:hover,
.legal-nav-item.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.legal-content-section {
    padding: 5rem 0;
    background: hsl(210, 40%, 98%);
}

.legal-content-section:nth-child(even) {
    background: hsl(0, 0%, 100%);
}

.legal-content-wrapper {
    max-width: 75rem;
    margin: 0 auto;
}

.legal-content-header {
    margin-bottom: 3rem;
}

.legal-content-header .company-accent-bar {
    margin-bottom: 1.5rem;
}

.legal-content-header h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.legal-section {
    padding-bottom: 3rem;
    border-bottom: 1px solid hsl(210, 40%, 92%);
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.legal-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(222, 47%, 11%);
    margin: 1.5rem 0 1rem 0;
    line-height: 1.4;
}

.legal-section p {
    font-size: 1.125rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: hsl(222, 47%, 11%);
    text-decoration: underline;
}

.legal-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

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

.legal-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-info-item strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-info-item p {
    font-size: 1.125rem;
    color: hsl(222, 47%, 11%);
    line-height: 1.7;
    margin: 0;
}

.legal-subsidiaries {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

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

.legal-subsidiary-item {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    padding: 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.legal-subsidiary-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.legal-subsidiary-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.legal-subsidiary-item p {
    font-size: 1.125rem;
    color: hsl(222, 47%, 30%);
    line-height: 1.7;
    margin: 0 0 0.75rem 0;
}

.legal-subsidiary-item p:last-child {
    margin-bottom: 0;
}

/* Cookie Table */
.cookie-table-wrapper {
    overflow-x: auto;
    margin-top: 1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid hsl(210, 20%, 90%);
}

.cookie-table th {
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-table td {
    background: #fff;
}

.cookie-table tr:nth-child(even) td {
    background: hsl(210, 40%, 98%);
}

.cookie-table code,
.cookie-table td:first-child {
    font-family: monospace;
    font-size: 0.8125rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }
}

/* ============================================
   ABOUT MODERN SECTIONS - INEOS STYLE
   ============================================ */

.about-modern-section {
    padding: 6rem 0;
    background-color: var(--background);
}

@media (min-width: 1024px) {
    .about-modern-section {
        padding: 8rem 0;
    }
}

.about-modern-reverse {
    background-color: var(--neutral-50);
}

.about-modern-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 90rem;
    margin: 0 auto;
    background-color: var(--background);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .about-modern-wrapper {
        grid-template-columns: 1fr 1fr;
        border-radius: 0;
        box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.1);
    }

    .about-modern-reverse .about-modern-wrapper {
        background-color: var(--neutral-50);
    }

    .about-modern-reverse .about-modern-image {
        order: 2;
    }

    .about-modern-reverse .about-modern-content {
        order: 1;
    }
}

.about-modern-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--neutral-100);
}

@media (min-width: 1024px) {
    .about-modern-image {
        height: 100%;
        min-height: 600px;
    }
}

.about-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-modern-wrapper:hover .about-modern-image img {
    transform: scale(1.05);
}

.about-modern-content {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background);
}

@media (min-width: 768px) {
    .about-modern-content {
        padding: 5rem 3rem;
    }
}

@media (min-width: 1024px) {
    .about-modern-content {
        padding: 6rem 5rem;
    }
}

.about-modern-reverse .about-modern-content {
    background-color: var(--neutral-50);
}

.about-modern-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.about-modern-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 2px;
    background-color: var(--accent);
}

.about-modern-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 2rem 0;
}

@media (min-width: 1024px) {
    .about-modern-title {
        font-size: var(--font-size-h2);
        margin-bottom: 2.5rem;
    }
}

.about-modern-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.01em;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .about-modern-text {
        font-size: 1.25rem;
        line-height: 1.9;
    }
}

/* ============================================
   VALUES PROFESSIONAL SECTION - CORPORATE DESIGN
   ============================================ */

.values-professional-section {
    padding: 6rem 0;
    background-color: var(--background);
}

@media (min-width: 1024px) {
    .values-professional-section {
        padding: 8rem 0;
    }
}

.values-professional-container {
    max-width: 90rem;
    margin: 0 auto;
}

.values-professional-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .values-professional-header {
        margin-bottom: 5rem;
    }
}

.values-professional-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.values-professional-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.values-professional-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 2rem 0;
}

.values-professional-intro {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    .values-professional-intro {
        font-size: 1.25rem;
        line-height: 1.9;
    }
}

.values-professional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .values-professional-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .values-professional-grid {
        gap: 5rem;
    }
}

.value-professional-item {
    border-top: 1px solid var(--neutral-200);
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .value-professional-item {
        padding-top: 2.5rem;
    }
}

.value-professional-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: block;
}

.value-professional-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .value-professional-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
}

.value-professional-text {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    .value-professional-text {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

/* ============================================
   TEAM PROFESSIONAL SECTION
   ============================================ */

.team-professional-section {
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .team-professional-section {
        padding: 8rem 0;
    }
}

.team-professional-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .team-professional-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.team-professional-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-professional-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}

.team-professional-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

.team-professional-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    .team-professional-text {
        font-size: 1.25rem;
        line-height: 1.9;
    }
}

.team-professional-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--neutral-100);
    aspect-ratio: 4 / 3;
}

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

/* ============================================
   ABOUT PAGE - INEOS STYLE IMPROVEMENTS
   ============================================ */

/* Stats Section - Professional Style */
.about-stats-section {
    padding: 2rem 0;
    background-color: #ffffff;
}

@media (min-width: 768px) {
    .about-stats-section {
        padding: 2.5rem 0;
    }
}

@media (min-width: 1024px) {
    .about-stats-section {
        padding: 3rem 0;
    }
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 60rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
}

.about-stat-item {
    text-align: center;
    padding: 1rem 0.75rem;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.about-stat-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
    .about-stat-item {
        text-align: center;
        padding: 1.25rem 1rem;
        border-bottom: none;
        border-right: 0.5px solid rgba(0, 0, 0, 0.08);
    }

    .about-stat-item:last-child {
        border-right: none;
    }
}

@media (min-width: 1024px) {
    .about-stat-item {
        padding: 1.5rem 1.5rem;
    }
}

.about-stat-number {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.375rem;
    letter-spacing: -0.04em;
    display: block;
}

@media (min-width: 768px) {
    .about-stat-number {
        font-size: clamp(2rem, 3vw, 3rem);
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .about-stat-number {
        font-size: clamp(2.25rem, 2.5vw, 3.5rem);
        margin-bottom: 0.75rem;
    }
}

.about-stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    .about-stat-label {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .about-stat-label {
        font-size: 0.9375rem;
    }
}

/* ============================================
   ABOUT TEAM & VALUES - ENHANCED SPLIT LAYOUT
   ============================================ */

.about-team-values-section {
    padding: 4rem 0;
    background-color: var(--background);
}

@media (min-width: 768px) {
    .about-team-values-section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .about-team-values-section {
        padding: 6rem 0;
    }
}

.about-team-values-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100rem;
    margin: 0 auto;
    position: relative;
    align-items: start;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 640px) {
    .about-team-values-wrapper {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (min-width: 768px) {
    .about-team-values-wrapper {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1024px) {
    .about-team-values-wrapper {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1280px) {
    .about-team-values-wrapper {
        max-width: 110rem;
    }
}

@media (min-width: 1536px) {
    .about-team-values-wrapper {
        max-width: 120rem;
    }
}

@media (min-width: 1024px) {
    .about-team-values-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: start;
    }

    /* Vertical divider line between columns - visible separator */
    .about-team-values-wrapper::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: hsl(210, 40%, 85%);
        transform: translateX(-50%);
        z-index: 1;
    }
}

.about-team-values-left,
.about-team-values-right {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .about-team-values-left {
        padding-right: 3rem;
    }

    .about-team-values-right {
        padding-left: 3rem;
    }
}

@media (min-width: 1280px) {
    .about-team-values-left {
        padding-right: 4rem;
    }

    .about-team-values-right {
        padding-left: 4rem;
    }
}

@media (min-width: 1536px) {
    .about-team-values-left {
        padding-right: 5rem;
    }

    .about-team-values-right {
        padding-left: 5rem;
    }
}

.about-team-header {
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .about-team-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .about-team-header {
        margin-bottom: 3.5rem;
    }
}

.about-team-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .about-team-title {
        font-size: var(--font-size-h2);
        margin-bottom: 1.5rem;
    }
}

.about-team-intro {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .about-team-intro {
        font-size: 1.0625rem;
        line-height: 1.75;
    }
}

@media (min-width: 1024px) {
    .about-team-intro {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

/* Team list - full width grid design with homepage card style */
.about-team-list-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    align-items: start;
}

@media (min-width: 768px) {
    .about-team-list-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2.5rem;
        align-items: start;
    }

    /* Third item spans full width - 2 oben, 1 unten */
    .about-team-item-modern:nth-child(3) {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .about-team-list-modern {
        gap: 2.5rem;
    }
}

/* Values list - different layout: 1 oben, 2 unten */
.about-values-list-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    align-items: start;
}

@media (min-width: 768px) {
    .about-values-list-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2.5rem;
        align-items: start;
    }

    /* First item spans full width - 1 oben, 2 unten */
    .about-values-item-modern:nth-child(1) {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .about-values-list-modern {
        gap: 2.55rem;
    }
}

.about-team-item-modern,
.about-values-item-modern {
    background-color: hsl(0, 0%, 98%); /* bg-neutral-50 */
    border-radius: var(--radius);
    padding: 2rem; /* p-8 */
    border: 1px solid hsl(210, 40%, 96.1%); /* border border-neutral-100 */
    transition: all 0.15s ease; /* transition-colors */
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
}

@media (min-width: 768px) {
    .about-team-item-modern,
    .about-values-item-modern {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .about-team-item-modern,
    .about-values-item-modern {
        padding: 3rem;
    }
}

.about-team-item-modern:hover,
.about-values-item-modern:hover {
    border-color: var(--accent); /* accent */
}

.about-team-item-number,
.about-values-item-number {
    display: none; /* Hide numbers, use card style instead */
}

.about-team-item-content-modern,
.about-values-item-content-modern {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.about-team-item-title-modern,
.about-values-item-title-modern {
    font-size: 1.25rem; /* text-xl */
    margin-bottom: 0.75rem; /* mb-3 */
    color: hsl(222, 47%, 11%); /* foreground */
    text-transform: uppercase;
    font-weight: 700;
}

@media (min-width: 768px) {
    .about-team-item-title-modern,
    .about-values-item-title-modern {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .about-team-item-title-modern,
    .about-values-item-title-modern {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
}

.about-team-item-text-modern,
.about-values-item-text-modern {
    color: hsl(215, 16%, 47%); /* muted-foreground */
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 0; /* no bottom margin needed */
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .about-team-item-text-modern,
    .about-values-item-text-modern {
        font-size: 1rem;
        line-height: 1.75;
    }
}

@media (min-width: 1024px) {
    .about-team-item-text-modern,
    .about-values-item-text-modern {
        font-size: 1.0625rem;
        line-height: 1.8;
    }
}

/* ============================================
   ABOUT TEAM & VALUES SECTIONS - PROFESSIONAL
   ============================================ */

.about-team-section,
.about-values-section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .about-team-section,
    .about-values-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .about-team-section,
    .about-values-section {
        padding: 7rem 0;
    }
}

.about-team-wrapper,
.about-values-wrapper {
    max-width: 72rem;
    margin: 0 auto;
}

/* Header styles for split layout */
.about-team-values-left .about-team-header,
.about-team-values-right .about-values-header {
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .about-team-values-left .about-team-header,
    .about-team-values-right .about-values-header {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .about-team-values-left .about-team-header,
    .about-team-values-right .about-values-header {
        margin-bottom: 3rem;
    }
}

/* Accent bar under title */
.about-team-values-left .about-team-header::after,
.about-team-values-right .about-values-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 3rem;
    height: 3px;
    background-color: var(--accent);
}

@media (min-width: 768px) {
    .about-team-values-left .about-team-header::after,
    .about-team-values-right .about-values-header::after {
        width: 4rem;
        height: 4px;
        bottom: -1.25rem;
    }
}

.about-team-label,
.about-values-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

/* Label styles for split layout */
.about-team-values-right .about-values-label {
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

/* Title styles for split layout */
.about-team-values-left .about-team-title,
.about-team-values-right .about-values-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
    .about-team-values-left .about-team-title,
    .about-team-values-right .about-values-title {
        font-size: var(--font-size-h2);
        margin-bottom: 1.25rem;
    }
}

/* Intro text styles for split layout */
.about-team-values-left .about-team-intro,
.about-team-values-right .about-values-intro {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.01em;
    text-align: left;
    max-width: 100%;
}

@media (min-width: 768px) {
    .about-team-values-left .about-team-intro,
    .about-team-values-right .about-values-intro {
        font-size: 1.0625rem;
        line-height: 1.75;
    }
}

@media (min-width: 1024px) {
    .about-team-values-left .about-team-intro,
    .about-team-values-right .about-values-intro {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

/* Our Team - Vertical List with Numbers */
.about-team-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .about-team-list {
        gap: 2.5rem;
        margin-top: 4rem;
    }
}

@media (min-width: 1024px) {
    .about-team-list {
        gap: 3rem;
        margin-top: 5rem;
    }
}

.about-team-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 3px solid var(--accent);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.about-team-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .about-team-item {
        padding: 2.5rem;
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .about-team-item {
        padding: 3rem;
        gap: 3rem;
    }
}

.about-team-item-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    min-width: 3rem;
}

@media (min-width: 768px) {
    .about-team-item-number {
        font-size: 3rem;
        min-width: 4rem;
    }
}

@media (min-width: 1024px) {
    .about-team-item-number {
        font-size: 3.5rem;
        min-width: 5rem;
    }
}

.about-team-item-content {
    flex: 1;
}

.about-team-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .about-team-item-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

.about-team-item-text {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .about-team-item-text {
        font-size: 1.0625rem;
        line-height: 1.75;
    }
}

@media (min-width: 1024px) {
    .about-team-item-text {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

/* Our Values - Grid Cards */


/* Global Manufacturer Section - INEOS Style */
.about-manufacturer-section {
    padding: 6rem 0;
    background-color: var(--background);
}

@media (min-width: 1024px) {
    .about-manufacturer-section {
        padding: 8rem 0;
    }
}

.about-manufacturer-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .about-manufacturer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.about-manufacturer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-manufacturer-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

.about-manufacturer-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    .about-manufacturer-text {
        font-size: 1.25rem;
        line-height: 1.9;
    }
}

.about-manufacturer-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background-color: var(--neutral-50);
    aspect-ratio: 4 / 3;
}

.about-manufacturer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-manufacturer-wrapper:hover .about-manufacturer-image img {
    transform: scale(1.03);
}

/* ============================================
   ABOUT INEOS SECTIONS - INEOS STYLE
   ============================================ */

.about-ineos-section {
    padding: 5rem 0;
    background-color: var(--background);
}

@media (min-width: 768px) {
    .about-ineos-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .about-ineos-section {
        padding: 8rem 0;
    }
}

.about-ineos-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-ineos-wrapper {
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .about-ineos-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.about-ineos-reverse {
    direction: rtl;
}

@media (min-width: 1024px) {
    .about-ineos-reverse {
        direction: ltr;
    }

    .about-ineos-reverse .about-ineos-image {
        order: 2;
    }

    .about-ineos-reverse .about-ineos-content {
        order: 1;
    }
}

.about-ineos-reverse > * {
    direction: ltr;
}

.about-ineos-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .about-ineos-content {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .about-ineos-content {
        gap: 2.5rem;
    }
}

.about-ineos-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
}

@media (min-width: 768px) {
    .about-ineos-title {
        font-size: var(--font-size-h2);
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .about-ineos-title {
        font-size: var(--font-size-h2);
        margin-bottom: 2.5rem;
    }
}

.about-ineos-text {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.75;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .about-ineos-text {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

@media (min-width: 1024px) {
    .about-ineos-text {
        font-size: 1.25rem;
        line-height: 1.9;
    }
}

.about-ineos-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--neutral-100);
    aspect-ratio: 4 / 3;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .about-ineos-image {
        border-radius: 0.75rem;
        box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    }
}

.about-ineos-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-ineos-wrapper:hover .about-ineos-image img {
    transform: scale(1.03);
}

/* ============================================
   PRODUCTS & SERVICES - INEOS STYLE
   ============================================ */

/* Products Grid - 3 columns on desktop */
.products-grid-ineos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .products-grid-ineos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .products-grid-ineos {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        padding: 0 4rem;
    }
}

/* Product Category Card - Clean INEOS Style */
.product-category-card {
    background: hsl(0, 0%, 100%);
    border-radius: 0;
    overflow: visible;
    transition: all 0.3s ease;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid hsl(210, 20%, 92%);
}

.product-category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.4s ease;
    z-index: 2;
}

.product-category-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-category-card:hover::before {
    width: 100%;
}

.product-category-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: hsl(210, 40%, 97%);
}

@media (min-width: 768px) {
    .product-category-image {
        height: 180px;
    }
}

@media (min-width: 1024px) {
    .product-category-image {
        height: 220px;
    }
}

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

.product-category-card:hover .product-category-image img {
    transform: scale(1.05);
}

.product-category-image::after {
    display: none;
}

.product-category-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
    min-height: 0;
}

@media (min-width: 768px) {
    .product-category-content {
        padding: 2rem;
    }
}

.product-category-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: none;
    padding: 0;
    border-radius: 0;
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.75rem;
}

.product-category-title {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary);
    line-height: var(--line-height-tight);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.product-category-card:hover .product-category-title {
    color: var(--accent);
}

@media (min-width: 1024px) {
    .product-category-title {
        font-size: 1.25rem; /* Einheitliche Mobile H3-Größe */
    }
}

.product-category-description {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.product-category-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 1rem;
    border-top: 1px solid hsl(210, 20%, 92%);
}

.product-subcategory-item {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.75rem 0;
    display: block;
    border-bottom: 1px solid hsl(210, 20%, 94%);
    cursor: default;
}

.product-subcategory-item:last-child {
    border-bottom: none;
}

/* Product Detail Toggle (Expandable Text) */
.product-detail-toggle {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(210, 20%, 92%);
    flex-shrink: 0;
    position: relative;
}

/* If links are present, add spacing between links and toggle */
.product-category-links + .product-detail-toggle {
    margin-top: 1rem;
    padding-top: 1rem;
}

.product-detail-toggle-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: hsl(210, 40%, 98%);
    border: 1px solid hsl(210, 20%, 90%);
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: inherit;
}

.product-detail-toggle-btn:hover {
    background: hsl(210, 40%, 96%);
    border-color: var(--accent);
    color: var(--accent);
}

.product-detail-toggle-btn:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.product-detail-toggle-btn .toggle-text {
    flex: 1;
}

.product-detail-toggle-btn .toggle-icon {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--accent);
    margin-left: 1rem;
}

.product-detail-toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(45deg);
}

.product-detail-content {
    margin-top: 0.5rem;
    padding: 1.25rem;
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 20%, 92%);
    border-radius: 4px;
    animation: slideDown 0.3s ease-out;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Mobile improvements for product detail toggle */
@media (max-width: 768px) {
    .product-detail-toggle-btn {
        min-height: 48px; /* Better touch target */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .product-detail-toggle {
        position: relative; /* Ensure toggle is positioning context */
    }
    
    .product-detail-content {
        position: relative !important; /* Force relative on mobile */
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        margin-top: 0.75rem;
        margin-bottom: 0;
        z-index: 1;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .product-category-card {
        overflow: visible !important; /* Allow content to expand */
        margin-bottom: 1rem; /* Add spacing between cards */
    }
    
    .product-category-content {
        overflow: visible; /* Allow content to expand */
    }
    
    .products-grid-ineos {
        gap: 1.5rem; /* Ensure spacing between cards */
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-detail-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.product-detail-text p {
    margin: 0 0 1rem 0;
}

.product-detail-text p:last-child {
    margin-bottom: 0;
}

.product-detail-text strong {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   PRODUCT DETAIL MODAL (Mobile Pop-up)
   ============================================ */

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.product-modal-content {
    position: relative;
    background: var(--background);
    border-radius: 12px;
    max-width: 90vw;
    max-height: 85vh;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
    padding: 0;
    margin: 0;
}

.product-modal-close span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.product-modal-close:hover {
    background: transparent;
    color: var(--accent);
}

.product-modal-close:focus {
    outline: none;
    color: var(--accent);
}

.product-modal-title {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary);
    padding: 1.5rem 4rem 1rem 1.5rem;
    margin: 0;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    line-height: var(--line-height-tight);
}

.product-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.product-modal-body p {
    font-size: var(--font-size-body);
    line-height: var(--line-height-normal);
    color: var(--muted-foreground);
    margin: 0 0 1rem 0;
}

.product-modal-body p:last-child {
    margin-bottom: 0;
}

.product-modal-body strong {
    color: var(--primary);
    font-weight: 600;
}

.product-modal-body ul,
.product-modal-body ol {
    margin: 0 0 1rem 1.5rem;
    padding: 0;
}

.product-modal-body li {
    margin-bottom: 0.5rem;
    font-size: var(--font-size-body);
    line-height: var(--line-height-normal);
    color: var(--muted-foreground);
}

/* Desktop: Modal verstecken, normales Aufklappen nutzen */
@media (min-width: 768px) {
    .product-modal {
        display: none !important;
    }
}

/* Mobile: Verstecke die Expand-Content, zeige nur Button */
@media (max-width: 767px) {
    .product-detail-content {
        display: none !important;
    }
    
    .product-detail-toggle-btn[aria-expanded="true"] .toggle-icon {
        transform: none;
    }
}

/* Services Section - INEOS Style */
.services-header-ineos {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.services-header-ineos h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
}

.services-grid-ineos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .services-grid-ineos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 0 3rem;
    }
}

.service-card-ineos {
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 40%, 92%);
    border-left: 4px solid var(--accent);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .service-card-ineos {
        padding: 3rem;
    }
}

.service-card-ineos:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-left-color: var(--primary);
}

.service-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}

.service-card-title {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary);
    line-height: var(--line-height-tight);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .service-card-title {
        font-size: 1.25rem; /* Einheitliche Mobile H3-Größe */
    }
}

.service-card-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.75;
    margin: 0;
}

@media (min-width: 768px) {
    .service-card-description {
        font-size: 1.0625rem;
    }
}

/* ================================================
   COMPANIES PAGE - INEOS BUSINESSES STYLE
   ================================================ */

.businesses-section {
    padding: 4rem var(--container-padding) 6rem;
    background: #fff;
}

/* Header */
.businesses-header {
    max-width: 800px;
    margin-bottom: 3rem;
}

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

.businesses-intro {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
}

@media (min-width: 768px) {
    .businesses-intro {
        font-size: 1.25rem;
    }
}

/* Business Cards Grid */
.business-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

/* Business Card */
.business-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.business-card:hover .business-card-image img {
    transform: scale(1.05);
}

.business-card:hover .business-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Card Image */
.business-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

/* Featured Card */
.business-card--featured .business-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(30, 41, 59, 0.3) 100%);
}

.business-card--featured .business-card-arrow {
    opacity: 1;
}

/* Card Inner */
.business-card-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Card Type */
.business-card-type {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

/* Card Title */
.business-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 0.75rem 0;
    line-height: 1.25;
    transition: color 0.3s ease;
}

/* Card Description */
.business-card-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0 0 auto 0;
    transition: color 0.3s ease;
}

/* Card Location */
.business-card-location {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-top: 1.25rem;
    transition: color 0.3s ease;
}

/* Card Arrow */
.business-card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #fff;
}

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

/* ==========================================
   SUBSIDIARIES & PARTNERS - NEW LAYOUT
   ========================================== */

.companies-section {
    padding: 4rem var(--container-padding);
    background: #fff;
}

/* Company Row - Horizontal Card */
.company-row-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.company-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid hsl(210, 20%, 90%);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.company-row--clickable {
    cursor: pointer;
}

@media (min-width: 768px) {
    .company-row {
        grid-template-columns: 320px 1fr;
    }
}

@media (min-width: 1024px) {
    .company-row {
        grid-template-columns: 400px 1fr;
    }
}

.company-row:hover,
.company-row-link:hover .company-row {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.company-row:last-child {
    margin-bottom: 0;
}

/* Highlight for Parent Company */
.company-row--highlight {
    border-left: 4px solid var(--accent);
}

/* Company Row Image */
.company-row-image {
    height: 220px;
    overflow: hidden;
    background: hsl(210, 20%, 95%);
}

@media (min-width: 768px) {
    .company-row-image {
        height: 100%;
        min-height: 280px;
    }
}

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

.company-row:hover .company-row-image img,
.company-row-link:hover .company-row-image img {
    transform: scale(1.03);
}

/* Company Row Content */
.company-row-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .company-row-content {
        padding: 2.5rem 3rem;
    }
}

/* Badge */
.company-row-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    margin-bottom: 1rem;
    width: fit-content;
}

.company-row-badge--parent {
    background: var(--primary);
    color: #fff;
}

.company-row-badge--subsidiary {
    background: var(--accent);
    color: #fff;
}

.company-row-badge--jv {
    background: hsl(210, 20%, 90%);
    color: var(--primary);
}

/* Title */
.company-row-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

/* Description */
.company-row-desc {
    font-size: var(--font-size-body);
    color: var(--muted-foreground);
    line-height: var(--line-height-normal);
    margin: 0 0 1.5rem 0;
}

/* Meta Info */
.company-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.company-row-location,
.company-row-focus {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.company-row-location svg,
.company-row-focus svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Network Section */
.network-section {
    padding: 4rem var(--container-padding);
    background: var(--primary);
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 767px) {
    .network-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Mobile */
        gap: 1.5rem; /* Kompakterer Abstand */
    }
    
    .network-stat:last-child {
        grid-column: 1 / -1; /* Letztes Element nimmt volle Breite */
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Tablet - 2 Spalten */
@media (min-width: 768px) and (max-width: 1023px) {
    .network-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Tablet */
        gap: 2rem;
    }
    
    .network-stat:last-child {
        grid-column: 1 / -1; /* Letztes Element nimmt volle Breite */
        max-width: 50%;
        margin: 0 auto;
    }
}

.network-stat {
    padding: 1rem;
}

@media (max-width: 767px) {
    .network-stat {
        padding: 1.5rem 1rem; /* Mehr Padding auf Mobile */
    }
}

.network-stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.network-stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .network-stat-number {
        font-size: 2rem; /* Angepasste Größe für 2-Spalten-Layout */
        margin-bottom: 0.5rem;
    }
    
    .network-stat-label {
        font-size: 0.8125rem; /* Angepasste Größe für 2-Spalten-Layout */
        letter-spacing: 0.05em;
    }
    
    .network-stat {
        padding: 1rem 0.5rem; /* Kompakteres Padding */
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .companies-section {
        padding: 3rem var(--container-padding);
    }

    .company-row-content {
        padding: 1.5rem;
    }

    .company-row-image {
        height: 180px;
    }

    .company-row-title {
        font-size: 1.25rem;
    }

    .company-row-desc {
        font-size: 0.9375rem;
    }

    .company-row-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .network-section {
        padding: 3rem var(--container-padding);
    }

    /* Network Grid Mobile - bereits oben definiert, hier nur Padding */
}

/* ==========================================
   ABOUT PAGE - INEOS STYLE
   ========================================== */

/* Intro Section */
.about-ineos-intro {
    padding: 5rem var(--container-padding);
    background: #fff;
}

.about-ineos-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-ineos-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-ineos-intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.about-ineos-intro-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
}

.about-ineos-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Section */
.about-ineos-stats {
    padding: 4rem var(--container-padding);
    background: hsl(210, 40%, 98%);
    border-top: 1px solid hsl(210, 20%, 90%);
    border-bottom: 1px solid hsl(210, 20%, 90%);
}

.about-ineos-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-ineos-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-ineos-stat {
    text-align: center;
    padding: 1rem;
}

.about-ineos-stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.about-ineos-stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-ineos-stat-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* General Section */
.about-ineos-section {
    padding: 5rem var(--container-padding);
    background: #fff;
}

.about-ineos-section-alt {
    background: hsl(210, 40%, 98%);
}

.about-ineos-section-header {
    max-width: 700px;
    margin-bottom: 3rem;
}

.about-ineos-section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.about-ineos-section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}

/* Features Grid */
.about-ineos-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.about-ineos-feature {
    padding: 2.5rem 2rem;
    border-left: 3px solid var(--accent);
    background: hsl(210, 40%, 98%);
    transition: all 0.3s ease;
    position: relative;
}

.about-ineos-feature:hover {
    background: hsl(210, 40%, 96%);
    border-left-color: var(--primary);
    transform: translateX(5px);
}

.about-ineos-feature-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.about-ineos-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
}

.about-ineos-feature p {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}


/* Two Column Layout */
.about-ineos-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-ineos-two-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.about-ineos-two-col-item {
    padding: 2.5rem;
    background: #fff;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.about-ineos-two-col-item:hover {
    border-left-color: var(--accent);
}

.about-ineos-two-col-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.about-ineos-two-col-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
}

.about-ineos-two-col-item p {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   NEW ABOUT PAGE - CLEAN DESIGN
   ========================================== */

/* About Intro Section */
.about-intro-section {
    padding: 5rem var(--container-padding);
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

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

.about-intro-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1.5rem 0;
    line-height: var(--line-height-tight);
}

.about-intro-content p {
    font-size: var(--font-size-body);
    color: var(--muted-foreground);
    line-height: var(--line-height-normal);
    margin: 0 0 1rem 0;
}

.about-intro-content p:last-child {
    margin-bottom: 0;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

/* What We Do Section */
.about-whatwedo-section {
    padding: 5rem var(--container-padding);
    background: hsl(210, 40%, 98%);
}

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

.about-section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.about-section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

/* Clean Feature Cards - No Icons */
.about-feature-card-clean {
    background: #fff;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid hsl(210, 20%, 92%);
    position: relative;
}

.about-feature-card-clean:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.about-feature-bar {
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 1.25rem;
}

.about-feature-card-clean h3 {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary);
    line-height: var(--line-height-tight);
    margin: 0 0 0.75rem 0;
}

.about-feature-card-clean p {
    font-size: var(--font-size-body);
    color: var(--muted-foreground);
    line-height: var(--line-height-normal);
    margin: 0;
}

/* Values Section */
.about-values-section {
    padding: 5rem var(--container-padding);
    background: #fff;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-values-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.about-values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-value-item {
    padding-left: 1.25rem;
    border-left: 3px solid var(--accent);
}

.about-value-item h4 {
    font-size: var(--font-size-h4);
    font-weight: 700;
    color: var(--primary);
    line-height: var(--line-height-tight);
    margin: 0 0 0.5rem 0;
}

.about-value-item p {
    font-size: var(--font-size-body);
    color: var(--muted-foreground);
    line-height: var(--line-height-normal);
    margin: 0;
}

.about-values-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Locations Section */
.about-locations-section {
    padding: 5rem var(--container-padding);
    background: hsl(210, 40%, 98%);
}

.about-locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

/* Location Cards with Images */
.about-location-card-img {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid hsl(210, 20%, 92%);
}

.about-location-card-img:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-location-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: hsl(210, 20%, 92%);
}

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

.about-location-card-img:hover .about-location-image img {
    transform: scale(1.05);
}

.about-location-content {
    padding: 1.5rem;
}

.about-location-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
}

.about-location-content p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.about-cta-section {
    padding: 5rem var(--container-padding);
    background: var(--primary);
    text-align: center;
}

.about-cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
}

.about-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-cta-buttons .btn-primary {
    background: #fff;
    color: var(--primary);
}

.about-cta-buttons .btn-primary:hover {
    background: hsl(210, 40%, 96%);
}

.about-cta-buttons .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.about-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .about-intro-section,
    .about-whatwedo-section,
    .about-values-section,
    .about-locations-section,
    .about-cta-section {
        padding: 3rem var(--container-padding);
    }

    /* Improve \"Our Company\" responsiveness on mobile */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: flex-start;
    }

    .about-intro-content h2 {
        font-size: var(--font-size-h2);
    }

    .about-intro-content p {
        font-size: var(--font-size-body);
        line-height: 1.7;
    }

    .about-section-header {
        margin-bottom: 2rem;
    }

    .about-feature-card,
    .about-location-card {
        padding: 1.5rem;
    }
}

/* Image Cards Section */
.about-image-cards-section {
    padding: 5rem var(--container-padding);
    background: #fff;
}

.about-image-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.about-image-card {
    display: block;
    text-decoration: none;
    background: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.about-image-card:hover {
    transform: translateY(-8px);
}

.about-image-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.about-image-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-image-card:hover .about-image-card-img img {
    transform: scale(1.05);
}

.about-image-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-card:hover .about-image-card-img::after {
    opacity: 1;
}

.about-image-card-content {
    padding: 1.5rem;
    border: 1px solid hsl(210, 20%, 90%);
    border-top: none;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.about-image-card:hover .about-image-card-content {
    border-bottom-color: var(--accent);
}

.about-image-card-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.about-image-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.75rem 0;
    transition: color 0.3s ease;
}

.about-image-card:hover .about-image-card-content h3 {
    color: var(--accent);
}

.about-image-card-content p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================================ */

@media (max-width: 767px) {
    /* General Mobile Adjustments */
    :root {
        --container-padding: 1rem; /* Smaller padding on mobile */
    }
    
    /* Better touch targets - minimum 44x44px */
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Prevent text size adjustment on iOS */
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Better scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    .page-header {
        padding: 6.5rem var(--container-padding) 2.5rem; /* Mehr Platz für kompaktere Navbar + vollständiger Titel */
    }

    .page-header h1 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .page-header p {
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
    }

    .page-header .hero-accent-bar {
        width: 4rem !important;
        height: 3px !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Innovation/Sustainability Header - same as regular page-header on mobile */
    .innovation-header h1 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .page-header .container > div {
        max-width: 100% !important;
    }

    .page-content {
        padding: 3rem var(--container-padding);
    }

    /* Innovation/Sustainability Header Mobile - same as regular page-header */
    .innovation-header {
        padding: 6rem var(--container-padding) 2.5rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: 100vh; /* Full viewport height on mobile */
        height: auto;
        padding: 7rem 0 4rem; /* More padding */
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-content > div {
        gap: 1.75rem;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

    .hero-accent-bar {
        width: 4rem;
        height: 4px;
        margin: 1.25rem 0;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        line-height: 1.7;
        margin-top: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 1.125rem 1.75rem;
        font-size: 0.9375rem;
        min-height: 48px; /* Better touch target */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* All buttons - better touch targets */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Corporate Grid Mobile */
    .content-section {
        padding: 3rem var(--container-padding);
    }

    .corporate-grid {
        gap: 2rem;
    }

    .corporate-grid-left {
        gap: 1.25rem;
    }

    .corporate-grid-left h2 {
        font-size: 1.5rem; /* Einheitliche Mobile H2-Größe */
        line-height: 1.2;
    }

    .corporate-grid-left p {
        font-size: 0.9375rem; /* Einheitliche Mobile Paragraph-Größe */
        line-height: 1.6;
    }

    .corporate-grid-right {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .card-title {
        font-size: 1.125rem; /* Einheitliche Mobile H3-Größe */
        margin-bottom: 0.75rem;
    }

    .card-content {
        font-size: 0.9375rem; /* Einheitliche Mobile Paragraph-Größe */
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .card-link {
        font-size: 0.8125rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        -webkit-tap-highlight-color: transparent;
    }

    /* Stats Section Mobile */
    .stats-section {
        padding: 3rem var(--container-padding);
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Feature Section Mobile */
    .feature-section {
        flex-direction: column;
    }
    
    .feature-content {
        padding: 2rem var(--container-padding);
        order: 2;
    }

    .feature-image {
        height: 250px;
        order: 1;
    }
    
    .feature-content h2 {
        font-size: 1.5rem; /* Einheitliche Mobile H2-Größe */
        margin-bottom: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9375rem; /* Einheitliche Mobile Paragraph-Größe */
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .feature-content .btn {
        width: 100%;
        min-height: 48px;
    }

    /* Footer Mobile */
    .site-footer {
        padding: 3rem var(--container-padding) 1.5rem;
    }

    .footer-container {
        gap: 2rem;
    }

    /* About Page Mobile */
    .about-ineos-intro {
        padding: 3rem var(--container-padding);
    }

    .about-ineos-intro-grid {
        gap: 2rem;
    }

    .about-ineos-intro-content h2 {
        font-size: 1.5rem;
    }

    .about-ineos-intro-content p {
        font-size: 1rem;
    }

    .about-ineos-stats {
        padding: 2.5rem var(--container-padding);
    }

    .about-ineos-stats-grid {
        gap: 1rem;
    }

    .about-ineos-stat {
        padding: 0.75rem 0.5rem;
    }

    .about-ineos-stat-number {
        font-size: 2rem;
    }

    .about-ineos-stat-desc {
        font-size: 0.75rem;
    }

    .about-ineos-section {
        padding: 3rem var(--container-padding);
    }

    .about-ineos-section-header {
        margin-bottom: 2rem;
    }

    .about-ineos-section-header h2 {
        font-size: 1.5rem;
    }

    .about-ineos-section-header p {
        font-size: 1rem;
    }

    .about-ineos-feature {
        padding: 1.5rem;
    }

    .about-ineos-feature-number {
        font-size: 2rem;
    }

    .about-ineos-feature h3 {
        font-size: 1.125rem;
    }

    .about-ineos-feature p {
        font-size: 0.9375rem;
    }

    .about-ineos-two-col-item {
        padding: 1.5rem;
    }

    .about-ineos-two-col-item h3 {
        font-size: 1.25rem;
    }

    .about-ineos-two-col-item p {
        font-size: 0.9375rem;
    }

    .about-image-cards-section {
        padding: 3rem var(--container-padding);
    }

    .about-image-card-img {
        height: 180px;
    }

    .about-image-card-content {
        padding: 1rem;
    }

    .about-image-card-content h3 {
        font-size: 1.125rem;
    }

    /* Companies Page Mobile */
    .businesses-section {
        padding: 3rem var(--container-padding);
    }

    .businesses-header h2 {
        font-size: 1.5rem;
    }

    .businesses-intro {
        font-size: 1rem;
    }

    .business-card-image {
        height: 160px;
    }

    .business-card-inner {
        padding: 1.25rem;
    }

    .business-card-title {
        font-size: 1.125rem;
    }

    .business-card-desc {
        font-size: 0.875rem;
    }

    /* Contact Page Mobile */
    .contact-ineos-section {
        padding: 3rem var(--container-padding);
    }

    .contact-ineos-intro h2 {
        font-size: 1.5rem;
    }

    .contact-ineos-intro p {
        font-size: 1rem;
    }

    .contact-ineos-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.25rem 0;
    }

    .contact-ineos-label {
        min-width: auto;
        font-size: 0.75rem;
    }

    .contact-ineos-value {
        font-size: 1rem;
    }

    /* Products & Services Page Mobile */
    .products-grid-ineos {
        gap: 1.5rem;
        padding: 0;
    }

    .product-category-content {
        padding: 1.25rem;
    }

    .product-category-label {
        font-size: 0.7rem;
    }

    .product-category-title {
        font-size: 1.125rem; /* Einheitliche Extra Small H3-Größe */
    }

    .product-category-description {
        font-size: 0.875rem;
    }

    .product-subcategory-item {
        font-size: 0.8rem;
        padding: 0.625rem 0;
    }

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

    .service-card-ineos {
        padding: 1.5rem;
    }

    .service-card-title {
        font-size: 1.125rem; /* Einheitliche Extra Small H3-Größe */
    }

    .service-card-description {
        font-size: 0.9375rem;
    }

    /* Expertise/Products Section Mobile */
    .expertise-section-content {
        padding: 2rem 1.5rem;
    }

    .expertise-section-title {
        font-size: 1.25rem;
    }

    .expertise-section-intro {
        font-size: 0.9375rem;
    }

    .expertise-bullet-list li {
        font-size: 0.875rem;
    }

    /* Sustainability/Innovation Page Mobile */
    .sustainability-content {
        padding: 0;
    }

    .sustainability-accordion {
        padding: 0 var(--container-padding);
    }

    .accordion-item {
        margin: 0;
    }

    .accordion-header {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .accordion-content-inner {
        padding: 0 1rem 1.5rem;
        gap: 1.5rem;
    }

    .accordion-text {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .accordion-text ul {
        padding-left: 1rem;
    }

    .accordion-text li {
        font-size: 0.875rem;
        padding-left: 1.25rem;
    }

    .accordion-image {
        height: 200px;
    }

    .accordion-image img {
        border-radius: 0;
    }

    /* Media/News Page Mobile */
    .media-main-content {
        padding: 3rem var(--container-padding);
    }

    .section-title-centered {
        font-size: 1.5rem; /* Einheitliche Mobile H2-Größe */
    }

    .group-news-content {
        padding: 1.25rem;
    }

    .group-news-card h3 {
        font-size: 1rem;
    }

    /* Careers Page Mobile */
    .careers-why-header h2 {
        font-size: 1.5rem;
    }

    .careers-opportunities-title h2 {
        font-size: 1.5rem;
    }

    .careers-culture-header-new h2 {
        font-size: 1.5rem;
    }

    .careers-locations-header h2 {
        font-size: 1.5rem;
    }

    .careers-culture-item-new {
        padding: 1.5rem;
    }

    .careers-culture-item-new h4 {
        font-size: 1.125rem;
    }

    .careers-location-card-content {
        padding: 1.25rem;
    }

    /* Legal Page Mobile */
    .legal-nav {
        flex-direction: column;
        gap: 0;
    }

    .legal-nav-item {
        padding: 0.75rem 1rem;
        text-align: center;
        border-bottom: 1px solid hsl(210, 40%, 92%);
    }

    .legal-content-section {
        padding: 3rem var(--container-padding);
    }

    .legal-section h3 {
        font-size: 1.25rem;
    }

    .legal-section p {
        font-size: 1rem;
    }

    /* Structure Cards (Companies) Mobile */
    .structure-card {
        padding: 2.5rem 1.5rem;
    }

    .structure-card h3 {
        font-size: 1.5rem;
    }

    .structure-description {
        font-size: 0.9375rem; /* Einheitliche Mobile Paragraph-Größe */
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    /* Hero Extra Small */
    .hero-section {
        min-height: 100vh; /* Full viewport height */
        padding: 6.5rem 0 3rem;
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 0 1.25rem;
    }

    .hero-content > div {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.625rem;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-accent-bar {
        width: 3.5rem;
        height: 3px;
        margin: 1rem 0;
    }

    .hero-buttons {
        gap: 0.875rem;
        margin-top: 1.75rem;
    }

    .hero-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8125rem;
        height: auto;
        min-height: 2.75rem;
    }

    /* Corporate Grid Extra Small */
    .content-section {
        padding: 2rem var(--container-padding);
    }

    .corporate-grid {
        gap: 1.5rem;
    }

    .corporate-grid-left {
        gap: 1rem;
    }

    .corporate-grid-left h2 {
        font-size: 1.25rem; /* Einheitliche Extra Small H2-Größe */
    }

    .corporate-grid-left p {
        font-size: 0.875rem; /* Einheitliche Extra Small Paragraph-Größe */
    }

    .corporate-grid-right {
        gap: 0.75rem;
    }

    .card {
        padding: 1rem;
    }

    .card-title {
        font-size: 1rem; /* Einheitliche Extra Small H3-Größe */
    }

    .card-content {
        font-size: 0.875rem; /* Einheitliche Extra Small Paragraph-Größe */
    }

    .card-link {
        font-size: 0.6875rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .about-ineos-stat-number {
        font-size: 1.75rem;
    }

    .about-ineos-intro-content h2 {
        font-size: 1.25rem;
    }

    .about-ineos-section-header h2 {
        font-size: 1.25rem;
    }

    .about-ineos-feature-number {
        font-size: 1.75rem;
    }

    .page-header {
        padding: 6rem var(--container-padding) 2rem !important;
    }

    .page-header h1 {
        font-size: 1.25rem !important;
    }

    .page-header p {
        font-size: 0.875rem !important;
    }

    .page-header .hero-accent-bar {
        width: 3rem !important;
        height: 2px !important;
        margin-bottom: 1rem !important;
    }

    .innovation-header {
        padding: 6rem var(--container-padding) 2rem !important;
    }

    .innovation-header h1 {
        font-size: 1.5rem !important;
    }

    .businesses-header h2 {
        font-size: 1.25rem;
    }

    .contact-ineos-intro h2 {
        font-size: 1.25rem;
    }

    .section-title-centered {
        font-size: 1.25rem;
    }

    .structure-card {
        padding: 2rem 1.25rem;
    }

    .structure-card h3 {
        font-size: 1.25rem;
    }

    .structure-label {
        font-size: 0.625rem;
    }

    .structure-description {
        font-size: 0.875rem; /* Einheitliche Extra Small Paragraph-Größe */
    }

    .footer-brand h3 {
        font-size: 1rem;
    }

    .footer-widget-title {
        font-size: 0.875rem;
    }

    .footer-links a {
        font-size: 0.8125rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Navigation - Better touch targets */
    .mobile-menu-toggle,
    .mobile-menu-close {
        min-width: 48px;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .main-menu > li > a {
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .main-menu .sub-menu a {
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .lang-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }

    /* Sustainability Extra Small - Accordion only (tabs handled above) */
    .accordion-header {
        padding: 1rem 0.75rem;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .accordion-title {
        font-size: 0.9375rem;
    }

    .accordion-content-inner {
        padding: 0 0.75rem 1.25rem;
        gap: 1rem;
    }

    .accordion-text {
        font-size: 0.875rem;
    }

    .accordion-image {
        height: 160px;
    }
    
    /* Forms - Better mobile experience */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px;
        padding: 0.875rem 1rem;
        -webkit-appearance: none;
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .contact-form-field label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .contact-form-field input,
    .contact-form-field textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Product Cards - Better spacing */
    .product-category-card {
        margin-bottom: 1.5rem;
    }
    
    .product-detail-toggle-btn {
        min-height: 48px;
        width: 100%;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Company Rows - Better mobile layout */
    .company-row {
        margin-bottom: 1.5rem;
    }
    
    .company-row-link {
        display: block;
        -webkit-tap-highlight-color: transparent;
    }
    
    .company-row-content {
        padding: 1.5rem;
    }
    
    /* Tables - Horizontal scroll on mobile */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    /* Images - Responsive */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Better spacing for sections */
    section {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    html {
        overflow-x: hidden;
    }
    
    /* Better text selection */
    ::selection {
        background-color: var(--accent);
        color: var(--primary-foreground);
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Better focus states for accessibility */
    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }
}

/* Extra Small Devices (phones in portrait, less than 400px) */
@media (max-width: 400px) {
    :root {
        --container-padding: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .page-header h1 {
        font-size: 1.125rem !important;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 5rem 0 3rem;
    }
    
    .page-header {
        padding: 5rem var(--container-padding) 2rem;
    }
}

/* ============================================
   COOKIE CONSENT MODAL
   ============================================ */

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    backdrop-filter: blur(4px);
}

.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    background: #fff;
    z-index: 99999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.cookie-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid hsl(210, 20%, 92%);
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.cookie-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-intro {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1rem 0;
}

.cookie-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin: 0 0 1.5rem 0;
}

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

.cookie-text a:hover {
    color: var(--primary);
}

/* Cookie Categories */
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-category {
    background: hsl(210, 40%, 98%);
    padding: 1rem 1.25rem;
    border: 1px solid hsl(210, 20%, 92%);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-category-header strong {
    font-size: 0.9375rem;
    color: var(--primary);
}

.cookie-category-desc {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0.75rem 0 0 0;
    padding-left: 1.75rem;
}

/* Custom Checkbox */
.cookie-checkbox {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    user-select: none;
}

.cookie-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.cookie-checkbox .checkmark {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid hsl(210, 20%, 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cookie-checkbox input:checked ~ .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.cookie-checkbox input:disabled ~ .checkmark {
    background: hsl(210, 20%, 90%);
    border-color: hsl(210, 20%, 80%);
}

.cookie-checkbox input:checked:disabled ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.cookie-checkbox .checkmark::after {
    content: '';
    display: none;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.cookie-checkbox input:checked ~ .checkmark::after {
    display: block;
}

/* Modal Footer */
.cookie-modal-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid hsl(210, 20%, 92%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .cookie-modal-footer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.cookie-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

.cookie-btn-primary {
    background: var(--accent);
    color: #fff;
}

.cookie-btn-primary:hover {
    background: #e08a40;
}

.cookie-btn-secondary {
    background: var(--primary);
    color: #fff;
}

.cookie-btn-secondary:hover {
    background: hsl(213, 50%, 20%);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(210, 20%, 85%);
    color: var(--muted-foreground);
}

.cookie-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@media (min-width: 480px) {
    .cookie-btn {
        flex: 1;
        min-width: 140px;
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .cookie-modal {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        max-height: 85vh;
        animation: slideUpModal 0.3s ease-out;
    }
    
    @keyframes slideUpModal {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .cookie-modal-header {
        padding: 1.25rem 1rem 0.875rem;
    }
    
    .cookie-modal-header h2 {
        font-size: 1.25rem;
    }
    
    .cookie-modal-body {
        padding: 1rem;
    }
    
    .cookie-category {
        padding: 0.875rem 1rem;
    }
    
    .cookie-modal-footer {
        padding: 1rem;
    }
    
    .cookie-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
}