/* ========================================
   Digitaler Produktpass - Software/Tech Style
   Modern, Clean, SaaS Design
   ======================================== */

:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --purple: #8B5CF6;
    --green: #10B981;
    --orange: #F59E0B;
    --pink: #EC4899;
    --cyan: #06B6D4;
    --red: #EF4444;

    --bg: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-card: #FFFFFF;
    --surface: #F1F5F9;

    --text: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;

    --border: rgba(0,0,0,0.08);
    --border-light: rgba(0,0,0,0.12);

    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);

    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --glow: 0 0 60px rgba(99, 102, 241, 0.15);

    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }

p { color: var(--text-secondary); }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon svg { width: 36px; height: 36px; }

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.logo-dot {
    color: var(--primary);
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a {
    padding: 10px 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-radius: 8px;
}

.nav-links li a:hover { color: var(--text); background: var(--surface); }

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

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

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-dropdown-menu a:hover {
    background: var(--surface);
    color: var(--primary);
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black, transparent);
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 { margin-bottom: 24px; }

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual - Browser Mockup */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), var(--glow);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.dashboard-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #FF5F56; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #27CA40; }

.mockup-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 500;
}

.mockup-status .status-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-status 2s infinite;
}

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

.mockup-content {
    display: flex;
    min-height: 280px;
}

.mockup-sidebar {
    width: 50px;
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-sidebar .sidebar-item {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.mockup-sidebar .sidebar-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
}

.mockup-sidebar .sidebar-item.active {
    background: var(--primary);
}

.mockup-sidebar .sidebar-item.active svg {
    stroke: white;
}

.mockup-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mockup-stats .stat-card {
    padding: 12px;
    background: var(--surface);
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
}

.mockup-stats .stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.mockup-stats .stat-card.purple .stat-number { color: var(--purple); }
.mockup-stats .stat-card.green .stat-number { color: var(--green); }

.mockup-stats .stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-chart {
    background: var(--surface);
    border-radius: 10px;
    padding: 14px;
    border: 1px solid var(--border);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chart-header span:first-child {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

.chart-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--green);
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

.mockup-chart .chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.mockup-chart .chart-bar {
    flex: 1;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    height: var(--height);
    opacity: 0.6;
    transition: all 0.3s ease;
    animation: growBar 1s ease-out forwards;
}

.mockup-chart .chart-bar.active {
    background: var(--gradient);
    opacity: 1;
}

@keyframes growBar {
    from { height: 0; }
    to { height: var(--height); }
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.item-icon {
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--green);
}

.item-icon.pending {
    background: rgba(245, 158, 11, 0.15);
}

.item-icon.pending svg {
    stroke: var(--orange);
}

.item-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-info span:first-child {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
}

.item-status {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--green);
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

.item-status.pending {
    color: var(--orange);
    background: rgba(245, 158, 11, 0.1);
}

/* Third floating card */
.floating-card.card-3 {
    top: 50%;
    left: -10%;
    animation-delay: 4s;
}

.floating-card svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.floating-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.browser-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), var(--glow);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.browser-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
}

.browser-dots span:nth-child(1) { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27CA40; }

.browser-url {
    flex: 1;
    padding: 6px 12px;
    background: var(--bg);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.browser-content {
    display: flex;
    min-height: 280px;
}

.app-sidebar {
    width: 50px;
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    height: 32px;
    background: var(--bg);
    border-radius: 6px;
}

.sidebar-item.active {
    background: var(--primary);
}

.app-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-header-bar {
    height: 24px;
    background: var(--surface);
    border-radius: 6px;
    width: 60%;
}

.app-cards {
    display: flex;
    gap: 12px;
}

.app-card {
    flex: 1;
    padding: 16px;
    background: var(--surface);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.app-card .card-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.app-card .card-icon.purple { background: var(--purple); }
.app-card .card-icon.green { background: var(--green); }

.card-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-lines .line {
    height: 8px;
    background: var(--bg);
    border-radius: 4px;
}

.card-lines .line.short { width: 60%; }

.app-chart {
    flex: 1;
    background: var(--surface);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: flex-end;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    width: 100%;
    height: 80px;
}

.chart-bars .bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

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

.fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-icon svg { width: 20px; height: 20px; }

.fc-icon.green { background: rgba(16, 185, 129, 0.2); color: var(--green); }
.fc-icon.blue { background: rgba(99, 102, 241, 0.2); color: var(--primary); }

.fc-text { display: flex; flex-direction: column; }
.fc-title { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.fc-sub { font-size: 0.75rem; color: var(--text-muted); }

/* Trust Bar */
.trust-bar {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-bar > .container > p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-logos {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-badge {
    padding: 4px 10px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.trust-badge.blue { background: var(--cyan); }
.trust-badge.purple { background: var(--purple); }

/* Sections */
.section {
    padding: 120px 0;
}

.section-dark {
    background: var(--bg-light);
}

.section-alt {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}

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

.section-header.light h2, .section-header.light p { color: var(--text); }

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-icon svg { width: 28px; height: 28px; }

.feature-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.feature-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.feature-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--orange); }
.feature-icon.pink { background: rgba(236, 72, 153, 0.1); color: var(--pink); }
.feature-icon.cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyan); }

.feature-card h3 { margin-bottom: 12px; }
.feature-card p { font-size: 0.95rem; }

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.step-content h3 { margin-bottom: 8px; }
.step-content p { font-size: 0.95rem; }

.step-visual {
    position: absolute;
    top: 24px;
    right: 24px;
}

.mini-upload, .mini-qr, .mini-check {
    width: 48px;
    height: 48px;
    background: var(--surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.mini-upload svg, .mini-check svg { width: 24px; height: 24px; }

.qr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    width: 28px;
    height: 28px;
}

.qr-grid span {
    background: var(--primary);
    border-radius: 1px;
}

.qr-grid span:nth-child(2), .qr-grid span:nth-child(5), .qr-grid span:nth-child(8),
.qr-grid span:nth-child(11), .qr-grid span:nth-child(14) { opacity: 0.3; }

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.industry-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

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

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

.industry-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
}

.industry-badge.purple { background: var(--purple); }
.industry-badge.green { background: var(--green); }
.industry-badge.orange { background: var(--orange); }
.industry-badge.pink { background: var(--pink); }
.industry-badge.cyan { background: var(--cyan); }

.industry-content {
    padding: 20px;
}

.industry-content h3 { margin-bottom: 4px; font-size: 1.1rem; }
.industry-content p { font-size: 0.9rem; margin: 0; }

/* Timeline */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.timeline-item.done .timeline-marker {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

.timeline-item.done .timeline-marker svg { width: 16px; height: 16px; }

.timeline-item.current .timeline-marker {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.2);
}

.pulse {
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6); }
    100% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.timeline-item.current .timeline-card {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
}

.timeline-date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.timeline-card h3 { margin-bottom: 8px; }
.timeline-card p { font-size: 0.9rem; margin: 0; }

.timeline-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: var(--gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.benefit-icon svg { width: 28px; height: 28px; }

.benefit-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.benefit-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.benefit-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--orange); }

.benefit-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.benefit-card p { font-size: 0.9rem; }

/* Info Grid - DPP Explanation */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.info-card.main {
    grid-column: 1 / -1;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.info-icon svg { width: 28px; height: 28px; }
.info-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.info-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }

.info-card h3 { margin-bottom: 16px; font-size: 1.25rem; }

/* Data Categories */
.data-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.data-category {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.dc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.dc-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.dc-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.dc-icon svg { width: 24px; height: 24px; }
.dc-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.dc-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.dc-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--orange); }
.dc-icon.cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyan); }
.dc-icon.pink { background: rgba(236, 72, 153, 0.1); color: var(--pink); }

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

.dc-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.dc-list li:last-child {
    border-bottom: none;
}

.dc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Access Levels */
.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.access-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.access-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    color: white;
}

.access-header svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.access-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: white;
}

.access-header.public {
    background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
}

.access-header.restricted {
    background: linear-gradient(135deg, var(--orange) 0%, #D97706 100%);
}

.access-header.authority {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
}

.access-desc {
    padding: 20px 24px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.access-list {
    list-style: none;
    padding: 16px 24px 24px;
    margin: 0;
}

.access-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.access-list li:last-child {
    border-bottom: none;
}

.access-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--green);
    font-weight: 600;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.4;
}

.faq-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Sellercore Section */
.sellercore-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
}

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

.sellercore-content h2 {
    margin: 16px 0 24px;
}

.sellercore-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.sellercore-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.sc-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.sc-benefit svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}

/* Sellercore Visual Card */
.sellercore-visual {
    display: flex;
    justify-content: center;
}

.sc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.sc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.sc-logo-mini {
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.sc-card-header span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.sc-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.sc-feature-item.active {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary);
}

.sc-feature-item:not(.active) {
    border: 1px solid transparent;
}

.sc-feature-item:not(.active):hover {
    background: var(--surface);
}

.sc-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--surface);
    border-radius: 8px;
    flex-shrink: 0;
}

.sc-feature-item.active .sc-feature-icon {
    background: var(--gradient);
}

.sc-feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sc-feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.sc-feature-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sc-feature-badge {
    padding: 4px 10px;
    background: var(--green);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 16px 32px;
    font-size: 1rem;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Contact Simple */
.contact-simple {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 40px 0;
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.contact-card-content {
    flex: 1;
    text-align: left;
}

.contact-card-content h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-email {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-email:hover {
    text-decoration: underline;
}

.contact-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-benefit svg {
    width: 20px;
    height: 20px;
    stroke: var(--green);
}

@media (max-width: 600px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .contact-card-content {
        text-align: center;
    }

    .contact-benefits {
        flex-direction: column;
        gap: 12px;
    }

    .contact-benefit {
        justify-content: center;
    }
}

/* Contact Grid (legacy) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 { margin: 16px 0; }
.contact-info > p { margin-bottom: 32px; }

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.cf-item svg { width: 20px; height: 20px; color: var(--green); }

.contact-mail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--surface);
    border-radius: var(--radius);
}

.contact-mail svg { width: 20px; height: 20px; color: var(--primary); }
.contact-mail a { color: var(--text); }
.contact-mail a:hover { color: var(--primary); }

/* Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B6B80'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 60px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }

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

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }

/* Article Pages */
.article-header {
    padding: 160px 0 80px;
    background: var(--bg-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    margin-bottom: 24px;
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
}

.article-meta {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.meta-item svg {
    width: 18px;
    height: 18px;
}

/* Article Content */
.article-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.main-content {
    max-width: 100%;
}

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.content-section h3 {
    font-size: 1.25rem;
    margin: 32px 0 16px;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul, .content-section ol {
    margin: 16px 0;
    padding-left: 24px;
}

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

/* Highlight Box */
.highlight-box {
    padding: 24px;
    background: rgba(99, 102, 241, 0.08);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
}

.highlight-box.warning {
    background: rgba(245, 158, 11, 0.08);
    border-left-color: var(--orange);
}

.highlight-box h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.highlight-box p {
    margin: 0;
    font-size: 0.95rem;
}

/* Numbered List */
.numbered-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
}

.numbered-list li {
    counter-increment: item;
    padding: 16px 0 16px 48px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 16px;
    width: 32px;
    height: 32px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding: 12px 0 12px 32px;
    border-bottom: 1px solid var(--border);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* Info Cards Mini */
.info-cards-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.info-card-mini {
    padding: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.info-card-mini h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text);
}

.info-card-mini ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card-mini li {
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

.info-card-mini li:last-child {
    border-bottom: none;
}

/* Access Overview */
.access-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.access-level {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.access-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.access-icon.public { background: var(--green); }
.access-icon.business { background: var(--orange); }
.access-icon.authority { background: var(--primary); }

.access-level h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.access-level p {
    font-size: 0.85rem;
    margin: 0;
}

/* Timeline Mini */
.timeline-mini {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.timeline-mini li {
    padding: 16px 0 16px 24px;
    border-left: 2px solid var(--border);
    position: relative;
    margin: 0;
}

.timeline-mini li::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 20px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

/* CTA Box */
.cta-box {
    padding: 32px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    margin: 32px 0;
    text-align: center;
}

.cta-box h4 {
    color: white;
    margin-bottom: 8px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.cta-box .btn {
    background: white;
    color: var(--primary-dark);
}

/* Inline Link */
.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 500;
}

.inline-link:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sidebar-card.highlight {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--primary);
}

.sidebar-card h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text);
}

.sidebar-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

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

.toc li {
    border-bottom: 1px solid var(--border);
}

.toc li:last-child {
    border-bottom: none;
}

.toc a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

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

.related-links li {
    border-bottom: 1px solid var(--border);
}

.related-links li:last-child {
    border-bottom: none;
}

.related-links a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--primary);
}

.related-links a:hover {
    text-decoration: underline;
}

/* Quick Facts */
.quick-facts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-facts li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.quick-facts li:last-child {
    border-bottom: none;
}

/* Countdown Display */
.countdown-display {
    text-align: center;
    padding: 16px 0;
}

.countdown-date {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Timeline Detailed */
.timeline-detailed {
    position: relative;
    padding-left: 40px;
}

.timeline-detailed::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item-detailed {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item-detailed:last-child {
    padding-bottom: 0;
}

.tid-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.timeline-item-detailed.done .tid-marker {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

.timeline-item-detailed.done .tid-marker svg {
    width: 16px;
    height: 16px;
}

.timeline-item-detailed.current .tid-marker {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.2);
}

.tid-content {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.timeline-item-detailed.current .tid-content {
    border-color: var(--primary);
}

.tid-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.tid-content h3 {
    margin: 8px 0 12px;
    font-size: 1.15rem;
}

.tid-content p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.tid-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.tid-content li {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.tid-status {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 8px;
}

.tid-status.done {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
}

.tid-status.current {
    background: var(--gradient);
    color: white;
}

.tid-status.upcoming {
    background: var(--surface);
    color: var(--text-muted);
}

/* Warning Cards */
.warning-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.warning-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}

.wc-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

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

.warning-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.warning-card p {
    font-size: 0.85rem;
    margin: 0;
}

/* Requirement Cards */
.requirement-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.req-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.req-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
}

.req-icon svg { width: 24px; height: 24px; }
.req-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.req-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }

.req-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.req-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Data Requirements */
.data-requirements {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.data-req-category {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.data-req-category h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.req-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 0.9rem;
    margin: 0;
}

.req-list li::before {
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.req-list li.required::before {
    content: '✓';
    background: var(--green);
    color: white;
}

.req-list li.optional::before {
    content: '○';
    background: var(--surface);
    color: var(--text-muted);
}

.legend-box {
    display: flex;
    gap: 24px;
    padding: 16px;
    background: var(--surface);
    border-radius: var(--radius);
    margin: 16px 0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legend-item::before {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legend-item.required::before {
    content: '✓';
    background: var(--green);
    color: white;
}

.legend-item.optional::before {
    content: '○';
    background: var(--border-light);
    color: var(--text-muted);
}

/* Responsibility Table */
.responsibility-table {
    margin: 24px 0;
}

.resp-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.resp-row:nth-child(odd) {
    background: var(--bg-light);
}

.resp-role {
    font-weight: 600;
    color: var(--text);
}

.resp-duty {
    color: var(--text-secondary);
}

/* Checklist Box */
.checklist-box {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin: 24px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.checklist-item label {
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }

    .features-grid, .steps-grid, .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .data-categories { grid-template-columns: repeat(2, 1fr); }
    .access-grid { grid-template-columns: repeat(2, 1fr); }
    .access-grid .access-card:last-child { grid-column: 1 / -1; }
    .faq-grid { grid-template-columns: 1fr; }
    .sellercore-grid { grid-template-columns: 1fr; gap: 40px; }
    .sellercore-benefits { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .access-overview, .warning-cards, .requirement-overview { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: var(--transition);
    }

    .nav-links.active { transform: translateX(0); }

    .nav-links li a { font-size: 1.2rem; padding: 12px 24px; }

    .mobile-menu-btn { display: flex; z-index: 1001; }

    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .section { padding: 80px 0; }

    .features-grid, .steps-grid, .industries-grid, .benefits-grid,
    .data-categories, .access-grid, .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card.main {
        grid-column: auto;
    }

    .access-grid .access-card:last-child {
        grid-column: auto;
    }

    .form-row { grid-template-columns: 1fr; }

    .article-header { padding: 120px 0 60px; }
    .article-meta { flex-direction: column; gap: 12px; }
    .info-cards-mini { grid-template-columns: 1fr; }
    .req-list { grid-template-columns: 1fr; }
    .resp-row { grid-template-columns: 1fr; gap: 8px; }

    .trust-logos { flex-direction: column; gap: 16px; }

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

    .footer-links { flex-direction: column; gap: 32px; }
}

/* ========================================
   EU-Verordnung Page Styles
   ======================================== */

.subpage-hero {
    padding: 160px 0 80px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.subpage-hero-content {
    max-width: 800px;
}

.subpage-hero h1 {
    margin: 20px 0 24px;
}

.subpage-hero .hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Content Grid with Sidebar */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.content-main {
    min-width: 0;
}

.content-sidebar {
    position: sticky;
    top: 120px;
}

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 1.35rem;
    margin: 32px 0 16px;
}

.content-block p {
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Highlight Box */
.highlight-box {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    margin: 24px 0;
}

.highlight-box .highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-box .highlight-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.highlight-box .highlight-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.highlight-box .highlight-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.goal-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.goal-card .goal-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

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

.goal-card .goal-icon.green { background: rgba(16, 185, 129, 0.1); }
.goal-card .goal-icon.green svg { color: var(--green); }
.goal-card .goal-icon.purple { background: rgba(139, 92, 246, 0.1); }
.goal-card .goal-icon.purple svg { color: var(--purple); }
.goal-card .goal-icon.orange { background: rgba(245, 158, 11, 0.1); }
.goal-card .goal-icon.orange svg { color: var(--orange); }

.goal-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.goal-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Two Column List */
.two-col-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 24px;
}

.list-col h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text);
}

.check-list, .x-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li, .x-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.x-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--text-muted);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: rgba(99, 102, 241, 0.2);
}

.sidebar-card h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav li a {
    display: block;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: var(--transition);
}

.sidebar-nav li a:hover {
    background: var(--surface);
    color: var(--primary);
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.doc-list li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Regulation Grid */
.regulation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.regulation-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.regulation-card.main {
    grid-column: 1 / -1;
}

.reg-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reg-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reg-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.reg-header h3 {
    font-size: 1.25rem;
}

.reg-date {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.regulation-card > p {
    margin-bottom: 16px;
}

.regulation-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.regulation-card ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.regulation-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.regulation-card h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.compact-list {
    gap: 6px !important;
}

/* Mini Timeline */
.mini-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mt-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-left: 16px;
    border-left: 2px solid var(--border);
    position: relative;
}

.mt-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 4px;
    width: 10px;
    height: 10px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 50%;
}

.mt-item.done::before {
    background: var(--green);
    border-color: var(--green);
}

.mt-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    min-width: 80px;
}

.mt-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* DA Grid */
.da-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.da-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
}

.da-number {
    position: absolute;
    top: -12px;
    left: 24px;
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.da-card h4 {
    margin: 8px 0 12px;
    font-size: 1.05rem;
}

.da-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Info Banner */
.info-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: var(--radius);
    margin-top: 32px;
}

.info-banner svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-banner p {
    font-size: 0.95rem;
    margin: 0;
}

/* Green Deal Section */
.gd-content {
    max-width: 900px;
    margin: 0 auto;
}

.gd-text p {
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 40px;
}

.gd-text h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.initiative-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.initiative-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.init-icon {
    width: 52px;
    height: 52px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.init-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-light);
}

.init-icon.green { background: rgba(16, 185, 129, 0.2); }
.init-icon.green svg { color: var(--green); }
.init-icon.purple { background: rgba(139, 92, 246, 0.2); }
.init-icon.purple svg { color: var(--purple); }
.init-icon.orange { background: rgba(245, 158, 11, 0.2); }
.init-icon.orange svg { color: var(--orange); }

.initiative-item h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 6px;
}

.initiative-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Surveillance Grid */
.surveillance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.surv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.surv-icon {
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.surv-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.surv-icon.red { background: rgba(239, 68, 68, 0.1); }
.surv-icon.red svg { color: var(--red); }
.surv-icon.green { background: rgba(16, 185, 129, 0.1); }
.surv-icon.green svg { color: var(--green); }

.surv-card h3 {
    margin-bottom: 12px;
}

.surv-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius);
}

.warning-icon {
    width: 52px;
    height: 52px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.warning-content h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--red);
}

.warning-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.warning-content ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.warning-content ul li::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Related Grid */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.related-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.related-icon {
    width: 52px;
    height: 52px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.related-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.related-icon.purple { background: rgba(139, 92, 246, 0.1); }
.related-icon.purple svg { color: var(--purple); }
.related-icon.green { background: rgba(16, 185, 129, 0.1); }
.related-icon.green svg { color: var(--green); }

.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.related-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   Branchen Page Styles
   ======================================== */

.branch-timeline-overview {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

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

.bto-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.bto-industries {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bto-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
}

.bto-tag.purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.bto-tag.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.bto-tag.orange { background: rgba(245, 158, 11, 0.1); color: var(--orange); }
.bto-tag.pink { background: rgba(236, 72, 153, 0.1); color: var(--pink); }
.bto-tag.cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyan); }

/* Branch Detail */
.branch-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.branch-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.branch-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.branch-icon.purple { background: linear-gradient(135deg, var(--purple), #A855F7); }
.branch-icon.green { background: linear-gradient(135deg, var(--green), #34D399); }
.branch-icon.orange { background: linear-gradient(135deg, var(--orange), #FBBF24); }
.branch-icon.pink { background: linear-gradient(135deg, var(--pink), #F472B6); }
.branch-icon.cyan { background: linear-gradient(135deg, var(--cyan), #22D3EE); }

.branch-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 4px;
}

.branch-badge.purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.branch-badge.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.branch-badge.orange { background: rgba(245, 158, 11, 0.1); color: var(--orange); }
.branch-badge.pink { background: rgba(236, 72, 153, 0.1); color: var(--pink); }
.branch-badge.cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyan); }

.branch-header h2 {
    font-size: 1.75rem;
}

.branch-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.branch-main > p {
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.branch-main h3 {
    font-size: 1.25rem;
    margin: 32px 0 20px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-item {
    padding: 16px 20px;
    background: var(--surface);
    border-radius: var(--radius);
}

.product-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.product-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Req List */
.req-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.req-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

/* Branch Sidebar */
.branch-sidebar .sidebar-card.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
}

.branch-sidebar .sidebar-card.highlight.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.branch-sidebar .sidebar-card.highlight.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(52, 211, 153, 0.08) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.branch-sidebar .sidebar-card.highlight.orange {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.branch-sidebar .sidebar-card.highlight.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(244, 114, 182, 0.08) 100%);
    border-color: rgba(236, 72, 153, 0.2);
}

.branch-sidebar .sidebar-card.highlight.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(34, 211, 238, 0.08) 100%);
    border-color: rgba(6, 182, 212, 0.2);
}

/* Deadline List */
.deadline-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deadline-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    background: var(--surface);
    border-radius: 8px;
}

.deadline-item.current {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid var(--primary);
}

.dl-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    min-width: 70px;
}

.dl-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Focus List */
.focus-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.focus-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.focus-list li svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

/* Mini List */
.mini-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.mini-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.mini-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Mobile adjustments for new pages */
@media (max-width: 1024px) {
    .goals-grid,
    .two-col-list,
    .regulation-grid,
    .da-grid,
    .surveillance-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .branch-content {
        grid-template-columns: 1fr;
    }

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

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

    .content-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        padding: 140px 0 60px;
    }

    .branch-timeline-overview {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .branch-header {
        flex-direction: column;
        text-align: center;
    }

    .branch-header h2 {
        font-size: 1.5rem;
    }

    .regulation-card.main {
        grid-column: auto;
    }

    .highlight-box {
        flex-direction: column;
    }

    .warning-box {
        flex-direction: column;
    }

    .initiative-item {
        flex-direction: column;
        text-align: center;
    }

    .init-icon {
        margin: 0 auto;
    }
}

/* ========================================
   Sellercore Solution Section
   ======================================== */

.section-solution {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
    padding: 100px 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

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

.solution-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    width: 100%;
    max-width: 450px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.dash-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-logo svg {
    width: 32px;
    height: 32px;
}

.dash-logo span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.dash-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dash-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dash-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dash-stat {
    background: var(--surface);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
}

.dash-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.dash-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dash-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    padding: 16px;
    border-radius: var(--radius);
}

.dash-progress > span:first-child {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 100px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 40px;
    text-align: right;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sol-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.sol-feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.sol-icon {
    width: 32px;
    height: 32px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sol-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
}

.sol-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.sol-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.solution-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive Solution Section */
@media (max-width: 900px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-main {
        order: -1;
    }
}

@media (max-width: 600px) {
    .solution-dashboard {
        padding: 16px;
    }

    .dash-stat-row {
        grid-template-columns: 1fr;
    }

    .dash-progress {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .dash-progress > span:first-child {
        min-width: auto;
    }

    .progress-value {
        text-align: left;
    }

    .solution-cta {
        flex-direction: column;
    }

    .solution-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Consequences Section
   ======================================== */

.section-warning {
    background: linear-gradient(180deg, #FEF2F2 0%, var(--bg) 100%);
}

.section-tag.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.consequence-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.consequence-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.consequence-card.severe {
    border-color: var(--red);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, var(--bg-card) 100%);
}

.consequence-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.consequence-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--red);
}

.consequence-icon.orange {
    background: rgba(245, 158, 11, 0.1);
}

.consequence-icon.orange svg {
    stroke: var(--orange);
}

.consequence-icon.purple {
    background: rgba(139, 92, 246, 0.1);
}

.consequence-icon.purple svg {
    stroke: var(--purple);
}

.consequence-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

.consequence-card strong {
    color: var(--text);
}

/* ========================================
   Checklist Section
   ======================================== */

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

.checklist-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid var(--border);
}

.checklist-card.yes {
    border-color: var(--green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, var(--bg-card) 100%);
}

.checklist-card.no {
    border-color: var(--text-muted);
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.checklist-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checklist-card.yes .checklist-icon {
    background: rgba(16, 185, 129, 0.15);
}

.checklist-card.yes .checklist-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--green);
}

.checklist-card.no .checklist-icon {
    background: rgba(148, 163, 184, 0.15);
}

.checklist-card.no .checklist-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-muted);
}

.checklist-header h3 {
    font-size: 1.15rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checklist-items li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-card.yes .checklist-items li svg {
    stroke: var(--green);
}

.checklist-card.no .checklist-items li svg {
    stroke: var(--text-muted);
}

.checklist-items li span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checklist-note {
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 500;
}

/* ========================================
   Urgency Section
   ======================================== */

.section-urgency {
    background: linear-gradient(180deg, var(--bg) 0%, #FFF7ED 100%);
}

.section-tag.orange {
    background: rgba(245, 158, 11, 0.1);
    color: var(--orange);
}

.urgency-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.countdown-visual {
    background: var(--bg-card);
    border: 2px solid var(--orange);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.countdown-boxes {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.countdown-unit {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.countdown-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.urgency-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.urgency-reason {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.urgency-reason:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.urgency-icon {
    width: 44px;
    height: 44px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urgency-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.urgency-icon.orange {
    background: rgba(245, 158, 11, 0.1);
}

.urgency-icon.orange svg {
    stroke: var(--orange);
}

.urgency-icon.purple {
    background: rgba(139, 92, 246, 0.1);
}

.urgency-icon.purple svg {
    stroke: var(--purple);
}

.urgency-icon.green {
    background: rgba(16, 185, 129, 0.1);
}

.urgency-icon.green svg {
    stroke: var(--green);
}

.urgency-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.urgency-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   Solution Extras
   ======================================== */

.solution-extras {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.extra-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.extra-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.extra-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.extra-card.trial .extra-icon {
    background: rgba(16, 185, 129, 0.1);
}

.extra-card.trial .extra-icon svg {
    stroke: var(--green);
}

.extra-card.pricing .extra-icon {
    background: rgba(139, 92, 246, 0.1);
}

.extra-card.pricing .extra-icon svg {
    stroke: var(--purple);
}

.extra-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.extra-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.solution-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 24px;
}

/* ========================================
   Responsive for new sections
   ======================================== */

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

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

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

    .countdown-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .solution-extras {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .countdown-number {
        font-size: 3rem;
    }

    .consequence-card {
        padding: 20px;
    }

    .checklist-card {
        padding: 24px;
    }

    .urgency-reason {
        padding: 16px;
    }
}

/* ========================================
   Glossar Section
   ======================================== */

.glossar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.glossar-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.glossar-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.glossar-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.glossar-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.glossar-item strong {
    color: var(--text);
}

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

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

/* ========================================
   Cookie Banner
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content {
    flex: 1;
    min-width: 300px;
}

.cookie-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-btn.accept {
    background: var(--primary);
    color: white;
}

.cookie-btn.accept:hover {
    background: var(--primary-dark);
}

.cookie-btn.decline {
    background: var(--surface);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.cookie-btn.decline:hover {
    background: var(--bg);
    border-color: var(--text-muted);
}

@media (max-width: 600px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
