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

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --secondary-color: #00d4aa;
    --accent-color: #ff6b6b;
    --success-color: #00d4aa;
    --warning-color: #ffa726;
    --error-color: #ff5252;
    
    --text-primary: #0a0a0a;
    --text-secondary: #4a4a4a;
    --text-light: #8a8a8a;
    --text-white: #ffffff;
    
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --bg-dark: #0a0a0a;
    --bg-light: #f8f9fa;
    
    --border-color: #e8e8e8;
    --border-light: #f0f0f0;
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    --gradient-accent: linear-gradient(135deg, #00d4aa 0%, #0066ff 100%);
    --gradient-hero: linear-gradient(135deg, #0066ff 0%, #00d4aa 50%, #ff6b6b 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
}

/* Clean Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8ff 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

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

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    animation: particleFloat 25s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: float var(--duration) linear infinite;
    animation-delay: var(--delay);
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.floating-element:nth-child(1) { top: 20%; left: 10%; }
.floating-element:nth-child(2) { top: 60%; left: 80%; }
.floating-element:nth-child(3) { top: 80%; left: 20%; }
.floating-element:nth-child(4) { top: 30%; left: 70%; }

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

/* Agent3-style floating orbs */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 5s;
}

.orb:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.1); }
    50% { transform: translate(-10px, -20px) scale(0.9); }
    75% { transform: translate(-20px, 10px) scale(1.05); }
}

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

.stat-icon {
    margin-bottom: 1rem;
}

.stat-icon i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Premium Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-icon i {
    font-size: 6rem;
    color: white;
}

.loading-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.loading-progress {
    width: 300px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 2px;
    width: 0%;
    animation: loadingProgress 3s ease-out forwards;
}

@keyframes loadingProgress {
    to { width: 100%; }
}

/* Judicial/Legal Themed Background Images */
.hero {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
}

/* External background images removed to prevent 403 errors - using solid backgrounds */

/* Clean Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.logo {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 6px;
    padding-left: 0.5rem;
}

.dropdown-link:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(5px);
}

.login-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.login-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button.primary {
    background: var(--gradient-primary);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* World-Class Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 2rem;
    background: transparent;
    overflow: hidden;
    z-index: 2;
}

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

.hero-content {
    z-index: 4;
}

/* Premium Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 1s ease-out;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    z-index: 2;
    position: relative;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Premium Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 2rem;
    position: relative;
}

.title-line {
    display: block;
    animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 0.5rem;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.title-line:nth-child(3) {
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

.main-title {
    color: var(--text-primary);
    font-size: 3.5rem;
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4.5rem;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hero);
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 1.2s both;
}

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

.sub-title {
    color: var(--text-secondary);
    font-size: 2.5rem;
    font-weight: 300;
    margin-top: 0.75rem;
}

/* Hero Description */
.hero-description {
    margin-bottom: 3rem;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: slideInUp 1s ease-out 1s both;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Premium CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: slideInUp 1s ease-out 1.6s both;
}

.cta-button.premium {
    position: relative;
    background: var(--gradient-hero);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.cta-button.premium:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.4);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button.premium:hover .button-glow {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1.25rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

/* Premium Hero Visual - Grid-Based Approach */
.hero-visual {
    position: relative;
    z-index: 2;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-animation {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 100%;
}

.floating-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
    height: 100%;
    align-content: center;
    position: relative;
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.floating-card:hover::before {
    opacity: 0.05;
}

.floating-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-10px) scale(1.02);
}

/* Grid positioning - perfect alignment */
.card-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    animation: floatCard2 8s ease-in-out infinite;
}

.card-3 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    justify-self: center;
    max-width: 400px;
    animation: floatCard3 7s ease-in-out infinite;
}

/* Gentle floating animations using translateY only */
@keyframes floatCard1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

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

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

.card-icon i {
    font-size: 1.5rem;
}

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

.card-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.card-metric {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    z-index: -2;
    opacity: 0;
    transition: var(--transition);
}

.floating-card:hover .card-glow {
    opacity: 0.1;
}

/* Hero Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: heroOrbFloat 12s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 5%;
    animation-delay: 4s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.1); }
    50% { transform: translate(-20px, -30px) scale(0.9); }
    75% { transform: translate(-30px, 20px) scale(1.05); }
}

.visual-card {
    background: var(--gradient-card);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.visual-card:hover::before {
    opacity: 0.05;
}

.visual-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(0, 102, 255, 0.2);
}

.icon-container {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

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

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

.visual-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    width: 0;
    animation: progressFill 2s ease-out 1s forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes progressFill {
    to {
        width: var(--progress-width, 90%);
    }
}

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

/* Premium Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    animation: slideInUp 1s ease-out 2s both;
}

.scroll-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    animation: premiumBounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.2);
}

.scroll-arrow i {
    font-size: 1.5rem;
}

.scroll-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
}

@keyframes premiumBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    width: 100%;
}

/* Premium Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 100%;
    width: 100%;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Premium Challenges Section */
.challenges-section {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.challenges-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.challenge-card.premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-xl);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.challenge-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-hero);
}

.challenge-card.premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.challenge-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.challenge-icon i {
    font-size: 2.5rem;
}

.icon-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

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

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 0; }
}

.challenge-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.challenge-content p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-align: center;
    font-size: 1.125rem;
}

.challenge-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.challenge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-hero);
    border-radius: var(--border-radius-xl);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.challenge-card.premium:hover .challenge-glow {
    opacity: 0.1;
}

/* Pillars Section */
.pillars-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.pillars-visual {
    position: relative;
    margin-top: 3rem;
}

.pillar-connection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.connection-line {
    width: 200px;
    height: 2px;
    background: var(--gradient-primary);
    position: relative;
    animation: connectionPulse 3s ease-in-out infinite;
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

.connection-pulse {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulseMove 3s ease-in-out infinite;
}

@keyframes pulseMove {
    0% { left: 0; }
    50% { left: 180px; }
    100% { left: 0; }
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.pillar-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.pillar-card:hover::before {
    opacity: 0.05;
}

.pillar-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.pillar-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    animation: rotate 10s linear infinite;
}

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

.pillar-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pillar-card p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Product Showcase */
.product-showcase {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.product-showcase.alt {
    background: var(--bg-light);
}

.product-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 4rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.product-title h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-title p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.product-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.step-arrow {
    position: absolute;
    top: 30px;
    right: -1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    z-index: 1;
}

.process-step:last-child .step-arrow {
    display: none;
}

.product-cta {
    text-align: center;
}

/* LexiMind Section */
.leximind-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

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

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

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.leximind-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Integrated Power Section */
.integrated-power {
    padding: 6rem 0;
    background: var(--bg-light);
}

.workflow-visual {
    margin-top: 3rem;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.workflow-step {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-width: 200px;
}

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

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

.workflow-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.workflow-step p {
    color: var(--text-secondary);
    font-weight: 500;
}

.workflow-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ============================================
   ABOUT US SECTION STYLING
   ============================================ */

.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(138, 43, 226, 0.03) 50%, rgba(0, 212, 170, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
    animation: bgPulse 20s ease-in-out infinite;
    pointer-events: none;
}

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

.founder-story {
    margin: 80px 0;
    padding: 0;
    background: transparent;
    border-radius: 32px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 80px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.founder-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(138, 43, 226, 0.03) 100%);
    border-radius: 32px;
    z-index: 0;
}

.founder-content > * {
    position: relative;
    z-index: 1;
}

.founder-image-section {
    position: sticky;
    top: 100px;
}

.founder-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: imageFloat 6s ease-in-out infinite;
}

.founder-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmerEffect 3s ease-in-out infinite;
}

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

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

.founder-quote {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(138, 43, 226, 0.08) 100%);
    padding: 40px;
    border-radius: 24px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.founder-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.founder-quote::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.08;
    line-height: 1;
}

.founder-quote i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.6;
    margin-bottom: 20px;
    display: block;
}

.founder-quote p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    font-weight: 500;
    position: relative;
}

.founder-text h3 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.founder-credentials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(138, 43, 226, 0.12) 100%);
    border-radius: 60px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
}

.credential-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.credential-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.25);
}

.credential-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.credential-badge span {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.founder-narrative p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.founder-narrative p strong {
    color: var(--text-primary);
    font-weight: 700;
}

.mission-statement {
    margin: 80px 0;
    padding: 100px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, rgba(138, 43, 226, 0.9) 100%);
    border-radius: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 102, 255, 0.4);
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: missionPulse 15s ease-in-out infinite;
}

@keyframes missionPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.mission-statement::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: missionGlow 20s linear infinite;
}

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

.mission-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: iconBounce 4s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.mission-header h3 {
    font-size: 2.25rem;
    color: white;
    margin: 0;
}

.mission-content > p {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.95);
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.mission-pillar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mission-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission-pillar:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.mission-pillar:hover::before {
    opacity: 1;
}

.pillar-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-pillar h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
}

.mission-pillar p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.team-philosophy {
    margin: 80px 0;
    text-align: center;
}

.team-philosophy h3 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-card {
    padding: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.philosophy-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.philosophy-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    display: block;
    animation: iconPulseGlow 3s ease-in-out infinite;
}

@keyframes iconPulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.philosophy-card h4 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.philosophy-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
    font-size: 1.0625rem;
}

.change-vision {
    margin: 80px 0;
    padding: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.change-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vision-content {
    position: relative;
    z-index: 1;
}

.vision-content h3 {
    font-size: 2.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 900;
}

.vision-content > p {
    font-size: 1.375rem;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-weight: 500;
}

.vision-points {
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.vision-point {
    display: flex;
    gap: 24px;
    padding: 32px 36px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.vision-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.vision-point:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.vision-point i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.vision-point strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.vision-point span {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.about-cta {
    margin: 80px 0 0;
}

.about-cta-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, rgba(138, 43, 226, 0.95) 100%);
    padding: 100px 80px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 102, 255, 0.4);
}

.about-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: ctaPulse 10s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.about-cta-content h3 {
    font-size: 2.75rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-cta-content p {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.about-cta-content .cta-button {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.about-cta-content .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ============================================
   CONTACT SECTION STYLING
   ============================================ */

.contact-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

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

.contact-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 8px;
}

.contact-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.contact-form-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
    background: white;
}

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

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

.contact-form button {
    width: 100%;
    margin-top: 8px;
}

/* ============================================
   SOLUTIONS SECTIONS STYLING
   ============================================ */

.solution-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.judicial-solution {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(138, 43, 226, 0.03) 100%);
}

.government-solution {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.03) 0%, rgba(0, 102, 255, 0.03) 100%);
}

.solution-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* Problem Section */
.solution-problem {
    margin: 80px 0;
    padding: 60px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.problem-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.problem-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(238, 90, 111, 0.05) 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #ff6b6b;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.15);
}

.problem-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.problem-card h4 {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.problem-stat {
    padding: 16px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #ff6b6b;
}

.stat-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    display: block;
    margin-bottom: 4px;
}

/* Solution Answer Section */
.solution-answer {
    margin: 80px 0;
}

.solution-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.solution-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.solution-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Platform Showcase */
.platform-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.platform-showcase.reverse {
    grid-template-columns: 2fr 1fr;
}

.platform-showcase.reverse .platform-visual {
    order: 2;
}

.platform-showcase.reverse .platform-content {
    order: 1;
}

.platform-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.platform-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.platform-content h4 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.platform-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.platform-intro strong {
    color: var(--primary-color);
}

.platform-features {
    margin-bottom: 40px;
}

.feature-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.feature-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.impact-metric {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

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

/* Impact Scenarios */
.solution-impact {
    margin: 80px 0;
}

.solution-impact h3 {
    font-size: 2rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.impact-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.scenario-card {
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.scenario-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.scenario-header h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

.scenario-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.scenario-card p strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

.scenario-result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.result-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.result-badge.success {
    background: linear-gradient(135deg, #00d4aa 0%, #00a67e 100%);
    color: white;
}

/* Solution CTA */
.solution-cta {
    margin: 80px 0;
}

.cta-content-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    color: white;
}

.cta-content-box h3 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 24px;
}

.cta-content-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
}

.cta-content-box .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-content-box .cta-button {
    background: white;
    color: var(--primary-color);
}

.cta-content-box .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-content-box .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for About, Contact, and Solutions */
@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px;
    }
    
    .founder-image-section {
        position: static;
    }
    
    .mission-pillars,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-showcase,
    .platform-showcase.reverse {
        grid-template-columns: 1fr;
    }
    
    .platform-showcase.reverse .platform-visual {
        order: 1;
    }
    
    .platform-showcase.reverse .platform-content {
        order: 2;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section,
    .contact-section,
    .solution-section {
        padding: 80px 0;
    }
    
    .founder-story,
    .mission-statement,
    .change-vision,
    .solution-problem,
    .platform-showcase {
        padding: 40px 24px;
    }
    
    .founder-content,
    .about-cta-content,
    .cta-content-box {
        padding: 40px 24px;
    }
    
    .founder-image-placeholder {
        font-size: 5rem;
    }
    
    .mission-pillars,
    .philosophy-grid {
        gap: 20px;
    }
    
    .contact-form-card {
        padding: 32px 24px;
    }
    
    .platform-icon-large {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
    
    .cta-content-box h3 {
        font-size: 1.75rem;
    }
    
    .cta-content-box .cta-buttons {
        flex-direction: column;
    }
    
    .impact-scenarios {
        grid-template-columns: 1fr;
    }
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    margin-left: 0.25rem;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: var(--bg-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile-First Approach with Progressive Enhancement
   ============================================ */

/* Desktop Optimization (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-container {
        max-width: 1500px;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-header {
        max-width: 100%;
    }
    
    /* Fix About, Contact, Solutions sections for large screens */
    .about-section .container,
    .contact-section .container,
    .solution-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-content {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .solution-problem {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .platform-showcase {
        max-width: 100%;
    }
    
    .founder-content {
        gap: 60px;
        padding: 60px;
    }
    
    .founder-narrative p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .mission-pillars {
        gap: 30px;
    }
    
    .philosophy-grid {
        gap: 20px;
    }
}

/* Laptop (1024px - 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .gradient-text {
        font-size: 4rem;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .sub-title {
        font-size: 2.25rem;
    }
    
    .floating-card {
        padding: 1.75rem;
    }
    
    .card-1, .card-2, .card-3 {
        width: 240px;
    }
    
    /* Fix About, Contact, Solutions sections */
    .about-section .container,
    .contact-section .container,
    .solution-section .container {
        max-width: 1100px;
        margin: 0 auto;
    }
    
    .contact-content {
        max-width: 100%;
    }
    
    .solution-problem {
        max-width: 100%;
        padding: 50px;
    }
    
    .founder-content {
        gap: 50px;
        padding: 50px;
    }
    
    .mission-pillars {
        gap: 25px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    /* Navigation */
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 6rem 1.5rem 4rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .gradient-text {
        font-size: 3.5rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .sub-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    /* Floating Cards - Tablet Layout */
    .hero-visual {
        height: 500px;
        padding: 1.5rem;
    }
    
    .floating-cards {
        gap: 1.5rem;
    }
    
    .floating-card {
        padding: 1.5rem;
    }
    
    .card-3 {
        max-width: 350px;
    }
    
    /* Sections */
    .challenges-section,
    .pillars-section,
    .product-showcase,
    .leximind-section,
    .integrated-power,
    .final-cta {
        padding: 5rem 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
    
    /* Grids */
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================
   ABOUT US SECTION STYLING
   ============================================ */

.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(138, 43, 226, 0.03) 50%, rgba(0, 212, 170, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
    animation: bgPulse 20s ease-in-out infinite;
    pointer-events: none;
}

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

.founder-story {
    margin: 80px 0;
    padding: 0;
    background: transparent;
    border-radius: 32px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 80px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.founder-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(138, 43, 226, 0.03) 100%);
    border-radius: 32px;
    z-index: 0;
}

.founder-content > * {
    position: relative;
    z-index: 1;
}

.founder-image-section {
    position: sticky;
    top: 100px;
}

.founder-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: imageFloat 6s ease-in-out infinite;
}

.founder-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmerEffect 3s ease-in-out infinite;
}

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

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

.founder-quote {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(138, 43, 226, 0.08) 100%);
    padding: 40px;
    border-radius: 24px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.founder-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.founder-quote::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.08;
    line-height: 1;
}

.founder-quote i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.6;
    margin-bottom: 20px;
    display: block;
}

.founder-quote p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    font-weight: 500;
    position: relative;
}

.founder-text h3 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.founder-credentials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(138, 43, 226, 0.12) 100%);
    border-radius: 60px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
}

.credential-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.credential-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.25);
}

.credential-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.credential-badge span {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.founder-narrative p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.founder-narrative p strong {
    color: var(--text-primary);
    font-weight: 700;
}

.mission-statement {
    margin: 80px 0;
    padding: 100px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, rgba(138, 43, 226, 0.9) 100%);
    border-radius: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 102, 255, 0.4);
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: missionPulse 15s ease-in-out infinite;
}

@keyframes missionPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.mission-statement::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: missionGlow 20s linear infinite;
}

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

.mission-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: iconBounce 4s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.mission-header h3 {
    font-size: 2.25rem;
    color: white;
    margin: 0;
}

.mission-content > p {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.95);
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.mission-pillar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mission-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission-pillar:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.mission-pillar:hover::before {
    opacity: 1;
}

.pillar-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-pillar h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
}

.mission-pillar p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.team-philosophy {
    margin: 80px 0;
    text-align: center;
}

.team-philosophy h3 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-card {
    padding: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.philosophy-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.philosophy-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    display: block;
    animation: iconPulseGlow 3s ease-in-out infinite;
}

@keyframes iconPulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.philosophy-card h4 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.philosophy-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
    font-size: 1.0625rem;
}

.change-vision {
    margin: 80px 0;
    padding: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.change-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vision-content {
    position: relative;
    z-index: 1;
}

.vision-content h3 {
    font-size: 2.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 900;
}

.vision-content > p {
    font-size: 1.375rem;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-weight: 500;
}

.vision-points {
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.vision-point {
    display: flex;
    gap: 24px;
    padding: 32px 36px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.vision-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.vision-point:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.vision-point i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.vision-point strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.vision-point span {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.about-cta {
    margin: 80px 0 0;
}

.about-cta-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, rgba(138, 43, 226, 0.95) 100%);
    padding: 100px 80px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 102, 255, 0.4);
}

.about-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: ctaPulse 10s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.about-cta-content h3 {
    font-size: 2.75rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-cta-content p {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.about-cta-content .cta-button {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.about-cta-content .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ============================================
   CONTACT SECTION STYLING
   ============================================ */

.contact-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

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

.contact-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 8px;
}

.contact-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.contact-form-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
    background: white;
}

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

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

.contact-form button {
    width: 100%;
    margin-top: 8px;
}

/* Responsive Design for About and Contact */
@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image-section {
        position: static;
    }
    
    .mission-pillars,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .founder-story,
    .mission-statement,
    .change-vision {
        padding: 40px 24px;
    }
    
    .founder-image-placeholder {
        font-size: 5rem;
    }
    
    .about-cta-content {
        padding: 60px 32px;
    }
    
    .contact-form-card {
        padding: 32px 24px;
    }
}

/* ============================================
   SOLUTIONS SECTIONS STYLING
   ============================================ */

.solution-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.judicial-solution {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(138, 43, 226, 0.03) 100%);
}

.government-solution {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.03) 0%, rgba(0, 102, 255, 0.03) 100%);
}

.solution-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* Problem Section */
.solution-problem {
    margin: 80px 0;
    padding: 60px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.problem-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.problem-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(238, 90, 111, 0.05) 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #ff6b6b;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.15);
}

.problem-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.problem-card h4 {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.problem-stat {
    padding: 16px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #ff6b6b;
}

.stat-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    display: block;
    margin-bottom: 4px;
}

/* Solution Answer Section */
.solution-answer {
    margin: 80px 0;
}

.solution-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.solution-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.solution-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Platform Showcase */
.platform-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.platform-showcase.reverse {
    grid-template-columns: 2fr 1fr;
}

.platform-showcase.reverse .platform-visual {
    order: 2;
}

.platform-showcase.reverse .platform-content {
    order: 1;
}

.platform-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.platform-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.platform-content h4 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.platform-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.platform-intro strong {
    color: var(--primary-color);
}

.platform-features {
    margin-bottom: 40px;
}

.feature-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.feature-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.impact-metric {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

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

/* Impact Scenarios */
.solution-impact {
    margin: 80px 0;
}

.solution-impact h3 {
    font-size: 2rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.impact-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.scenario-card {
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.scenario-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.scenario-header h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

.scenario-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.scenario-card p strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

.scenario-result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.result-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.result-badge.success {
    background: linear-gradient(135deg, #00d4aa 0%, #00a67e 100%);
    color: white;
}

/* Solution CTA */
.solution-cta {
    margin: 80px 0;
}

.cta-content-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    color: white;
}

.cta-content-box h3 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 24px;
}

.cta-content-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
}

.cta-content-box .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-content-box .cta-button {
    background: white;
    color: var(--primary-color);
}

.cta-content-box .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-content-box .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-showcase,
    .platform-showcase.reverse {
        grid-template-columns: 1fr;
    }
    
    .platform-showcase.reverse .platform-visual {
        order: 1;
    }
    
    .platform-showcase.reverse .platform-content {
        order: 2;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 80px 0;
    }
    
    .solution-problem {
        padding: 40px 24px;
    }
    
    .platform-showcase {
        padding: 40px 24px;
    }
    
    .platform-icon-large {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
    
    .cta-content-box {
        padding: 60px 32px;
    }
    
    .cta-content-box h3 {
        font-size: 1.75rem;
    }
    
    .cta-content-box .cta-buttons {
        flex-direction: column;
    }
    
    .impact-scenarios {
        grid-template-columns: 1fr;
    }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) {
    /* Navigation - Mobile Menu */
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0.5rem 0 0 1rem;
        margin-top: 0.5rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 5rem 1rem 3rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .gradient-text {
        font-size: 2.75rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .sub-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button.premium {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-button.secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    /* Floating Cards - Mobile Stack */
    .hero-visual {
        height: auto;
        padding: 1rem;
    }
    
    .floating-cards {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        height: auto;
    }
    
    .floating-card {
        padding: 1.5rem;
        animation: none !important;
    }
    
    .card-1, .card-2, .card-3 {
        grid-column: 1 / 2;
        grid-row: auto;
        max-width: 100%;
        justify-self: stretch;
    }
    
    .floating-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .card-content h4 {
        font-size: 1.125rem;
    }
    
    .metric-value {
        font-size: 1.75rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 2rem;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
    
    /* Sections */
    .container {
        padding: 0 1rem;
    }
    
    .challenges-section,
    .pillars-section,
    .product-showcase,
    .leximind-section,
    .integrated-power,
    .final-cta {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    /* Grids - All Single Column */
    .challenges-grid,
    .pillars-grid,
    .features-grid,
    .process-flow,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Cards */
    .challenge-card.premium {
        padding: 2rem;
    }
    
    .challenge-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .challenge-content h3 {
        font-size: 1.5rem;
    }
    
    .challenge-content p {
        font-size: 1rem;
    }
    
    .challenge-metrics {
        gap: 1.5rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    /* Product Showcase */
    .product-card {
        padding: 2rem;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .product-title h3 {
        font-size: 1.5rem;
    }
    
    .product-title p {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    /* Process Flow - Vertical */
    .step-arrow {
        display: none;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.875rem;
    }
    
    /* Workflow Steps */
    .workflow-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .workflow-step {
        min-width: 100%;
    }
    
    .workflow-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Statistics */
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Large Screen Fix (> 1200px) - Fix breaking issues */
@media (min-width: 1200px) {
    /* About section fixes */
    .founder-content {
        gap: 40px !important;
        padding: 60px !important;
    }
    
    .founder-narrative p {
        font-size: 0.95rem !important;
    }
    
    .mission-statement {
        padding: 60px 60px !important;
    }
    
    .mission-content > p {
        font-size: 1.125rem !important;
        max-width: 100%;
    }
    
    .mission-pillars {
        gap: 25px !important;
    }
    
    .mission-pillar {
        padding: 40px 30px !important;
    }
    
    .philosophy-grid {
        gap: 20px !important;
    }
    
    .philosophy-card {
        padding: 40px !important;
    }
    
    .change-vision {
        padding: 60px !important;
    }
    
    .vision-content h3 {
        font-size: 2.25rem !important;
    }
    
    .vision-content > p {
        font-size: 1.25rem !important;
    }
    
    .vision-point {
        padding: 25px 30px !important;
    }
    
    .about-cta-content {
        padding: 60px 60px !important;
    }
    
    /* Contact section fixes */
    .contact-form-card {
        padding: 40px !important;
    }
    
    /* Solutions section fixes */
    .solution-problem {
        padding: 50px !important;
    }
    
    .problem-card {
        padding: 30px !important;
    }
    
    .platform-showcase {
        padding: 50px !important;
        gap: 50px !important;
    }
    
    .platform-showcase.reverse {
        padding: 50px !important;
        gap: 50px !important;
    }
    
    .cta-content-box {
        padding: 60px 50px !important;
    }
    
    /* Ensure all grids don't overflow */
    .founder-content,
    .solution-problem,
    .platform-showcase,
    .contact-form-card {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Section styling */
    .solution-problem,
    .about-section .container,
    .contact-section .container,
    .solution-section .container {
        box-sizing: border-box;
        width: 100%;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
    
    .hero {
        padding: 4.5rem 0.75rem 2.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .gradient-text {
        font-size: 2.25rem;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .sub-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-badge {
        padding: 0.4rem 0.875rem;
    }
    
    .badge-text {
        font-size: 0.6875rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.9375rem;
    }
    
    .challenge-card.premium,
    .product-card,
    .pillar-card {
        padding: 1.5rem;
    }
    
    .challenge-icon,
    .pillar-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .challenge-content h3,
    .product-title h3 {
        font-size: 1.25rem;
    }
    
    .metric-number {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-button.premium {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets for mobile */
    .nav-link,
    .cta-button,
    .dropdown-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
    }
    
    /* Disable hover effects on touch devices */
    .floating-card:hover,
    .challenge-card:hover,
    .feature-card:hover {
        transform: none;
    }
    
    /* Remove magnetic button effects */
    .cta-button:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .scroll-indicator,
    .floating-orbs,
    .particles,
    .animated-bg {
        display: none;
    }
    
    .hero-visual,
    .lottie-icon {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* AOS Animation Setup - Elements start visible, then animate */
[data-aos] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Only apply transforms/opacity when AOS is initialized */
html.aos-init [data-aos]:not(.aos-animate) {
    opacity: 0;
}

html.aos-init [data-aos].aos-animate {
    opacity: 1;
    pointer-events: auto;
}

/* Fallback: ensure content is always visible if AOS doesn't load */
body:not(.aos-enabled) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
