/* Modern Professional Website Styles for Premay IT Solutions */

/* CSS Variables - Neon Cyberpunk Theme */
:root {
    --primary: #00ffff;
    --primary-dark: #00d9ff;
    --primary-light: #66ffff;
    --secondary: #ff00ff;
    --accent: #39ff14;
    --neon-pink: #ff006e;
    --neon-purple: #bf00ff;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --gray-900: #0f0f0f;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-500: #5a5a5a;
    --gray-400: #7a7a7a;
    --gray-300: #9a9a9a;
    --gray-200: #b5b5b5;
    --gray-100: #1f1f1f;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    --gradient-text: linear-gradient(135deg, #00ffff 0%, #39ff14 50%, #ff00ff 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 255 255 / 0.1);
    --shadow: 0 4px 6px -1px rgb(0 255 255 / 0.2), 0 2px 4px -2px rgb(255 0 255 / 0.2);
    --shadow-lg: 0 10px 15px -3px rgb(0 255 255 / 0.3), 0 4px 6px -4px rgb(255 0 255 / 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(0 255 255 / 0.4), 0 8px 10px -6px rgb(255 0 255 / 0.4);
    --neon-glow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 20px currentColor;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-300);
    background: var(--dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    border: 2px solid var(--primary);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 60px rgba(255, 0, 255, 0.5);
    color: var(--dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    background: rgba(255, 0, 255, 0.1);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    border-radius: var(--radius);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    border: 2px solid var(--primary);
}

.logo-text {
    font-size: 18px;
}

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

.nav-links a {
    color: var(--gray-300);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.nav-terminal {
    padding: 8px 16px;
    background: transparent;
    color: var(--accent) !important;
    border-radius: var(--radius);
    font-family: 'Courier New', monospace;
    font-size: 13px !important;
    border: 2px solid var(--accent);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.nav-terminal:hover {
    background: rgba(57, 255, 20, 0.1);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.8);
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    box-shadow: 0 0 5px var(--primary);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--gray-900) 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-300);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 13px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
    box-shadow: 0 0 5px var(--primary);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.6);
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
}

/* Services Section */
.services {
    background: var(--dark);
}

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

.service-card {
    position: relative;
    padding: 32px;
    background: var(--gray-900);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), 0 0 60px rgba(255, 0, 255, 0.2);
    border-color: var(--primary);
}

.service-card.featured {
    border: 2px solid var(--secondary);
    background: linear-gradient(180deg, rgba(255, 0, 255, 0.1) 0%, var(--gray-900) 100%);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 12px;
    background: var(--gradient);
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
    font-weight: 700;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8));
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    color: var(--gray-400);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent);
}

/* About Section */
.about {
    background: var(--gray-900);
}

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

.about-content .section-badge {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    color: var(--gray-400);
    margin-bottom: 16px;
    font-size: 17px;
}

.about-text strong {
    color: var(--primary);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.about-features {
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    filter: drop-shadow(0 0 3px var(--primary));
}

.about-feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary);
}

.about-feature p {
    font-size: 14px;
    color: var(--gray-400);
}

.about-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    padding: 24px 32px;
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    border: 2px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.visual-icon {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
}

.visual-card span:last-child {
    font-size: 14px;
    color: var(--gray-400);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation: float2 5s ease-in-out infinite;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    animation: float3 7s ease-in-out infinite;
}

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

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

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

/* Stats Section */
.stats {
    background: var(--dark);
    color: var(--white);
}

.stats .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
}

.stats .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    transform: translateY(-4px);
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.stat-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.stat-desc {
    font-size: 14px;
    color: var(--gray-400);
}

/* Platforms Section */
.platforms {
    background: var(--dark);
}

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

.platform-card {
    padding: 32px 24px;
    text-align: center;
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid var(--gray-700);
}

.platform-card:hover {
    background: var(--gray-800);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    transform: translateY(-4px);
    border-color: var(--secondary);
}

.platform-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

.platform-type {
    font-size: 14px;
    color: var(--gray-400);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    padding: 80px 0;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--secondary);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    opacity: 0.8;
    z-index: 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.cta p {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 32px;
}

.cta .btn-primary {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4);
    border: 2px solid var(--primary);
}

.cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8), 0 0 80px rgba(255, 0, 255, 0.6);
}

/* Contact Section */
.contact {
    background: var(--gray-900);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-badge {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-text {
    color: var(--gray-400);
    margin-bottom: 32px;
    font-size: 17px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary));
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary);
}

.contact-item p,
.contact-item a {
    font-size: 15px;
    color: var(--gray-400);
}

.contact-item a:hover {
    color: var(--primary);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.6);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    border: 2px solid var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    border: 2px solid var(--gray-700);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--gray-900);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.2), 0 0 15px rgba(0, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--gray-400);
    font-size: 15px;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        display: none;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 2px solid var(--primary);
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--gray-800);
    }

    .nav-terminal {
        margin-top: 16px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-scroll {
        display: none;
    }

    section {
        padding: 60px 0;
    }

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

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

    .stat-card {
        padding: 32px 24px;
    }

    .stat-value {
        font-size: 40px;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

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

    .logo-text {
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Team Section */
.team {
    background: var(--dark);
}

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

.team-member {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-900);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    border-color: var(--primary);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary);
}

.team-role {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* Products Section */
.products {
    background: var(--gray-900);
}

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

.product-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gray-700);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    border-color: var(--secondary);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

.product-content {
    padding: 32px;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--secondary);
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

.product-description {
    color: var(--gray-400);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent);
}

.product-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: transparent;
    color: var(--secondary);
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--secondary);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.product-link:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: translateX(4px);
    color: var(--secondary);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
