/* ========================================
   PIXAMATION INC. - Futuristic IT Website
   ======================================== */

/* CSS Variables */
:root {
    --primary: #7AC142;
    --primary-dark: #5a9132;
    --primary-glow: rgba(122, 193, 66, 0.4);
    --primary-dim: rgba(122, 193, 66, 0.1);
    --black: #0a0a0a;
    --dark: #111111;
    --dark-lighter: #1a1a1a;
    --dark-card: #151515;
    --gray-900: #1f1f1f;
    --gray-800: #2a2a2a;
    --gray-700: #3a3a3a;
    --gray-600: #4a4a4a;
    --gray-500: #6a6a6a;
    --gray-400: #8a8a8a;
    --gray-300: #aaa;
    --gray-200: #ccc;
    --white: #ffffff;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-300);
    background: var(--black);
    overflow-x: hidden;
}

/* Animated Background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(122, 193, 66, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 193, 66, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -2;
}

.particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Particles are now animated via JavaScript for mouse interaction */

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(180, 180, 180, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(122, 193, 66, 0.3);
    transition: var(--transition-medium);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 90px;
    width: auto;
    transition: var(--transition-medium);
}

.logo:hover img {
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-700);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-medium);
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--black);
    border-radius: 4px;
    transition: var(--transition-medium);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-700);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, var(--primary-dim) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 650px;
    z-index: 10;
    margin-left: 5%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 0.5rem 1rem;
    background: var(--primary-dim);
    border: 1px solid rgba(122, 193, 66, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--primary-glow); }
    70% { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.4s; }
.hero-title .line:nth-child(3) { animation-delay: 0.6s; }

.hero-title .highlight {
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
}

.server-rack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(145deg, var(--dark-card), var(--dark));
    border: 1px solid var(--gray-800);
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.server-unit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 4px;
}

.server-lights {
    display: flex;
    gap: 8px;
}

.light {
    width: 8px;
    height: 8px;
    background: var(--gray-700);
    border-radius: 50%;
}

.light.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    animation: blink 2s infinite;
}

.light.active:nth-child(2) { animation-delay: 0.5s; }
.light.active:nth-child(3) { animation-delay: 1s; }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.server-vents {
    flex: 1;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--gray-800) 0px,
        var(--gray-800) 3px,
        transparent 3px,
        transparent 6px
    );
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(122, 193, 66, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    animation: orbit 20s linear infinite;
}

.orbit-ring-2 {
    width: 450px;
    height: 450px;
    animation-direction: reverse;
    animation-duration: 25s;
}

@keyframes orbit {
    from { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
    to { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
}

.data-flow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    gap: 50px;
}

.flow-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary),
        transparent
    );
    opacity: 0.3;
    animation: dataFlow 3s linear infinite;
}

.flow-line:nth-child(2) { animation-delay: 1s; }
.flow-line:nth-child(3) { animation-delay: 2s; }

@keyframes dataFlow {
    0% { opacity: 0; transform: translateY(-100%); }
    50% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(100%); }
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    padding: 2.5rem;
    background: var(--dark-card);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    transition: var(--transition-medium);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(122, 193, 66, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: rgba(122, 193, 66, 0.3);
    background: linear-gradient(145deg, var(--dark-card), rgba(122, 193, 66, 0.05));
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    background: var(--primary);
    color: var(--black);
    border-radius: 4px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dim);
    border: 1px solid rgba(122, 193, 66, 0.2);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features span {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 4px;
    color: var(--gray-400);
}

/* Solutions Section */
.solutions {
    padding: 8rem 0;
    background: var(--dark);
}

.solutions .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solutions-content {
    max-width: 550px;
}

.solutions-content .section-title {
    text-align: left;
}

.solutions-content .section-desc {
    text-align: left;
    margin: 0 0 2rem 0;
}

.solution-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--gray-300);
    font-size: 1.1rem;
}

.solution-features svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.solutions-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ditto-showcase {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ditto-logo {
    position: relative;
    z-index: 10;
    max-width: 280px;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.data-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(122, 193, 66, 0.2);
    border-radius: 50%;
    animation: shieldPulse 3s ease-in-out infinite;
}

.shield-ring:nth-child(1) {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
}

.shield-ring:nth-child(2) {
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.shield-ring:nth-child(3) {
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

@keyframes shieldPulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.05); }
}

.shield-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    stroke: var(--primary);
    opacity: 0.3;
}

.backup-animation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 150px;
}

.data-packet {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: uploadData 2s ease-in-out infinite;
}

.data-packet:nth-child(1) { left: 20%; animation-delay: 0s; }
.data-packet:nth-child(2) { left: 50%; animation-delay: 0.5s; }
.data-packet:nth-child(3) { left: 80%; animation-delay: 1s; }

@keyframes uploadData {
    0% { bottom: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { bottom: 150px; opacity: 0; }
}

/* Products Section */
.products {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-category {
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-medium);
}

.product-category:hover {
    transform: translateY(-5px);
    border-color: rgba(122, 193, 66, 0.3);
}

.product-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(145deg, var(--gray-900), var(--dark));
    border: 1px solid var(--gray-700);
    border-radius: 50%;
}

.product-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
}

.product-category h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.product-category p {
    color: var(--gray-400);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.product-specs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-specs span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    background: var(--primary-dim);
    border: 1px solid rgba(122, 193, 66, 0.2);
    border-radius: 4px;
    color: var(--primary);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--black);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, var(--primary-dim) 0%, transparent 50%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    max-width: 500px;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-desc {
    text-align: left;
    margin: 0 0 2.5rem 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--dark-card);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    transition: var(--transition-medium);
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dim);
    border-radius: 10px;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.method-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1rem 0.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-dim);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0.4rem;
    font-size: 0.75rem;
    color: var(--primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237AC142' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    grid-column: span 2;
    margin-top: 0.5rem;
}

/* Remote Support Section */
.remote-support {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
}

.remote-support-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.support-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.remote-support h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.remote-support p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-remote {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 50px;
    transition: var(--transition-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-remote svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-dark);
}

.btn-remote:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--white);
    color: var(--primary);
}

.btn-remote:hover svg {
    stroke: var(--primary);
    animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.support-note {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 1rem;
    margin-bottom: 0 !important;
}

/* Footer */
.footer {
    background: rgba(180, 180, 180, 0.95);
    border-top: 1px solid rgba(122, 193, 66, 0.3);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding: 4rem 0;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gray-700);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(122, 193, 66, 0.3);
}

.footer-bottom p {
    color: var(--gray-700);
    font-size: 0.9rem;
}

.footer-tech span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: var(--primary-dim);
    border: 1px solid rgba(122, 193, 66, 0.2);
    border-radius: 4px;
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-visual {
        width: 400px;
        height: 400px;
        right: 2%;
    }
    
    .orbit-ring {
        width: 350px;
        height: 350px;
    }
    
    .orbit-ring-2 {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 10rem;
        text-align: center;
    }
    
    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }
    
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 4rem;
        width: 100%;
        height: 300px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .solutions .section-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .solutions-content {
        max-width: 100%;
    }
    
    .solutions-content .section-title,
    .solutions-content .section-desc {
        text-align: center;
    }
    
    .solution-features {
        display: inline-block;
        text-align: left;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        max-width: 100%;
        text-align: center;
    }
    
    .contact-info .section-title,
    .contact-info .section-desc {
        text-align: center;
    }
    
    .contact-methods {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width,
    .contact-form .btn {
        grid-column: span 1;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero {
        padding: 8rem 1rem 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Data Packets Tracker */
.data-tracker {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: var(--font-display);
    padding: 1rem 1.25rem;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--primary);
    border-radius: 12px;
    z-index: 1001;
    min-width: 220px;
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
    box-shadow: 0 0 20px rgba(122, 193, 66, 0.2);
}

.data-tracker.active {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(122, 193, 66, 0.4);
}

.tracker-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.tracker-bar-container {
    width: 100%;
    height: 12px;
    background: var(--gray-900);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 1px solid var(--gray-700);
}

.tracker-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), #a3e635);
    border-radius: 6px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

.tracker-bar.pulse {
    animation: barPulse 0.2s ease;
}

@keyframes barPulse {
    0% { box-shadow: 0 0 10px var(--primary-glow); }
    50% { box-shadow: 0 0 25px var(--primary), 0 0 35px var(--primary-glow); }
    100% { box-shadow: 0 0 10px var(--primary-glow); }
}

.tracker-count {
    font-size: 0.9rem;
    color: var(--gray-300);
    text-align: right;
}

.tracker-count span {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

/* Particle collection animation */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 12px var(--primary), 0 0 25px var(--primary-glow), 0 0 40px rgba(122, 193, 66, 0.3);
    transition: transform 0.1s ease-out;
    pointer-events: none;
}

.particle.collected {
    animation: collectParticle 0.3s ease-out forwards;
}

@keyframes collectParticle {
    0% { 
        transform: scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: scale(2); 
        opacity: 1;
        box-shadow: 0 0 30px var(--primary), 0 0 50px var(--primary-glow);
    }
    100% { 
        transform: scale(0); 
        opacity: 0; 
    }
}

/* Collection effect popup */
.collection-effect {
    position: fixed;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    pointer-events: none;
    z-index: 503;
    animation: collectFloat 0.6s ease-out forwards;
    text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary);
}

.collection-effect.bonus-effect {
    font-size: 1.4rem;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8), 0 0 30px rgba(0, 212, 255, 0.5);
}

@keyframes collectFloat {
    0% { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
    100% { 
        transform: translateY(-40px) scale(1.3); 
        opacity: 0; 
    }
}

/* Bonus Blue Particles */
.bonus-particle {
    background: #00d4ff !important;
    box-shadow: 
        0 0 15px #00d4ff, 
        0 0 30px rgba(0, 212, 255, 0.6), 
        0 0 50px rgba(0, 212, 255, 0.4),
        0 0 70px rgba(0, 212, 255, 0.2) !important;
    animation: bonusPulse 1s ease-in-out infinite !important;
}

@keyframes bonusPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 15px #00d4ff, 
            0 0 30px rgba(0, 212, 255, 0.6), 
            0 0 50px rgba(0, 212, 255, 0.4);
    }
    50% { 
        transform: scale(1.3);
        box-shadow: 
            0 0 25px #00d4ff, 
            0 0 50px rgba(0, 212, 255, 0.8), 
            0 0 80px rgba(0, 212, 255, 0.5);
    }
}

.bonus-particle.collected {
    animation: collectBonusParticle 0.3s ease-out forwards !important;
}

@keyframes collectBonusParticle {
    0% { 
        transform: scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: scale(3); 
        opacity: 1;
        box-shadow: 0 0 50px #00d4ff, 0 0 80px rgba(0, 212, 255, 0.8);
    }
    100% { 
        transform: scale(0); 
        opacity: 0; 
    }
}

/* Win Message Modal */
.win-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.win-overlay.active {
    opacity: 1;
}

.win-modal {
    background: linear-gradient(145deg, var(--dark-card), var(--dark));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 
        0 0 50px var(--primary-glow),
        0 0 100px rgba(122, 193, 66, 0.2),
        inset 0 0 30px rgba(122, 193, 66, 0.05);
}

.win-overlay.active .win-modal {
    transform: scale(1) translateY(0);
}

.win-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: celebrateBounce 0.6s ease infinite;
}

@keyframes celebrateBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.win-modal h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--primary-glow);
}

.win-subtitle {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.win-subtitle span {
    color: var(--white);
    font-weight: 700;
}

.win-content {
    margin-bottom: 2rem;
}

.win-logo {
    max-width: 200px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.win-content > p {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.promo-box {
    background: rgba(122, 193, 66, 0.1);
    border: 1px solid rgba(122, 193, 66, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.promo-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.promo-code {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px var(--primary-glow);
    letter-spacing: 0.05em;
}

.promo-offer {
    display: block;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.5;
}

.win-close {
    margin-top: 1rem;
    min-width: 150px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

/* Selection */
::selection {
    background: var(--primary);
    color: var(--black);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-700);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ========================================
   Login Button & Auth System
   ======================================== */

/* Auth Overlay */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.auth-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Auth Modal */
.auth-modal {
    background: linear-gradient(145deg, var(--dark-card), var(--dark));
    border: 1px solid rgba(122, 193, 66, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 420px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
    box-shadow: 
        0 0 60px rgba(122, 193, 66, 0.15),
        0 25px 50px rgba(0, 0, 0, 0.5);
}

.auth-overlay.active .auth-modal {
    transform: scale(1) translateY(0);
}

.auth-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: 50%;
    color: var(--gray-400);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.auth-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--black);
}

/* Auth Header */
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: var(--primary-dim);
    border: 2px solid rgba(122, 193, 66, 0.3);
    border-radius: 50%;
}

.auth-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.auth-icon.verify-icon {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.auth-icon.verify-icon svg {
    stroke: #00d4ff;
}

.auth-header h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--gray-400);
    font-size: 1rem;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-form-group {
    position: relative;
}

.auth-form-group input {
    width: 100%;
    padding: 1.25rem 1rem 0.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.auth-form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-dim);
}

.auth-form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: var(--transition-fast);
}

.auth-form-group input:focus + label,
.auth-form-group input:not(:placeholder-shown) + label {
    top: 0.4rem;
    font-size: 0.75rem;
    color: var(--primary);
}

.auth-error {
    color: #ff4757;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-error:not(:empty)::before {
    content: '⚠';
}

.auth-submit {
    margin-top: 0.5rem;
}

/* Verification Code Inputs */
.verification-inputs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.verify-digit {
    width: 50px;
    height: 60px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gray-900);
    border: 2px solid var(--gray-700);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.verify-digit:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.verify-digit.filled {
    border-color: var(--primary);
    background: rgba(122, 193, 66, 0.1);
}

.verify-digit.error {
    border-color: #ff4757;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* Resend Code */
.resend-code {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.resend-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-left: 0.25rem;
}

.resend-btn:hover {
    color: #a3e635;
    text-decoration: underline;
}

.resend-btn:disabled {
    color: var(--gray-600);
    cursor: not-allowed;
}

/* Sending Indicator */
.sending-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
}

.spinner-ring {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-700);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.sending-indicator span {
    color: var(--gray-300);
    font-size: 1rem;
}

/* Mobile Responsive for Auth */
@media (max-width: 768px) {
    .verify-digit {
        width: 42px;
        height: 52px;
        font-size: 1.25rem;
    }
    
    .verification-inputs {
        gap: 0.5rem;
    }
    
    .auth-modal {
        padding: 2rem 1.5rem;
    }
}