:root {
    --bg-primary: #0a0a14;
    --bg-secondary: #111120;
    --bg-tertiary: #181830;
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.07);
    --color-primary: #7c5cbf;
    --color-primary-light: #9b7fd4;
    --color-primary-dark: #5a3e8f;
    --color-primary-glow: rgba(124, 92, 191, 0.25);
    --color-accent: #b8a0e0;
    --color-text: #dddae6;
    --color-text-muted: #8a87a0;
    --color-heading: #f0eef5;
    --color-white: #ffffff;
    --color-border: rgba(124, 92, 191, 0.15);
    --color-border-strong: rgba(124, 92, 191, 0.35);
    --gradient-primary: linear-gradient(135deg, #7c5cbf 0%, #5a3e8f 100%);
    --gradient-accent: linear-gradient(135deg, #9b7fd4 0%, #7c5cbf 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 30%, #1a1530 0%, #0a0a14 70%);
    --gradient-timeline: linear-gradient(180deg, #7c5cbf, #5a3e8f, #7c5cbf);
    --shadow-glow: 0 0 30px rgba(124, 92, 191, 0.15);
    --shadow-glow-strong: 0 0 40px rgba(124, 92, 191, 0.25);
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   NAVIGATION — Glass-morphism bar
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-header .logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: var(--color-text);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-white);
    background: var(--bg-glass-hover);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* =========================================
   HERO — Dark radial gradient + floating shapes
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 1.5rem 80px;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border: 1px solid var(--color-border);
    opacity: 0.3;
}

.hero-shape--1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 10%;
    right: -5%;
    animation: float 8s ease-in-out infinite;
}

.hero-shape--2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite reverse;
}

.hero-shape--3 {
    width: 200px;
    height: 200px;
    border-radius: 30%;
    bottom: 15%;
    right: 15%;
    animation: float 10s ease-in-out infinite;
}

.hero-shape--4 {
    width: 80px;
    height: 80px;
    top: 25%;
    left: 20%;
    border-radius: 50%;
    border-color: var(--color-primary-glow);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-2px);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary-light);
    border: 1px solid var(--color-border-strong);
}

.btn-outline:hover {
    background: var(--bg-glass-hover);
    color: var(--color-white);
    border-color: var(--color-primary-light);
}

/* =========================================
   SECTIONS
   ========================================= */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-light);
    margin-bottom: 0.75rem;
}

.section-alt {
    background: var(--bg-secondary);
}

/* =========================================
   GLASS CARDS
   ========================================= */
.glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.glass-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-glow);
    background: var(--bg-glass-hover);
}

.glass-card h3 {
    margin-bottom: 0.8rem;
}

.glass-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.glass-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--color-white);
}

/* =========================================
   SERVICE CARDS GRID
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-light);
}

.service-card .card-link::after {
    content: "\2192";
    transition: transform var(--transition);
}

.service-card:hover .card-link::after {
    transform: translateX(4px);
}

/* =========================================
   COUNTER BLOCKS — Glowing border
   ========================================= */
.counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.counter-block {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--bg-glass);
    transition: all var(--transition);
}

.counter-block:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.counter-block .counter-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary-light);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-block .counter-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* =========================================
   TAB INTERFACE — CSS-only
   ========================================= */
.tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tabs input[type="radio"] {
    display: none;
}

.tab-labels {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.tab-labels label {
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.tab-labels label:hover {
    color: var(--color-text);
    background: var(--bg-glass);
}

.tab-panels .tab-panel {
    display: none;
    padding: 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    animation: fadeIn 0.4s ease;
}

#tab1:checked ~ .tab-labels label[for="tab1"],
#tab2:checked ~ .tab-labels label[for="tab2"],
#tab3:checked ~ .tab-labels label[for="tab3"],
#tab4:checked ~ .tab-labels label[for="tab4"] {
    color: var(--color-white);
    background: var(--gradient-primary);
}

#tab1:checked ~ .tab-panels .tab-panel:nth-child(1),
#tab2:checked ~ .tab-panels .tab-panel:nth-child(2),
#tab3:checked ~ .tab-panels .tab-panel:nth-child(3),
#tab4:checked ~ .tab-panels .tab-panel:nth-child(4) {
    display: block;
}

/* =========================================
   HEXAGONAL GRID (clip-path)
   ========================================= */
.hex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hex-item {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    text-align: center;
    aspect-ratio: 1 / 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.hex-item:hover {
    background: var(--bg-glass-hover);
}

.hex-item .hex-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary-light);
}

.hex-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.hex-item p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* =========================================
   VERTICAL TIMELINE — Neon gradient line
   ========================================= */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-timeline);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding: 0 0 3rem 2rem;
}

.timeline-item::before {
    content: attr(data-step);
    position: absolute;
    left: -3rem;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

.timeline-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================
   GLASS CTA
   ========================================= */
.cta-glass {
    background: var(--bg-glass);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-glow);
    max-width: 800px;
    margin: 0 auto;
}

.cta-glass h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-glass p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list details {
    margin-bottom: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-list details:hover {
    border-color: var(--color-border-strong);
}

.faq-list details[open] {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.faq-list summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-heading);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--color-primary-light);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-list .faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* =========================================
   ABOUT / TEASER SPLIT
   ========================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-text h2 {
    margin-bottom: 1rem;
}

.split-text p {
    color: var(--color-text-muted);
}

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   PAGE HERO (Inner pages)
   ========================================= */
.page-hero {
    padding: 140px 0 60px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--color-white), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: var(--color-text-muted);
}

.breadcrumbs span {
    color: var(--color-text-muted);
}

.breadcrumbs .current {
    color: var(--color-primary-light);
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 0.4rem;
    margin-top: 1.2rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a87a0' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form select option {
    background: var(--bg-secondary);
    color: var(--color-text);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-consent {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.form-consent input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}

.form-consent label {
    margin: 0;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.contact-form button[type="submit"] {
    margin-top: 2rem;
    width: 100%;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-details {
    padding: 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.contact-details h3 {
    margin-bottom: 1.5rem;
}

.contact-detail-item {
    margin-bottom: 1.2rem;
}

.contact-detail-item .detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-light);
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-detail-item .detail-value {
    color: var(--color-text);
    font-size: 0.95rem;
}

.success-message {
    display: none;
    background: rgba(46, 160, 67, 0.1);
    border: 1px solid rgba(46, 160, 67, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    color: #7ee787;
    margin-bottom: 2rem;
}

.success-message.show {
    display: block;
}

/* =========================================
   REFERENZEN / CASE STUDIES
   ========================================= */
.case-study {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.case-study .case-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary-light);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.case-study h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.case-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.case-meta span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.case-meta span strong {
    color: var(--color-text);
}

.case-body h4 {
    color: var(--color-primary-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    margin-top: 1.2rem;
}

.case-body h4:first-child {
    margin-top: 0;
}

.case-body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* =========================================
   KARRIERE
   ========================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    padding: 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.benefit-card .benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.job-listing {
    padding: 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.job-listing h3 {
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* =========================================
   BLOG / AKTUELLES
   ========================================= */
.article-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}

.article-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-glow);
}

.article-card img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.article-card .article-date {
    font-size: 0.8rem;
    color: var(--color-primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-card h3 {
    margin: 0.5rem 0 0.8rem;
}

.article-card h3 a {
    color: var(--color-heading);
}

.article-card h3 a:hover {
    color: var(--color-primary-light);
}

.article-card .excerpt {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content .article-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.article-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.article-content p {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.article-content ul {
    color: var(--color-text-muted);
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 0.7rem 1.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
}

.legal-content p,
.legal-content li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =========================================
   VALUES LIST
   ========================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.value-card h3 {
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 30px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--color-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(17, 17, 32, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
    padding: 1.5rem;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-inner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.cookie-inner a {
    color: var(--color-primary-light);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   PROCESS STEPS
   ========================================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    counter-reset: process;
}

.process-step {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-glow);
}

.process-step h4 {
    margin-bottom: 0.6rem;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team-portrait {
    max-width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.team-portrait img {
    width: 100%;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    h1 { font-size: 2.2rem; }
    .hero-content h1 { font-size: 2.6rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .counters { grid-template-columns: repeat(2, 1fr); }
    .hex-grid { grid-template-columns: repeat(2, 1fr); }
    .split { gap: 2.5rem; }
    .contact-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    section { padding: 60px 0; }

    .hero { min-height: auto; padding: 120px 1.5rem 60px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content .subtitle { font-size: 1rem; }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 20, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .counters {
        grid-template-columns: 1fr 1fr;
    }

    .counter-block .counter-value {
        font-size: 2rem;
    }

    .hex-grid {
        grid-template-columns: 1fr;
    }

    .hex-item {
        clip-path: none;
        border-radius: var(--radius-lg);
        aspect-ratio: auto;
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .article-card {
        grid-template-columns: 1fr;
    }

    .article-card img {
        height: 200px;
    }

    .page-hero { padding: 120px 0 40px; }
    .page-hero h1 { font-size: 2rem; }

    .cta-glass { padding: 2.5rem 1.5rem; }

    .tab-labels { flex-direction: column; }
    .tab-labels label { text-align: center; }

    .case-meta { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .counters { grid-template-columns: 1fr; }
}
