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

:root {
    /* Color Palette */
    --primary-dark: #0a0a0a;
    --primary-blue: #1a237e;
    --deep-blue: #0d47a1;
    --light-blue: #1565c0;
    --neon-green: #00ff41;
    --neon-cyan: #00e5ff;
    --neon-purple: #d500f9;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #9e9e9e;
    --gradient-1: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    --gradient-2: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%);
    --gradient-3: linear-gradient(135deg, #0a0a0a 0%, #1a237e 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px 0;
    --element-radius: 12px;

    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-neon: 0 0 30px rgba(0, 229, 255, 0.3);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--white);
    background: var(--primary-dark);
    overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00e5ff 0%, #d500f9 50%, #00ff41 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    transition: width 0.1s ease-out;
    animation: progressGradient 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

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

/* Progress bar hover effect when near top */
.scroll-progress-container:hover .scroll-progress-bar {
    height: 6px;
    transition: height 0.3s ease;
}

/* Mobile responsiveness for progress bar */
@media (max-width: 768px) {
    .scroll-progress-container {
        height: 3px;
    }

    .scroll-progress-bar {
        box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
    }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
}

.nav-logo i {
    font-size: 2rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.beta-badge {
    position: absolute;
    top: 12px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: betaPulse 2s ease-in-out infinite;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

@keyframes betaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6);
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    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-2);
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
    transform: translateY(-1px);
}

.nav-link.active::after {
    width: 100%;
    background: var(--gradient-2);
    height: 3px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.cta-btn {
    background: var(--gradient-2);
    color: var(--primary-dark);
    border: none;
    padding: 12px 24px;
    border-radius: var(--element-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neon);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.5);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background: var(--neon-cyan);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background: var(--neon-cyan);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a237e 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(213, 0, 249, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
    animation: neuralPulse 8s ease-in-out infinite;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00e5ff;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-particles::after {
    top: 70%;
    right: 20%;
    animation-delay: -4s;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 140px 0;
    min-height: calc(100vh - 80px);
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.primary-btn {
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%);
    color: #0a0a0a;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.6);
}

.secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    border-color: #00e5ff;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00e5ff;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* AI Robot Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.ai-robot {
    position: relative;
    width: 300px;
    height: 300px;
}

.robot-head {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    animation: robotPulse 3s ease-in-out infinite;
}

.robot-eyes {
    display: flex;
    gap: 20px;
}

.eye {
    width: 20px;
    height: 20px;
    background: #00ff41;
    border-radius: 50%;
    animation: eyeBlink 4s ease-in-out infinite;
    box-shadow: 0 0 20px #00ff41;
}

.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stream {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #00e5ff, transparent);
    border-radius: 2px;
}

.stream:nth-child(1) {
    top: 10%;
    left: 20%;
    animation: dataFlow 2s ease-in-out infinite;
}

.stream:nth-child(2) {
    top: 30%;
    right: 15%;
    animation: dataFlow 2s ease-in-out infinite 0.5s;
}

.stream:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation: dataFlow 2s ease-in-out infinite 1s;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* About Section */
.about {
    background: rgba(26, 35, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(213, 0, 249, 0.05) 0%, transparent 50%);
    animation: aboutGlow 10s ease-in-out infinite;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 0.3s;
}

.about-content p {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    margin-bottom: 32px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 20px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-content p:nth-child(1) {
    animation-delay: 0.5s;
}

.about-content p:nth-child(2) {
    animation-delay: 0.7s;
}

.about-content p:nth-child(3) {
    animation-delay: 0.9s;
}

.about-content p:hover {
    border-left-color: var(--neon-cyan);
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.95);
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.6s ease-out forwards;
}

/* What Makes Us Different Section */
.what-makes-different {
    background: rgba(26, 35, 126, 0.05);
    position: relative;
    overflow: hidden;
}

.what-makes-different::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(213, 0, 249, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.03) 0%, transparent 50%);
    animation: differentGlow 12s ease-in-out infinite;
    pointer-events: none;
}

.different-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.different-content {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.3s;
}

.different-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.difference-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease-out forwards;
    transition: all 0.3s ease;
}

.highlight-item:nth-child(1) {
    animation-delay: 0.7s;
}

.highlight-item:nth-child(2) {
    animation-delay: 0.9s;
}

.highlight-item:nth-child(3) {
    animation-delay: 1.1s;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-cyan);
    transform: translateX(-10px);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.15);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

.highlight-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    animation: none;
    opacity: 1;
    transform: none;
}

/* Legal Ecosystem Visual */
.different-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8) translateX(-50px);
    animation: ecosystemAppear 1.2s ease-out forwards;
    animation-delay: 0.8s;
}

.legal-ecosystem {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-center {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
    z-index: 3;
    animation: centerPulse 4s ease-in-out infinite;
}

.center-icon {
    font-size: 2rem;
    color: var(--primary-dark);
    animation: centerRotate 20s linear infinite;
}

.center-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
}

.ecosystem-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbitRotate 30s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: counterRotate 30s linear infinite reverse;
}

.orbit-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-2 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: -7.5s;
}

.orbit-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -15s;
}

.orbit-4 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation-delay: -22.5s;
}

.orbit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: orbitIconFloat 4s ease-in-out infinite;
}

.orbit-icon:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    transform: scale(1.1);
}

.orbit-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
    animation: connectionPulse 6s ease-in-out infinite;
}

.line-1 {
    top: 50px;
    left: 50%;
    width: 2px;
    height: 100px;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    right: 50px;
    width: 100px;
    height: 2px;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.line-3 {
    bottom: 50px;
    left: 50%;
    width: 2px;
    height: 100px;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.line-4 {
    top: 50%;
    left: 50px;
    width: 100px;
    height: 2px;
    transform: translateY(-50%);
    animation-delay: 4.5s;
}

/* Justice Symbol Container */
.justice-symbol {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.8) rotateY(20deg);
    animation: justiceAppear 1.2s ease-out forwards, justiceFloat 8s ease-in-out infinite;
    animation-delay: 0.8s, 2s;
    perspective: 1000px;
}

.justice-symbol:hover {
    animation-play-state: paused;
    transform: scale(1.1) rotateY(-10deg) translateY(-10px);
    transition: transform 0.5s ease;
}

/* Scales of Justice */
.scales-of-justice {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scales-base {
    position: relative;
    width: 120px;
    height: 100px;
}

.scales-pole {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, #D4AF37, #B8860B);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: justiceGlow 3s ease-in-out infinite;
}

.scales-beam {
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scalesBalance 6s ease-in-out infinite, scalesShimmer 3s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.scale-left, .scale-right {
    position: absolute;
    top: 18px;
    width: 30px;
    height: 20px;
}

.scale-left {
    left: 10px;
    animation: scaleWeightLeft 4s ease-in-out infinite;
}

.scale-right {
    right: 10px;
    animation: scaleWeightRight 4s ease-in-out infinite;
}

.scale-chain {
    position: absolute;
    top: -3px;
    left: 50%;
    width: 2px;
    height: 15px;
    background: #B8860B;
    transform: translateX(-50%);
    border-radius: 1px;
    animation: scaleChainSway 4s ease-in-out infinite;
}

.scale-plate {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 8px;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
    border-radius: 15px;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Legal Documents */
.legal-documents {
    position: absolute;
    top: 60px;
    left: 20px;
    z-index: 2;
}

.document {
    position: absolute;
    width: 40px;
    height: 50px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.8));
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: documentFloat 4s ease-in-out infinite, documentSway 6s ease-in-out infinite;
}

.document::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    right: 6px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 1px;
    box-shadow: 0 0 4px rgba(0, 229, 255, 0.5);
}

.document::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 6px;
    right: 10px;
    height: 1px;
    background: rgba(0, 229, 255, 0.6);
    border-radius: 1px;
}

.document:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
    z-index: 3;
}

.document:nth-child(2) {
    top: 10px;
    left: 8px;
    animation-delay: 1s;
    z-index: 2;
    opacity: 0.8;
}

.document:nth-child(3) {
    top: 20px;
    left: 16px;
    animation-delay: 2s;
    z-index: 1;
    opacity: 0.6;
}

/* Justice Gavel */
.justice-gavel {
    position: absolute;
    bottom: 30px;
    right: 20px;
    z-index: 2;
    animation: gavelStrike 8s ease-in-out infinite, gavelSway 5s ease-in-out infinite;
}

.gavel-head {
    position: relative;
    width: 35px;
    height: 15px;
    background: linear-gradient(145deg, #8B4513, #A0522D);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.4);
    transform-origin: bottom right;
}

.gavel-handle {
    position: absolute;
    top: 12px;
    right: 15px;
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, #8B4513, #654321);
    border-radius: 2px;
    transform-origin: top center;
    box-shadow: 0 0 4px rgba(139, 69, 19, 0.3);
}

/* Floating justice particles */
.justice-symbol::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 70% 20%, rgba(0, 229, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(212, 175, 55, 0.2) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: justiceParticles 10s linear infinite;
    opacity: 0.7;
    pointer-events: none;
}

/* Enhanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Justice-themed Animations */
@keyframes justiceAppear {
    from {
        opacity: 0;
        transform: scale(0.8) rotateY(20deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

@keyframes justiceGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
        filter: brightness(1.3);
    }
}

@keyframes scalesBalance {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) rotate(-2deg);
    }
    75% {
        transform: translateX(-50%) rotate(2deg);
    }
}

@keyframes scaleWeightLeft {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(3px) rotate(-1deg);
    }
}

@keyframes scaleWeightRight {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-2px) rotate(1deg);
    }
}

@keyframes documentFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
}

@keyframes gavelStrike {
    0%, 90%, 100% {
        transform: rotate(0deg);
    }
    5%, 15% {
        transform: rotate(-15deg);
    }
    10% {
        transform: rotate(-25deg);
    }
}

@keyframes justiceParticles {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-8px) translateX(4px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(2px) translateX(-3px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-5px) translateX(6px) rotate(270deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
        opacity: 0.7;
    }
}

/* Additional Continuous Movement Animations for Justice Symbol */
@keyframes justiceFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg) scale(1);
    }
    25% {
        transform: translateY(-5px) rotateY(2deg) scale(1.02);
    }
    50% {
        transform: translateY(-8px) rotateY(0deg) scale(1.05);
    }
    75% {
        transform: translateY(-3px) rotateY(-2deg) scale(1.02);
    }
}

@keyframes scalesShimmer {
    0%, 100% {
        background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    }
    50% {
        background: linear-gradient(90deg, #FFD700, #FFF8DC, #FFD700);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }
}

@keyframes documentSway {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateX(2px) rotate(1deg);
    }
    50% {
        transform: translateX(0px) rotate(0deg);
    }
    75% {
        transform: translateX(-2px) rotate(-1deg);
    }
}

@keyframes gavelSway {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    50% {
        transform: translateX(3px) translateY(-2px);
    }
}

@keyframes scaleChainSway {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg);
    }
    50% {
        transform: translateX(-50%) rotate(2deg);
    }
}

/* What Makes Us Different Animations */
@keyframes differentGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes ecosystemAppear {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg) translateX(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateX(0px);
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 60px rgba(0, 229, 255, 0.6);
    }
}

@keyframes centerRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

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

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.2;
        background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.2), transparent);
    }
    50% {
        opacity: 0.8;
        background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.6), transparent);
    }
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(0, 229, 255, 0.5);
        transform: scale(1.05);
    }
}

@keyframes aboutGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--element-radius);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: rgba(13, 71, 161, 0.1);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
    animation: numberGlow 2s ease-in-out infinite;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--element-radius);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card.popular {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: var(--primary-dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--white);
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features i {
    color: var(--neon-green);
    font-size: 0.8rem;
}

.pricing-btn {
    width: 100%;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--neon-cyan);
    padding: 16px;
    border-radius: var(--element-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--gradient-2);
    color: var(--primary-dark);
    box-shadow: var(--shadow-neon);
}

/* Contact Section */
.contact {
    background: rgba(26, 35, 126, 0.1);
}

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

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 50%;
    color: var(--white);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--element-radius);
    padding: 16px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

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

.submit-btn {
    background: var(--gradient-2);
    color: var(--primary-dark);
    border: none;
    padding: 16px;
    border-radius: var(--element-radius);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neon);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a237e 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-2);
}


/* Footer container for full width */
.footer-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

/* Footer main with 4 equal columns */
.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo i {
    font-size: 2rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient-2);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

/* Footer columns styling */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column:first-child {
    /* Brand column gets more space */
    flex: 1.2;
}

.footer-column:not(:first-child) {
    flex: 1;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a:hover {
    color: var(--neon-cyan);
    padding-left: 8px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.newsletter-form {
    margin: 0;
}

.newsletter-input {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--element-radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.newsletter-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font-primary);
    outline: none;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input button {
    background: var(--gradient-2);
    border: none;
    padding: 14px 16px;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-input button:hover {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.footer-stats {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--element-radius);
    padding: 20px;
    backdrop-filter: blur(10px);
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    color: var(--neon-green);
    font-size: 0.8rem;
    font-weight: 500;
}

.security-badge i {
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes neuralPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

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

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

@keyframes eyeBlink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

@keyframes dataFlow {
    0% { opacity: 0; transform: translateY(20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-20px); }
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes numberGlow {
    0%, 100% { text-shadow: none; }
    50% { text-shadow: 0 0 20px rgba(0, 229, 255, 0.8); }
}

/* Responsive Design */
@media (max-width: 600px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 15px 20px;
        margin: 0;
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        background: rgba(0, 229, 255, 0.1);
        color: var(--neon-cyan);
    }

    .nav-menu .cta-btn {
        margin: 20px auto 0;
        width: 80%;
        max-width: 200px;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .beta-badge {
        top: 3px;
        right: -25px;
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .legal-ecosystem {
        width: 280px;
        height: 280px;
    }

    .ecosystem-center {
        width: 80px;
        height: 80px;
    }

    .center-icon {
        font-size: 2rem;
    }

    .orbit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .orbit-label {
        font-size: 0.7rem;
    }

    .different-visual {
        order: -1;
    }

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

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

    .steps-container {
        grid-template-columns: 1fr;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .ai-robot {
        width: 200px;
        height: 200px;
    }

    .robot-head {
        width: 80px;
        height: 80px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-stats {
        justify-content: center;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }
}

/* Medium screens - 3 columns for better balance */
@media (min-width: 769px) and (max-width: 1200px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 15px 20px;
        margin: 0;
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        background: rgba(0, 229, 255, 0.1);
        color: var(--neon-cyan);
    }

    .nav-menu .cta-btn {
        margin: 20px auto 0;
        width: 80%;
        max-width: 200px;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .beta-badge {
        top: 3px;
        right: -25px;
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .legal-ecosystem {
        width: 280px;
        height: 280px;
    }

    .ecosystem-center {
        width: 80px;
        height: 80px;
    }

    .center-icon {
        font-size: 2rem;
    }

    .orbit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .orbit-label {
        font-size: 0.7rem;
    }

    .different-visual {
        order: -1;
    }

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

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

    .steps-container {
        grid-template-columns: 1fr;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .ai-robot {
        width: 200px;
        height: 200px;
    }

    .robot-head {
        width: 80px;
        height: 80px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-stats {
        justify-content: center;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }
}
