@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

html {
    overflow-x: hidden;
    max-width: 100vw;
}

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --secondary: #14b8a6;
    --accent: #f59e0b;
    --bg-dark: #0c1222;
    --bg-darker: #070d18;
    --bg-card: #0f1729;
    --bg-card-hover: #152238;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --border: #1e293b;
    --glow: rgba(13, 148, 136, 0.35);
}

body {
    margin: 0;
    font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Animated Stars Background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.8"/><circle cx="60" cy="40" r="0.5" fill="white" opacity="0.6"/><circle cx="80" cy="80" r="1.5" fill="white" opacity="0.4"/><circle cx="40" cy="70" r="0.8" fill="white" opacity="0.7"/></svg>') repeat;
    animation: animateStars 50s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150"><circle cx="30" cy="30" r="1" fill="%230d9488" opacity="0.5"/><circle cx="90" cy="60" r="0.5" fill="%2314b8a6" opacity="0.4"/><circle cx="120" cy="120" r="1.5" fill="%23f59e0b" opacity="0.3"/><circle cx="60" cy="105" r="0.8" fill="%230d9488" opacity="0.6"/></svg>') repeat;
    animation: animateStars 100s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle cx="40" cy="40" r="1" fill="white" opacity="0.3"/><circle cx="120" cy="80" r="0.5" fill="%230d9488" opacity="0.2"/><circle cx="160" cy="160" r="1.5" fill="%2314b8a6" opacity="0.25"/><circle cx="80" cy="140" r="0.8" fill="white" opacity="0.35"/></svg>') repeat;
    animation: animateStars 150s linear infinite;
}

@keyframes animateStars {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-2000px);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}
.logo .brand-accent {
    color: var(--primary);
}

.nav-toggle {
    display: none;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

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

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    min-width: 180px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
    overflow: hidden;
}

.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid var(--border);
}

.lang-dropdown-item:last-child {
    border-bottom: none;
}

.lang-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.lang-dropdown-item.active {
    background: rgba(13, 148, 136, 0.15);
    color: var(--primary);
}

.lang-flag {
    font-size: 20px;
    display: inline-block;
    width: 24px;
    text-align: center;
}

.btn-nav {
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 8px;
    color: white !important;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    z-index: 1;
    background: radial-gradient(ellipse at top, rgba(13, 148, 136, 0.12), transparent 55%),
                radial-gradient(ellipse at bottom right, rgba(20, 184, 166, 0.08), transparent 50%);
}

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

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(20deg);
    }
}

.subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 16px 32px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--glow);
}

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

.btn-secondary {
    border: 2px solid var(--border);
    padding: 16px 32px;
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

/* Earth Animation */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
}

.earth-container {
    position: relative;
    width: 400px;
    height: 400px;
    max-width: 100%;
    max-height: 100%;
}

.earth {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #10b981 50%, #3b82f6 75%, #1e3a8a 100%);
    box-shadow: 
        0 0 60px rgba(59, 130, 246, 0.5),
        inset -20px -20px 40px rgba(0, 0, 0, 0.3),
        inset 20px 20px 40px rgba(255, 255, 255, 0.1);
    animation: rotateEarth 20s linear infinite;
    overflow: hidden;
}

.earth-surface {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.8) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.6) 0%, transparent 25%),
        radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.4) 0%, transparent 20%),
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    animation: rotateEarth 15s linear infinite reverse;
}

.earth-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes rotateEarth {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Orbiting Satellites */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 50%;
    animation: rotateOrbit 10s linear infinite;
}

.orbit-1 {
    width: 340px;
    height: 340px;
    animation-duration: 12s;
}

.orbit-2 {
    width: 380px;
    height: 380px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 420px;
    height: 420px;
    animation-duration: 18s;
    max-width: 100vw;
    max-height: 100vh;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.satellite {
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    transform: translateX(-50%);
}

.orbit-2 .satellite {
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

.orbit-3 .satellite {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

/* Connection Lines */
.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    opacity: 0.3;
    transform-origin: top center;
    animation: pulseLine 2s ease-in-out infinite;
}

.line-1 {
    transform: translate(-50%, -50%) rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    transform: translate(-50%, -50%) rotate(135deg);
    animation-delay: 0.7s;
}

.line-3 {
    transform: translate(-50%, -50%) rotate(225deg);
    animation-delay: 1.4s;
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.2;
        height: 120px;
    }
    50% {
        opacity: 0.6;
        height: 180px;
    }
}

/* Sections */
section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features */
.features {
    background: var(--bg-dark);
}

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

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.25);
    background: var(--bg-card-hover);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about-secureconnecting {
    background: var(--bg-dark);
}

.about-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about-lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.about-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.about-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Servers Section */
.servers {
    background: var(--bg-darker);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.server-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.server-card:hover::before {
    transform: scaleX(1);
}

.server-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.25);
}

.server-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.server-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
}

.server-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: serverPulse 2s ease-out infinite;
}

@keyframes serverPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.server-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.server-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
}

.server-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: statusBlink 2s ease-in-out infinite;
}

.status-dot.active {
    background: #10b981;
}

@keyframes statusBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* How It Works */
.how-it-works {
    background: var(--bg-dark);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.step:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.25);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px var(--glow);
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Devices */
.devices {
    background: var(--bg-darker);
}

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

.device-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.device-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.25);
}

.device-icon {
    font-size: 56px;
    margin-bottom: 16px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.device-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.device-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* FAQ */
.faq {
    background: var(--bg-dark);
}

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

.faq-item {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 56px 0 24px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

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

.footer-brand .logo {
    font-size: 20px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 280px;
}

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

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        height: 300px;
        max-width: 100%;
        overflow: hidden;
    }

    .earth-container {
        width: min(300px, 90vw);
        height: min(300px, 90vw);
        max-width: 100%;
    }

    .earth {
        width: min(200px, 60vw);
        height: min(200px, 60vw);
    }

    .earth-glow {
        width: min(240px, 72vw);
        height: min(240px, 72vw);
    }

    .orbit-1 {
        width: min(260px, 78vw);
        height: min(260px, 78vw);
    }

    .orbit-2 {
        width: min(290px, 87vw);
        height: min(290px, 87vw);
    }

    .orbit-3 {
        width: min(320px, 96vw);
        height: min(320px, 96vw);
    }

    .hero-title {
        font-size: 48px;
    }

    .nav-links {
        gap: 16px;
        font-size: 12px;
    }

    section {
        padding: 60px 0;
    }
}

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

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 10px;
        background: rgba(255,255,255,0.08);
        border: 1px solid var(--border);
        border-radius: 8px;
        cursor: pointer;
    }
    .nav-toggle-bar {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-primary);
        transition: transform 0.3s, opacity 0.3s;
    }
    .nav-toggle.active .nav-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .nav-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: auto;
        flex-direction: column;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        gap: 16px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s, opacity 0.3s;
        z-index: 999;
        box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    }
    .nav-links.mobile-open {
        max-height: 80vh;
        opacity: 1;
        overflow-y: auto;
    }

    .hero-visual {
        height: 250px;
    }

    .earth-container {
        width: min(250px, 85vw);
        height: min(250px, 85vw);
    }

    .earth {
        width: min(160px, 55vw);
        height: min(160px, 55vw);
    }

    .earth-glow {
        width: min(200px, 68vw);
        height: min(200px, 68vw);
    }

    .orbit-1 {
        width: min(220px, 75vw);
        height: min(220px, 75vw);
    }

    .orbit-2 {
        width: min(250px, 85vw);
        height: min(250px, 85vw);
    }

    .orbit-3 {
        width: min(280px, 95vw);
        height: min(280px, 95vw);
    }

    .connection-line {
        height: 100px;
    }

    section {
        padding: 50px 0;
    }

    .features-grid,
    .servers-grid,
    .devices-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
    }

    .about-stats {
        gap: 32px;
    }
}
