/* ========================================
   Landing Page 1: Cyber Futurista
   ======================================== */

/* Page Container */
.cyber-page {
    min-height: 100vh;
    background: var(--bg-dark);
    position: relative;
    overflow-x: hidden;
}

/* Background Effects */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(78, 188, 212, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 188, 212, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: top center;
    opacity: 0.5;
}

.cyber-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cyber-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(78, 188, 212, 0.15);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.cyber-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(78, 188, 212, 0.1);
    bottom: 0;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cyan-primary), transparent);
    opacity: 0.3;
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Navigation */
.cyber-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(78, 188, 212, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Ensure full width */
}

/* Nav Links Container */
.nav-links {
    display: flex;
    gap: var(--space-2xl);
    /* Increased from xl for better breathing room */
    align-items: center;
}

.nav-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cyan-primary);
}

/* (Moved to bottom) */

.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.back-link:hover {
    color: var(--cyan-primary);
}

/* Logo Fix - Strict sizing */
/* Logo Fix - Strict sizing */
.nav-brand img {
    height: 100px !important;
    /* Increased to 100px as requested */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 101;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 10, 18, 0.98);
    z-index: 200;
    padding: 80px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(78, 188, 212, 0.2);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-link span {
    color: var(--cyan-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.mobile-nav-link:hover span,
.mobile-nav-link.active span {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--cyan-primary);
}

.nav-cta {
    background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-dark));
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    box-shadow: 0 0 20px rgba(78, 188, 212, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.cyber-hero {
    position: relative;
    z-index: 10;
    min-height: auto;
    /* Allow height to fit content */
    display: flex;
    align-items: flex-start;
    padding: 160px 0 var(--space-4xl);
    /* Balanced bottom spacing */
}

.cyber-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(78, 188, 212, 0.1);
    border: 1px solid rgba(78, 188, 212, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--cyan-primary);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
    animation: fadeInUp 0.6s ease backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.3s;
}

.title-highlight {
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(78, 188, 212, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

.btn-cyber-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-dark));
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-cyber-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cyber-primary:hover::before {
    left: 100%;
}

.btn-cyber-primary:hover {
    box-shadow: 0 0 30px rgba(78, 188, 212, 0.5);
    transform: translateY(-2px);
}

.btn-cyber-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    color: var(--cyan-primary);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: 2px solid var(--cyan-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-cyber-outline:hover {
    background: var(--cyan-primary);
    color: var(--bg-dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cyan-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(78, 188, 212, 0.3);
}

/* Hero Visual - Code Window */
.hero-visual {
    animation: fadeIn 1s ease 0.5s backwards;
}

.code-window {
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid rgba(78, 188, 212, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(78, 188, 212, 0.1);
    animation: float 6s ease-in-out infinite;
}

.code-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(78, 188, 212, 0.1);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.code-dot:nth-child(1) {
    background: #ff5f56;
}

.code-dot:nth-child(2) {
    background: #ffbd2e;
}

.code-dot:nth-child(3) {
    background: #27ca40;
}

.code-title {
    margin-left: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.code-body {
    padding: var(--space-xl);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-body pre {
    margin: 0;
}

.code-keyword {
    color: #c678dd;
}

.code-property {
    color: #e06c75;
}

.code-string {
    color: #98c379;
}

.code-function {
    color: var(--cyan-primary);
}

.code-method {
    color: #61afef;
}

.code-comment {
    color: #5c6370;
    font-style: italic;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--cyan-primary);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.cyber-services {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(78, 188, 212, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-normal);
}

.service-card:hover {
    border-color: var(--cyan-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(78, 188, 212, 0.1);
}

.service-card-featured {
    border-color: var(--cyan-primary);
    background: linear-gradient(180deg, rgba(78, 188, 212, 0.1) 0%, rgba(15, 15, 25, 0.8) 100%);
}

.featured-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--cyan-primary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(78, 188, 212, 0.1);
    border: 1px solid rgba(78, 188, 212, 0.3);
    border-radius: var(--radius-lg);
    color: var(--cyan-primary);
    margin-bottom: var(--space-lg);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.service-description {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--gray-300);
}

.feature-check {
    color: var(--cyan-primary);
    font-weight: 600;
}

/* Process Section */
.cyber-process {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0;
    background: rgba(0, 0, 0, 0.3);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.process-step {
    position: relative;
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--cyan-primary);
    margin-bottom: var(--space-md);
    /* Center the icon globally */
    margin-left: auto;
    margin-right: auto;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.step-line {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(78, 188, 212, 0.3), transparent);
    transform: translateX(50%);
}

.process-step:last-child .step-line {
    display: none;
}

/* Testimonials Section */
.cyber-testimonials {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(78, 188, 212, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(78, 188, 212, 0.3);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-300);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* CTA Section */
.cyber-cta {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, rgba(78, 188, 212, 0.05) 0%, transparent 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: 1.1rem;
    color: var(--gray-400);
}

.cta-form {
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid rgba(78, 188, 212, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(78, 188, 212, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan-primary);
    box-shadow: 0 0 10px rgba(78, 188, 212, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.cyber-footer {
    position: relative;
    z-index: 10;
    padding: var(--space-3xl) 0 var(--space-xl);
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(78, 188, 212, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(78, 188, 212, 0.1);
}

.footer-brand img {
    height: 40px;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col a,
.footer-col span {
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--cyan-primary);
}

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Responsive */
@media (max-width: 1024px) {
    .cyber-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-xl);
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Specific Mobile Navigation Styles (Un-nested for safety) */
@media (max-width: 900px) {

    .desktop-only,
    .nav-cta {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .nav-brand img {
        height: 28px !important;
    }

    .nav-logo img {
        max-height: 28px;
    }
}

@media (max-width: 768px) {
    .cyber-hero {
        padding-top: calc(70px + var(--space-2xl));
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        /* Stack service cards */
        gap: var(--space-xl);
    }

    /* Enhanced Mobile Center Alignment for Process */
    .process-timeline {
        grid-template-columns: 1fr;
        justify-items: center;
        /* Center grid items */
    }

    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center flex children horizontally */
        max-width: 400px;
        margin: 0 auto;
    }

    /* Ensure the icon is centered (overriding any other potential margins) */
    .step-icon {
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
    }


    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-cyber-primary,
    .btn-cyber-outline {
        width: 100%;
        justify-content: center;
    }

    .nav-cta {
        display: none;
    }

    .code-window {
        font-size: 0.8rem;
    }

    /* Mobile Testimonials Slider */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-md);
        padding-bottom: var(--space-xl);
        margin: 0 calc(var(--space-md) * -1);
        /* Negative margin for full width feel */
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .testimonial-card {
        min-width: 280px;
        scroll-snap-align: center;
        margin-right: var(--space-xs);
    }

    /* CTA Form Mobile Optimization */
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .cta-form {
        padding: var(--space-xl);
        margin-top: var(--space-md);
    }

    .cta-text {
        text-align: center;
    }

    .cta-description {
        margin-bottom: var(--space-md);
    }
}

/* ========================================
   Landing Page 1 Extension: Service Pages
   ======================================== */

/* Internal Hero */
.internal-hero {
    min-height: 50vh !important;
    padding: calc(100px + var(--space-xl)) 0 var(--space-xl) !important;
}

.internal-hero .hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
}

.internal-hero .hero-description {
    max-width: 600px;
}

/* Data HUD for Analytics Page */
.data-hud {
    position: relative;
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid rgba(78, 188, 212, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    box-shadow: 0 0 40px rgba(78, 188, 212, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hud-circle {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.circular-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke: var(--cyan-primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    animation: progress 1.5s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.hud-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hud-value small {
    font-size: 1rem;
    color: var(--cyan-primary);
}

.hud-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-top: 4px;
}

.hud-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hud-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-xs);
}

.hud-row span:first-child {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.hud-mono {
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan-primary);
    font-weight: 700;
}

/* Services Grid Detailed */
.services-grid-detailed .service-card {
    min-height: 280px;
}

/* Responsive adjustments for internal pages */
@media (max-width: 768px) {
    .internal-hero {
        min-height: auto !important;
        padding-bottom: var(--space-3xl) !important;
    }

    .data-hud {
        flex-direction: column;
        text-align: center;
    }
}