/* Base Styles & Variables */
:root {
    --primary: #6a00f4;
    --primary-light: #8e2bff;
    --primary-dark: #4d00b0;
    --secondary: #00f5d4;
    --secondary-dark: #00c7ab;
    --accent: #ff3860;
    --dark: #0a0a14;
    --darker: #05050a;
    --light: #f8f9fa;
    --light-gray: #e2e4e8;
    --gray: #8a8f98;
    --dark-gray: #2a2a3a;
    
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    
    --hologram-blue: rgba(0, 245, 212, 0.15);
    --hologram-purple: rgba(106, 0, 244, 0.15);
    
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
    --neon-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.2s ease;
    
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.section-title span {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 0 12px rgba(106, 0, 244, 0.5);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(106, 0, 244, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    box-shadow: 0 0 12px rgba(0, 245, 212, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(0, 245, 212, 0.1);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
    transform: translateY(-2px);
}

.btn-holographic {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--dark);
    font-weight: 700;
    border: none;
    box-shadow: 0 0 16px rgba(106, 0, 244, 0.5);
}

.btn-holographic:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(106, 0, 244, 0.8);
}

.btn-holographic i {
    margin-left: 8px;
    transition: var(--transition);
}

.btn-holographic:hover i {
    transform: translateX(4px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.hover-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    top: 0;
    left: -100%;
    transform: skewX(-30deg);
    transition: var(--transition);
    z-index: 1;
}

.btn:hover .hover-effect {
    left: 100%;
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--dark);
}

/* Glass Morphism Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
    padding: 0 16px;
    box-sizing: border-box;
}

.preloader.fade-out {
    opacity: 0;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.glass-circle {
    width: 20vw;
    height: 20vw;
    max-width: 120px;
    max-height: 120px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 24px rgba(106, 0, 244, 0.3);
    position: relative;
    overflow: hidden;
    display: flex; /* Center image and overlay */
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
}

.glass-circle::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 150%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: glassReflect 2s infinite;
}

.loader-logo {
    width: 100%; /* Fill container */
    height: 100%; /* Fill container */
    object-fit: cover; /* Crop to fit circle, no stretching */
    border-radius: 50%; /* Ensure circular shape */
    z-index: 1; /* Above reflection */
}

/* New .zoom-overlay (add after .loader-logo, ~line 262) */
.zoom-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
    border-radius: 50%; /* Match circle */
    opacity: 0; /* Hidden by default */
    transition: var(--transition); /* Smooth fade-in */
    z-index: 2; /* Above image */
}

.zoom-overlay i {
    font-size: 1.5rem; /* Adjust icon size */
    color: var(--secondary); /* Cyan color */
}

.glass-circle:hover .zoom-overlay {
    opacity: 1; /* Show on hover */
}

@keyframes glassReflect {
    0% { left: -100%; }
    100% { left: 100%; }
}

.loading-text {
    display: flex;
    gap: 4px;
}

.loading-char {
    font-size: clamp(1.2rem, 6vw, 2rem);
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: charFadeIn 0.5s forwards;
    animation-delay: var(--delay);
    display: inline-block;
}

@keyframes charFadeIn {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Modern Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 20, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.magic-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 900;
    background: linear-gradient(270deg, #00f5d4, #6a00f4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: magicGradient 20s ease-in-out infinite;
    text-shadow: 0 0 12px rgba(0, 245, 212, 0.3);
    position: relative;
    text-decoration: none;
}

@keyframes magicGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.2;
    filter: blur(16px);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 12px rgba(106, 0, 244, 0.3);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-link:hover,
.dropdown-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

.dropdown-link i {
    font-size: 1rem;
    color: var(--primary);
}

.nav-cta {
    margin-left: 16px;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 16px;
    position: relative;
}

.line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--light);
    transition: var(--transition);
}

.line1 { top: 0; }
.line2 { top: 50%; transform: translateY(-50%); }
.line3 { bottom: 0; }

.nav-toggle.active .line1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active .line2 {
    opacity: 0;
}

.nav-toggle.active .line3 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Futuristic Hero Section */
.hero {
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(106, 0, 244, 0.2);
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.badge-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    right: 12px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(0, 245, 212, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0); }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.typing-container {
    display: inline-block;
    position: relative;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 48px;
    background-color: var(--secondary);
    margin-left: 6px;
    animation: blink 0.7s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 4px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
}

.scroll-circle {
    width: 48px;
    height: 48px;
    position: relative;
}

.scroll-path {
    fill: none;
    stroke: var(--gray);
    stroke-width: 1.5;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: scrollPath 3s linear infinite;
}

@keyframes scrollPath {
    0% { stroke-dashoffset: 120; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -120; }
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary);
    animation: scrollArrow 3s ease infinite;
}

@keyframes scrollArrow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) translateY(0); }
    50% { opacity: 1; transform: translate(-50%, -50%) translateY(8px); }
}

.hero-visual {
    position: relative;
    height: 100%;
}

/* Lines 453-458 (update .visual-container) */
.visual-container {
    position: relative;
    width: 100%;
    height: auto; /* Changed from 500px to auto for responsiveness */
    max-height: 600px; /* Cap height to prevent oversized images */
    display: flex; /* Center image */
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
}

/* Line ~459 (add .company-image) */
.company-image {
    max-width: 80%; /* Prevent image from being too large */
    max-height: 80vh; /* Limit height to viewport */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure image is fully visible, no stretching */
    border-radius: 16px; /* Optional: slight rounding for aesthetic */
    box-shadow: var(--shadow); /* Use existing shadow for depth */
    z-index: 1; /* Ensure image is above grid/shapes */
}

/* Existing styles (unchanged, for reference) */
.visual-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    top: 0;
    left: 0;
}

.visual-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.1;
    filter: blur(16px);
    animation: float 10s infinite ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .visual-container {
        max-height: 500px; /* Slightly smaller for tablets */
    }
    .company-image {
        max-width: 90%; /* Allow slightly larger image on smaller screens */
    }
}

@media (max-width: 768px) {
    .visual-container {
        max-height: 400px; /* Reduce for mobile */
    }
    .company-image {
        max-width: 100%; /* Full width for smaller screens */
        max-height: 70vh; /* Adjust height */
    }
}

@media (max-width: 480px) {
    .visual-container {
        max-height: 300px; /* Smaller for small mobiles */
    }
    .company-image {
        max-width: 100%;
        max-height: 60vh;
    }
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.6;
}

.orb-large {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 8s infinite ease-in-out;
}

.orb-medium {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    top: 30%;
    right: 10%;
    animation: float 6s infinite ease-in-out 1s;
}

.orb-small {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    bottom: 20%;
    left: 20%;
    animation: float 5s infinite ease-in-out 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.visual-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    top: 0;
    left: 0;
}

.visual-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.1;
    filter: blur(16px);
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 160px;
    height: 160px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 240px;
    height: 240px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    top: 60%;
    left: 30%;
    animation-delay: 4s;
}

/* App Hero Specific Styles */
.app-hero .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    position: relative;
    width: 300px;
    height: 600px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--dark-gray), var(--darker));
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gray);
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
}

.app-logo i {
    font-size: 1.2rem;
    color: var(--primary);
}

.module-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.module-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.module-card.active {
    border-color: var(--primary);
    background: rgba(106, 0, 244, 0.1);
}

.module-card.maintenance {
    border-color: var(--gray);
    background: rgba(138, 143, 152, 0.1);
    opacity: 0.6;
}

.module-card i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.module-card.active i {
    color: var(--primary);
}

.module-card.maintenance i {
    color: var(--gray);
}

.module-card span {
    font-size: 0.8rem;
    font-weight: 500;
}

.maintenance-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 8px;
}

.progress-section {
    margin-top: auto;
}

.progress-title {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--light);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--dark-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transition: width 2s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Features Section */
.features {
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(106, 0, 244, 0.1), transparent 70%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-height: 320px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.feature-card.maintenance-card {
    border-color: var(--gray);
    opacity: 0.8;
}

.feature-card.maintenance-card:hover {
    border-color: var(--accent);
}

.feature-list {
    list-style: none;
    margin-top: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--gray);
}

.feature-item i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.maintenance-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 56, 96, 0.1);
    border: 1px solid rgba(255, 56, 96, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    color: var(--accent);
}

.maintenance-notice i {
    font-size: 1rem;
}

/* Trial Section */
.trial {
    background: radial-gradient(circle at center, rgba(0, 245, 212, 0.1), transparent 70%);
    padding: 80px 0;
}

.trial-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.trial-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.trial-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.trial-features {
    margin-bottom: 32px;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--light);
}

.trial-feature i {
    color: var(--secondary);
    font-size: 1rem;
}

.trial-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-timer {
    text-align: center;
}

.timer-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    background: var(--glass);
    backdrop-filter: blur(8px);
}

.timer-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: rotate 3s linear infinite;
}

.timer-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.timer-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.timer-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Policy Section */
.policy {
    padding: 80px 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.policy-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: center;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

/* Download Section */
.download {
    background: radial-gradient(circle at center, rgba(106, 0, 244, 0.1), transparent 70%);
    padding: 80px 0;
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 16px 24px;
    text-decoration: none;
    color: var(--light);
    transition: var(--transition);
    position: relative;
    min-width: 200px;
    backdrop-filter: blur(8px);
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.download-btn.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 2rem;
    color: var(--primary);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.coming-soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 12px;
}

.download-info {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Holographic Services Section */
.services {
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(106, 0, 244, 0.1), transparent 70%);
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.card-icon i {
    font-size: 1.6rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.icon-ring::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--secondary);
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--secondary);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--light), var(--light-gray));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 16px;
    flex-grow: 1;
}

.tech-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tech-stack span {
    background: rgba(0, 245, 212, 0.1);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.project-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-badge {
    background: rgba(106, 0, 244, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(106, 0, 244, 0.2);
}

.card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: auto;
    transition: var(--transition);
    text-decoration: none;
}

.card-cta i {
    transition: var(--transition);
}

.service-card:hover .card-cta,
.project-card:hover .card-cta {
    color: var(--light);
}

.service-card:hover .card-cta i,
.project-card:hover .card-cta i {
    transform: translateX(4px);
}

.card-glass {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(106, 0, 244, 0.1), rgba(0, 245, 212, 0.1));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .card-glass,
.project-card:hover .card-glass {
    opacity: 1;
}

.card-hologram {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        linear-gradient(90deg, var(--hologram-purple), var(--hologram-blue), var(--hologram-purple));
    background-size: 200% 200%;
    z-index: 0;
    opacity: 0;
    transition: var(--transition);
    animation: hologram 6s linear infinite;
}

@keyframes hologram {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.service-card:hover .card-hologram,
.project-card:hover .card-hologram {
    opacity: 0.3;
}

/* Projects Section */
.projects {
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(106, 0, 244, 0.1), transparent 70%);
    z-index: -1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.project-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-height: 280px;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.featured-project {
    border-color: var(--secondary);
    background: rgba(0, 245, 212, 0.05);
}

.featured-project:hover {
    border-color: var(--secondary);
    box-shadow: 0 16px 32px rgba(0, 245, 212, 0.2);
}

/* About Section */
.about {
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(0, 245, 212, 0.1), transparent 70%);
    z-index: -1;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-visual {
    position: relative;
    height: 100%;
}

.visual-wrapper {
    position: relative;
    height: 700px; /* increased to fit taller image */
}

.founder-card {
    position: absolute;
    width: 100%;
    max-width: 320px; /* updated for new image ratio */
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translate(-50%, -55%); /* subtle hover lift */
}

.founder-image {
    position: relative;
    margin-bottom: 16px;
    height: 340px; /* updated to fit 469x689 image */
    overflow: hidden;
    border-radius: var(--border-radius);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.image-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition);
}

.founder-card:hover .image-grid {
    opacity: 1;
}

.founder-info h4 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.founder-info p {
    color: var(--gray);
    margin-bottom: 12px;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

.visual-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    animation: float 8s infinite ease-in-out;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founder-card {
        max-width: 90%;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }
    .founder-image {
        height: auto; /* scale image naturally */
    }
}

/* Contact Section */
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(106, 0, 244, 0.1), transparent 70%);
    z-index: -1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.info-content {
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--light);
}

.item-text a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.item-text a:hover {
    color: var(--light);
}

.item-text p {
    color: var(--gray);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links .social-link {
    position: relative;
}

.link-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--light);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
}

.social-link:hover .link-tooltip {
    opacity: 1;
    visibility: visible;
}

.contact-form {
    position: relative;
}

.neon-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 0 8px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 0;
    color: var(--gray);
    font-size: 1rem;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    top: 0;
    font-size: 0.8rem;
    color: var(--secondary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--secondary);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    transform: scaleX(1);
}

.form-orb {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.2;
    top: -50px;
    right: -50px;
    animation: float 6s infinite ease-in-out;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 120px 0 60px;
    background: radial-gradient(circle at center, rgba(106, 0, 244, 0.1), transparent 70%);
}

.legal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--light);
}

.breadcrumb i {
    font-size: 0.7rem;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.legal-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--secondary);
}

.legal-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.content-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--light);
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: block;
    padding: 4px 0;
}

.sidebar-nav a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.related-links {
    list-style: none;
}

.related-links li {
    margin-bottom: 12px;
}

.related-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    padding: 8px;
    border-radius: 8px;
}

.related-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary);
}

.related-links i {
    color: var(--primary);
}

.highlight-card {
    border-color: var(--accent);
    background: rgba(255, 56, 96, 0.05);
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notice-content i {
    color: var(--accent);
    margin-top: 2px;
}

.legal-document {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.document-intro {
    margin-bottom: 40px;
}

.document-intro p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.highlight-box {
    background: rgba(106, 0, 244, 0.1);
    border: 1px solid rgba(106, 0, 244, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-box.success {
    background: rgba(0, 245, 212, 0.1);
    border-color: rgba(0, 245, 212, 0.2);
}

.highlight-box.success i {
    color: var(--secondary);
}

.highlight-box.warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.2);
}

.highlight-box.warning i {
    color: #ffc107;
}

.highlight-box.error {
    background: rgba(255, 56, 96, 0.1);
    border-color: rgba(255, 56, 96, 0.2);
}

.highlight-box.error i {
    color: var(--accent);
}

.highlight-box i {
    color: var(--primary);
    margin-top: 2px;
}

.highlight-box p {
    margin: 0;
    color: var(--light);
}

.section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--glass-border);
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--light);
}

.section h3 {
    font-size: 1.4rem;
    margin: 24px 0 12px;
    color: var(--light);
}

.section h4 {
    font-size: 1.2rem;
    margin: 16px 0 8px;
    color: var(--light);
}

.section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.section ul {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 20px;
}

.section li {
    margin-bottom: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 16px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--secondary);
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--light);
}

.info-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.usage-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.usage-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.usage-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--light);
}

.usage-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.sharing-list {
    margin: 20px 0;
}

.sharing-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.sharing-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.sharing-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--light);
}

.sharing-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    color: var(--gray);
}

.security-item i {
    color: var(--secondary);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.right-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.right-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.right-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--light);
}

.right-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.contact-option i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-option h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--light);
}

.contact-option a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-option a:hover {
    color: var(--light);
}

/* Terms & Conditions Specific Styles */
.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.responsibility-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.responsibility-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.responsibility-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--light);
}

.responsibility-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.service-item.available {
    border-color: rgba(0, 245, 212, 0.3);
    background: rgba(0, 245, 212, 0.05);
}

.service-item.maintenance {
    border-color: rgba(255, 56, 96, 0.3);
    background: rgba(255, 56, 96, 0.05);
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.service-item.maintenance .service-icon {
    color: var(--accent);
}

.service-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--light);
}

.service-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.status-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.status-badge.available {
    background: rgba(0, 245, 212, 0.2);
    color: var(--secondary);
}

.status-badge.maintenance {
    background: rgba(255, 56, 96, 0.2);
    color: var(--accent);
}

.trial-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0;
}

.trial-card,
.payment-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 24px;
}

.trial-header,
.payment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.trial-header i,
.payment-header i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.trial-header h3,
.payment-header h3 {
    font-size: 1.2rem;
    color: var(--light);
    margin: 0;
}

.trial-features {
    list-style: none;
    margin-top: 12px;
}

.trial-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--gray);
}

.trial-features i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.no-refund-reasons {
    margin: 20px 0;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 56, 96, 0.05);
    border-radius: 8px;
    color: var(--gray);
}

.reason-item i {
    color: var(--accent);
}

.ip-protection {
    margin: 20px 0;
}

.ip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.ip-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 4px;
}

.ip-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--light);
}

.ip-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.termination-info {
    margin: 20px 0;
}

.termination-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.termination-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.termination-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--light);
}

.termination-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.liability-list {
    margin: 20px 0;
}

.liability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 8px;
    color: var(--gray);
}

.liability-item i {
    color: #ffc107;
}

.disclaimer-points {
    margin: 20px 0;
}

.disclaimer-point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 56, 96, 0.05);
    border-radius: 8px;
    color: var(--gray);
}

.disclaimer-point i {
    color: var(--accent);
}

.law-info {
    margin: 20px 0;
}

.law-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.law-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.law-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--light);
}

.law-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.changes-process {
    margin: 20px 0;
}

.change-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--light);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Refund Policy Specific Styles */
.trial-overview {
    margin: 20px 0;
}

.trial-card {
    background: rgba(0, 245, 212, 0.05);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 8px;
    padding: 24px;
}

.trial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.trial-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.trial-info h3 {
    font-size: 1.3rem;
    color: var(--light);
    margin: 0 0 4px 0;
}

.trial-info p {
    color: var(--gray);
    margin: 0;
}

.trial-benefits h4 {
    font-size: 1.1rem;
    margin: 16px 0 12px 0;
    color: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
}

.benefit-item i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.policy-statement {
    margin: 20px 0;
}

.statement-card {
    background: rgba(255, 56, 96, 0.05);
    border: 1px solid rgba(255, 56, 96, 0.2);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.statement-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 16px;
}

.statement-icon i {
    font-size: 2rem;
}

.statement-content h3 {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 8px;
}

.statement-content p {
    color: var(--gray);
    margin: 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.reason-card {
    background: rgba(255, 56, 96, 0.05);
    border: 1px solid rgba(255, 56, 96, 0.2);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.reason-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 12px;
}

.reason-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--light);
}

.reason-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.policy-rationale {
    margin: 20px 0;
}

.rationale-card {
    background: rgba(106, 0, 244, 0.05);
    border: 1px solid rgba(106, 0, 244, 0.2);
    border-radius: 8px;
    padding: 24px;
}

.rationale-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.rationale-content h3 {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 8px;
}

.rationale-content p {
    color: var(--gray);
    margin: 0;
}

.exceptional-info {
    margin: 20px 0;
}

.exception-card {
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 8px;
    padding: 24px;
}

.exception-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.exception-header i {
    font-size: 1.5rem;
    color: #ffc107;
}

.exception-header h3 {
    font-size: 1.2rem;
    color: var(--light);
    margin: 0;
}

.exception-criteria h4 {
    font-size: 1.1rem;
    margin: 16px 0 12px 0;
    color: var(--light);
}

.criteria-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.criteria-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--gray);
}

.criteria-list i {
    color: #ffc107;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--light);
}

.contact-details a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--light);
}

.contact-details p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 4px 0 0 0;
}

.support-hours {
    margin: 20px 0;
}

.hours-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.hours-card i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.hours-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--light);
}

.hours-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.closing-statement {
    margin: 40px 0 0 0;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.closing-statement .statement-card {
    background: rgba(0, 245, 212, 0.05);
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.closing-statement .statement-content h3 {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 12px;
}

.closing-statement .statement-content p {
    color: var(--gray);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(106, 0, 244, 0.05), transparent 70%);
    z-index: -1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-brand .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
}

.footer-brand .creations {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.links-column h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--light);
}

.links-column ul {
    list-style: none;
    padding: 0;
}

.links-column li {
    margin-bottom: 8px;
}

.links-column a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.links-column a:hover,
.links-column a.active {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-bottom p {
    color: var(--gray);
    margin: 0;
}

.footer-orb {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.2;
    top: -50px;
    right: 20%;
    animation: float 8s infinite ease-in-out;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(106, 0, 244, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(106, 0, 244, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .hero-grid,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-card {
        display: none;
    }
    
    .sidebar-card:first-child {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--darker);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding: 40px 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.nav-toggle {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        margin-top: 12px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .legal-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .services-grid,
    .features-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .trial-info {
        grid-template-columns: 1fr;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 16px;
    }
    
    .app-mockup {
        width: 250px;
        height: 500px;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .legal-hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .trial-title {
        font-size: 2rem;
    }
    
    .app-mockup {
        width: 200px;
        height: 400px;
    }
    
    .phone-frame {
        padding: 15px;
    }
    
    .app-interface {
        padding: 15px;
    }
    
    .module-cards {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .legal-document {
        padding: 24px;
    }
    
    .info-grid,
    .usage-grid,
    .rights-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

