/* Modern Portfolio CSS - REVTECH INDUSTRIES */

/* CSS Variables for cyber/futuristic theming */
:root {
    --primary-color: #00f5ff;
    --primary-dark: #0099cc;
    --secondary-color: #ff0080;
    --accent-color: #00ff88;
    --warning-color: #ffaa00;
    --text-primary: #ffffff;
    --text-secondary: #b0b8c8;
    --text-light: #808080;
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --bg-dark: #16213e;
    --bg-accent: #0f3460;
    --border-color: rgba(0, 245, 255, 0.3);
    --border-glow: rgba(0, 245, 255, 0.6);
    --shadow-sm: 0 1px 2px 0 rgba(0, 245, 255, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 245, 255, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 245, 255, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 245, 255, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 245, 255, 0.5);
    --gradient-primary: linear-gradient(135deg, #00f5ff 0%, #ff0080 50%, #00ff88 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-accent: linear-gradient(135deg, #00f5ff 0%, #0099cc 100%);
    --gradient-cyber: linear-gradient(45deg, #00f5ff, #ff0080, #00ff88, #ffaa00);
    --gradient-dark: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-dark);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* WordPress Admin Bar Fix */
body.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    position: relative;
    z-index: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cyber);
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.05) 50%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,245,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-cyber);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--border-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--primary-color);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Floating Cards */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: rgba(0, 245, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

.floating-card:hover {
    background: rgba(0, 245, 255, 0.2);
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.4);
    transform: scale(1.05);
}

.floating-card:nth-child(1) {
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50px;
    right: -50px;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: -50px;
    left: 50px;
    animation-delay: 4s;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    animation: iconPulse 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

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

/* Artemis Logo Header */
.artemis-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.artemis-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.artemis-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.artemis-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
}

.logo-text {
    text-align: left;
    color: white;
}

.logo-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.logo-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 400px;
}

.logo-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Video Section */
.video-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: contain;
}

/* Video Fallback Styles */
.video-fallback {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    border-radius: 20px;
}

.fallback-content {
    max-width: 400px;
    margin: 0 auto;
}

.fallback-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.fallback-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.fallback-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.fallback-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.fallback-note {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fallback-note i {
    color: var(--primary-color);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 4px; /* Slight offset to center the play icon */
}

.video-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.video-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.video-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.video-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat i {
    color: var(--primary-color);
    width: 16px;
}

/* Hide overlay when video is playing */
.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Video Placeholder */
.video-placeholder {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 2px dashed var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--text-secondary);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
}

.video-placeholder h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.placeholder-instructions {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: left;
    max-width: 400px;
}

.placeholder-instructions p {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.placeholder-instructions ol {
    text-align: left;
    margin-left: 1rem;
}

.placeholder-instructions li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.placeholder-instructions code {
    background: rgba(0, 245, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-cyber);
    box-shadow: 0 0 20px var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.achievement-highlights {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.achievement-highlights h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.achievement-highlights ul {
    list-style: none;
    padding: 0;
}

.achievement-highlights li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    color: var(--text-secondary);
    line-height: 1.6;
}

.achievement-highlights li:last-child {
    border-bottom: none;
}

.ip-status {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.ip-status h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

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

.ip-item {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

.ip-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

/* Section CTAs */
.section-cta {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid var(--border-color);
}

.section-cta h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.traction-cta {
    background: var(--gradient-primary);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.traction-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.traction-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.traction-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.traction-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Roadmap Section */
.roadmap {
    padding: 4rem 0;
    background: var(--bg-dark);
    color: white;
}

.roadmap .section-title {
    color: white;
    background: linear-gradient(45deg, #00f5ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--bg-secondary);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.timeline-item.current .timeline-marker {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    animation: pulse 2s infinite;
}

.timeline-item.upcoming .timeline-marker {
    background: var(--warning-color);
    border-color: var(--warning-color);
}

.timeline-item.future .timeline-marker {
    background: var(--bg-primary);
    border-color: var(--text-secondary);
}

.marker-icon {
    font-size: 1rem;
}

.timeline-content {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.timeline-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.timeline-status.completed {
    background: var(--accent-color);
    color: var(--bg-primary);
}

.timeline-status.current {
    background: var(--secondary-color);
    color: white;
}

.timeline-status.upcoming {
    background: var(--warning-color);
    color: var(--bg-primary);
}

.timeline-status.future {
    background: var(--text-secondary);
    color: var(--bg-primary);
}

.timeline-achievements {
    list-style: none;
    padding: 0;
}

.timeline-achievements li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.roadmap-metrics {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 1px solid var(--border-color);
}

.roadmap-metrics h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.roadmap-metrics .metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.metric-timeline {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.skill-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.skill-category i {
    color: var(--secondary-color);
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.skill-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.4);
    border-color: var(--border-glow);
}

.project-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-cyber);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
    position: relative;
}

.project-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-cyber);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-icon::after {
    opacity: 0.3;
}

.project-icon i {
    font-size: 1.5rem;
    color: white;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}


/* Documents Section */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Generic data table styling */
.data-table-wrapper {
    margin-top: 2.5rem;
    overflow-x: auto;
}

.data-table-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-align: left;
}

.data-table-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(10, 10, 15, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

table.data-table thead {
    background: linear-gradient(135deg, #00f5ff22, #ff008022);
}

table.data-table th,
table.data-table td {
    border: 1px solid rgba(0, 245, 255, 0.25);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.95rem;
}

table.data-table th {
    font-weight: 600;
    color: var(--primary-color);
}

table.data-table tbody tr:nth-child(odd) {
    background: rgba(26, 26, 46, 0.9);
}

table.data-table tbody tr:nth-child(even) {
    background: rgba(15, 34, 80, 0.9);
}

table.data-table tbody tr:hover {
    background: rgba(0, 245, 255, 0.08);
}

table.data-table td strong {
    color: var(--text-primary);
}

.document-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.document-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.document-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.document-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Downloads Section */
.downloads {
    padding: 4rem 0;
    background: var(--bg-dark);
    color: white;
}

.downloads .section-title {
    color: white;
    background: linear-gradient(45deg, #00f5ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.downloads .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.beta-warning {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: 2px solid #ffaa00;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.warning-content h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.warning-content p {
    color: white;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.beta-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    border: 1px solid #ffaa00;
}

.beta-notice {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    color: #ffaa00;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.download-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.2);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.download-card.android .download-icon {
    color: #a4c639;
}

.download-card.windows .download-icon {
    color: #0078d4;
}

.download-card.macos .download-icon {
    color: #999;
}

.download-card.ios .download-icon {
    color: #999;
}

.download-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-links {
    margin-bottom: 1.5rem;
}

.download-links .btn {
    margin: 0.5rem;
    display: inline-block;
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.download-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.download-features {
    margin-top: 4rem;
    text-align: center;
}

.download-features h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 245, 255, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item span {
    color: white;
    font-weight: 500;
}

/* Traction Section */
.traction {
    padding: 4rem 0;
    background: var(--bg-primary);
    color: white;
}

.traction .section-title {
    color: white;
    background: linear-gradient(45deg, #00f5ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.traction .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.traction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.traction-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.traction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.traction-card:hover::before {
    left: 100%;
}

.traction-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.traction-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.traction-number {
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.traction-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.traction-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.traction-highlights {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 1px solid var(--border-color);
}

.traction-highlights h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

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

.highlight-item {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    color: var(--text-secondary);
    line-height: 1.6;
}

.highlight-item strong {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--gradient-dark);
    color: white;
}

.testimonials .section-title {
    color: white;
    background: linear-gradient(45deg, #00f5ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    font-family: serif;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: var(--bg-secondary);
    padding: 4rem 0;
    color: white;
}

.faq .section-title {
    color: white;
    background: linear-gradient(45deg, #00f5ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.faq .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question::marker {
    display: none;
}

.faq-question::before {
    content: '▶';
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.faq-item[open] .faq-question::before {
    transform: rotate(90deg);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.faq-item[open] .faq-question i {
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Portfolio Gallery - CSS Image Gallery Techniques */
.portfolio {
    background: var(--bg-dark);
    padding: 4rem 0;
}

.versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.version-card-blueprint {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.version-card-blueprint::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(0, 255, 136, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.version-card-blueprint:hover::before {
    opacity: 1;
}

.version-card-blueprint:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.version-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: rgba(10, 10, 15, 0.5);
}

.version-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.version-card-blueprint:hover .version-image-container img {
    transform: scale(1.05);
}

.version-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.version-card-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
}

.version-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0, 245, 255, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(0, 245, 255, 0.4);
}

.version-status.enhanced {
    background: rgba(255, 0, 128, 0.2);
    color: white;
    border-color: rgba(255, 0, 128, 0.4);
}

.version-status.future {
    background: rgba(0, 255, 136, 0.2);
    color: white;
    border-color: rgba(0, 255, 136, 0.4);
}

.version-specs {
    margin-top: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

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

.spec-label {
    color: var(--text-secondary);
    font-weight: 500;
}

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

/* Blueprint Image Gallery Enhancement */
.blueprint-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(10, 10, 15, 0.5);
    border: 2px solid rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blueprint-container:hover {
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.blueprint-container:hover img {
    transform: scale(1.02);
}

.blueprint-container img {
    transition: transform 0.3s ease;
    display: block;
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
    color: white;
}

.contact .section-title {
    color: white;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form */
.contact-form {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-form p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-label .required {
    color: var(--secondary-color);
    font-weight: 600;
}

.form-label .optional {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: normal;
}

/* Form Validation Styles */
.field-error {
    color: #ff6b35;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.form-message.error {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    color: #ff6b35;
}

.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #ff6b35;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: var(--bg-dark);
    color: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 30px;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Legal Disclaimer */
.legal-disclaimer {
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
}

.legal-disclaimer h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-disclaimer h4 i {
    color: var(--warning-color);
}

.legal-disclaimer p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.legal-disclaimer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.legal-disclaimer li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--secondary-color);
    margin-bottom: 0.5rem;
    background: rgba(255, 0, 128, 0.05);
    padding: 0.8rem 1rem 0.8rem 2rem;
    border-radius: 8px;
}

.legal-disclaimer li::before {
    content: '⚖️';
    position: absolute;
    left: 0.5rem;
    top: 0.8rem;
    font-size: 0.8rem;
}

.legal-disclaimer strong {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.legal-disclaimer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-disclaimer a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.disclaimer-note {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid var(--warning-color);
    border-radius: 10px;
    padding: 1rem;
    color: var(--warning-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.disclaimer-note i {
    color: var(--warning-color);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-tagline {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .floating-card {
        position: static;
        margin: 1rem;
        animation: none;
    }
    
    .hero-image {
        flex-direction: column;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .artemis-logo {
        width: 150px;
        height: 150px;
    }
    
    .logo-title {
        font-size: 2.2rem;
        word-wrap: break-word;
    }
    
    .logo-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Metrics grid mobile optimization */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .metric-item {
        padding: 1rem;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    /* Traction grid mobile optimization */
    .traction-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .traction-card {
        padding: 1.5rem;
    }
    
    /* Roadmap mobile optimization */
    .roadmap-timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    .roadmap-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    /* Ultra-small screen optimizations */
    .nav-logo .logo-text {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .metric-item {
        padding: 0.8rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .logo-title {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Video section mobile fixes */
    .video-wrapper {
        margin: 0;
        border-radius: 8px;
    }
    
    .intro-video {
        border-radius: 8px;
    }
    
    /* Download cards mobile optimization */
    .download-card {
        padding: 1rem;
    }
    
    .download-title {
        font-size: 1.1rem;
    }
    
    .download-description {
        font-size: 0.85rem;
    }
}

/* Mobile-specific text overflow fixes */
.hero-title,
.hero-subtitle,
.hero-tagline,
.hero-description,
.logo-title,
.logo-subtitle,
.section-title,
h1, h2, h3, h4, h5, h6,
p, span, div {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* Prevent text overflow on all text elements */
* {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure glitch effect works properly on mobile */
.glitch {
    display: inline-block;
    max-width: 100% !important;
    overflow: hidden;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.glitch::before,
.glitch::after {
    max-width: 100% !important;
    overflow: hidden;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Force text to wrap on mobile */
@media (max-width: 768px) {
    * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-tagline,
    .hero-description {
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
    }
    
    .glitch {
        white-space: normal !important;
        word-break: break-word !important;
    }
}

/* Advanced Animations and Micro-interactions */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    /* Scroll-triggered animations */
    .project-card,
    .portfolio-item,
    .document-card,
    .skill-category {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .project-card.animate,
    .portfolio-item.animate,
    .document-card.animate,
    .skill-category.animate {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
    /* Staggered animation delays */
    .project-card:nth-child(1) { transition-delay: 0.1s; }
    .project-card:nth-child(2) { transition-delay: 0.2s; }
    .project-card:nth-child(3) { transition-delay: 0.3s; }
    
    .portfolio-item:nth-child(1) { transition-delay: 0.1s; }
    .portfolio-item:nth-child(2) { transition-delay: 0.2s; }
    .portfolio-item:nth-child(3) { transition-delay: 0.3s; }
    .portfolio-item:nth-child(4) { transition-delay: 0.4s; }
    .portfolio-item:nth-child(5) { transition-delay: 0.5s; }
    .portfolio-item:nth-child(6) { transition-delay: 0.6s; }
}

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

/* Loading animation removed - website loads immediately */

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Particle Effects */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 20s infinite linear;
}

.particle:nth-child(odd) {
    background: var(--secondary-color);
    animation-duration: 25s;
}

.particle:nth-child(3n) {
    background: var(--accent-color);
    animation-duration: 30s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Matrix-style rain effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.matrix-column {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 200%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    animation: matrixFall linear infinite;
}

@keyframes matrixFall {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

/* Glitch effect for headings */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--secondary-color);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--accent-color);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

/* Holographic text effect */
.holographic {
    background: linear-gradient(45deg, #00f5ff, #ff0080, #00ff88, #ffaa00, #00f5ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographicShift 3s ease-in-out infinite;
}

@keyframes holographicShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Cyber grid background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

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

/* Loading screen removed - website loads immediately */

/* Typewriter effect */
.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--primary-color);
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .legal-disclaimer {
        padding: 1.5rem;
    }
    
    .legal-disclaimer li {
        padding: 0.6rem 0.8rem 0.6rem 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
    }
    
    .legal-disclaimer {
        padding: 1rem;
    }
    
    .legal-disclaimer h4 {
        font-size: 1rem;
    }
}

/* PIN Notice Styling */
.pin-notice {
    background: linear-gradient(135deg, #00E5FF20, #0066CC20);
    border: 1px solid #00E5FF;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 2rem;
    color: #00E5FF;
}

.pin-notice p {
    margin: 0;
    font-size: 14px;
}

.pin-notice i {
    margin-right: 8px;
    color: #00E5FF;
}

/* Placeholder Logo Styling */
.placeholder-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
}

.artemis-logo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00E5FF, #0066CC);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Concept Versions Display */
.concept-versions-display {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    gap: 30px;
    padding: 20px;
}

.concept-version {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.concept-version:hover {
    transform: translateY(-5px);
}

.version-device {
    width: 60px;
    height: 100px;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.version-device::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00E5FF, #0066CC);
    opacity: 0.8;
}

.version-device::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 8px;
    background: linear-gradient(90deg, #333, #666);
    border-radius: 4px;
}

.v1-device {
    background: linear-gradient(180deg, #333, #666);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.v1-device::before {
    background: linear-gradient(45deg, #00f5ff, #ff0080);
}

.v2-device {
    background: linear-gradient(180deg, #444, #777);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.v2-device::before {
    background: linear-gradient(45deg, #ff0080, #00ff88);
}

.v3-device {
    background: linear-gradient(180deg, #555, #888);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.v3-device::before {
    background: linear-gradient(45deg, #00ff88, #00f5ff);
}

.version-label {
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* V1 Prototype Styling */
.v1-prototype-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 15px;
}

.prototype-device {
    position: relative;
    width: 120px;
    height: 140px;
    margin-bottom: 10px;
}

.device-body {
    position: relative;
    width: 80px;
    height: 140px;
    margin: 0 auto;
}

.device-top {
    width: 80px;
    height: 20px;
    background: linear-gradient(180deg, #333, #444);
    border-radius: 40px 40px 0 0;
    position: relative;
}

.device-top::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #555;
    border-radius: 1px;
}

.device-main {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #222, #333);
    position: relative;
}

.circuit-board {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #111;
    border-radius: 8px;
    border: 1px solid #444;
}

.led {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.led.green {
    top: 8px;
    left: 8px;
    background: #00ff00;
    box-shadow: 0 0 6px #00ff00;
}

.led.red {
    top: 8px;
    right: 8px;
    background: #ff0000;
    box-shadow: 0 0 6px #ff0000;
}

.component {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 15px;
    background: linear-gradient(135deg, #666, #999);
    border-radius: 2px;
}

.device-base {
    width: 80px;
    height: 40px;
    background: linear-gradient(180deg, #333, #222);
    border-radius: 0 0 40px 40px;
    position: relative;
}

.device-base::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 8px;
    background: linear-gradient(90deg, #444, #666);
    border-radius: 4px;
}

.side-module {
    position: absolute;
    top: 30px;
    width: 15px;
    height: 60px;
    background: linear-gradient(180deg, #333, #444);
    border-radius: 8px;
}

.side-module.left {
    left: -10px;
}

.side-module.right {
    right: -10px;
}

.sensor {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.sensor:first-child {
    top: 12px;
}

.sensor:last-child {
    bottom: 12px;
}

.prototype-label {
    font-size: 16px;
    font-weight: bold;
    color: #00E5FF;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/* Blueprint Showcase Styling */
.blueprint-showcase {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    margin-bottom: 0px !important;
    padding: 15px !important;
    background: transparent !important;
    border-radius: 25px !important;
    border: none !important;
    align-items: center !important;
    width: 100% !important;
}

.blueprint-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.blueprint-container h3 {
    color: #00E5FF;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.blueprint-container img {
    width: 100% !important;
    height: 400px !important;
    object-fit: contain !important;
    border: 3px solid #333;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.blueprint-diagram {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 25px;
    border: 3px solid #333;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.blueprint-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 80px;
}

.central-assembly {
    background: linear-gradient(135deg, #00E5FF, #0066CC);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    border: 2px solid #00E5FF;
}

.connection-line {
    position: absolute;
    background: #00E5FF;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.connection-line.top-left {
    width: 80px;
    height: 3px;
    top: -40px;
    left: -40px;
    transform: rotate(-45deg);
}

.connection-line.top-center {
    width: 100px;
    height: 3px;
    top: -40px;
    left: -50px;
}

.connection-line.top-right {
    width: 80px;
    height: 3px;
    top: -40px;
    right: -40px;
    transform: rotate(45deg);
}

.connection-line.left {
    width: 3px;
    height: 80px;
    left: -40px;
    top: -40px;
    transform: rotate(-45deg);
}

.connection-line.right {
    width: 3px;
    height: 80px;
    right: -40px;
    top: -40px;
    transform: rotate(45deg);
}

.connection-line.bottom {
    width: 100px;
    height: 3px;
    bottom: -40px;
    left: -50px;
}

.blueprint-component {
    position: absolute;
    background: linear-gradient(135deg, #333, #555);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #666;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.blueprint-component.microphone {
    top: 20px;
    left: 20px;
}

.blueprint-component.speaker {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.blueprint-component.microwave {
    top: 20px;
    right: 20px;
}

.blueprint-component.power {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.blueprint-component.storage {
    bottom: 20px;
    right: 20px;
}

.blueprint-component.ir {
    bottom: 20px;
    left: 20px;
}

/* Versions Showcase */
.versions-showcase {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.versions-showcase h3 {
    color: #00E5FF;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.versions-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    padding: 20px !important;
    justify-items: center !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.version-card-blueprint {
    background: transparent;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #00E5FF;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 280px;
    min-height: 300px;
    justify-content: space-between;
}

.version-card-blueprint::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00E5FF, #0066CC);
}

.version-card-blueprint:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.2);
    border-color: #00E5FF;
}

.version-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.version-card-header h4 {
    color: #00E5FF;
    font-size: 22px;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    font-weight: bold;
}

.version-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.version-status {
    background: linear-gradient(45deg, #00E5FF, #0066CC);
    color: white;
}

.version-status.enhanced {
    background: linear-gradient(45deg, #ff0080, #00ff88);
    color: white;
}

.version-status.future {
    background: linear-gradient(45deg, #00ff88, #00f5ff);
    color: white;
}

.version-specs {
    margin-top: 15px;
    width: 100%;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

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

.spec-label {
    color: #00E5FF;
    font-weight: bold;
    font-size: 16px;
}

.spec-value {
    color: #ffffff;
    font-size: 16px;
    text-align: right;
    font-weight: 500;
}

.version-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.version-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    min-height: 150px;
    width: 100%;
}

.clickable-image {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.3);
}

.clickable-image img {
    transition: all 0.3s ease;
}

.clickable-image:hover img {
    filter: brightness(1.2) saturate(1.3);
}

.clickable-badge {
    transition: all 0.3s ease;
}

.clickable-badge:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
}

.version-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
    border-color: #00E5FF;
}

.version-device-large {
    position: relative;
    width: 180px;
    height: 220px;
    margin: 0 auto 20px;
}

.device-body-large {
    position: relative;
    width: 120px;
    height: 220px;
    margin: 0 auto;
}

.device-top-large {
    width: 120px;
    height: 30px;
    background: linear-gradient(180deg, #333, #444);
    border-radius: 60px 60px 0 0;
}

.device-main-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(180deg, #222, #333);
}

.circuit-board-large {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: #111;
    border-radius: 12px;
    border: 2px solid #444;
}

.led-large {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.led-large.green {
    top: 12px;
    left: 12px;
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.led-large.red {
    top: 12px;
    right: 12px;
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

.led-large.blue {
    top: 12px;
    left: 12px;
    background: #0088ff;
    box-shadow: 0 0 10px #0088ff;
}

.led-large.cyan {
    top: 12px;
    left: 12px;
    background: #00ffff;
    box-shadow: 0 0 10px #00ffff;
}

.led-large.purple {
    top: 12px;
    right: 12px;
    background: #8800ff;
    box-shadow: 0 0 10px #8800ff;
}

.component-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #666, #999);
    border-radius: 4px;
}

.component-large.enhanced {
    background: linear-gradient(135deg, #888, #bbb);
    box-shadow: 0 0 10px rgba(136, 136, 136, 0.5);
}

.component-large.futuristic {
    background: linear-gradient(135deg, #00E5FF, #0066CC);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.device-base-large {
    width: 120px;
    height: 70px;
    background: linear-gradient(180deg, #333, #222);
    border-radius: 0 0 60px 60px;
}

.side-module-large {
    position: absolute;
    top: 45px;
    width: 20px;
    height: 90px;
    background: linear-gradient(180deg, #333, #444);
    border-radius: 10px;
}

.side-module-large.left {
    left: -10px;
}

.side-module-large.right {
    right: -10px;
}

.sensor-large {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #666;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.sensor-large.advanced {
    background: #00E5FF;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.sensor-large.futuristic {
    background: linear-gradient(45deg, #00E5FF, #8800ff);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.7);
}

.sensor-large:first-child {
    top: 15px;
}

.sensor-large:last-child {
    bottom: 15px;
}

.version-info h4 {
    color: #00E5FF;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.version-info p {
    color: #ccc;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blueprint-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .blueprint-diagram {
        width: 300px;
        height: 300px;
        padding: 20px;
    }
    
    .versions-container {
        gap: 20px;
    }
    
    .version-card {
        padding: 20px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 229, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    }
}

/* ========================================
   MOBILE RESPONSIVE DESIGN
   ======================================== */

/* Mobile-first responsive breakpoints */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .navbar {
        padding: 10px 15px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nav-links a {
        padding: 8px 15px;
        text-align: center;
        border-radius: 8px;
        background: rgba(0, 245, 255, 0.1);
        border: 1px solid rgba(0, 245, 255, 0.3);
    }
    
    /* Hero section */
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    /* Artemis header */
    .artemis-header {
        padding: 40px 0;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .logo-container img {
        width: 150px !important;
        height: 150px !important;
    }
    
    .logo-title {
        font-size: 2.5rem !important;
    }
    
    .logo-subtitle {
        font-size: 1rem !important;
        margin: 15px 0 !important;
    }
    
    .logo-badges {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .badge {
        padding: 10px 20px !important;
        font-size: 14px !important;
        margin: 5px !important;
    }
    
    /* Blueprint showcase */
    .blueprint-showcase {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .blueprint-container img {
        height: 300px !important;
    }
    
    .versions-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 15px !important;
    }
    
    .version-card-blueprint {
        max-width: 100% !important;
        min-height: 250px !important;
    }
    
    /* Portfolio grid */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px !important;
    }
    
    .portfolio-card {
        height: auto !important;
        min-height: 300px !important;
    }
    
    /* Downloads section */
    .downloads {
        padding: 40px 0;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .download-card {
        padding: 25px;
    }
    
    .download-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .download-links .btn {
        width: 100%;
        margin: 0;
    }
    
    /* Contact section */
    .contact {
        padding: 40px 0;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer */
    .footer {
        padding: 30px 0;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-section {
        width: 100%;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    /* Company intro */
    .company-intro {
        padding: 40px 0;
    }
    
    .intro-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .intro-text {
        width: 100%;
    }
    
    .intro-image {
        width: 100%;
        height: 250px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .logo-title {
        font-size: 2rem !important;
    }
    
    .logo-container img {
        width: 120px !important;
        height: 120px !important;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .download-card {
        padding: 20px;
    }
    
    .portfolio-card {
        min-height: 250px !important;
    }
    
    .version-card-blueprint {
        min-height: 200px !important;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .artemis-header {
        padding: 30px 0;
    }
    
    .logo-container {
        flex-direction: row;
        gap: 15px;
    }
    
    .logo-container img {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px; /* iOS recommended touch target size */
        padding: 12px 20px;
    }
    
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .portfolio-card,
    .version-card-blueprint,
    .download-card {
        cursor: pointer;
    }
    
    /* Remove hover effects on touch devices */
    .btn:hover,
    .portfolio-card:hover,
    .version-card-blueprint:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-container img,
    .blueprint-container img,
    .version-image-container img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ========================================
   TABLET & BROWSER COMPATIBILITY FIXES
   ======================================== */

/* Tablet portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Fix container overflow */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        max-width: 95vw !important;
        padding: 0 15px !important;
    }
    
    /* Fix hero section for tablets */
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 1rem !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Fix navigation for tablets */
    .nav-menu {
        gap: 0.8rem !important;
        flex-wrap: wrap !important;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Fix download cards for tablets */
    .download-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    /* Fix blueprint showcase */
    .blueprint-showcase {
        grid-template-columns: 1fr !important;
        padding: 1rem !important;
    }
    
    /* Fix call feature notice */
    .new-feature-notice {
        padding: 20px !important;
        margin: 20px 0 !important;
    }
    
    .new-feature-notice h3 {
        font-size: 22px !important;
    }
    
    .new-feature-notice p {
        font-size: 16px !important;
    }
}

/* Desktop small (1024px - 1200px) */
@media (min-width: 1024px) and (max-width: 1200px) {
    .container {
        max-width: 95vw !important;
        padding: 0 20px !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        max-width: 800px !important;
    }
}

/* Universal overflow fix for all devices */
* {
    box-sizing: border-box !important;
}

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

body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
}

/* Fix all sections to prevent overflow */
section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Fix video container */
.video-container,
.video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix particle effects overflow */
.particles,
.cyber-grid {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

/* Browser compatibility - Ensure all browsers respect viewport */
@media screen and (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
    }
    
    /* FAQ Section Mobile Styles */
    .faq {
        padding: 2rem 0;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-item {
        margin-bottom: 0.8rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .faq-question i {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Enhanced Portfolio Gallery Mobile */
    .versions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .version-card-blueprint {
        padding: 1rem;
    }
    
    .version-card-header h4 {
        font-size: 1.1rem;
    }
    
    .blueprint-container {
        margin: 0 1rem;
    }
    
    .blueprint-container img {
        height: 300px !important;
    }
    
    /* Enhanced Mobile Responsive Design */
    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
    
    /* Download Cards Mobile */
    .download-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .download-card {
        padding: 1.5rem;
    }
    
    .download-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* Traction Grid Mobile */
    .traction-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    /* Roadmap Mobile */
    .roadmap-timeline {
        padding: 0 1rem;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    /* Contact Form Mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.8rem;
    }
}

/* Fix for Safari on iOS tablets */
@supports (-webkit-touch-callout: none) {
    @media (min-width: 768px) and (max-width: 1024px) {
        .container {
            padding: 0 20px !important;
        }
        
        .hero-container {
            padding: 2rem 20px !important;
        }
    }
}