:root {
    /* Futuristic Dark Theme Palette */
    --bg-main: #020617;
    /* Slate 950 */
    --bg-secondary: #0f172a;

    --primary: #22d3ee;
    /* Cyan 400 */
    --primary-glow: rgba(34, 211, 238, 0.4);

    --accent: #818cf8;
    /* Indigo 400 */
    --accent-glow: rgba(129, 140, 248, 0.4);

    --text-white: #f8fafc;
    --text-muted: #94a3b8;

    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 23, 42, 0.6);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-lg: 1.5rem;
    --radius-md: 0.75rem;

    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-main);
}

/* Background Gradients */
.bg-gradient-1 {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulse-glow 10s infinite alternate;
}

.bg-gradient-2 {
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulse-glow 12s infinite alternate-reverse;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    border: none;
}

.btn-glow {
    background: var(--text-white);
    color: var(--bg-main);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-glow:hover {
    background: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn.sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.full-width {
    width: 100%;
}

/* Glass Components */
.glass-panel,
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-slow);
}

.glass-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(15, 23, 42, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-fast);
}

header.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
}

.logo .highlight {
    color: var(--primary);
}

.desktop-nav a {
    margin-left: 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--text-white);
}

.desktop-nav .btn {
    margin-left: 2rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-main);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-trust p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    font-weight: 500;
    font-family: var(--font-heading);
}

.trust-icons .dot {
    width: 4px;
    height: 4px;
    background: #334155;
    border-radius: 50%;
}

/* Glass Phone */
.glass-phone {
    position: relative;
    width: 300px;
    height: 580px;
    background: rgba(20, 20, 30, 0.6);
    border-radius: 40px;
    border: 4px solid #334155;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.phone-screen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.chat-bubble {
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    max-width: 85%;
    line-height: 1.4;
}

.chat-bubble.left {
    background: #1e293b;
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}

.chat-bubble.right {
    background: var(--primary);
    color: #020617;
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

.ai-tag {
    display: block;
    font-size: 0.65rem;
    margin-top: 0.4rem;
    opacity: 0.8;
    font-weight: 700;
    text-transform: uppercase;
}

/* Stats Banner */
.stats-banner {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.25rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Real Estate Section (NEW) */
.real-estate-section {
    padding: 8rem 0;
    background: radial-gradient(circle at 10% 20%, rgba(34, 211, 238, 0.05) 0%, transparent 40%);
}

.re-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.re-feature {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
}

.re-feature:hover {
    background: rgba(34, 211, 238, 0.05);
    border-color: rgba(34, 211, 238, 0.3);
}

.re-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.re-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.re-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Process Section (NEW) */
.process-section {
    padding: 6rem 0 8rem;
    border-bottom: 1px solid var(--glass-border);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.step-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition-slow);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
}

.step-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 6rem 0 8rem;
    background: linear-gradient(180deg, transparent 0%, rgba(129, 140, 248, 0.03) 50%, transparent 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Services */
.services-section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    width: 56px;
    height: 56px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Founder Section */
.founder-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.03) 50%, transparent 100%);
}

.founder-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.2;
    border-radius: 1rem;
    overflow: hidden;
    background: #1e293b;
    border: 1px solid var(--glass-border);
}

.placeholder-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #334155;
    background: radial-gradient(circle at center, #1e293b, #0f172a);
}

.founder-socials {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.founder-socials a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.founder-socials a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.founder-content .label-tech {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.founder-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.founder-content .role {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.founder-content .bio {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Results */
.results-section {
    padding: 6rem 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.result-card .card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.result-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0 8rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.detail-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Form */
.form-box {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.styled-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: var(--radius-md);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.input-group textarea {
    resize: vertical;
}

.input-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.2s;
    font-size: 0.95rem;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -0.65rem;
    left: 0.8rem;
    font-size: 0.75rem;
    color: var(--primary);
    background: var(--bg-main);
    padding: 0 0.3rem;
}

/* Footer */
footer {
    padding: 6rem 0 0;
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to top, rgba(2, 6, 23, 1), rgba(15, 23, 42, 0.4));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.brand-col p {
    color: var(--text-muted);
    margin: 1rem 0;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-social-inline {
    display: flex;
    gap: 1rem;
}

.footer-social-inline a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: 0.2s;
}

.footer-social-inline a:hover {
    color: var(--text-white);
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Partner Styling */
.partner-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.25rem;
    filter: brightness(2) contrast(1.1);
    opacity: 0.9;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-style: italic;
}

.founder-names {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.15rem;
    font-family: var(--font-heading);
}

.partner-label {
    display: block;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    background: #020617;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a:hover {
    color: var(--text-white);
}

/* Floating Social Buttons */
.floating-socials {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
    transform: scale(1.15) rotate(5deg);
}

.float-btn.whatsapp {
    background: #25d366;
}

.float-btn.insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Response Mobile */
@media (max-width: 1100px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust .trust-icons {
        justify-content: center;
    }

    .founder-container {
        grid-template-columns: 1fr;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .re-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid,
    .results-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
    }

    .floating-socials {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* --- Advanced Aesthetic Animations --- */

/* 1. Founder Photo Styling */
.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-wrapper:hover .founder-photo {
    transform: scale(1.05);
}

/* 2. Floating Animation (Hero Phone & Icons) */
@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.glass-phone {
    animation: float-y 6s ease-in-out infinite;
}

.service-icon,
.re-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon,
.re-feature:hover .re-icon {
    animation: float-y 2s ease-in-out infinite;
    transform: scale(1.1);
}

/* 3. Button Pulse Glow */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 211, 238, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
    }
}

.btn-glow {
    animation: glow-pulse 2s infinite;
}

/* 5. Card Hover Lift & Border Shimmer */
.glass-card:hover,
.re-feature:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px -10px rgba(34, 211, 238, 0.15);
}

/* 6. Typography Shine Effect for H2s */
@keyframes text-shine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

h2 {
    background: linear-gradient(90deg, #fff 0%, #94a3b8 20%, #fff 40%, #fff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shine 5s linear infinite;
    color: white;
    /* Fallback */
}

/* 7. Scroll Reveal Stagger (Enhanced) */
.fade-element {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.appear {
    opacity: 1;
    transform: translateY(0) scale(1);
}