/* ALHub SaaS Landing Page Stylesheet */

/* ==========================================================================
   CSS VARIABLES & GLOBAL SETTINGS
   ========================================================================== */
:root {
    --bg-dark: #07060f;
    --bg-card: rgba(18, 16, 35, 0.45);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(139, 92, 246, 0.3);
    
    --color-text: #e2e8f0;
    --color-muted: #94a3b8;
    
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.5);
    --primary-hover: #7c3aed;
    --secondary: #1e1b4b;
    --secondary-hover: #312e81;
    
    --success: #10b981;
    --info: #06b6d4;
    --orange: #f97316;
    --danger: #ef4444;

    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================================================
   BACKGROUND GLOW BLOBS
   ========================================================================== */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.bg-glow-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.bg-glow-2 {
    top: 60vh;
    left: -200px;
    background: radial-gradient(circle, var(--info) 0%, transparent 70%);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

.text-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.text-success { color: var(--success); }
.text-orange { color: var(--orange); }

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

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

.btn-glow:hover {
    box-shadow: 0 0 24px var(--primary-glow);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: rgba(139, 92, 246, 0.05);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 6, 15, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.brand-icon i {
    width: 20px;
    height: 20px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.brand-name span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    color: var(--color-muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pill-announcement {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c084fc;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--color-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    width: 100%;
}

.stat-item h3 {
    font-size: 28px;
    color: #ffffff;
}

.stat-item p {
    font-size: 12px;
    color: var(--color-muted);
}

/* ==========================================================================
   HERO PREVIEW (MOCKUP WINDOW)
   ========================================================================== */
.hero-preview {
    position: relative;
}

.mockup-window {
    width: 100%;
    aspect-ratio: 1.4;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.mockup-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
}

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

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

.dot-red { background-color: var(--danger); }
.dot-yellow { background-color: var(--orange); }
.dot-green { background-color: var(--success); }

.mockup-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05);
    font-size: 10px;
    color: var(--color-muted);
    padding: 4px 24px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.mockup-body {
    flex: 1;
    display: flex;
}

.mockup-sidebar {
    width: 110px;
    background: rgba(255, 255, 255, 0.01);
    border-right: 1px solid var(--border-color);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-sidebar .mockup-brand {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.mockup-nav-item {
    font-size: 9px;
    color: var(--color-muted);
    padding: 6px 8px;
    border-radius: 4px;
}

.mockup-nav-item.active {
    background: rgba(139, 92, 246, 0.1);
    color: #ffffff;
}

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

.mockup-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-title-bar h4 {
    font-size: 12px;
}

.mockup-badge {
    font-size: 8px;
    background: var(--primary);
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
}

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

.mockup-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
}

.mockup-card .label {
    font-size: 7px;
    color: var(--color-muted);
    display: block;
}

.mockup-card h3 {
    font-size: 14px;
    margin-top: 4px;
}

.mockup-card h3.text-orange {
    color: var(--orange);
}

.mockup-table {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 8px;
    display: flex;
    flex-direction: column;
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 6px 10px;
    border-bottom: 1px solid var(--border-color);
}

.table-row.header {
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-muted);
}

.table-row:last-child {
    border-bottom: none;
}

.badge {
    font-size: 7px;
    padding: 1px 4px;
    border-radius: 4px;
    width: fit-content;
}

.badge.airbnb { background: rgba(16, 185, 129, 0.15); color: #c6f6d5; }
.badge.booking { background: rgba(6, 182, 212, 0.15); color: #cffafe; }

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-muted);
}

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

.feature-card {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 24px;
}

.feature-icon.bg-indigo { background: rgba(99, 102, 241, 0.15); color: #818cf8; }
.feature-icon.bg-success { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.feature-icon.bg-orange { background: rgba(249, 115, 22, 0.15); color: #fb923c; }
.feature-icon.bg-info { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }

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

.feature-card p {
    font-size: 14px;
    color: var(--color-muted);
}

/* Hover glow effect */
.hover-glow:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05);
}

/* ==========================================================================
   SIBA INFO SECTION
   ========================================================================== */
.siba-info-section {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.siba-media {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.siba-doc-preview {
    padding: 24px;
    font-family: monospace;
    font-size: 11px;
    overflow-x: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    box-sizing: border-box;
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.xml-preview {
    color: #a78bfa;
    max-width: 100%;
    overflow-x: auto;
    white-space: pre;
}

.siba-content {
    display: flex;
    flex-direction: column;
}

.siba-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.siba-description {
    color: var(--color-muted);
    font-size: 16px;
    margin-bottom: 28px;
}

.siba-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.siba-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.siba-list-item span {
    font-size: 15px;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 28px;
}

.price {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    gap: 4px;
}

.price-original-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-original {
    font-size: 13px;
    color: var(--color-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-current {
    display: flex;
    align-items: baseline;
    gap: 1px;
}

.price .currency {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

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

.price .amount-decimal {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    align-self: flex-end;
    margin-bottom: 4px;
}

.price .period {
    font-size: 14px;
    color: var(--color-muted);
    margin-left: 4px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 40px;
}

.pricing-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.pricing-features li i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pricing-features li i[data-lucide="check"] {
    color: var(--success);
}

.pricing-features li i[data-lucide="x"] {
    color: var(--danger);
}

.popular-plan {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
    background: rgba(139, 92, 246, 0.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-y: 20px;
}

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

.footer-copy {
    font-size: 13px;
    color: var(--color-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .siba-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   FAQS & RGPD SECTION (LEGAL GRID)
   ========================================================================== */
.support-legal-section {
    position: relative;
    border-top: 1px solid var(--border-color);
}

.legal-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-start;
}

.legal-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.legal-subtitle {
    font-size: 15px;
    color: var(--color-muted);
    margin-bottom: 30px;
}

/* FAQs Accordion Style */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.faq-question:focus {
    outline: none;
}

.faq-icon {
    width: 18px;
    height: 18px;
    color: var(--color-muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

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

.faq-answer p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    padding-bottom: 20px;
}

.faq-item.active {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

/* RGPD Container Style */
.rgpd-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rgpd-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rgpd-description {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
}

.rgpd-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
}

.rgpd-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.rgpd-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rgpd-feature-icon i {
    width: 16px;
    height: 16px;
}

.rgpd-feature-item h4 {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 4px;
}

.rgpd-feature-item p {
    font-size: 12px;
    color: var(--color-muted);
    line-height: 1.5;
}

/* RGPD Modal Dialog Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 6, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal-card {
    width: 100%;
    max-width: 650px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    background: rgba(18, 16, 35, 0.95);
    border: 1px solid var(--border-hover);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title i {
    width: 22px;
    height: 22px;
}

.modal-title h3 {
    font-size: 18px;
    color: #ffffff;
}

.modal-close {
    background: none;
    border: none;
    color: var(--color-muted);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-intro {
    font-size: 12px;
    color: var(--color-muted);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.modal-body h4 {
    color: #ffffff;
    font-size: 15px;
    margin-top: 8px;
}

.modal-body p {
    color: var(--color-muted);
}

.modal-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

/* Footer links style update */
.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-size: 13px;
    color: var(--color-muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.footer-ral {
    font-size: 11px;
    color: var(--color-muted);
    opacity: 0.6;
    margin-bottom: 8px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.footer-ral a {
    color: var(--color-muted);
    text-decoration: underline;
    opacity: 0.8;
}

.footer-link-complaint {
    color: #f59e0b !important;
    font-weight: 600;
}

.footer-link-complaint:hover {
    color: #fbbf24 !important;
}

/* Media Query Support for Grid */
@media (max-width: 968px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
