@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Playfair+Display:wght@600&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #050915;
    --deep-indigo: #14182f;
    --royal-blue: #4338CA;
    --electric-indigo: #6b7bff;
    --cyan: #4ce0ff;
    --orange: #ff9a7b;
    --mint-green: #55f7c6;
    --lavender: #c3b8ff;
    --pearl: #f7f4ff;
    --dark: #0d0f1d;
    --gray: #5d637a;
    --light-gray: #f4f6fb;
    --white: #ffffff;
    --card: rgba(255,255,255,0.08);
    --card-border: rgba(255,255,255,0.15);
    --glow: rgba(76,224,255,0.35);
    --text-primary: #f6f7ff;
    --text-muted: rgba(246,247,255,0.8);
}

body {
    font-family: 'Space Grotesk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background: radial-gradient(circle at 10% 20%, #1f1b3a 0%, #080a16 45%, #05060d 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@media (max-width: 768px) {
    body {
        background: radial-gradient(circle at 10% 20%, #1f1b3a 0%, #080a16 50%, #05060d 100%);
    }
}

@media (max-width: 480px) {
    body {
        background: radial-gradient(circle at 10% 20%, #1f1b3a 0%, #080a16 55%, #05060d 100%);
    }
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    opacity: 0.35;
    pointer-events: none;
}

body::before {
    background: var(--electric-indigo);
    top: -220px;
    left: -180px;
}

body::after {
    background: var(--mint-green);
    bottom: -260px;
    right: -120px;
}

@media (max-width: 768px) {
    body::before,
    body::after {
        width: 400px;
        height: 400px;
        filter: blur(100px);
        opacity: 0.3;
    }
    
    body::before {
        top: -150px;
        left: -120px;
    }
    
    body::after {
        bottom: -180px;
        right: -80px;
    }
}

@media (max-width: 480px) {
    body::before,
    body::after {
        width: 300px;
        height: 300px;
        filter: blur(80px);
        opacity: 0.25;
    }
    
    body::before {
        top: -100px;
        left: -80px;
    }
    
    body::after {
        bottom: -120px;
        right: -60px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(76, 224, 255, 0.1), rgba(85, 247, 198, 0.05));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.logo:hover::before {
    opacity: 1;
}

.logo-graphic {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(76, 224, 255, 0.2));
}

.logo:hover .logo-graphic {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(76, 224, 255, 0.4));
}

.logo-graphic.small {
    width: 44px;
    height: 44px;
}

.logo-image {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.2px;
    text-shadow: 0 0 30px rgba(76, 224, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover .logo-main {
    background: linear-gradient(135deg, #4ce0ff 0%, #55f7c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(76, 224, 255, 0.5);
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.logo:hover .logo-sub {
    color: rgba(76, 224, 255, 0.9);
}

.tagline {
    font-size: 9px;
    font-weight: 600;
    color: rgba(76, 224, 255, 0.7);
    margin-top: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.2;
}

.logo:hover .tagline,
.footer-logo:hover .tagline {
    color: rgba(76, 224, 255, 1);
    text-shadow: 0 0 8px rgba(76, 224, 255, 0.4);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(5, 9, 21, 0.95) 0%, rgba(7, 12, 28, 0.95) 50%, rgba(5, 9, 21, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(76, 224, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(76, 224, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.8px;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--mint-green));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--cyan);
    background: rgba(76, 224, 255, 0.08);
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a.active {
    color: var(--cyan);
    background: rgba(76, 224, 255, 0.12);
}

.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--mint-green));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(76, 224, 255, 0.6);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cyan);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 120px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 80px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(76,224,255,0.25), transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(195,184,255,0.3), transparent 55%);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero::after {
        background: radial-gradient(circle at 20% 20%, rgba(76,224,255,0.2), transparent 45%),
                    radial-gradient(circle at 80% 30%, rgba(195,184,255,0.25), transparent 50%);
    }
}

@media (max-width: 480px) {
    .hero::after {
        background: radial-gradient(circle at 20% 20%, rgba(76,224,255,0.15), transparent 40%),
                    radial-gradient(circle at 80% 30%, rgba(195,184,255,0.2), transparent 45%);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    align-items: center;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-media {
        order: 2;
        min-height: auto;
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-grid {
        gap: 30px;
    }
    
    .hero-media {
        margin-top: 15px;
    }
}

.hero-content {
    text-align: left;
    max-width: 560px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--text-muted);
    animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 768px) {
    .eyebrow {
        justify-content: center;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--mint-green));
    border-radius: 999px;
}

.hero-title {
    font-size: clamp(2.8rem, 4vw, 4.3rem);
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin: 15px 0;
        animation-duration: 0.6s;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin: 12px 0;
        line-height: 1.2;
    }
}

.hero-title span {
    color: var(--mint-green);
    text-shadow: 0 10px 45px rgba(85, 247, 198, 0.35);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 25px;
        animation-duration: 0.6s;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.hero-badges::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--mint-green), transparent);
    border-radius: 2px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.6;
        width: 80px;
    }
    50% {
        opacity: 1;
        width: 120px;
    }
}

@media (max-width: 768px) {
    .hero-badges {
        justify-content: center;
        gap: 12px;
        margin-bottom: 35px;
        padding-bottom: 28px;
    }
    
    .badge {
        flex: 1;
        min-width: 150px;
        text-align: center;
        padding: 11px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .badge {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.8rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .badge:active {
        transform: scale(0.98);
    }
    
    .badge::before {
        width: 2px;
    }
}

.badge {
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    text-transform: uppercase;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cyan), var(--mint-green));
    border-radius: 8px 0 0 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 20px rgba(76, 224, 255, 0.1);
}

.badge:hover::before {
    opacity: 1;
}

.badge-glow:hover {
    box-shadow: 0 4px 16px rgba(76, 224, 255, 0.3),
                0 0 24px rgba(76, 224, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.badge-glow {
    border-color: rgba(76,224,255,0.4);
    background: linear-gradient(135deg, rgba(76,224,255,0.12), rgba(85,247,198,0.08));
    box-shadow: 0 2px 10px rgba(76,224,255,0.25),
                0 0 20px rgba(76,224,255,0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.badge-glow::before {
    opacity: 0.6;
}

.badge-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px rgba(76, 224, 255, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.badge:not(.badge-glow)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.badge:hover::after {
    opacity: 1;
    background: rgba(255, 255, 255, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 200px;
        text-align: center;
        padding: 15px 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        min-width: auto;
        padding: 16px 32px;
        font-size: 0.9rem;
    }
}

.hero-buttons .btn {
    position: relative;
    z-index: 2;
}

.hero-buttons .btn-primary {
    box-shadow: 0 10px 30px rgba(67, 56, 202, 0.4), 
                0 0 20px rgba(76, 224, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-secondary {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-media {
    position: relative;
    min-height: 420px;
    max-width: 420px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-media {
        min-height: auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        padding: 0;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-media {
        min-height: auto;
    }
    
    .hero-ring-outer,
    .hero-ring-inner {
        display: none;
    }
    
    .stat-chip {
        margin: 0;
        padding: 16px 20px;
    }
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    animation: pulse 12s infinite linear;
}

.hero-ring-outer {
    width: 420px;
    height: 420px;
    top: 10px;
    left: 10px;
}

.hero-ring-inner {
    width: 260px;
    height: 260px;
    top: 90px;
    left: 90px;
    animation-duration: 18s;
}

@media (max-width: 768px) {
    .hero-ring-outer {
        width: 300px;
        height: 300px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.6;
    }
    
    .hero-ring-inner {
        width: 200px;
        height: 200px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .hero-ring-outer {
        width: 250px;
        height: 250px;
        opacity: 0.5;
    }
    
    .hero-ring-inner {
        width: 160px;
        height: 160px;
        opacity: 0.4;
    }
}

.gradient-orbs {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.8;
    animation: float 16s infinite ease-in-out;
}

.orb-one {
    width: 160px;
    height: 160px;
    background: var(--cyan);
    top: 10%;
    left: 20%;
}

.orb-two {
    width: 220px;
    height: 220px;
    background: var(--lavender);
    bottom: 15%;
    right: 5%;
    animation-delay: 4s;
}

.orb-three {
    width: 140px;
    height: 140px;
    background: var(--mint-green);
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .orb-one {
        width: 120px;
        height: 120px;
        top: 5%;
        left: 10%;
    }
    
    .orb-two {
        width: 160px;
        height: 160px;
        bottom: 10%;
        right: 0;
    }
    
    .orb-three {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .orb-one {
        width: 80px;
        height: 80px;
    }
    
    .orb-two {
        width: 120px;
        height: 120px;
    }
    
    .orb-three {
        width: 70px;
        height: 70px;
    }
}

.floating-card {
    position: absolute;
    padding: 24px;
    border-radius: 18px;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(11, 14, 35, 0.8);
    color: var(--text-primary);
    box-shadow: 0 25px 60px rgba(5, 5, 12, 0.6);
    width: 220px;
    animation: float 14s infinite;
}

@media (max-width: 768px) {
    .floating-card {
        width: 180px;
        padding: 18px;
        font-size: 0.9rem;
    }
    
    .floating-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .floating-card {
        width: 150px;
        padding: 14px;
        font-size: 0.8rem;
    }
    
    .floating-card h3 {
        font-size: 1rem;
    }
    
    .floating-card .card-label {
        font-size: 0.7rem;
    }
}

.floating-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.floating-card span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.floating-card .card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--cyan);
    margin-bottom: 12px;
    display: block;
}

.card-primary {
    top: 40px;
    right: 0;
    background: linear-gradient(145deg, rgba(67, 56, 202, 0.85), rgba(91, 75, 255, 0.8));
}

.card-secondary {
    bottom: 25px;
    left: 10%;
}

@media (max-width: 768px) {
    .card-primary {
        top: auto;
        right: auto;
        position: relative;
        margin-bottom: 16px;
        width: 100%;
        max-width: 100%;
        animation: none;
        transform: translateY(0);
        order: 1;
    }
    
    .card-secondary {
        bottom: auto;
        top: auto;
        left: auto;
        position: relative;
        width: 100%;
        max-width: 100%;
        animation: none;
        transform: translateY(0);
        order: 2;
    }
    
    .floating-card {
        position: relative;
        margin: 0 0 16px 0;
        width: 100%;
    }
    
    .stat-chip {
        order: 3;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .card-primary {
        top: auto;
        right: auto;
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    .card-secondary {
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    .floating-card {
        width: 100%;
        padding: 20px;
    }
}

.stat-chip {
    position: absolute;
    bottom: 140px;
    right: 15%;
    padding: 18px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
    .stat-chip {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0;
        padding: 18px 24px;
        width: 100%;
        max-width: 100%;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stat-chip {
        margin: 15px auto 0;
        padding: 16px 20px;
        max-width: 100%;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--mint-green);
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 12px;
}

.chip-positive {
    background: rgba(85,247,198,0.12);
    color: var(--mint-green);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--electric-indigo) 50%, var(--cyan) 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(67, 56, 202, 0.4), 
                0 0 20px rgba(76, 224, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(76, 224, 255, 0.3);
    position: relative;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(67, 56, 202, 0.5), 
                0 0 30px rgba(76, 224, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(76, 224, 255, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 2px;
    background: linear-gradient(135deg, var(--cyan), var(--mint-green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--mint-green);
    border-color: rgba(85, 247, 198, 0.6);
    box-shadow: 0 12px 35px rgba(85, 247, 198, 0.3),
                0 0 20px rgba(85, 247, 198, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
}

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

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: transparent;
    color: var(--royal-blue);
    border-color: var(--royal-blue);
}

.btn-outline:hover {
    background: var(--royal-blue);
    color: var(--white);
}

@media (max-width: 768px) {
    .btn-outline {
        color: var(--cyan);
        border-color: var(--cyan);
    }
    
    .btn-outline:hover {
        background: var(--cyan);
        color: var(--white);
    }
}

/* Section Styles */
section:not(.hero):not(.page-header) {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    section:not(.hero):not(.page-header) {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    section:not(.hero):not(.page-header) {
        padding: 40px 0;
    }
}

.section-title {
    font-family: 'Playfair Display', 'Space Grotesk', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-blue), var(--cyan));
    border-radius: 999px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
}

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

/* Services Preview */
.services-preview {
    background: rgba(255,255,255,0.92);
    border-radius: 40px;
    margin: 60px 0;
    border: 1px solid rgba(13,15,29,0.05);
    box-shadow: 0 25px 60px rgba(6, 8, 20, 0.12);
    padding: 80px 0;
}

@media (max-width: 768px) {
    .services-preview {
        border-radius: 24px;
        margin: 40px 16px;
        padding: 50px 20px;
        background: rgba(255,255,255,0.92);
    }
}

@media (max-width: 480px) {
    .services-preview {
        border-radius: 20px;
        margin: 30px 12px;
        padding: 40px 15px;
        background: rgba(255,255,255,0.92);
    }
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
}

.service-card {
    background: rgba(255,255,255,0.9);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 25px 45px rgba(6,8,20,0.08);
    border: 1px solid rgba(11,14,35,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 768px) {
    .service-card {
        padding: 35px 25px;
        text-align: center;
        background: rgba(255,255,255,0.9);
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 30px 20px;
        text-align: center;
        background: rgba(255,255,255,0.9);
    }
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76,224,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 35px 65px rgba(6,8,20,0.12);
    border-color: rgba(76,224,255,0.3);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    box-shadow: 0 20px 35px rgba(30, 58, 138, 0.25);
}

@media (max-width: 768px) {
    .service-icon {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .service-icon {
        margin: 0 auto 18px;
    }
}

.service-icon.cyan {
    background: var(--cyan);
}

.service-icon.orange {
    background: var(--orange);
}

.service-icon.royal-blue {
    background: var(--royal-blue);
}

.service-icon.mint-green {
    background: var(--mint-green);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--gray);
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--royal-blue);
    font-weight: bold;
}

@media (max-width: 480px) {
    .service-card ul li {
        font-size: 0.9rem;
        padding-left: 18px;
    }
}

/* About Preview */
.about-preview {
    background: transparent;
    padding: 0 0 80px;
}

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

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .about-content {
        gap: 30px;
    }
}

.about-preview .about-content {
    background: rgba(255,255,255,0.92);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(6,8,20,0.12);
    border: 1px solid rgba(13,15,29,0.05);
}

@media (max-width: 768px) {
    .about-preview .about-content {
        padding: 40px 30px;
        border-radius: 24px;
        margin: 0 16px;
        background: rgba(255,255,255,0.92);
    }
}

@media (max-width: 480px) {
    .about-preview .about-content {
        padding: 30px 20px;
        border-radius: 20px;
        margin: 0 12px;
        background: rgba(255,255,255,0.92);
    }
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .about-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(6,8,20,0.12);
    border: 1px solid rgba(13,15,29,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(6,8,20,0.15);
}

@media (max-width: 768px) {
    .stat-item {
        padding: 25px 20px;
        background: rgba(255,255,255,0.95);
    }
}

@media (max-width: 480px) {
    .stat-item {
        padding: 25px 20px;
        background: rgba(255,255,255,0.95);
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--royal-blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(5, 9, 21, 0.95) 0%, rgba(7, 12, 28, 0.95) 50%, rgba(5, 9, 21, 0.95) 100%);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(76, 224, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(76, 224, 255, 0.15);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(76, 224, 255, 0.1), rgba(85, 247, 198, 0.05));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-logo:hover::before {
    opacity: 1;
}

.footer-logo .logo-graphic {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(76, 224, 255, 0.2));
}

.footer-logo:hover .logo-graphic {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(76, 224, 255, 0.4));
}

.footer-logo .logo-main {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.2px;
    text-shadow: 0 0 30px rgba(76, 224, 255, 0.3);
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-main {
    background: linear-gradient(135deg, #4ce0ff 0%, #55f7c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(76, 224, 255, 0.5);
}

.footer-logo .logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-sub {
    color: rgba(76, 224, 255, 0.9);
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--cyan);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info i {
    color: var(--cyan);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Page Header */
.page-header {
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.25), transparent 60%), linear-gradient(120deg, var(--royal-blue), var(--electric-indigo));
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    border-radius: 32px;
    margin: 40px 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 35px 60px rgba(5,7,22,0.35);
}

@media (max-width: 768px) {
    .page-header {
        padding: 70px 0 50px;
        border-radius: 24px;
        margin: 30px 16px 0;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 50px 0 40px;
        border-radius: 20px;
        margin: 20px 12px 0;
    }
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

/* Content Sections */
.content-section {
    padding: 70px;
    background: rgba(255,255,255,0.94);
    border-radius: 32px;
    margin: 40px 0;
    box-shadow: 0 25px 50px rgba(8, 12, 30, 0.12);
    border: 1px solid rgba(13,15,29,0.05);
}

@media (max-width: 768px) {
    .content-section {
        padding: 40px 30px;
        border-radius: 24px;
        margin: 30px 0;
        background: rgba(11, 14, 35, 0.6);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .content-section h2 {
        color: var(--text-primary);
    }
    
    .content-section p {
        color: var(--text-muted);
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 30px 20px;
        border-radius: 20px;
        margin: 20px 0;
        background: rgba(11, 14, 35, 0.6);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.content-section[style*="background"] {
    border: none;
    box-shadow: none;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 600;
}

/* Contact Form Styles */
.contact-form-wrapper,
.contact-info-wrapper {
    flex: 1;
}

@media (max-width: 968px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        flex: none;
        width: 100%;
    }
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 25px;
        background: rgba(11, 14, 35, 0.6);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .form-group label {
        color: var(--text-primary);
    }
    
    .form-group input,
    .form-group textarea {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.2);
        color: var(--text-primary);
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--cyan);
        background: rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 25px 20px;
        background: rgba(11, 14, 35, 0.6);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-item {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-item h3 {
        color: var(--text-primary);
    }
    
    .contact-item p {
        color: var(--text-muted);
    }
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-icon.cyan {
    background: var(--cyan);
}

.contact-icon.orange {
    background: var(--orange);
}

.contact-icon.royal-blue {
    background: var(--royal-blue);
}

.contact-icon.mint-green {
    background: var(--mint-green);
}

.contact-item h3 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.6;
}

.about-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .image-placeholder {
        height: 300px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .image-placeholder {
        height: 250px;
        font-size: 0.9rem;
        border-radius: 16px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(5, 7, 20, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.08);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 25px 45px rgba(3, 4, 12, 0.6);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 12px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-graphic {
        width: 50px !important;
        height: 50px !important;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .footer-logo .logo-text {
        display: flex;
    }
    
    .footer-logo .logo-graphic {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-badges {
        flex-direction: column;
    }
    
    .badge {
        width: 100%;
        text-align: center;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .eyebrow {
        font-size: 0.75rem;
    }
    
    .eyebrow::before {
        width: 20px;
    }
}

