/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES (Pixmix Studio - Brutalist/Tech Overhaul)
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-main: #09090b;
    --bg-card: #121214;
    --bg-card-hover: #161619;
    --bg-alt: #0e0e10;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: #c6ff00;
    
    /* Brand Accent Colors */
    --accent-lime: #c6ff00;
    --accent-purple: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, var(--accent-lime) 0%, #00f0ff 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    
    /* Font Families (WPGO Style: Oxanium for massive titles, Space Grotesk for body) */
    --font-heading: 'Oxanium', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-main: 0 16px 40px rgba(0, 0, 0, 0.8);
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout Constants */
    --header-height: 80px;
    --max-width: 1440px;
    --letter-spacing-heading: -0.01em;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-lime);
}

/* Cursor follow light (Acid/Cyber Lime themed) */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(
        500px circle at var(--x, 0px) var(--y, 0px),
        rgba(198, 255, 0, 0.08) 0%,
        rgba(198, 255, 0, 0.02) 40%,
        transparent 80%
    );
}

/* ==========================================================================
   REUSABLE COMPONENTS & BRUTALIST UTILITIES
   ========================================================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* Strict Left-Aligned Section Header (WPGO DNA) */
.section-header {
    text-align: left;
    max-width: 800px;
    margin: 0 0 64px 0;
}

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

.section-header-centered h2,
.section-header-centered p {
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: var(--letter-spacing-heading);
    margin-bottom: 20px;
    color: #ffffff;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
}

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

.btn-primary {
    background: var(--accent-lime);
    color: #000000;
    border: 1px solid var(--accent-lime);
}

.btn-primary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 3px 3px 0px #ffffff;
    background: #d4ff33;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--text-primary);
    transform: translate(-3px, -3px);
    box-shadow: 3px 3px 0px var(--accent-lime);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--accent-lime);
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-lime);
    border-radius: 2px;
    display: inline-block;
}

/* Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--accent-lime);
}

.btn-nav {
    padding: 10px 22px;
    font-size: 0.875rem;
    border-radius: 6px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-nav:hover {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
    transform: translate(-2px, -2px);
    box-shadow: 2px 2px 0px var(--accent-lime);
}

/* Mobile Nav Burger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Mobile Nav Active states */
.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 99; /* Under main-header (100) so toggle stays visible and clickable */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px; /* Slightly tighter gap */
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* More balanced scale for mobile devices */
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mobile-nav-links a:hover {
    color: var(--accent-lime);
    transform: scale(1.05);
}

/* ==========================================================================
   HERO SECTION (Left-Aligned, Bold Typography)
   ========================================================================== */
.hero-section {
    padding: 240px 0 120px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(198, 255, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.badge {
    background: rgba(198, 255, 0, 0.1);
    border: 1px solid rgba(198, 255, 0, 0.2);
    color: var(--accent-lime);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: var(--letter-spacing-heading);
    max-width: 980px;
    margin-bottom: 28px;
    color: #ffffff;
}

.hero-section h1 span {
    color: var(--accent-lime);
}

.hero-text {
    color: var(--text-secondary);
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   METHODOLOGY SECTION (Unser Ansatz)
   ========================================================================== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.approach-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 48px 32px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.approach-card:hover {
    transform: translate(-4px, -4px);
    border-color: var(--accent-lime);
    box-shadow: 4px 4px 0px var(--accent-lime);
}

.card-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
    line-height: 1;
    transition: var(--transition-smooth);
}

.approach-card:hover .card-num {
    color: var(--accent-lime);
    opacity: 0.15;
}

.approach-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

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

/* ==========================================================================
   FEATURES SECTION (Vorteile - Left-Aligned Box layout)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translate(-4px, -4px);
    border-color: var(--accent-lime);
    box-shadow: 4px 4px 0px var(--accent-lime);
}

.feature-icon {
    font-size: 2rem;
    line-height: 1;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 255, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 24px;
}

.feature-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

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

/* ==========================================================================
   ABOUT ME SECTION (Über mich - Centered Wrapper, Left-aligned grid cards)
   ========================================================================== */
.about-container-centered {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.about-container-centered h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: var(--letter-spacing-heading);
    margin-bottom: 24px;
    color: #ffffff;
}

.about-lead {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 780px;
}

.about-intro-text {
    max-width: 780px;
    margin-bottom: 56px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.about-intro-text p {
    margin-bottom: 16px;
}

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

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-top: 24px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: left;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-card:hover {
    transform: translate(-4px, -4px);
    border-color: var(--accent-lime);
    box-shadow: 4px 4px 0px var(--accent-lime);
}

.value-icon {
    font-size: 1.75rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(198, 255, 0, 0.1);
    border-radius: 8px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
}

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

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 64px 48px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-main);
    text-align: left;
}

.price-header-unified {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-plus {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-lime);
    line-height: 1;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.price-period {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-label {
    color: var(--accent-lime);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.price-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 48px;
}

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

.pricing-features li span {
    color: var(--accent-lime);
    font-weight: 700;
}

.pricing-footer {
    display: flex;
    justify-content: flex-start;
}

/* ==========================================================================
   FAQ SECTION (Left-Aligned Accordions)
   ========================================================================== */
.faq-container {
    max-width: 900px;
    margin: 0 0 0 0; /* Left align! */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.35rem;
    color: var(--accent-lime);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

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

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   CONTACT SECTION (Left-Aligned Forms)
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    text-align: left;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: var(--letter-spacing-heading);
    margin-bottom: 24px;
    color: #ffffff;
}

.contact-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-step {
    text-align: left;
}

.step-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    border-left: 3px solid var(--accent-lime);
    padding-left: 12px;
}

.step-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0 !important;
    padding-left: 15px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-main);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 14px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

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

.form-group input:focus {
    outline: none;
    border-color: var(--accent-lime);
    background: rgba(255, 255, 255, 0.03);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 48px 0 0 0;
    background-color: var(--bg-main);
    position: relative;
    z-index: 2;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 32px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 340px;
    text-align: left;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px 0;
}

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

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

.footer-bottom .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-bottom .footer-links a:hover {
    color: var(--accent-lime);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--accent-lime);
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: var(--shadow-main);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.error {
    border-color: #ef4444;
}

.toast.error span {
    color: #ef4444;
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEALS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVENESS (Media Queries)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .price-header-unified {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .section {
        padding: 80px 0;
    }
    .hero-section {
        padding: 180px 0 80px 0;
    }
    .hero-section h1 {
        font-size: 2.75rem;
    }
    .hero-text {
        font-size: 1.15rem;
    }
    .nav-links, .btn-nav {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .section-header h2 {
        font-size: 2.25rem;
    }
    .about-container-centered h2 {
        font-size: 2.25rem;
    }
    .pricing-card {
        padding: 48px 24px;
    }
    .price-amount {
        font-size: 2.75rem;
    }
    .contact-card {
        padding: 32px 24px;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .footer-bottom p {
        text-align: center;
    }
    
    .legal-content h1 {
        font-size: 2.25rem;
        margin-bottom: 32px;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   LEGAL PAGES (Impressum & Datenschutz)
   ========================================================================== */
.legal-page {
    background-color: var(--bg-main);
    color: var(--text-primary);
}

.legal-content {
    padding: 160px 0 80px 0;
    min-height: calc(100vh - 180px);
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: var(--letter-spacing-heading);
    margin-bottom: 48px;
    color: #ffffff;
    border-bottom: 2px solid var(--accent-lime);
    padding-bottom: 16px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 12px;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-lime);
    margin-top: 16px;
    margin-bottom: 8px;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 800px;
}

.legal-content a {
    color: var(--accent-lime);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.legal-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.legal-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
