/* ═══════════════════════════════════════════════════════════════
   CloudRite — Immersive Sci-Fi Theme
   ═══════════════════════════════════════════════════════════════ */

:root {
    --primary: #00f0ff;
    --primary-dim: #00a8b3;
    --accent: #7b2ff7;
    --accent-glow: #a855f7;
    --neon-pink: #ff2d7b;
    --neon-green: #39ff14;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(15, 15, 25, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #e8e8f0;
    --text-secondary: #8888a8;
    --text-dim: #555570;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --glow-sm: 0 0 10px rgba(0, 240, 255, 0.3);
    --glow-md: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 40px rgba(0, 240, 255, 0.1);
    --glow-lg: 0 0 30px rgba(0, 240, 255, 0.5), 0 0 60px rgba(0, 240, 255, 0.2), 0 0 100px rgba(0, 240, 255, 0.1);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-dim) var(--bg-dark);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary-dim); border-radius: 3px; }

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

/* ─── Loader ─── */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--transition), visibility 0.8s;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-content { text-align: center; }
.loader-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}
.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    animation: loadFill 2s var(--transition) forwards;
}
@keyframes loadFill {
    to { width: 100%; }
}
.loader-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

/* ─── Canvas & Particles ─── */
#scene {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
#particles-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.4s var(--transition);
    backdrop-filter: blur(0px);
}
.nav.scrolled {
    padding: 0.7rem 2rem;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.85);
    border-bottom: 1px solid var(--border-glass);
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}
.logo-img {
    height: 36px;
    width: auto;
    filter: brightness(1.1);
}
.loader-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}
.logo-text { color: var(--text-primary); }
.logo-accent { color: var(--primary); }
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s var(--transition);
    box-shadow: var(--glow-sm);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s var(--transition);
}
.nav-cta:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-md);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ─── Mobile Menu ─── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.mobile-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.mobile-link:hover { color: var(--primary); }
.mobile-cta {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s;
}
.mobile-cta:hover { background: var(--primary); color: var(--bg-dark); }

/* ─── Hero ─── */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInDown 1s var(--transition) 2s both;
}
.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s var(--transition) 2.2s both;
}
.title-line { display: block; }
.title-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent-glow), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 1s var(--transition) 2.4s both;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--transition) 2.6s both;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 4rem;
    animation: fadeInUp 1s var(--transition) 2.8s both;
}
.stat { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}
.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary);
}
.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}
.hero-scroll {
    display: none;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-lg);
}
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--glow-sm);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── Sections ─── */
.section {
    position: relative;
    z-index: 2;
    padding: 8rem 2rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.text-glow {
    color: var(--primary);
    text-shadow: var(--glow-sm);
}
.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ─── Services Grid ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--transition);
    opacity: 0;
    transform: translateY(30px);
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(0, 240, 255, 0.1);
}
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; }
.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.card-icon svg { width: 100%; height: 100%; }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
.card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.5s var(--transition);
}
.service-card:hover .card-line { width: 100%; }

/* ─── Fibre Packages ─── */
.fibre {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.02) 50%, transparent 100%);
}
.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.provider-tab {
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    white-space: nowrap;
}
.provider-tab:hover {
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--text-primary);
}
.provider-tab.active {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}
.fibre-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.fibre-card {
    position: relative;
    padding: 1.8rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fibre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.fibre-card:hover {
    border-color: rgba(0, 240, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.fibre-card:hover::before { opacity: 1; }
.fibre-card.popular {
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.03);
}
.fibre-card.popular::after {
    content: 'POPULAR';
    position: absolute;
    top: 10px;
    right: -25px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #000;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 30px;
    transform: rotate(45deg);
    letter-spacing: 0.1em;
}
.fibre-speed {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.2rem;
}
.fibre-speed-unit {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    display: block;
}
.fibre-upload {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}
.fibre-upload span {
    color: var(--text-secondary);
}
.fibre-symmetric {
    display: inline-block;
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 3px;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.fibre-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}
.fibre-price-prefix {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}
.fibre-period {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}
.fibre-cta {
    display: inline-block;
    margin-top: auto;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s var(--transition);
}
.fibre-cta:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-sm);
}
.fibre-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ─── About Section ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hologram-card {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.holo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: holoSpin 20s linear infinite;
}
.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 240, 255, 0.2);
}
.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(123, 47, 247, 0.3);
    animation-direction: reverse;
    animation-duration: 15s;
}
.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(0, 240, 255, 0.4);
    animation-duration: 10s;
}
@keyframes holoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.holo-core {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: var(--glow-md);
}
.holo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow-md);
}
.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: var(--primary);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ─── Solutions ─── */
.solutions-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.solution-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    transition: all 0.4s var(--transition);
    opacity: 0;
    transform: translateX(-20px);
}
.solution-item.visible {
    opacity: 1;
    transform: translateX(0);
}
.solution-item:hover {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.solution-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 240, 255, 0.1);
    flex-shrink: 0;
}
.solution-content { flex: 1; }
.solution-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.solution-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
.solution-visual { flex-shrink: 0; }
.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: var(--glow-sm);
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); box-shadow: var(--glow-sm); }
    50% { transform: scale(1.3); box-shadow: var(--glow-md); }
}

/* ─── Testimonials ─── */
.testimonials-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    transition: all 0.4s var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(123, 47, 247, 0.3);
    transform: translateY(-3px);
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.testimonial-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ─── Contact ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-form-wrapper {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-group {
    position: relative;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.input-glow {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: var(--glow-sm);
}
.form-group input:focus ~ .input-glow,
.form-group textarea:focus ~ .input-glow { opacity: 1; }

/* ─── Footer ─── */
.footer {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-glass);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-brand { max-width: 300px; }
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 1rem;
}
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}
.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.8rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    color: var(--text-dim);
    transition: color 0.3s;
}
.footer-social a:hover { color: var(--primary); }
.footer-social svg { width: 18px; height: 18px; }

/* ─── Animations ─── */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 6rem 1.5rem 3rem; }
    .hero-stats { gap: 1.5rem; }
    .stat-number { font-size: 1.5rem; }
    .section { padding: 5rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .solution-item { flex-direction: column; text-align: center; }
    .solution-number { font-size: 2rem; }
    .testimonials-track { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 2rem; }
    .footer-links { gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .hologram-card { width: 200px; height: 200px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 1rem; }
}
