:root {
    --primary: #0a7ea4;
    --primary-light: #48abe0;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #334155;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --surface: #ffffff;
    --accent-blue: #f0f9ff;
    --accent-legal: #f8fafc;
    --aura-1: rgba(10, 126, 164, 0.15);
    --aura-2: rgba(79, 70, 229, 0.1);
    --aura-3: rgba(236, 72, 153, 0.08);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Premium Noise Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.04;
    z-index: 9999;
    pointer-events: none;
    filter: contrast(150%) brightness(100%);
}

/* Aura Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: move 20s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--aura-1);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--aura-2);
    bottom: 10%;
    left: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--aura-3);
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(50px, 100px) scale(1.1); }
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

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

/* Glass Navigator */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 22px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    margin-left: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

.btn-small {
    background: var(--dark);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-small:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 126, 164, 0.15);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}



.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.app-store-btn {
    background: #000000;
    color: white;
    text-decoration: none;
    width: 175px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #222;
}

.app-store-btn .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-store-btn .small {
    font-size: 0.6rem;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.7);
}

.app-store-btn .big {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    background: #111111;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    text-decoration: none;
    width: 175px;
    height: 52px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockups-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    display: flex;
    justify-content: center;
}

.mockup-img {
    position: absolute;
    width: 280px;
    transition: transform 0.3s ease;
}

.mockup-img.dashboard {
    z-index: 5;
    left: 40px;
    top: 60px;
    transform: rotate(-2deg);
}

.mockup-img.history {
    z-index: 1;
    right: 0px;
    top: 0;
    opacity: 0.4;
    filter: blur(2px);
    transform: scale(0.8) rotate(8deg);
}

@media (max-width: 968px) {
    .mockups-container {
        height: 480px;
        max-width: 280px; /* Konteyneri daraltıp görselleri birbirine hapsettik */
        margin: 0 auto;
        position: relative;
    }
    .mockup-img {
        width: 180px;
        left: 50%;
        transform: translateX(-50%);
    }
    .mockup-img.dashboard { 
        left: 35%; /* Merkezin biraz solunda */
        top: 40px; 
        z-index: 5;
        transform: translateX(-50%) rotate(-1deg);
    }
    .mockup-img.history { 
        left: 65%; /* Merkezin biraz sağında */
        top: 0; 
        z-index: 1;
        opacity: 0.3;
        filter: blur(3px);
        transform: translateX(-50%) scale(0.85) rotate(5deg);
    }
}

/* How It Works */
.how-it-works {
    padding: 10rem 0;
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 20px -5px rgba(10, 126, 164, 0.4);
}

.step-item h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Trust Badges - Premium Update */
.trust-badges {
    padding: 6rem 0;
    background: #ffffff;
}

.badges-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.badge-item {
    padding: 2rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 10px 30px -10px rgba(10, 126, 164, 0.1);
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.badge-item span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

@media (max-width: 968px) {
    .badges-flex { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .badges-flex { grid-template-columns: 1fr; }
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

/* Comparison Table */
.comparison {
    padding: 10rem 0;
    background: #ffffff;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 4rem auto 0;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.comparison-table th, .comparison-table td {
    padding: 2rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 800;
    color: var(--dark);
    font-size: 1.1rem;
}

.comparison-table .old-way {
    color: var(--text-muted);
    opacity: 0.7;
}

.comparison-table td:nth-child(2) {
    font-weight: 700;
    color: var(--primary);
    background: rgba(10, 126, 164, 0.03);
}

.check { color: #10b981; margin-right: 0.8rem; font-weight: bold; font-size: 1.2rem; }
.cross { color: #ef4444; margin-right: 0.8rem; font-weight: bold; font-size: 1.2rem; }

@media (max-width: 968px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .comparison-table th, .comparison-table td { padding: 1.2rem; font-size: 0.9rem; }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    transition: color 0.3s;
    user-select: none;
}

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

.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    opacity: 0;
}

.faq-item.active {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 10px 30px -10px rgba(10, 126, 164, 0.08);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 150px; /* Safe size for our content */
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

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

.chevron {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-left: 1rem;
}

@media (max-width: 968px) {
    .steps-grid { grid-template-columns: 1fr; gap: 3rem; }
    .badges-flex { flex-direction: column; align-items: flex-start; padding-left: 2rem; }
}

/* Premium */
.features {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Bento Sizing */
.feature-card.large {
    grid-column: span 2;
}

.feature-card.tall {
    grid-row: span 2;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px -15px rgba(10, 126, 164, 0.15);
    background: #ffffff;
    border-color: var(--primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
}/* Blog Preview Section */
.blog-preview {
    padding: 10rem 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.blog_image { display: none; }

.blog-card.text-only {
    padding: 1.5rem;
    border-left: 5px solid var(--primary); /* Şık bir sol çizgi vurgusu */
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.blog-card.text-only:hover {
    border-left-width: 10px; /* Hover'da çizgi kalınlaşsın */
    background: #fcfdfe;
}

.blog-content {
    padding: 0; /* Artık dış katmanda pay var */
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(10, 126, 164, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.blog-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

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

/* Premium Box Redesign - Modern Grid & Glows */
.premium-sneak {
    padding: 6rem 0;
}

.premium-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
}

.premium-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 126, 164, 0.3) 0%, rgba(79, 70, 229, 0.08) 100%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.premium-badge {
    background: linear-gradient(90deg, var(--primary), #4f46e5);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: inline-block;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 15px rgba(10, 126, 164, 0.15);
}

.premium-box h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.premium-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.premium-feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.8rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(10, 126, 164, 0.25);
    transform: translateY(-3px);
}

.premium-feature-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.premium-feature-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.premium-action {
    position: relative;
    z-index: 2;
}

.premium-cta-btn {
    background: white;
    color: var(--dark);
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.premium-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(10, 126, 164, 0.2);
    background: var(--light);
}

/* Legal Pages Shared Styles */
.legal-header {
    padding: 12rem 0 6rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.legal-header.privacy, 
.legal-header.terms, 
.legal-header.cookies { background: linear-gradient(to bottom, var(--accent-blue), var(--light)); }

.legal-content {
    padding: 6rem 0 8rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-section p {
    color: var(--text);
    font-size: 1.1rem;
    white-space: pre-line;
    opacity: 0.9;
}

.back-home {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-home::before {
    content: '←';
    margin-right: 0.5rem;
}

/* Footer Improvements */
footer {
    background: #f1f5f9;
    padding: 6rem 0 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive - Advanced */
@media (max-width: 968px) {
    .container { padding: 0 1.5rem; }
    
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        display: none; /* JS ile açılacak */
        border-bottom: 1px solid #f1f5f9;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    }
    
    .nav-links.active { display: flex; }
    
    .nav-links a { margin: 0; font-size: 1.1rem; text-align: center; }

    .hero { padding: 8rem 0 4rem; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-content h1 { font-size: 2.5rem; margin-bottom: 1rem; }
    .hero-content p { font-size: 1.1rem; margin: 0 auto 2rem; }
    .hero-btns { flex-direction: row; gap: 0.8rem; justify-content: center; margin-bottom: 2rem; }
    .app-store-btn, .btn-secondary { width: 155px; height: 48px; font-size: 0.85rem; }
    .app-store-btn .big { font-size: 0.95rem; }
    .app-store-btn .small { font-size: 0.5rem; }
    .app-store-btn svg { width: 16px; }
    
    .mockups-container {
        height: 420px;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mockup-img {
        width: 240px; 
        position: absolute;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .mockup-img.dashboard {
        z-index: 5;
        top: 20px;
        transform: translateX(-50%) rotate(0deg) !important;
    }

    .mockup-img.history {
        z-index: 1;
        top: 60px;
        left: 55% !important;
        opacity: 0.3;
        transform: translateX(-50%) scale(0.85) rotate(10deg) !important;
        filter: blur(4px);
    }

    .section-header h2 { font-size: 2rem; }
    .feature-card { padding: 2rem; }
    
    .premium-box { padding: 4rem 1.5rem; border-radius: 32px; }
    .premium-box h2 { font-size: 2rem; }
    .premium-features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .premium-feature-item { padding: 1.8rem; }

    .legal-header { padding: 8rem 0 4rem; }
    .legal-header h1 { font-size: 2rem; }
    .legal-content { padding: 3rem 1.5rem; }
    .legal-section h2 { font-size: 1.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .footer-brand { align-items: center; text-align: center; }
    .footer-brand .logo { justify-content: center; }

    /* Bento Grid Mobile Fix */
    .features-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
    .feature-card.large, .feature-card.tall {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* --- Premium Animations & Reveal System --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 1.2s forwards 0.6s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}



