/* ==========================================================================
   TechmintSolutions | Index CSS
   ========================================================================== */

:root {
    /* Colors (Dark Theme & Gradients) */
    --bg-base: #030305;
    --bg-surface: #0a0a0f;
    --bg-glass: rgba(15, 15, 20, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    --brand-primary: #6366f1;
    /* Indigo */
    --brand-secondary: #a855f7;
    /* Purple */
    --brand-accent: #3b82f6;
    /* Blue */

    --glow-primary: rgba(99, 102, 241, 0.2);
    --glow-secondary: rgba(168, 85, 247, 0.15);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.bg-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.mt-8 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.text-sm {
    font-size: 0.875rem;
}

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

.icon-sm {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Background Effects
   ========================================================================== */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: var(--glow-primary);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--glow-secondary);
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50px, 50px);
    }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    box-shadow: 0 4px 15px var(--glow-primary);
}

.btn-primary:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-primary);
}

.btn-primary:hover:after {
    opacity: 1;
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-base);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--brand-accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-accent);
    box-shadow: 0 0 10px var(--brand-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
}

.trusted-logos {
    display: flex;
    gap: 24px;
    align-items: center;
    opacity: 0.6;
    flex-wrap: wrap;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-panel {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.neural-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 20px var(--brand-primary);
    animation: float 4s ease-in-out infinite alternate;
}

.n1 {
    top: 20%;
    left: 20%;
    background: var(--brand-accent);
    box-shadow: 0 0 20px var(--brand-accent);
}

.n2 {
    top: 40%;
    left: 80%;
}

.n3 {
    top: 80%;
    left: 50%;
    background: var(--brand-secondary);
    box-shadow: 0 0 20px var(--brand-secondary);
}

.n4 {
    top: 85%;
    left: 70%;
    animation-delay: 1s;
}

.n5 {
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.floating-data-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: float 5s ease-in-out infinite alternate-reverse;
}

.data-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.data-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #10b981;
    /* Emerald green for positive tech state */
}

@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .trusted-logos {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }
}

/* ==========================================================================
   Services Section (Bento Grid)
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

/* Service Card Core */
.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(15, 15, 25, 0.8);
}

.card-image-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    background: #000;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-image {
    transform: scale(1.15);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 5, 0.8) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-image-overlay {
    opacity: 0.2;
}

.card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-family: var(--font-display);
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-reveal-content {
    margin-top: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-reveal-content {
    max-height: 200px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--brand-primary);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--glow-primary);
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover .card-glow {
    opacity: 0.4;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-glass);
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }
}

/* ==========================================================================
   Value Proposition & Process
   ========================================================================== */
.value-prop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
}

.abstract-visual {
    position: relative;
    height: 450px;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.data-cube-container {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

@keyframes rotateCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.data-cube {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.data-cube .face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: inset 0 0 30px rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(2px);
}

.data-cube .front {
    transform: translateZ(100px);
}

.data-cube .back {
    transform: rotateY(180deg) translateZ(100px);
}

.data-cube .right {
    transform: rotateY(90deg) translateZ(100px);
}

.data-cube .left {
    transform: rotateY(-90deg) translateZ(100px);
}

.data-cube .top {
    transform: rotateX(90deg) translateZ(100px);
}

.data-cube .bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

.inner-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--brand-accent);
    border-radius: 50%;
    box-shadow: 0 0 50px var(--brand-accent), 0 0 100px var(--brand-primary);
}

.orbiting-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
}

.r1 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    animation: spinRing 10s infinite linear;
}

.r2 {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    animation: spinRing 15s infinite linear reverse;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.r3 {
    width: 350px;
    height: 350px;
    margin: -175px 0 0 -175px;
    animation: spinRing 12s infinite linear;
    transform: rotateX(60deg);
}

@keyframes spinRing {
    0% {
        transform: rotateZ(0deg) rotateX(70deg);
    }

    100% {
        transform: rotateZ(360deg) rotateX(70deg);
    }
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 3rem;
    gap: 20px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    transition: var(--transition-base);
}

.step:hover .step-num {
    -webkit-text-stroke: 1px var(--brand-primary);
    color: rgba(99, 102, 241, 0.1);
    transform: translateY(-5px);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--brand-primary), transparent);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .value-prop {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
    }

    .step-connector {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--brand-primary), transparent);
        margin: 20px 0;
    }
}

/* ==========================================================================
   Contact Section & Form
   ========================================================================== */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    position: relative;
    overflow: hidden;
    padding: 6rem;
    /* Increased padding */
}

@media (max-width: 968px) {
    .contact-card {
        padding: 4rem;
    }
}

@media (max-width: 640px) {
    .contact-card {
        padding: 2rem;
    }
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.w-full {
    width: 100%;
    justify-content: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: var(--transition-fast);
    outline: none;
    position: relative;
    z-index: 2;
}

.form-control:focus {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(0, 0, 0, 0.6);
}

.form-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-sm);
    background: var(--glow-primary);
    filter: blur(8px);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 1;
    pointer-events: none;
}

.form-control:focus+.form-glow {
    opacity: 0.5;
}

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

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */

/* Base hide state */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active reveal state */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger for hero elements */
.delay-stagger .reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.delay-stagger .reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.delay-stagger .reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.delay-stagger .reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.delay-stagger .reveal:nth-child(5) {
    transition-delay: 0.5s;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
}

select.form-control option {
    background: var(--bg-surface);
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-glass);
    padding-top: 80px;
    background: #000;
}

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

.footer-tagline {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 5%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */

/* Base hide state */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active reveal state */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger for hero elements */
.delay-stagger .reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.delay-stagger .reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.delay-stagger .reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.delay-stagger .reveal:nth-child(4) {
    transition-delay: 0.4s;
}

/* Mobile Menu Adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* simple hide for desktop-only nav, a real menu needs JS toggle */
    }
}