/* ========================================
   Kohen Platform - Main Stylesheet
   ======================================== */

:root {
    --color-black: #0a0a0a;
    --color-gray-900: #141414;
    --color-gray-800: #1f1f1f;
    --color-gray-700: #333333;
    --color-gray-600: #4a4a4a;
    --color-gray-500: #6b6b6b;
    --color-gray-400: #999999;
    --color-gray-300: #c4c4c4;
    --color-gray-200: #e0e0e0;
    --color-gray-100: #f2f2f2;
    --color-gray-50: #f9f9f9;
    --color-white: #ffffff;
    --color-accent: #1a1a2e;
    --color-success: #22c55e;
    --color-error: #ef4444;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-900);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

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

/* ========================================
   Lucide Icons
   ======================================== */
[data-lucide] {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

/* ========================================
   Header - Apple/German Corporate Style
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

@media (min-width: 1200px) {
    .header-inner {
        padding: 0 24px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.7;
}

.logo-mark {
    position: absolute;
    top: 10px;
    left: 0;
    width: auto;
    height: 150px;
    object-fit: contain;
    transition: var(--transition);
    filter: invert(1);
    z-index: 10;
}

header.scrolled .logo {
    background: var(--color-black);
    padding: 12px 20px;
    border-radius: 8px;
}

header.scrolled .logo-mark {
    position: relative;
    top: 0;
    filter: invert(1);
    height: 80px;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

header:not(.scrolled) .logo-text {
    color: var(--color-white);
}

/* Page without hero - always dark header */
.page-light header .logo-mark {
    filter: invert(0);
}

.page-light header .logo-text {
    color: var(--color-black);
}

.page-light header nav a {
    color: var(--color-gray-600);
}

.page-light header nav a:hover {
    color: var(--color-black);
}

.page-light header nav a.active {
    color: var(--color-black);
}

/* Legal pages with dark hero - white header initially */
.page-legal header:not(.scrolled) .logo-mark {
    filter: invert(1);
}

.page-legal header:not(.scrolled) nav a {
    color: rgba(255,255,255,0.7);
}

.page-legal header:not(.scrolled) nav a:hover {
    color: var(--color-white);
}

.page-legal header:not(.scrolled) nav a.active {
    color: var(--color-white);
}

.page-legal header:not(.scrolled) .lang-switch a {
    color: rgba(255,255,255,0.5);
}

.page-legal header:not(.scrolled) .lang-switch a.active {
    color: var(--color-white);
}

.page-legal header:not(.scrolled) .mobile-menu-btn {
    color: var(--color-white);
}

/* Legal pages scrolled - keep logo white on black bg */
.page-legal header.scrolled .logo-mark {
    filter: invert(1);
}

.page-light header .lang-switch a {
    color: var(--color-gray-500);
}

.page-light header .lang-switch a.active {
    color: var(--color-black);
}

.page-light header .mobile-menu-btn [data-lucide] {
    color: var(--color-black);
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav a {
    font-size: 14px;
    font-weight: 450;
    color: var(--color-gray-600);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

header:not(.scrolled) nav a {
    color: rgba(255,255,255,0.8);
}

nav a:hover {
    color: var(--color-black);
    background: rgba(0,0,0,0.04);
}

header:not(.scrolled) nav a:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.1);
}

nav a.active {
    color: var(--color-black);
    font-weight: 550;
}

header:not(.scrolled) nav a.active {
    color: var(--color-white);
    font-weight: 550;
}

.lang-switch {
    display: flex;
    align-items: center;
    margin-left: 16px;
    padding: 4px;
    background: rgba(0,0,0,0.04);
    border-radius: 8px;
    gap: 0;
}

header:not(.scrolled) .lang-switch {
    background: rgba(255,255,255,0.1);
}

.lang-switch a {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-500);
    padding: 6px 12px;
    border-radius: 5px;
    transition: all 0.2s ease;
    margin-left: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

header:not(.scrolled) .lang-switch a {
    color: rgba(255,255,255,0.5);
}

.lang-switch a:hover {
    color: var(--color-gray-700);
}

header:not(.scrolled) .lang-switch a:hover {
    color: rgba(255,255,255,0.8);
}

.lang-switch a.active {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

header:not(.scrolled) .lang-switch a.active {
    background: rgba(255,255,255,0.95);
    color: var(--color-black);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0,0,0,0.05);
}

header:not(.scrolled) .mobile-menu-btn:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-menu-btn [data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--color-black);
    stroke-width: 1.5;
}

header:not(.scrolled) .mobile-menu-btn [data-lucide] {
    color: var(--color-white);
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

/* ========================================
   Hero Section - Minimalist Typography
   ======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
}

.hero-minimal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 3rem 4rem;
}

.hero-minimal .hero-content {
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    align-items: flex-start;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
    filter: grayscale(100%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 160px 24px 120px;
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.hero-eyebrow::before {
    display: none;
}

/* Giant Typography */
.hero-title-giant {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--color-white);
    margin-bottom: 0;
}

.hero-title-giant .line {
    display: block;
    overflow: hidden;
}

.hero-title-giant .outline {
    -webkit-text-stroke: 1px var(--color-white);
    -webkit-text-fill-color: transparent;
}

.hero h1 {
    font-family: var(--font-body);
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.hero h1 br {
    display: block;
}

/* Hero Divider */
.hero-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 4rem 0;
}

/* Hero Bottom Layout */
.hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: end;
    width: 100%;
}

.hero-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-description {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    max-width: 400px;
    margin: 0;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0;
    justify-content: flex-start;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
}

.hero-tag [data-lucide] {
    width: 14px;
    height: 14px;
    color: rgba(255,255,255,0.3);
    stroke-width: 2;
}

/* Hero Disclaimer */
.hero-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    margin-top: 1rem;
    letter-spacing: 0.01em;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.btn-minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.btn-minimal:hover {
    border-color: var(--color-white);
    gap: 1.25rem;
}

.btn-minimal [data-lucide] {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.btn-minimal:hover [data-lucide] {
    transform: translateX(4px);
}

/* Corner Text */
.hero-corner-text {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
}

/* ========================================
   Buttons - Apple Style
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-white);
    color: var(--color-black);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: rgba(255,255,255,0.85);
    transform: scale(1.02);
}

.btn-primary [data-lucide] {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    stroke-width: 2;
}

.btn-primary:hover [data-lucide] {
    transform: translateX(2px);
}

/* Dark background version */
.cta-section .btn-primary,
.hero .btn-primary {
    background: var(--color-white);
    color: var(--color-black);
}

/* Light background version */
.section-light .btn-primary {
    background: var(--color-black);
    color: var(--color-white);
}

.section-light .btn-primary:hover {
    background: var(--color-gray-800);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-black);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 980px;
    border: 1px solid var(--color-gray-300);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    border-color: var(--color-gray-400);
    background: var(--color-gray-50);
}

.btn-secondary [data-lucide] {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    stroke-width: 2;
}

.btn-secondary:hover [data-lucide] {
    transform: translateX(2px);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.btn-link:hover {
    opacity: 0.7;
}

.btn-link [data-lucide] {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.btn-link:hover [data-lucide] {
    transform: translateX(2px);
}

/* ========================================
   Hero Visual Card - Minimal Style
   ======================================== */
.hero-visual {
    display: none;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Hero Bottom Stats */
.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: none;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll [data-lucide] {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
}

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

/* ========================================
   Sections - Apple/German Corporate Style
   ======================================== */
section {
    padding: 100px 0;
}

.section-light {
    background: var(--color-gray-50);
}

.section-dark {
    background: var(--color-black);
    color: var(--color-white);
}

.section-header {
    max-width: 600px;
    margin-bottom: 56px;
}

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

.section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
    margin-bottom: 12px;
}

.section-dark .section-eyebrow {
    color: var(--color-gray-500);
}

.section-title {
    font-family: var(--font-body);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-dark .section-title {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray-500);
    margin-top: 16px;
    line-height: 1.6;
}

.section-dark .section-subtitle {
    color: var(--color-gray-400);
}

.section-cta {
    margin-top: 48px;
    text-align: center;
}

/* ========================================
   Services Section (What We Do)
   ======================================== */
.services-section {
    padding: 120px 0;
    background: var(--color-white);
}

.services-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-gray-200);
}

@media (max-width: 900px) {
    .services-header {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.services-header-left .section-title {
    margin-top: 16px;
    max-width: 500px;
}

.services-header-right p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    text-decoration: none;
    transition: var(--transition);
}

.btn-text:hover {
    gap: 12px;
}

.btn-text [data-lucide] {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.btn-text:hover [data-lucide] {
    transform: translateX(4px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.service-card {
    position: relative;
    padding: 40px 32px;
    background: var(--color-gray-50);
    border-radius: 16px;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--color-gray-100);
    transform: translateY(-4px);
}

.service-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-400);
    font-family: var(--font-body);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.service-icon [data-lucide] {
    width: 26px;
    height: 26px;
    color: var(--color-black);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-600);
}

/* ========================================
   Feature Cards (for Axis Matrix page)
   ======================================== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    border-color: var(--color-gray-300);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.feature-card.large {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .feature-card.large {
        grid-column: 1;
        grid-row: auto;
    }
}

.feature-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.feature-card.large .feature-image {
    height: 220px;
}

@media (max-width: 900px) {
    .feature-card.large .feature-image {
        height: 200px;
    }
}

.feature-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-card.large .feature-content {
    padding: 32px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.feature-icon [data-lucide] {
    width: 22px;
    height: 22px;
    color: var(--color-gray-700);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 10px;
}

.feature-card.large h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ========================================
   What We Don't Do Section - Modern Style
   ======================================== */
.dont-section {
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

.dont-bg {
    display: none;
}

.dont-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.dont-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .dont-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.dont-text .section-title {
    color: var(--color-white);
}

.dont-text .section-subtitle {
    color: var(--color-gray-400);
}

.dont-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 0;
}

@media (max-width: 600px) {
    .dont-list {
        grid-template-columns: 1fr;
    }
}

.dont-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dont-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.dont-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dont-icon [data-lucide] {
    width: 16px;
    height: 16px;
    color: var(--color-gray-400);
    stroke-width: 2;
}

.dont-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-300);
    letter-spacing: -0.01em;
}

/* ========================================
   Process Section - Modern Horizontal
   ======================================== */
.process-section {
    background: var(--color-white);
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--color-gray-200);
}

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

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 500px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.process-card {
    text-align: center;
    padding: 0 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    border-color: transparent;
    box-shadow: none;
}

.process-card:hover .process-num {
    background: var(--color-black);
    color: var(--color-white);
    transform: scale(1.1);
}

.process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-gray-200);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.process-card p {
    font-size: 13px;
    color: var(--color-gray-500);
    line-height: 1.55;
    max-width: 200px;
    margin: 0 auto;
}

/* ========================================
   Global Section - Modern Style
   ======================================== */
.global-section {
    position: relative;
    background: var(--color-black);
    overflow: hidden;
}

.global-map-bg {
    display: none;
}

.global-content {
    position: relative;
    z-index: 2;
}

.global-section .section-header {
    max-width: 500px;
}

.global-section .section-eyebrow {
    color: var(--color-gray-500);
}

.global-section .section-title {
    color: var(--color-white);
}

.global-section .section-subtitle {
    color: var(--color-gray-400);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
}

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

@media (max-width: 500px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

.location-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.location-card.hq {
    background: var(--color-white);
    border-color: transparent;
    color: var(--color-black);
}

.location-card.hq:hover {
    background: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.location-flag {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.location-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.location-card.hq h4 {
    color: var(--color-black);
}

.location-card p {
    font-size: 13px;
    color: var(--color-gray-500);
}

.location-card.hq p {
    color: var(--color-gray-600);
}

.location-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    margin-top: 12px;
}

/* ========================================
   CTA Section - Apple Style
   ======================================== */
.cta-section {
    background: var(--color-black);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content h2 {
    font-family: var(--font-body);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray-500);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ========================================
   Contact Section - Modern Style
   ======================================== */
.contact-section {
    background: var(--color-gray-50);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    display: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.contact-info h2 {
    font-family: var(--font-body);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: var(--color-black);
}

.contact-info > p {
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 500;
    padding: 16px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    border-color: var(--color-gray-300);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.contact-email [data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--color-gray-500);
}

.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-gray-600);
    padding: 16px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
}

.contact-address [data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--color-gray-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-address p {
    margin: 0;
    line-height: 1.5;
}

.contact-address .address-code {
    margin-top: 8px;
    font-size: 12px;
    color: var(--color-gray-400);
}

.contact-map {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-map iframe {
    display: block;
}

.contact-form {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-black);
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: 10px;
    transition: all 0.2s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gray-400);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.03);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.btn-submit {
    width: 100%;
    padding: 14px 28px;
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--color-gray-800);
    transform: translateY(-1px);
}

.btn-submit [data-lucide] {
    width: 15px;
    height: 15px;
    stroke-width: 2;
}

/* ========================================
   Legal Notice
   ======================================== */
.legal-notice {
    margin-top: 64px;
    padding: 24px 28px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
}

.legal-notice h4 {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gray-500);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.legal-notice p {
    font-size: 13px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ========================================
   Legal Pages (Privacy, Terms)
   ======================================== */
.legal-page {
    padding: 80px 0 100px;
    background: var(--color-white);
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content .legal-intro {
    font-size: 1.125rem;
    color: var(--color-gray-700);
    line-height: 1.9;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.legal-content h2 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 3rem 0 1.25rem;
    padding-top: 1rem;
    letter-spacing: -0.01em;
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.legal-content p {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin: 1.25rem 0 1.75rem 0;
    padding-left: 1.5rem;
    color: var(--color-gray-600);
}

.legal-content ul li {
    margin-bottom: 0.875rem;
    line-height: 1.8;
    padding-left: 0.5rem;
}

.legal-content ul li strong {
    color: var(--color-gray-800);
    font-weight: 600;
}

.legal-content ul li::marker {
    color: var(--color-gray-400);
}

.legal-content em {
    color: var(--color-gray-500);
    font-size: 0.925rem;
    font-style: italic;
}

/* Legal Page Hero */
.legal-hero {
    position: relative;
    padding: 140px 0 60px;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--color-gray-900);
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
    opacity: 1;
}

.legal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.legal-hero-content {
    position: relative;
    z-index: 2;
}

.legal-hero h1 {
    font-family: var(--font-body);
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.legal-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 0 50px;
        min-height: 240px;
    }

    .legal-page {
        padding: 60px 0 80px;
    }

    .legal-content {
        padding: 0 8px;
    }
}

/* ========================================
   Footer - Apple/German Style
   ======================================== */
footer {
    background: var(--color-gray-50);
    color: var(--color-gray-600);
    padding: 32px 0;
    border-top: 1px solid var(--color-gray-200);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-700);
}

.footer-email {
    font-size: 12px;
    color: var(--color-gray-500);
}

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

.footer-links a {
    font-size: 12px;
    color: var(--color-gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-black);
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-200);
    font-size: 11px;
    color: var(--color-gray-500);
}

/* ========================================
   Mobile Navigation
   ======================================== */
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        flex-direction: column;
        padding: 100px 32px 40px;
        z-index: 999;
    }

    nav.active {
        display: flex;
    }

    nav a {
        color: var(--color-black);
        padding: 20px 0;
        text-align: left;
        font-size: 24px;
        font-weight: 600;
        letter-spacing: -0.02em;
        border-bottom: 1px solid var(--color-gray-100);
        border-radius: 0;
    }

    nav a:last-of-type {
        border-bottom: none;
    }

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

    nav a:hover {
        color: var(--color-gray-500);
        background: transparent;
    }

    .lang-switch {
        margin: auto 0 0 0;
        justify-content: flex-start;
        background: transparent;
        padding-top: 32px;
        border-top: 1px solid var(--color-gray-100);
    }

    .lang-switch a {
        font-size: 14px;
        color: var(--color-gray-500);
        padding: 8px 16px 8px 0;
        background: transparent;
        box-shadow: none;
    }

    .lang-switch a.active {
        color: var(--color-black);
        background: transparent;
        box-shadow: none;
    }

    section {
        padding: 80px 0;
    }

    .hero-content {
        padding: 140px 24px 100px;
    }

    .hero h1 {
        font-size: clamp(36px, 10vw, 56px);
    }

    /* Minimalist Hero Responsive */
    .hero-minimal {
        padding: 6rem 2rem 4rem;
    }

    .hero-minimal .hero-content {
        text-align: left;
    }

    .hero-title-giant {
        font-size: clamp(3rem, 15vw, 6rem);
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 2rem;
    }

    .hero-cta {
        align-items: flex-start;
    }

    .hero-corner-text {
        display: none;
    }

    .dont-grid {
        gap: 40px;
    }
}

/* ========================================
   Page Hero (for internal pages) - Parallax
   ======================================== */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    filter: grayscale(100%);
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .page-hero-bg {
        background-attachment: scroll;
    }
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.breadcrumb a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb [data-lucide] {
    width: 14px;
    height: 14px;
    color: rgba(255,255,255,0.4);
    stroke-width: 2;
}

.breadcrumb span {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
}

.page-hero h1 {
    font-family: var(--font-body);
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    line-height: 1.5;
}

/* Old page-header kept for compatibility */
.page-header {
    padding: 160px 0 80px;
    background: var(--color-gray-50);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-body);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.page-header p {
    font-size: 17px;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   Content Sections for Internal Pages
   ======================================== */
.content-section {
    padding: 100px 0;
}

.content-section.alt {
    background: var(--color-gray-50);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

@media (max-width: 900px) {
    .content-grid.reverse {
        direction: ltr;
    }
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.content-text p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.content-image {
    border-radius: 12px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   List Styles
   ======================================== */
.check-list {
    list-style: none;
    margin-top: 24px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--color-gray-700);
}

.check-list li [data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   Form Messages
   ======================================== */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--color-success);
    display: block;
}

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

/* ========================================
   Axis Matrix Page - Product Hero (Apple Style)
   ======================================== */
.product-hero {
    padding: 160px 0 80px;
    background: var(--color-white);
    text-align: center;
}

.product-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 980px;
    margin-bottom: 20px;
}

.product-hero h1 {
    font-family: var(--font-body);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    line-height: 1;
}

.product-hero-desc {
    font-size: 19px;
    font-weight: 400;
    color: var(--color-gray-500);
    line-height: 1.5;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.product-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 22px;
    background: transparent;
    color: var(--color-black);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 980px;
    border: 1px solid var(--color-gray-300);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
}

.btn-outline:hover {
    border-color: var(--color-gray-400);
    background: var(--color-gray-50);
}

.btn-outline [data-lucide] {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.product-hero .btn-primary {
    background: var(--color-black);
    color: var(--color-white);
}

.product-hero .btn-primary:hover {
    background: var(--color-gray-800);
}

/* ========================================
   Stats Bar - Minimal Style
   ======================================== */
.stats-bar {
    padding: 0;
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    padding: 32px 24px;
}

@media (max-width: 600px) {
    .stats-grid {
        gap: 32px;
    }
}

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

.stat-value {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 11px;
    font-weight: 400;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--color-gray-200);
}

@media (max-width: 600px) {
    .stat-divider {
        display: none;
    }
}

/* ========================================
   About Product Section
   ======================================== */
.about-product {
    padding: 120px 0;
}

.about-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 900px) {
    .about-product-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.about-product-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 500;
    color: var(--color-black);
    margin: 16px 0 24px;
    letter-spacing: -0.02em;
}

.about-product-content .lead {
    font-size: 18px;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-product-content p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.about-product-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mini-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--color-gray-50);
    border-radius: 12px;
    transition: var(--transition);
}

.mini-feature:hover {
    background: var(--color-gray-100);
}

.mini-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mini-feature-icon [data-lucide] {
    width: 22px;
    height: 22px;
    color: var(--color-black);
}

.mini-feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.mini-feature-text p {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* ========================================
   How It Works - Timeline (Axis Matrix Page)
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--color-gray-50);
}

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

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

@media (max-width: 500px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

.process-timeline-item {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid var(--color-gray-100);
    transition: all 0.3s ease;
}

.process-timeline-item:hover {
    border-color: var(--color-gray-200);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    transform: translateY(-4px);
}

.process-timeline-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-400);
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.process-timeline-icon {
    width: 48px;
    height: 48px;
    background: var(--color-gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.process-timeline-icon [data-lucide] {
    width: 22px;
    height: 22px;
    color: var(--color-black);
    stroke-width: 1.5;
}

.process-timeline-content h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.process-timeline-content p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ========================================
   Use Cases Section
   ======================================== */
.use-cases {
    padding: 120px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

.use-case-card {
    padding: 36px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    transition: var(--transition);
}

.use-case-card:hover {
    border-color: var(--color-gray-300);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.use-case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.use-case-icon {
    width: 52px;
    height: 52px;
    background: var(--color-gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon [data-lucide] {
    width: 24px;
    height: 24px;
    color: var(--color-black);
}

.use-case-tag {
    padding: 6px 12px;
    background: var(--color-gray-100);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.use-case-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 12px;
}

.use-case-card > p {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.use-case-list {
    list-style: none;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-100);
}

.use-case-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-gray-700);
    padding: 8px 0;
}

.use-case-list li [data-lucide] {
    width: 16px;
    height: 16px;
    color: var(--color-success);
}

/* ========================================
   Boundaries Section (Axis Matrix Page)
   ======================================== */
.boundaries-section {
    padding: 100px 0;
    background: var(--color-black);
}

.boundaries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .boundaries-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.boundaries-content .section-eyebrow {
    color: var(--color-gray-500);
}

.boundaries-content h2 {
    font-family: var(--font-body);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: var(--color-white);
    margin: 12px 0 16px;
    letter-spacing: -0.02em;
}

.boundaries-content p {
    font-size: 15px;
    color: var(--color-gray-400);
    line-height: 1.6;
}

.boundaries-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 500px) {
    .boundaries-list {
        grid-template-columns: 1fr;
    }
}

.boundary-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.boundary-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.boundary-item [data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--color-gray-400);
    flex-shrink: 0;
    stroke-width: 2;
}

.boundary-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-300);
    letter-spacing: -0.01em;
}

/* ========================================
   Minimalist Sections - Swiss Design Style
   ======================================== */
.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
}

@media (max-width: 768px) {
    .container-wide {
        padding: 0 1.5rem;
    }
}

.section-minimal {
    padding: 8rem 0;
    background: var(--color-white);
}

.section-minimal.dark {
    background: var(--color-black);
}

.section-header-minimal {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-number {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gray-400);
    letter-spacing: 0.1em;
}

.section-title-large {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -0.03em;
    line-height: 1;
}

.section-title-large.light {
    color: var(--color-white);
}

.section-divider {
    width: 100%;
    height: 1px;
    background: var(--color-gray-200);
    margin-bottom: 4rem;
}

.section-divider.light {
    background: rgba(255,255,255,0.1);
}

/* Text Utilities */
.text-large {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    max-width: 600px;
}

.text-large.light {
    color: rgba(255,255,255,0.6);
}

/* Button Minimal Dark */
.btn-minimal.dark {
    color: var(--color-black);
    border-bottom-color: var(--color-gray-300);
}

.btn-minimal.dark:hover {
    border-bottom-color: var(--color-black);
}

/* ========================================
   Services Section - Minimalist
   ======================================== */
.services-minimal {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

@media (max-width: 1024px) {
    .services-minimal {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.services-intro {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.service-item:first-child {
    border-top: 1px solid var(--color-gray-200);
}

@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.service-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-item-number {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gray-400);
    letter-spacing: 0.05em;
}

.service-item-header [data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--color-gray-500);
}

.service-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -0.02em;
    margin: 0;
}

.service-item p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Services Disclaimer */
.services-disclaimer {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    font-style: italic;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-200);
}

/* ========================================
   Boundaries Section - Minimalist
   ======================================== */
.boundaries-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .boundaries-minimal {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.boundaries-statement {
    position: sticky;
    top: 120px;
}

.statement-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.statement-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.boundaries-list {
    display: flex;
    flex-direction: column;
}

.boundary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.boundary-row:first-child {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.boundary-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.boundary-left [data-lucide] {
    width: 22px;
    height: 22px;
    color: rgba(255,255,255,0.4);
    stroke-width: 1.5;
}

.boundary-label {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: -0.01em;
}

.boundary-x {
    width: 28px;
    height: 28px;
    color: #ef4444;
    stroke-width: 1.5;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.boundary-row:hover .boundary-x {
    opacity: 1;
}

/* ========================================
   Process Section - Minimalist
   ======================================== */
.process-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

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

@media (max-width: 640px) {
    .process-minimal {
        grid-template-columns: 1fr;
    }
}

.process-step {
    padding: 2rem;
    border-left: 1px solid var(--color-gray-200);
}

.process-step:first-child {
    border-left: none;
}

@media (max-width: 1024px) {
    .process-step:nth-child(3) {
        border-left: none;
    }
}

@media (max-width: 640px) {
    .process-step {
        border-left: none;
        border-top: 1px solid var(--color-gray-200);
        padding: 2rem 0;
    }
    .process-step:first-child {
        border-top: none;
    }
}

.step-number {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-gray-400);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--color-gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon [data-lucide] {
    width: 26px;
    height: 26px;
    color: var(--color-black);
    stroke-width: 1.5;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ========================================
   Global Section - Minimalist
   ======================================== */
.global-minimal {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.global-minimal .text-large {
    max-width: 700px;
}

.locations-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
}

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

@media (max-width: 640px) {
    .locations-minimal {
        grid-template-columns: 1fr;
    }
}

.location-item {
    background: var(--color-black);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
}

.location-item:hover {
    background: rgba(255,255,255,0.03);
}

.location-item.hq {
    background: var(--color-white);
}

.location-item.hq:hover {
    background: var(--color-gray-50);
}

.location-item .location-flag {
    font-size: 1.6rem;
    line-height: 1;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.location-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.location-item.hq .location-name {
    color: var(--color-black);
}

.location-entity {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.location-item.hq .location-entity {
    color: var(--color-gray-500);
}

.location-item .location-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 2px;
}

/* Global Disclaimer */
.global-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    margin-top: 2rem;
}

/* ========================================
   CTA Section - Minimalist
   ======================================== */
.section-cta-minimal {
    padding: 8rem 0;
    background: var(--color-gray-50);
}

.cta-minimal {
    max-width: 800px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-divider {
    width: 80px;
    height: 1px;
    background: var(--color-gray-300);
    margin-bottom: 2rem;
}

.cta-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-bottom p {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    line-height: 1.7;
    max-width: 500px;
}

/* CTA Split Layout */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.cta-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.cta-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-stat-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-stat-arrow [data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--color-gray-300);
}

@media (max-width: 1024px) {
    .cta-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-stats {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .cta-stat-arrow {
        transform: rotate(90deg);
    }
}

/* ========================================
   Footer - Minimalist
   ======================================== */
.footer-minimal {
    padding: 3rem 3rem 0.5rem;
    background: var(--color-black);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .footer-top {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

.footer-brand-minimal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.footer-bottom-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 640px) {
    .footer-bottom-minimal {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

.footer-bottom-minimal span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-links-minimal {
    display: flex;
    gap: 2rem;
}

.footer-links-minimal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-minimal a:hover {
    color: var(--color-white);
}

/* Footer Designed By */
.footer-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-powered span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-powered a {
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

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

.footer-powered .swantro-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.footer-powered a:hover .swantro-logo {
    opacity: 1;
}

/* Light footer version */
footer:not(.footer-minimal) .footer-powered {
    border-top-color: var(--color-gray-200);
}

footer:not(.footer-minimal) .footer-powered span {
    color: var(--color-gray-400);
}

footer:not(.footer-minimal) .footer-powered .swantro-logo {
    filter: brightness(0);
    opacity: 0.5;
}

footer:not(.footer-minimal) .footer-powered a:hover .swantro-logo {
    opacity: 0.7;
}

/* ========================================
   Hero Split Layout with Matrix Visual
   ======================================== */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
}

.hero-split .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 4rem 6rem;
}

.hero-split .hero-content {
    padding: 0;
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
}

.hero-split .hero-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hero-split .hero-cta {
    align-items: flex-start;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

/* Matrix Visual SVG */
.matrix-visual {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
}

.matrix-visual svg {
    width: 100%;
    height: 100%;
}

/* Grid elements */
.matrix-visual .grid-line {
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 1;
}

.matrix-visual .grid-dot {
    fill: rgba(255, 255, 255, 0.15);
}

/* Connection path */
.matrix-visual .connection-path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 4 4;
}

/* Highlight nodes */
.matrix-visual .highlight-glow {
    fill: rgba(255, 255, 255, 0.1);
}

.matrix-visual .highlight-ring {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 1;
}

.matrix-visual .highlight-dot {
    fill: rgba(255, 255, 255, 0.9);
}

/* Node labels */
.matrix-visual .node-label {
    fill: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* AXIS MATRIX label */
.matrix-visual .matrix-label {
    fill: rgba(255, 255, 255, 0.3);
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.15em;
}

/* Moving particle animation */
.matrix-visual .moving-particle {
    fill: rgba(255, 255, 255, 0.8);
    offset-path: path('M130,250 L250,150 L370,250');
    animation: particleMove 4s ease-in-out infinite;
}

@keyframes particleMove {
    0% { offset-distance: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { offset-distance: 100%; opacity: 0; }
}

/* Highlight glow pulse animation */
.matrix-visual .highlight-glow {
    animation: highlightPulse 3s ease-in-out infinite;
    transform-origin: center;
}

.matrix-visual .highlight-node-group:nth-child(5) .highlight-glow {
    animation-delay: 1s;
}

.matrix-visual .highlight-node-group:nth-child(6) .highlight-glow {
    animation-delay: 2s;
}

@keyframes highlightPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.5);
    }
}

/* Grid dot wave animation */
.matrix-visual .grid-dot {
    animation: gridWave 4s ease-in-out infinite;
}

.matrix-visual .grid-dot:nth-child(3n) { animation-delay: 0.1s; }
.matrix-visual .grid-dot:nth-child(3n+1) { animation-delay: 0.2s; }
.matrix-visual .grid-dot:nth-child(3n+2) { animation-delay: 0.3s; }

@keyframes gridWave {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.25; }
}

/* Hero Split Responsive */
@media (max-width: 1200px) {
    .hero-split .hero-left {
        padding: 6rem 3rem 3rem 4rem;
    }
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .hero-split .hero-left {
        padding: 8rem 2rem 2rem;
        order: 1;
    }

    .hero-right {
        order: 2;
        min-height: 400px;
        padding: 2rem;
    }

    .matrix-visual {
        max-width: 400px;
        max-height: 400px;
    }
}

@media (max-width: 640px) {
    .hero-split .hero-left {
        padding: 6rem 1.5rem 2rem;
    }

    .hero-right {
        min-height: 350px;
        padding: 1.5rem;
    }

    .matrix-visual {
        max-width: 320px;
        max-height: 320px;
    }
}
