/* Modern Hero Section */
.hero {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%) !important;
}

/* Advanced Background Effects */
.hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(213, 0, 249, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 255, 127, 0.08) 0%, transparent 50%) !important;
    animation: heroBackgroundPulse 8s ease-in-out infinite !important;
    z-index: 1 !important;
}

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

/* Particles.js Container */
#particles-js {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

#particles-js canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.hero .container {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
}

.hero-container {
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr !important;
    gap: 100px !important;
    align-items: center !important;
    padding: 160px 0 100px 0 !important;
    min-height: calc(100vh - 80px) !important;
    text-align: left !important;
}

.hero-content {
    text-align: left !important;
    width: 100% !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    min-height: 500px !important;
}

/* Modern AI Visual */
.ai-robot {
    position: relative !important;
    width: 400px !important;
    height: 400px !important;
    display: block !important;
}

.robot-head {
    width: 180px !important;
    height: 180px !important;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2) 0%, rgba(213, 0, 249, 0.2) 100%) !important;
    border: 2px solid rgba(0, 229, 255, 0.3) !important;
    border-radius: 30px !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    backdrop-filter: blur(20px) !important;
    box-shadow:
        0 0 60px rgba(0, 229, 255, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.05) !important;
    animation: modernRobotFloat 6s ease-in-out infinite !important;
}

.robot-head::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, #00e5ff, #d500f9, #00ff7f, #00e5ff) !important;
    border-radius: 32px !important;
    z-index: -1 !important;
    animation: borderRotate 4s linear infinite !important;
}

.robot-eyes {
    display: flex !important;
    gap: 30px !important;
    position: relative !important;
}

.eye {
    width: 30px !important;
    height: 30px !important;
    background: radial-gradient(circle, #00ff7f 0%, #00e5ff 100%) !important;
    border-radius: 50% !important;
    animation: modernEyePulse 3s ease-in-out infinite !important;
    box-shadow:
        0 0 30px #00ff7f,
        inset 0 0 20px rgba(255, 255, 255, 0.3) !important;
    position: relative !important;
}

.eye::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 8px !important;
    height: 8px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    animation: eyeReflection 2s ease-in-out infinite !important;
}

/* Floating Elements */
.data-streams {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

.stream {
    position: absolute !important;
    width: 3px !important;
    height: 80px !important;
    background: linear-gradient(to bottom, rgba(0, 229, 255, 0.8), transparent) !important;
    border-radius: 3px !important;
    filter: blur(1px) !important;
}

.stream:nth-child(1) {
    top: 15% !important;
    left: 10% !important;
    animation: modernDataFlow 3s ease-in-out infinite !important;
    transform: rotate(15deg) !important;
}

.stream:nth-child(2) {
    top: 25% !important;
    right: 10% !important;
    animation: modernDataFlow 3s ease-in-out infinite 1s !important;
    transform: rotate(-15deg) !important;
}

.stream:nth-child(3) {
    bottom: 15% !important;
    left: 60% !important;
    animation: modernDataFlow 3s ease-in-out infinite 2s !important;
    transform: rotate(45deg) !important;
}

/* Floating Orbs */
.floating-orbs {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    pointer-events: none !important;
}

.orb {
    position: absolute !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.3), transparent) !important;
    animation: orbFloat 8s ease-in-out infinite !important;
}

.orb:nth-child(1) {
    width: 60px !important;
    height: 60px !important;
    top: 20% !important;
    left: 15% !important;
    animation-delay: 0s !important;
}

.orb:nth-child(2) {
    width: 40px !important;
    height: 40px !important;
    top: 60% !important;
    right: 20% !important;
    animation-delay: 2s !important;
    background: radial-gradient(circle, rgba(213, 0, 249, 0.3), transparent) !important;
}

.orb:nth-child(3) {
    width: 80px !important;
    height: 80px !important;
    bottom: 30% !important;
    left: 5% !important;
    animation-delay: 4s !important;
    background: radial-gradient(circle, rgba(0, 255, 127, 0.2), transparent) !important;
}

/* Modern Typography */
.hero-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 4.5rem !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    margin-bottom: 30px !important;
    color: #ffffff !important;
    display: block !important;
    letter-spacing: -0.02em !important;
    animation: titleSlideUp 1s ease-out forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hero Features */
.hero-features {
    display: flex !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    animation: featuresSlideUp 1s ease-out forwards !important;
    animation-delay: 0.4s !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    width: 100% !important;
    position: relative !important;
    z-index: 10 !important;
}

.hero-feature {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px 24px !important;
    background: rgba(0, 229, 255, 0.1) !important;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(213, 0, 249, 0.15) 100%) !important;
    border: 1px solid rgba(0, 229, 255, 0.3) !important;
    border-radius: 50px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 60px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

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

.hero-feature:hover::before {
    left: 100% !important;
}

.hero-feature:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(0, 229, 255, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2) !important;
}

.feature-icon {
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4) !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

.hero-feature:hover .feature-icon {
    transform: scale(1.1) !important;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5) !important;
}

.feature-icon i {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

.hero-feature span {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    letter-spacing: 0.02em !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.gradient-text {
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 50%, #00ff7f 100%) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: gradientShift 4s ease-in-out infinite !important;
    position: relative !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.gradient-text::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 50%, #00ff7f 100%) !important;
    background-size: 200% 200% !important;
    opacity: 0.1 !important;
    filter: blur(20px) !important;
    animation: gradientShift 4s ease-in-out infinite !important;
    z-index: -1 !important;
}

.hero-subtitle {
    font-size: 1.4rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 50px !important;
    line-height: 1.7 !important;
    display: block !important;
    font-weight: 400 !important;
    animation: subtitleSlideUp 1s ease-out forwards !important;
    animation-delay: 0.2s !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    max-width: 600px !important;
}

/* Modern CTA Buttons */
.hero-cta {
    display: flex !important;
    gap: 24px !important;
    margin-bottom: 80px !important;
    flex-wrap: wrap !important;
    animation: ctaSlideUp 1s ease-out forwards !important;
    animation-delay: 0.4s !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.primary-btn {
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border: none !important;
    padding: 18px 36px !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3) !important;
}

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

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

.primary-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.4) !important;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    padding: 16px 34px !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(0, 229, 255, 0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2) !important;
}

/* Modern Stats */
.hero-stats {
    display: flex !important;
    visibility: visible !important;
    gap: 60px !important;
    flex-wrap: wrap !important;
    margin-top: 0 !important;
    animation: statsSlideUp 1s ease-out forwards !important;
    animation-delay: 0.6s !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.stat {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    min-width: 140px !important;
    position: relative !important;
    padding: 20px 0 !important;
}

.stat::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 40px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00e5ff, #d500f9) !important;
    border-radius: 2px !important;
}

.stat-number {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: block !important;
    line-height: 1 !important;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
    display: block !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
}

/* About Section Fixes - Ensure Visibility */
.about {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
}

.about::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    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%) !important;
    animation: aboutGlow 10s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.about .container {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
}

.about .section-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.about .section-header h2 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.about .section-header p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.about-grid {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.about-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: slideInLeft 1s ease-out forwards !important;
    animation-delay: 0.3s !important;
}

.about-content p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    position: relative !important;
    padding-left: 20px !important;
    border-left: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    margin-bottom: 32px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

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

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

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

.about-content p:hover {
    border-left-color: #00e5ff !important;
    padding-left: 25px !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.about-visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.justice-symbol {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: justiceAppear 1.2s ease-out forwards, justiceFloat 8s ease-in-out infinite !important;
    animation-delay: 0.8s, 2s !important;
    perspective: 1000px !important;
    width: 300px !important;
    height: 300px !important;
    position: relative !important;
    margin: 0 auto !important;
}

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

.scales-of-justice {
    display: block !important;
    visibility: visible !important;
    position: absolute !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 3 !important;
}

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

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

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

.scale-left, .scale-right {
    display: block !important;
    visibility: visible !important;
    position: absolute !important;
    top: 18px !important;
    width: 30px !important;
    height: 20px !important;
}

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

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

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

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

.legal-documents {
    display: block !important;
    visibility: visible !important;
    position: absolute !important;
    top: 60px !important;
    left: 20px !important;
    z-index: 2 !important;
}

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

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

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

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

.justice-gavel {
    display: block !important;
    visibility: visible !important;
    position: absolute !important;
    bottom: 30px !important;
    right: 20px !important;
    z-index: 2 !important;
    animation: gavelStrike 6s ease-in-out infinite !important;
}

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

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

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

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

/* Justice-themed Animations for About Section */
@keyframes justiceAppear {
    from {
        opacity: 0.5;
        transform: scale(0.9) rotateY(10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

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

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

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

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

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

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

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

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

/* Force desktop layout on larger screens */
@media (min-width: 769px) {
    .hero-container {
        grid-template-columns: 1fr 1fr !important;
        text-align: left !important;
    }

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

    .hero-visual {
        order: initial !important;
    }

    .hero-stats {
        justify-content: flex-start !important;
    }
}

/* What Makes Us Different Section Fixes */
.what-makes-different {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.different-grid {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.different-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: slideInLeft 1s ease-out forwards !important;
    animation-delay: 0.3s !important;
}

.different-visual {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: ecosystemAppear 1.2s ease-out forwards !important;
    animation-delay: 0.8s !important;
}

.legal-ecosystem {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ecosystem-center {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: centerPulse 4s ease-in-out infinite !important;
}

.ecosystem-orbit {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: orbitRotate 30s linear infinite !important;
}

.orbit-item {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: counterRotate 30s linear infinite reverse !important;
}

.orbit-icon {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: orbitIconFloat 4s ease-in-out infinite !important;
}

.connection-line {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: connectionPulse 6s ease-in-out infinite !important;
}

.highlight-item {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: slideInLeft 0.6s ease-out forwards !important;
}

.highlight-icon {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: iconPulse 3s ease-in-out infinite !important;
}

/* Who It's For Section Styles */
.who-its-for {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
}

.who-its-for::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(213, 0, 249, 0.08) 0%, transparent 60%) !important;
    animation: whoGlow 12s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.who-its-for .container {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
}

.who-its-for .section-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    margin-bottom: 80px !important;
}

.who-its-for .section-header h2 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
}

.who-its-for .section-header p {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    animation-delay: 0.2s !important;
}

.who-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 60px !important;
}

.who-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 50px 30px !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: cardSlideUp 0.8s ease-out forwards !important;
    cursor: pointer !important;
    min-height: 320px !important;
}

.who-card:nth-child(1) {
    animation-delay: 0.1s !important;
}

.who-card:nth-child(2) {
    animation-delay: 0.2s !important;
}

.who-card:nth-child(3) {
    animation-delay: 0.3s !important;
}

.who-card:nth-child(4) {
    animation-delay: 0.4s !important;
}

.who-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(213, 0, 249, 0.1)) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    border-radius: 20px !important;
    z-index: 1 !important;
}

.who-card:hover::before {
    opacity: 1 !important;
}

.who-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    border-color: rgba(0, 229, 255, 0.3) !important;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 229, 255, 0.2) !important;
}

.who-icon {
    position: relative !important;
    z-index: 2 !important;
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 50% !important;
    margin-bottom: 30px !important;
    transition: all 0.4s ease !important;
    animation: iconPulse 3s ease-in-out infinite !important;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3) !important;
}

.who-card:hover .who-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.5) !important;
    animation-play-state: paused !important;
}

.who-icon i {
    font-size: 2rem !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.who-card:hover .who-icon i {
    transform: scale(1.1) !important;
}

.who-card h3 {
    position: relative !important;
    z-index: 2 !important;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease !important;
}

.who-card:hover h3 {
    color: #00e5ff !important;
    transform: translateY(-2px) !important;
}

.who-card p {
    position: relative !important;
    z-index: 2 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.who-card:hover p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Enhanced Animations for Who Section */
@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes whoGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    33% {
        opacity: 0.8;
        transform: scale(1.1) rotate(120deg);
    }
    66% {
        opacity: 0.4;
        transform: scale(0.9) rotate(240deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 229, 255, 0.5), 0 0 60px rgba(213, 0, 249, 0.2);
        transform: scale(1.05);
    }
}

/* Responsive Design for Who Section */
@media (max-width: 1200px) {
    .who-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 768px) {
    .who-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .who-card {
        padding: 40px 25px !important;
        min-height: 280px !important;
    }

    .who-icon {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 25px !important;
    }

    .who-icon i {
        font-size: 1.8rem !important;
    }

    .who-card h3 {
        font-size: 1.3rem !important;
    }

    .who-its-for .section-header h2 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .who-its-for {
        padding: 80px 0 !important;
    }

    .who-its-for .section-header {
        margin-bottom: 50px !important;
    }

    .who-its-for .section-header h2 {
        font-size: 2rem !important;
    }

    .who-card {
        padding: 35px 20px !important;
        min-height: 260px !important;
    }
}

/* FAQ Section Styles */
.faq {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%) !important;
}

.faq::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 25% 25%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(213, 0, 249, 0.06) 0%, transparent 50%) !important;
    animation: faqGlow 15s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.faq .container {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.faq .section-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    margin-bottom: 80px !important;
}

.faq .section-header h2 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    line-height: 1.2 !important;
}

.faq .section-header p {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    animation-delay: 0.2s !important;
}

.faq-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 60px !important;
}

.faq-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 0 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    animation: faqItemSlideUp 0.8s ease-out forwards !important;
}

.faq-item:nth-child(odd) {
    animation-delay: 0.1s !important;
}

.faq-item:nth-child(even) {
    animation-delay: 0.2s !important;
}

.faq-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(213, 0, 249, 0.08)) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    border-radius: 16px !important;
    z-index: 1 !important;
}

.faq-item:hover::before {
    opacity: 1 !important;
}

.faq-item:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(0, 229, 255, 0.3) !important;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(0, 229, 255, 0.15) !important;
}

.faq-question {
    position: relative !important;
    z-index: 2 !important;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    line-height: 1.4 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.faq-question-text {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    flex: 1 !important;
}

.faq-question-text::before {
    content: '?' !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    transition: all 0.3s ease !important;
}

.faq-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.faq-toggle i {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover .faq-question {
    color: #00e5ff !important;
}

.faq-item:hover .faq-question-text::before {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4) !important;
}

.faq-item:hover .faq-toggle {
    background: rgba(0, 229, 255, 0.2) !important;
    border-color: rgba(0, 229, 255, 0.3) !important;
}

.faq-item:hover .faq-toggle i {
    color: #00e5ff !important;
}

.faq-answer {
    position: relative !important;
    z-index: 2 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
    padding: 0 30px 30px 66px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    opacity: 0 !important;
}

.faq-item.active .faq-answer {
    max-height: 200px !important;
    opacity: 1 !important;
    padding-top: 0 !important;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg) !important;
    color: #00e5ff !important;
}

.faq-item.active .faq-toggle {
    background: rgba(0, 229, 255, 0.2) !important;
    border-color: rgba(0, 229, 255, 0.4) !important;
}

/* FAQ Section Subheading */
.faq-section-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-align: center !important;
    margin: 60px 0 40px 0 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    animation-delay: 0.4s !important;
}

.faq-section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 2px !important;
    animation: underlineGlow 3s ease-in-out infinite !important;
}

/* Enhanced FAQ Animations */
@keyframes faqItemSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes faqGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }
    33% {
        opacity: 0.7;
        transform: scale(1.05) rotate(120deg);
    }
    66% {
        opacity: 0.3;
        transform: scale(0.95) rotate(240deg);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.1) rotate(270deg);
    }
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.8), 0 0 30px rgba(213, 0, 249, 0.4);
        transform: translateX(-50%) scaleX(1.2);
    }
}

/* Responsive Design for FAQ Section */
@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .faq-item {
        padding: 25px !important;
    }

    .faq-question {
        font-size: 1.1rem !important;
    }

    .faq .section-header h2 {
        font-size: 2.5rem !important;
    }

    .faq-section-title {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 0 !important;
    }

    .faq .section-header {
        margin-bottom: 60px !important;
    }

    .faq .section-header h2 {
        font-size: 2.2rem !important;
    }

    .faq-question {
        font-size: 1rem !important;
        gap: 10px !important;
        padding: 25px !important;
    }

    .faq-question-text::before {
        width: 20px !important;
        height: 20px !important;
        font-size: 12px !important;
    }

    .faq-toggle {
        width: 28px !important;
        height: 28px !important;
    }

    .faq-toggle i {
        font-size: 12px !important;
    }

    .faq-answer {
        font-size: 0.9rem !important;
        padding: 0 25px 25px 57px !important;
    }

    .faq-section-title {
        font-size: 1.6rem !important;
        margin: 40px 0 30px 0 !important;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 60px 0 !important;
    }

    .faq .container {
        padding: 0 15px !important;
    }

    .faq .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .faq-grid {
        gap: 20px !important;
        margin-top: 40px !important;
    }

    .faq-question {
        padding: 20px !important;
        font-size: 0.95rem !important;
    }

    .faq-question-text::before {
        width: 18px !important;
        height: 18px !important;
        font-size: 11px !important;
    }

    .faq-toggle {
        width: 26px !important;
        height: 26px !important;
    }

    .faq-answer {
        padding: 0 20px 20px 50px !important;
        font-size: 0.85rem !important;
    }

    .faq-section-title {
        font-size: 1.4rem !important;
    }
}

/* Contact Map Styles */
.contact-map {
    margin-top: 60px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.map-container {
    position: relative !important;
    width: 100% !important;
    height: 0 !important;
    padding-bottom: 50% !important; /* 2:1 Aspect Ratio for full width */
    border-radius: 16px !important;
    overflow: hidden !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.map-container:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.1) !important;
    border-color: rgba(0, 229, 255, 0.2) !important;
}

.map-container iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 16px !important;
    filter: grayscale(20%) contrast(1.1) !important;
    transition: filter 0.3s ease !important;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2) !important;
}

/* Contact Map Responsive Design */
@media (max-width: 968px) {
    .contact-map {
        margin-top: 50px !important;
    }

    .map-container {
        padding-bottom: 55% !important; /* Slightly taller on tablet */
        border-radius: 12px !important;
    }

    .map-container iframe {
        border-radius: 12px !important;
    }
}

@media (max-width: 768px) {
    .contact-map {
        margin-top: 40px !important;
    }

    .map-container {
        padding-bottom: 60% !important; /* More square on mobile */
        border-radius: 10px !important;
    }

    .map-container iframe {
        border-radius: 10px !important;
    }
}

@media (max-width: 480px) {
    .contact-map {
        margin-top: 30px !important;
    }

    .map-container {
        padding-bottom: 75% !important; /* Almost square on small mobile */
        border-radius: 8px !important;
    }

    .map-container iframe {
        border-radius: 8px !important;
    }
}

/* Blog Section Styles */
.blog {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
}

.blog::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 15% 25%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(213, 0, 249, 0.05) 0%, transparent 50%) !important;
    animation: blogGlow 18s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.blog .container {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
}

.blog .section-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    margin-bottom: 80px !important;
}

.blog .section-header h2 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    line-height: 1.2 !important;
}

.blog .section-header p {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    animation-delay: 0.2s !important;
}

.blog-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 60px !important;
}

.blog-card {
    display: flex !important;
    flex-direction: column !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    backdrop-filter: blur(10px) !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: blogCardSlideUp 0.8s ease-out forwards !important;
    cursor: pointer !important;
}

.blog-card:nth-child(1) { animation-delay: 0.1s !important; }
.blog-card:nth-child(2) { animation-delay: 0.2s !important; }
.blog-card:nth-child(3) { animation-delay: 0.3s !important; }
.blog-card:nth-child(4) { animation-delay: 0.4s !important; }
.blog-card:nth-child(5) { animation-delay: 0.5s !important; }
.blog-card:nth-child(6) { animation-delay: 0.6s !important; }

.blog-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(213, 0, 249, 0.08)) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    border-radius: 20px !important;
    z-index: 1 !important;
}

.blog-card:hover::before {
    opacity: 1 !important;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    border-color: rgba(0, 229, 255, 0.3) !important;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 229, 255, 0.2) !important;
}

.blog-image {
    position: relative !important;
    height: 200px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(213, 0, 249, 0.1)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2 !important;
}

.blog-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.blog-placeholder i {
    font-size: 2rem !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.blog-card:hover .blog-placeholder {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4) !important;
}

.blog-category {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(0, 229, 255, 0.2) !important;
    color: #00e5ff !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    border: 1px solid rgba(0, 229, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 3 !important;
}

.blog-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 30px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.blog-meta {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
}

.blog-date,
.blog-read-time {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
}

.blog-date::before {
    content: '📅' !important;
    margin-right: 6px !important;
}

.blog-read-time::before {
    content: '⏱️' !important;
    margin-right: 6px !important;
}

.blog-content h3 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
    transition: all 0.3s ease !important;
}

.blog-card:hover .blog-content h3 {
    color: #00e5ff !important;
}

.blog-content p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 20px !important;
    flex: 1 !important;
    transition: all 0.3s ease !important;
}

.blog-card:hover .blog-content p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.blog-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #00e5ff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    margin-top: auto !important;
}

.blog-link:hover {
    gap: 12px !important;
    color: #ffffff !important;
}

.blog-link i {
    transition: all 0.3s ease !important;
}

.blog-link:hover i {
    transform: translateX(4px) !important;
}

.blog-cta {
    text-align: center !important;
    margin-top: 40px !important;
}

.blog-view-all {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px 32px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3) !important;
}

.blog-view-all:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4) !important;
    gap: 16px !important;
}

.blog-view-all i {
    transition: all 0.3s ease !important;
}

.blog-view-all:hover i {
    transform: translateX(4px) !important;
}

/* Blog Animations */
@keyframes blogCardSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes blogGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.6;
        transform: scale(1.05) rotate(90deg);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.95) rotate(180deg);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.1) rotate(270deg);
    }
}

/* Blog Responsive Design */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 80px 0 !important;
    }

    .blog .section-header {
        margin-bottom: 60px !important;
    }

    .blog .section-header h2 {
        font-size: 2.5rem !important;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 50px !important;
    }

    .blog-image {
        height: 180px !important;
    }

    .blog-placeholder {
        width: 70px !important;
        height: 70px !important;
    }

    .blog-placeholder i {
        font-size: 1.8rem !important;
    }

    .blog-content {
        padding: 25px !important;
    }

    .blog-content h3 {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 60px 0 !important;
    }

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

    .blog-image {
        height: 160px !important;
    }

    .blog-content {
        padding: 20px !important;
    }

    .blog-content h3 {
        font-size: 1.1rem !important;
    }

    .blog-content p {
        font-size: 0.9rem !important;
    }

    .blog-view-all {
        padding: 14px 28px !important;
        font-size: 0.9rem !important;
    }
}

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

/* Blog Post Page Styles */
.blog-post-hero {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    padding: 140px 0 80px 0 !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    margin-top: 80px !important;
}

.blog-post-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(213, 0, 249, 0.08) 0%, transparent 60%) !important;
    animation: blogGlow 15s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.blog-post-breadcrumb {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 30px !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.blog-post-breadcrumb a {
    color: #00e5ff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.blog-post-breadcrumb a:hover {
    color: #ffffff !important;
}

.blog-post-breadcrumb i {
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.blog-post-header {
    position: relative !important;
    z-index: 2 !important;
    max-width: 800px !important;
}

.blog-post-category {
    display: inline-block !important;
    background: rgba(0, 229, 255, 0.2) !important;
    color: #00e5ff !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    border: 1px solid rgba(0, 229, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    margin-bottom: 25px !important;
}

.blog-post-header h1 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
}

.blog-post-subtitle {
    font-size: 1.3rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    animation-delay: 0.2s !important;
}

.blog-post-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    animation-delay: 0.4s !important;
}

.author-info {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.author-avatar {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1.2rem !important;
}

.author-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.author-name {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.author-title {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem !important;
}

.post-details {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.post-date,
.post-read-time,
.post-views {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
}

.blog-post-content {
    position: relative !important;
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%) !important;
}

.blog-post-layout {
    display: grid !important;
    grid-template-columns: 1fr 350px !important;
    gap: 60px !important;
    align-items: start !important;
}

.blog-post-main {
    position: relative !important;
}

.blog-post-image {
    position: relative !important;
    height: 300px !important;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(213, 0, 249, 0.1)) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 40px !important;
    overflow: hidden !important;
}

.blog-post-placeholder {
    width: 120px !important;
    height: 120px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 3rem !important;
    color: #ffffff !important;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.3) !important;
    animation: iconPulse 3s ease-in-out infinite !important;
}

.blog-post-text {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8 !important;
}

.blog-post-text h2 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin: 50px 0 20px 0 !important;
    position: relative !important;
}

.blog-post-text h2:first-child {
    margin-top: 0 !important;
}

.blog-post-text h3 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #00e5ff !important;
    margin: 40px 0 15px 0 !important;
}

.blog-post-text p {
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.blog-post-text ul {
    margin: 25px 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.blog-post-text ul li {
    position: relative !important;
    padding-left: 30px !important;
    margin-bottom: 15px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem !important;
}

.blog-post-text ul li::before {
    content: '→' !important;
    position: absolute !important;
    left: 0 !important;
    color: #00e5ff !important;
    font-weight: bold !important;
}

.blog-post-text blockquote {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08)) !important;
    border-left: 4px solid #00e5ff !important;
    padding: 30px !important;
    margin: 40px 0 !important;
    border-radius: 10px !important;
    position: relative !important;
    backdrop-filter: blur(10px) !important;
}

.blog-post-text blockquote::before {
    content: '"' !important;
    font-size: 4rem !important;
    color: rgba(0, 229, 255, 0.3) !important;
    position: absolute !important;
    top: 10px !important;
    left: 20px !important;
    font-family: serif !important;
}

.blog-post-text cite {
    display: block !important;
    text-align: right !important;
    margin-top: 15px !important;
    color: #00e5ff !important;
    font-style: normal !important;
    font-weight: 600 !important;
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    margin: 40px 0 !important;
}

.benefit-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    padding: 25px !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
}

.benefit-item:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(0, 229, 255, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.benefit-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
}

.benefit-content h4 {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    font-size: 1.1rem !important;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.blog-post-cta {
    display: flex !important;
    gap: 20px !important;
    margin: 50px 0 !important;
    flex-wrap: wrap !important;
}

.blog-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px 32px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3) !important;
}

.blog-cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4) !important;
    gap: 16px !important;
}

.blog-cta-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px 32px !important;
    background: transparent !important;
    color: #00e5ff !important;
    text-decoration: none !important;
    border: 2px solid #00e5ff !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.blog-cta-secondary:hover {
    background: #00e5ff !important;
    color: #ffffff !important;
    gap: 16px !important;
}

.blog-post-sidebar {
    position: sticky !important;
    top: 100px !important;
    height: fit-content !important;
}

.sidebar-widget {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    backdrop-filter: blur(10px) !important;
}

.sidebar-widget h3 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

.toc-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.toc-list li {
    margin-bottom: 12px !important;
}

.toc-list a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: color 0.3s ease !important;
    display: block !important;
    padding: 8px 0 !important;
}

.toc-list a:hover {
    color: #00e5ff !important;
}

.related-posts {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.related-post {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.related-post:hover {
    background: rgba(0, 229, 255, 0.1) !important;
    transform: translateX(5px) !important;
}

.related-post-icon {
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

.related-post-content h4 {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    line-height: 1.3 !important;
}

.related-post-content span {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem !important;
}

.social-share {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
}

.share-btn {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.share-btn.twitter {
    background: rgba(29, 161, 242, 0.2) !important;
    color: #1da1f2 !important;
    border: 1px solid rgba(29, 161, 242, 0.3) !important;
}

.share-btn.linkedin {
    background: rgba(0, 119, 181, 0.2) !important;
    color: #0077b5 !important;
    border: 1px solid rgba(0, 119, 181, 0.3) !important;
}

.share-btn.facebook {
    background: rgba(24, 119, 242, 0.2) !important;
    color: #1877f2 !important;
    border: 1px solid rgba(24, 119, 242, 0.3) !important;
}

.share-btn.email {
    background: rgba(0, 229, 255, 0.2) !important;
    color: #00e5ff !important;
    border: 1px solid rgba(0, 229, 255, 0.3) !important;
}

.share-btn:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.2) !important;
}

/* Blog Post Responsive Design */
@media (max-width: 1200px) {
    .blog-post-layout {
        grid-template-columns: 1fr 300px !important;
        gap: 40px !important;
    }
}

@media (max-width: 968px) {
    .blog-post-layout {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .blog-post-sidebar {
        position: static !important;
        top: auto !important;
    }

    .blog-post-header h1 {
        font-size: 2.8rem !important;
    }

    .blog-post-meta {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .blog-post-hero {
        padding: 120px 0 60px 0 !important;
    }

    .blog-post-header h1 {
        font-size: 2.2rem !important;
    }

    .blog-post-subtitle {
        font-size: 1.1rem !important;
    }

    .blog-post-content {
        padding: 60px 0 !important;
    }

    .blog-post-text h2 {
        font-size: 1.6rem !important;
    }

    .blog-post-text p {
        font-size: 1rem !important;
    }

    .blog-post-cta {
        flex-direction: column !important;
    }

    .social-share {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .blog-post-hero {
        padding: 100px 0 40px 0 !important;
    }

    .blog-post-header h1 {
        font-size: 1.8rem !important;
    }

    .blog-post-image {
        height: 200px !important;
    }

    .blog-post-placeholder {
        width: 80px !important;
        height: 80px !important;
        font-size: 2rem !important;
    }

    .sidebar-widget {
        padding: 20px !important;
    }

    .benefit-item {
        padding: 20px !important;
    }
}

/* Blog Index Page Styles */
.blog-index-hero {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    padding: 140px 0 80px 0 !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    margin-top: 80px !important;
}

.blog-index-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(213, 0, 249, 0.1) 0%, transparent 50%) !important;
    animation: blogGlow 12s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.blog-index-header {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.blog-index-header h1 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 4rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
}

.blog-index-subtitle {
    font-size: 1.4rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    margin-bottom: 50px !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    animation-delay: 0.2s !important;
}

.blog-posts-section {
    position: relative !important;
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%) !important;
}

.blog-posts-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
    margin-bottom: 80px !important;
}

.blog-post-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
}

.blog-post-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(0, 229, 255, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.blog-post-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(213, 0, 249, 0.05)) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    pointer-events: none !important;
}

.blog-post-card:hover::before {
    opacity: 1 !important;
}

.post-image {
    position: relative !important;
    height: 200px !important;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(213, 0, 249, 0.1)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.post-placeholder {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    color: #ffffff !important;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3) !important;
    animation: iconPulse 3s ease-in-out infinite !important;
}

.post-category {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(0, 229, 255, 0.2) !important;
    color: #00e5ff !important;
    padding: 6px 15px !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    border: 1px solid rgba(0, 229, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.post-content {
    padding: 30px !important;
}

.post-content h3 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    transition: color 0.3s ease !important;
}

.blog-post-card:hover .post-content h3 {
    color: #00e5ff !important;
}

.post-content p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.post-meta {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 25px !important;
    flex-wrap: wrap !important;
}

.post-date,
.post-read-time {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
}

.post-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #00e5ff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.post-link:hover {
    gap: 15px !important;
    color: #ffffff !important;
}

.post-link i {
    transition: transform 0.3s ease !important;
}

.post-link:hover i {
    transform: translateX(5px) !important;
}

/* Pagination Styles */
.blog-pagination {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    padding: 40px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.pagination-info {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
}

.pagination-controls {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.pagination-btn {
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 20px !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08)) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-color: transparent !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3) !important;
}

.pagination-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

.pagination-numbers {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.pagination-number {
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08)) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.pagination-number:hover {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(213, 0, 249, 0.2)) !important;
    border-color: rgba(0, 229, 255, 0.4) !important;
    transform: translateY(-2px) !important;
}

.pagination-number.active {
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4) !important;
}

.pagination-dots {
    color: rgba(255, 255, 255, 0.4) !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    font-size: 1.2rem !important;
    letter-spacing: 2px !important;
}

/* Blog Index Responsive Design */
@media (max-width: 1200px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 968px) {
    .blog-index-header h1 {
        font-size: 3rem !important;
    }

    .blog-index-subtitle {
        font-size: 1.2rem !important;
    }

    .blog-posts-section {
        padding: 80px 0 !important;
    }

    .pagination-controls {
        flex-direction: column !important;
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .blog-index-hero {
        padding: 120px 0 60px 0 !important;
    }

    .blog-index-header h1 {
        font-size: 2.5rem !important;
    }

    .blog-index-subtitle {
        font-size: 1.1rem !important;
    }

    .post-content {
        padding: 25px !important;
    }

    .blog-pagination {
        flex-direction: column !important;
        text-align: center !important;
    }

    .pagination-numbers {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .blog-index-hero {
        padding: 100px 0 40px 0 !important;
    }

    .blog-index-header h1 {
        font-size: 2rem !important;
    }

    .post-image {
        height: 150px !important;
    }

    .post-placeholder {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }

    .post-content {
        padding: 20px !important;
    }

    .post-content h3 {
        font-size: 1.2rem !important;
    }

    .pagination-btn {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
    }

    .pagination-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.9rem !important;
    }
}

/* Blog Newsletter Section */
.blog-newsletter {
    position: relative !important;
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    overflow: hidden !important;
}

.blog-newsletter::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 25% 25%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(213, 0, 249, 0.15) 0%, transparent 50%) !important;
    animation: blogGlow 10s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.newsletter-content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 60px !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 25px !important;
    padding: 60px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.newsletter-text {
    flex: 1 !important;
    max-width: 500px !important;
}

.newsletter-text h2 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    background: linear-gradient(135deg, #ffffff 0%, #00e5ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.newsletter-text p {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.newsletter-form-large {
    flex: 1 !important;
    max-width: 500px !important;
}

.newsletter-input-group {
    display: flex !important;
    gap: 0 !important;
    margin-bottom: 15px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    padding: 8px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.newsletter-input-group:focus-within {
    border-color: rgba(0, 229, 255, 0.5) !important;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2) !important;
}

.newsletter-input-group input {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 16px 24px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.newsletter-input-group button {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 32px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3) !important;
}

.newsletter-input-group button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4) !important;
    gap: 15px !important;
}

.newsletter-input-group button i {
    transition: transform 0.3s ease !important;
}

.newsletter-input-group button:hover i {
    transform: translateX(3px) !important;
}

.newsletter-disclaimer {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-align: center !important;
    margin: 0 !important;
}

.newsletter-disclaimer a {
    color: #00e5ff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.newsletter-disclaimer a:hover {
    color: #ffffff !important;
}

/* Newsletter Responsive Design */
@media (max-width: 1200px) {
    .newsletter-content {
        gap: 40px !important;
        padding: 50px !important;
    }

    .newsletter-text h2 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 968px) {
    .newsletter-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 40px !important;
        padding: 40px !important;
    }

    .newsletter-text {
        max-width: none !important;
    }

    .newsletter-form-large {
        max-width: none !important;
        width: 100% !important;
    }

    .newsletter-text h2 {
        font-size: 2rem !important;
    }

    .newsletter-text p {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 768px) {
    .blog-newsletter {
        padding: 80px 0 !important;
    }

    .newsletter-content {
        padding: 30px !important;
        border-radius: 20px !important;
    }

    .newsletter-text h2 {
        font-size: 1.8rem !important;
    }

    .newsletter-text p {
        font-size: 1rem !important;
    }

    .newsletter-input-group {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 20px !important;
        border-radius: 20px !important;
    }

    .newsletter-input-group input {
        padding: 16px 20px !important;
        text-align: center !important;
    }

    .newsletter-input-group button {
        width: 100% !important;
        justify-content: center !important;
        padding: 18px 32px !important;
    }
}

@media (max-width: 480px) {
    .newsletter-content {
        padding: 25px !important;
        margin: 0 10px !important;
    }

    .newsletter-text h2 {
        font-size: 1.5rem !important;
    }

    .newsletter-input-group {
        padding: 15px !important;
    }

    .newsletter-input-group input {
        padding: 14px 16px !important;
        font-size: 0.95rem !important;
    }

    .newsletter-input-group button {
        padding: 16px 28px !important;
        font-size: 0.95rem !important;
    }
}

/* Legal Pages Styles */
.legal-page-hero {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    padding: 140px 0 80px 0 !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    margin-top: 80px !important;
}

.legal-page-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(213, 0, 249, 0.08) 0%, transparent 60%) !important;
    animation: blogGlow 15s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.legal-page-header {
    position: relative !important;
    z-index: 2 !important;
    max-width: 800px !important;
}

.legal-breadcrumb {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 30px !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.legal-breadcrumb a {
    color: #00e5ff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.legal-breadcrumb a:hover {
    color: #ffffff !important;
}

.legal-breadcrumb i {
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.legal-page-header h1 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
}

.legal-subtitle {
    font-size: 1.3rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    animation-delay: 0.2s !important;
}

.legal-meta {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
    animation: fadeInUp 0.8s ease-out forwards !important;
    animation-delay: 0.4s !important;
}

.legal-effective,
.legal-updated {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
}

.legal-content {
    position: relative !important;
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%) !important;
}

.legal-layout {
    display: grid !important;
    grid-template-columns: 300px 1fr !important;
    gap: 60px !important;
    align-items: start !important;
}

.legal-sidebar {
    position: sticky !important;
    top: 100px !important;
    height: fit-content !important;
}

.legal-toc {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    backdrop-filter: blur(10px) !important;
}

.legal-toc h3 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

.legal-toc .toc-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.legal-toc .toc-list li {
    margin-bottom: 10px !important;
}

.legal-toc .toc-list a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: color 0.3s ease !important;
    display: block !important;
    padding: 6px 0 !important;
}

.legal-toc .toc-list a:hover {
    color: #00e5ff !important;
}

.legal-highlight {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    backdrop-filter: blur(10px) !important;
    border-left: 4px solid #00e5ff !important;
}

.highlight-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #00e5ff 0%, #d500f9 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
}

.legal-highlight h4 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
}

.legal-highlight p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.legal-main {
    position: relative !important;
}

.legal-text {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8 !important;
}

.legal-intro {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    margin-bottom: 40px !important;
    backdrop-filter: blur(10px) !important;
    border-left: 4px solid #00e5ff !important;
}

.legal-intro p {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
}

.legal-section {
    margin-bottom: 30px !important;
    scroll-margin-top: 100px !important;
}

.legal-section p:only-child {
    margin-bottom: 5px !important;
}

.legal-section h2 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    position: relative !important;
}

.legal-section h3 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: #00e5ff !important;
    margin: 30px 0 15px 0 !important;
}

.legal-section p {
    font-size: 1rem !important;
    margin-bottom: 15px !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.legal-section p:last-child {
    margin-bottom: 0 !important;
}

/* Specific fix for sections with only one paragraph */
.legal-section:has(p:only-of-type) {
    margin-bottom: 25px !important;
}

.legal-section p:only-of-type {
    margin-bottom: 0 !important;
}

.legal-section ul {
    margin: 20px 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.legal-section ul li {
    position: relative !important;
    padding-left: 25px !important;
    margin-bottom: 12px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1rem !important;
}

.legal-section ul li::before {
    content: '•' !important;
    position: absolute !important;
    left: 0 !important;
    color: #00e5ff !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

.legal-section a {
    color: #00e5ff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.legal-section a:hover {
    color: #ffffff !important;
}

.contact-info {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 30px !important;
}

.contact-method {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 25px !important;
    backdrop-filter: blur(10px) !important;
}

.contact-method h4 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #00e5ff !important;
    margin-bottom: 10px !important;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.contact-method a {
    color: #00e5ff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.contact-method a:hover {
    color: #ffffff !important;
}

/* Legal Pages Responsive Design */
@media (max-width: 1200px) {
    .legal-layout {
        grid-template-columns: 280px 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 968px) {
    .legal-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .legal-sidebar {
        position: static !important;
        top: auto !important;
        order: 2 !important;
    }

    .legal-main {
        order: 1 !important;
    }

    .legal-page-header h1 {
        font-size: 2.8rem !important;
    }

    .legal-meta {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    .legal-page-hero {
        padding: 120px 0 60px 0 !important;
    }

    .legal-page-header h1 {
        font-size: 2.2rem !important;
    }

    .legal-subtitle {
        font-size: 1.1rem !important;
    }

    .legal-content {
        padding: 60px 0 !important;
    }

    .legal-section h2 {
        font-size: 1.6rem !important;
    }

    .legal-section h3 {
        font-size: 1.2rem !important;
    }

    .legal-toc {
        padding: 20px !important;
    }

    .legal-highlight {
        padding: 20px !important;
    }

    .legal-intro {
        padding: 20px !important;
    }

    .contact-info {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .contact-method {
        padding: 20px !important;
    }
}

@media (max-width: 480px) {
    .legal-page-hero {
        padding: 100px 0 40px 0 !important;
    }

    .legal-page-header h1 {
        font-size: 1.8rem !important;
    }

    .legal-subtitle {
        font-size: 1rem !important;
    }

    .legal-section h2 {
        font-size: 1.4rem !important;
    }

    .legal-section h3 {
        font-size: 1.1rem !important;
    }

    .legal-toc {
        padding: 15px !important;
    }

    .legal-highlight {
        padding: 15px !important;
    }

    .legal-intro {
        padding: 15px !important;
    }

    .contact-method {
        padding: 15px !important;
    }

    .highlight-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
}

/* Modern Animations */
@keyframes heroBackgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

@keyframes modernRobotFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    }
    33% {
        transform: translate(-50%, -50%) translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translate(-50%, -50%) translateY(5px) rotate(-1deg);
    }
}

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

@keyframes modernEyePulse {
    0%, 100% {
        box-shadow:
            0 0 30px #00ff7f,
            inset 0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 50px #00ff7f,
            inset 0 0 30px rgba(255, 255, 255, 0.5);
        transform: scale(1.1);
    }
}

@keyframes eyeReflection {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

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

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes titleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Animated Text Keyframes */
@keyframes featuresSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes blinkCursor {
    0%, 50% {
        border-color: #00e5ff;
    }
    51%, 100% {
        border-color: transparent;
    }
}

@keyframes textShimmer {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

/* Responsive Design for Modern Hero */
@media (max-width: 1400px) {
    .hero .container {
        max-width: 1200px !important;
        padding: 0 30px !important;
    }

    .hero-container {
        gap: 80px !important;
    }

    .hero-title {
        font-size: 4rem !important;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
        text-align: center !important;
        padding: 140px 0 80px 0 !important;
    }

    .hero-content {
        text-align: center !important;
        order: 1 !important;
    }

    .hero-visual {
        order: 2 !important;
        min-height: 400px !important;
    }

    .ai-robot {
        width: 350px !important;
        height: 350px !important;
    }

    .robot-head {
        width: 150px !important;
        height: 150px !important;
    }
}

@media (max-width: 968px) {
    .hero .container {
        padding: 0 20px !important;
    }

    .hero-container {
        padding: 120px 0 60px 0 !important;
        gap: 50px !important;
    }

    .hero-title {
        font-size: 3.2rem !important;
        margin-bottom: 25px !important;
    }

    .hero-features {
        gap: 30px !important;
        margin-bottom: 30px !important;
    }

    .hero-feature {
        padding: 14px 20px !important;
    }

    .hero-subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 40px !important;
    }

    .hero-cta {
        gap: 20px !important;
        margin-bottom: 60px !important;
    }

    .primary-btn,
    .secondary-btn {
        padding: 16px 30px !important;
        font-size: 1rem !important;
    }

    .hero-stats {
        gap: 40px !important;
        justify-content: center !important;
    }

    .ai-robot {
        width: 300px !important;
        height: 300px !important;
    }

    .robot-head {
        width: 120px !important;
        height: 120px !important;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 100px 0 50px 0 !important;
        gap: 40px !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }

    .hero-features {
        gap: 20px !important;
        margin-bottom: 25px !important;
        justify-content: center !important;
    }

    .hero-feature {
        padding: 12px 18px !important;
    }

    .hero-feature span {
        font-size: 1rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 35px !important;
    }

    .hero-cta {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        margin-bottom: 50px !important;
    }

    .primary-btn,
    .secondary-btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 18px 30px !important;
        text-align: center !important;
    }

    .hero-stats {
        gap: 30px !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .stat {
        text-align: center !important;
        min-width: auto !important;
    }

    .stat::before {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .ai-robot {
        width: 250px !important;
        height: 250px !important;
    }

    .robot-head {
        width: 100px !important;
        height: 100px !important;
    }

    .eye {
        width: 20px !important;
        height: 20px !important;
    }

    .eye::after {
        width: 6px !important;
        height: 6px !important;
    }
}

@media (max-width: 480px) {
    .hero .container {
        padding: 0 15px !important;
    }

    .hero-container {
        padding: 80px 0 40px 0 !important;
        gap: 30px !important;
    }

    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }

    .hero-features {
        gap: 15px !important;
        margin-bottom: 20px !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-feature {
        padding: 10px 16px !important;
        width: 100% !important;
        max-width: 200px !important;
        justify-content: center !important;
    }

    .hero-feature span {
        font-size: 0.95rem !important;
    }

    .feature-icon {
        width: 35px !important;
        height: 35px !important;
    }

    .feature-icon i {
        font-size: 1rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }

    .hero-cta {
        margin-bottom: 40px !important;
    }

    .primary-btn,
    .secondary-btn {
        padding: 16px 25px !important;
        font-size: 0.95rem !important;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 0.9rem !important;
    }

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

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

    .robot-eyes {
        gap: 15px !important;
    }

    .eye {
        width: 15px !important;
        height: 15px !important;
    }

    .eye::after {
        width: 4px !important;
        height: 4px !important;
    }

    .orb {
        display: none !important;
    }
}
