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

:root {
    --primary: #1e7fd9;
    --primary-light: #3fa9ff;
    --primary-dark: #0a4a8f;
    --accent: #ffb300;
    --accent-light: #ffd54f;
    --accent-orange: #ff8c1a;
    --bg-dark: #050b1f;
    --bg-mid: #0a1533;
    --bg-light: #10204a;
    --text: #ffffff;
    --text-muted: #a8b5d1;
    --text-dim: #6c7ca0;
    --card-bg: rgba(16, 32, 74, 0.5);
    --card-border: rgba(63, 169, 255, 0.2);
    --glow: 0 0 40px rgba(63, 169, 255, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Animated Background ===== */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #050b1f 0%, #0a1533 50%, #071024 100%);
    overflow: hidden;
}

.stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 15% 20%, #fff, transparent),
        radial-gradient(1px 1px at 40% 70%, #fff, transparent),
        radial-gradient(1px 1px at 70% 30%, #ffd54f, transparent),
        radial-gradient(1px 1px at 85% 80%, #fff, transparent),
        radial-gradient(1px 1px at 25% 85%, #3fa9ff, transparent),
        radial-gradient(1px 1px at 55% 45%, #fff, transparent),
        radial-gradient(1px 1px at 90% 15%, #fff, transparent),
        radial-gradient(2px 2px at 65% 60%, #ffb300, transparent);
    background-size: 200% 200%;
    opacity: 0.6;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

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

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #1e7fd9, transparent);
    top: -100px; left: -100px;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #ffb300, transparent);
    bottom: 10%; right: -100px;
    animation-delay: -5s;
    opacity: 0.25;
}

.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #3fa9ff, transparent);
    top: 50%; left: 50%;
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.1); }
    66% { transform: translate(-40px, 60px) scale(0.95); }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(5, 11, 31, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(63, 169, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(5, 11, 31, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(63, 169, 255, 0.4));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #3fa9ff 0%, #1e7fd9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .accent {
    background: linear-gradient(135deg, #e8e8e8 0%, #a8b5d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-light);
}

.nav-menu a.active {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(255, 179, 0, 0.35);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(63, 169, 255, 0.5);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(63, 169, 255, 0.1);
    border: 1px solid rgba(63, 169, 255, 0.25);
    border-radius: 999px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 999px;
    transition: all 0.2s;
}

.lang-btn.active {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
}

.lang-btn:hover:not(.active) {
    color: var(--text);
}

.lang-divider {
    color: var(--text-dim);
    font-size: 12px;
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 60px;
    position: relative;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease both;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(63, 169, 255, 0.1);
    border: 1px solid rgba(63, 169, 255, 0.3);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-title > span {
    display: block;
}

.gradient-text {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #3fa9ff 0%, #1e7fd9 40%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 30px rgba(63, 169, 255, 0.4));
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #1e7fd9 0%, #3fa9ff 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(30, 127, 217, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(30, 127, 217, 0.6);
    background: linear-gradient(135deg, #3fa9ff 0%, #ffb300 100%);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(63, 169, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(63, 169, 255, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(63, 169, 255, 0.15);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInRight 1.2s ease both;
}

.hero-logo-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 70%;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(63, 169, 255, 0.5));
    animation: logoFloat 6s ease-in-out infinite;
    z-index: 2;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(63, 169, 255, 0.2);
    animation: rotateRing 20s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-top-color: var(--primary-light);
    border-right-color: var(--accent);
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-bottom-color: var(--accent-orange);
    border-left-color: var(--primary-light);
    animation-direction: reverse;
    animation-duration: 15s;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border-top-color: var(--accent);
    border-bottom-color: var(--primary);
    animation-duration: 25s;
}

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

@keyframes rotateRing {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-light);
    border-bottom: 2px solid var(--primary-light);
    transform: rotate(45deg);
}

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

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== Section Common ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 179, 0, 0.1);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 999px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #a8b5d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== About ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.about-card {
    padding: 40px 32px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(63, 169, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), var(--glow);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    font-size: 44px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(255, 179, 0, 0.3));
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.about-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(63, 169, 255, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(63, 169, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.service-card.highlight {
    background: linear-gradient(135deg, rgba(30, 127, 217, 0.2), rgba(255, 179, 0, 0.1));
    border-color: rgba(255, 179, 0, 0.3);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(63, 169, 255, 0.4));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
}

.service-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    padding: 5px 12px;
    background: rgba(63, 169, 255, 0.1);
    border: 1px solid rgba(63, 169, 255, 0.25);
    border-radius: 999px;
    font-size: 12px;
    color: var(--primary-light);
    font-weight: 500;
}

/* ===== Banners (after Services) ===== */
/* Balanced vertical rhythm: Services 50px → Banners 30/30 → CTA 50px */
.services {
    padding-bottom: 50px;
}

.banners {
    padding: 30px 0;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.banner-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(63, 169, 255, 0.25);
    background: var(--card-bg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);

    opacity: 0;
    transform: translateY(60px) scale(0.92);
}

.banner-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: bannerFloat 6s ease-in-out infinite;
}

.banner-card.is-visible:nth-child(1) {
    transition-delay: 0.05s;
    animation-delay: 0s;
}

.banner-card.is-visible:nth-child(2) {
    transition-delay: 0.25s;
    animation-delay: 1.5s;
}

.banner-card.is-visible:nth-child(3) {
    transition-delay: 0.45s;
    animation-delay: 3s;
}

.banner-card.is-visible::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 179, 0, 0.18) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: bannerShine 1.4s ease-out forwards;
    animation-delay: inherit;
    pointer-events: none;
    z-index: 3;
}

@keyframes bannerFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.005); }
}

@keyframes bannerShine {
    0% { left: -75%; opacity: 0; }
    15% { opacity: 1; }
    100% { left: 125%; opacity: 0; }
}

.banner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(63, 169, 255, 0.15));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.banner-card.is-visible:hover {
    animation-play-state: paused;
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 179, 0, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), var(--glow);
}

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

.banner-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.banner-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .banners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== CTA ===== */
.cta {
    padding: 50px 0 80px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(30, 127, 217, 0.15) 0%, rgba(255, 179, 0, 0.1) 100%);
    border: 1px solid rgba(63, 169, 255, 0.3);
    border-radius: 28px;
    padding: 70px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(63, 169, 255, 0.1) 90deg, transparent 180deg, rgba(255, 179, 0, 0.08) 270deg, transparent 360deg);
    animation: rotateGradient 15s linear infinite;
    pointer-events: none;
}

.cta-box > * { position: relative; z-index: 1; }

.cta-box h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #3fa9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: rgba(30, 127, 217, 0.08);
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 15px rgba(255, 179, 0, 0.3));
}

.contact-label {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    word-break: break-word;
}

/* ===== Footer ===== */
.footer {
    padding: 50px 0 30px;
    border-top: 1px solid rgba(63, 169, 255, 0.15);
    background: rgba(5, 11, 31, 0.6);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(63, 169, 255, 0.4));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 280px;
}

.footer-info {
    text-align: right;
    color: var(--text-dim);
    font-size: 13px;
}

.footer-info p {
    margin-bottom: 4px;
}

.footer-location {
    color: var(--primary-light);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content { order: 2; }
    .hero-visual { order: 1; }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons, .hero-stats {
        justify-content: center;
    }

    .hero-logo-wrapper {
        width: 300px;
        height: 300px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        width: 85%;
        max-width: 300px;
        height: calc(100vh - 70px);
        padding: 40px 30px;
        background: rgba(5, 11, 31, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(63, 169, 255, 0.2);
        transition: right 0.3s ease;
        gap: 24px;
    }

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

    .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
    section { padding: 70px 0; }
    .hero { padding: 100px 16px 40px; }
    .container, .nav-container { padding: 0 16px; }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-number { font-size: 26px; }
    .cta-box { padding: 50px 24px; }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-info { text-align: center; }
    .footer-brand { flex-direction: column; text-align: center; }
    .logo-text { font-size: 16px; }
    .logo-img { height: 36px; }
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
