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

:root {
    --bg: #ffffff;
    --bg-alt: #f7f9fc;
    --bg-surface: #ffffff;
    --primary: #1a365d;
    --primary-mid: #3182ce;
    --primary-light: #63b3ed;
    --primary-lighter: #ebf4ff;
    --text: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #a0aec0;
    --border: #e2e8f0;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    color: var(--white);
}

/* BREADCRUMB */
.breadcrumb {
    padding: 0;
    margin-top: 72px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 12px 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.breadcrumb li::after {
    content: '/';
    margin-left: 8px;
    color: var(--border);
}

.breadcrumb li:last-child::after {
    display: none;
}

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

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

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-svg {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-mid);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-mid);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 24px;
    background: var(--primary-mid);
    color: var(--white) !important;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 24px 80px;
    background: linear-gradient(170deg, var(--primary-lighter) 0%, var(--bg) 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(49, 130, 206, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.hero-shield {
    width: 88px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 20px rgba(49, 130, 206, 0.25));
}

.hero-headline h1 {
    margin-bottom: 0;
}

.hero-label {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-mid);
    margin-bottom: 24px;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.btn-primary {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 36px;
    background: var(--primary-mid);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.25);
}

.btn-outline {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 36px;
    background: transparent;
    color: var(--primary-mid);
    border: 2px solid var(--primary-mid);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-mid);
    color: var(--white);
    transform: translateY(-2px);
}

/* SECTIONS */
section {
    padding: 100px 0;
}

.section-label {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-mid);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.8;
}

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

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* PILLARS */
#souveraenitaet {
    background: var(--bg-alt);
}

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

.pillar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26, 54, 93, 0.08);
}

.pillar-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
}

.pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

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

/* TIMELINE */
#regulatorik {
    background: var(--bg);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-mid), var(--primary-light));
}

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

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

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--primary-mid);
    border-radius: 50%;
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-year {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--primary-mid);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.timeline-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ESC SECTION */
#esc {
    background: var(--primary);
    color: var(--white);
}

#esc .section-label {
    color: var(--primary-light);
}

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

#esc .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.esc-fact {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.esc-fact:hover {
    background: rgba(255, 255, 255, 0.12);
}

.esc-fact .check {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.85rem;
}

.esc-fact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ADVANTAGES */
#vorteile {
    background: var(--bg-alt);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.advantage-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.06);
}

.advantage-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.advantage-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* TARGET GROUPS */
#zielgruppen {
    background: var(--bg);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.target-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.target-card:hover {
    border-color: var(--primary-mid);
    transform: translateY(-2px);
}

.target-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.target-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

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

/* FAQ */
#faq {
    background: var(--bg-alt);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    transition: color 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--primary-mid);
}

.faq-question .arrow {
    font-size: 1.2rem;
    color: var(--primary-mid);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* CTA */
#cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn-cta {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 16px 44px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
footer {
    background: var(--primary);
    padding: 48px 0;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-copy {
    font-size: 0.85rem;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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

.footer-sources {
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-sources a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* RISK CARDS */
#risiken {
    background: var(--bg-alt);
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.risk-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.risk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.08);
}

.risk-card.risk-critical {
    border-left-color: #dc2626;
}

.risk-card.risk-high {
    border-left-color: #d97706;
}

.risk-card.risk-medium {
    border-left-color: #3182ce;
}

.risk-severity {
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.risk-critical .risk-severity {
    color: #dc2626;
}

.risk-high .risk-severity {
    color: #d97706;
}

.risk-medium .risk-severity {
    color: #3182ce;
}

.risk-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.risk-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* COMPARISON TABLE */
#vergleich {
    background: var(--bg-alt);
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--white);
}

.comparison-table,
.mapping-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td,
.mapping-table th,
.mapping-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table thead th,
.mapping-table thead th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.comparison-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table thead th:last-child,
.mapping-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.mapping-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table tbody tr:last-child td,
.mapping-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover,
.mapping-table tbody tr:hover {
    background: var(--primary-lighter);
}

.comparison-table td.highlight-col {
    background: rgba(49, 130, 206, 0.06);
    font-weight: 500;
}

.comparison-table th.highlight-col {
    background: var(--primary-mid);
}

.comparison-table td:first-child,
.mapping-table td:first-child {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

/* TECH GRID */
#technik {
    background: var(--bg);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tech-card {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.06);
}

.tech-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.tech-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* MAPPING TABLE */
#mapping {
    background: var(--bg-alt);
}

/* WHITEPAPER BANNER */
.whitepaper-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.whitepaper-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.whitepaper-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.whitepaper-cover {
    flex-shrink: 0;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.whitepaper-cover img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.whitepaper-authors {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-style: italic;
}

.whitepaper-body {
    position: relative;
    z-index: 1;
}

.whitepaper-badge {
    display: inline-block;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(49, 130, 206, 0.25);
    border: 1px solid rgba(99, 179, 237, 0.3);
    border-radius: 4px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.whitepaper-body h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 8px;
}

.whitepaper-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.whitepaper-body p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 520px;
}

.whitepaper-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-whitepaper {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 28px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whitepaper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.btn-whitepaper-outline {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 28px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whitepaper-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

/* LEGAL PAGES */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 24px 4rem;
}

.legal-page .breadcrumb {
    margin-top: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.legal-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-mid);
}

.legal-page h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

.legal-page ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page a {
    color: var(--primary-mid);
}

.legal-page a:hover {
    text-decoration: underline;
}

/* ABOUT SITE */
.about-site {
    background: var(--bg-alt);
}

.about-inner {
    max-width: 720px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-text a {
    color: var(--primary-mid);
}

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

.about-links {
    list-style: none;
    padding: 0;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.about-links li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--primary-mid);
}

/* CONTACT FORM */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 640px;
    margin: 32px auto 0;
    text-align: left;
}

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

.contact-form .full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-mid);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

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

.form-privacy {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

.form-privacy input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary-mid);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-privacy label {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-privacy a {
    color: var(--primary-mid);
    text-decoration: underline;
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.form-actions .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-status {
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-status.visible {
    opacity: 1;
}

.form-status.success {
    color: #2f855a;
}

.form-status.error {
    color: #c53030;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

    .comparison-table,
    .mapping-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td,
    .mapping-table th,
    .mapping-table td {
        padding: 10px 12px;
    }

    .nav-logo-svg {
        height: 34px;
    }

    .nav-logo-svg text {
        font-size: 15px;
    }

    section {
        padding: 72px 0;
    }

    .hero {
        padding: 100px 24px 60px;
    }

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

    .whitepaper-inner {
        flex-direction: column;
        text-align: center;
    }

    .whitepaper-cover {
        width: 200px;
    }

    .whitepaper-body p {
        max-width: none;
    }

    .whitepaper-actions {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-outline, .btn-cta {
        width: 100%;
        text-align: center;
    }

    .timeline::before {
        left: 12px;
    }

    .timeline-dot {
        left: 4px;
    }

    .timeline-item {
        padding-left: 48px;
    }
}
