:root {
    --bg-dark: #070B14;
    --bg-card: rgba(13, 27, 42, 0.4);
    --bg-card-hover: rgba(13, 27, 42, 0.7);
    --accent-blue: #1B6CA8;
    --accent-blue-glow: rgba(27, 108, 168, 0.6);
    --accent-cyan: #00F0FF;
    --accent-cyan-glow: rgba(0, 240, 255, 0.4);
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --success-green: #10B981;
    --danger-red: #EF4444;
    
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 10s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-blue-glow), transparent 70%);
}

.blob-2 {
    top: 40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan-glow), transparent 70%);
    animation-delay: -5s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #0f4a7a);
    color: white;
    box-shadow: 0 4px 15px var(--accent-blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-blue-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.navbar.scrolled {
    background: rgba(7, 11, 20, 0.8);
    backdrop-filter: blur(16px);
    padding: 5px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

.logo-img-footer {
    height: 90px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
    mix-blend-mode: screen;
}

.logo-dot {
    color: var(--accent-cyan);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0 5%;
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--accent-cyan);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge i {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* Hero Visuals */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 580px;
    opacity: 0.85;
}

.main-panel {
    position: absolute;
    top: 50px;
    right: 0;
    width: 400px;
    padding: 24px;
    z-index: 2;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.dots span:nth-child(1) { background: #EF4444; }
.dots span:nth-child(2) { background: #F59E0B; }
.dots span:nth-child(3) { background: #10B981; }

.status {
    font-size: 0.875rem;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status.scanning::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.stat-label {
    color: var(--text-secondary);
}

.stat-value {
    font-weight: 600;
}

.text-green { color: var(--success-green); }
.text-red { color: var(--danger-red); }

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-top: 24px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 60%;
    background: var(--accent-cyan);
    animation: load 2s ease-in-out infinite alternate;
}

.side-panel {
    position: absolute;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
}

.side-panel p {
    font-weight: 600;
    font-size: 0.9rem;
}

.side-panel:nth-of-type(2) {
    top: 0;
    left: -40px;
}

.side-panel:nth-of-type(3) {
    bottom: 50px;
    left: -20px;
}

.icon-large {
    width: 24px;
    height: 24px;
    color: var(--success-green);
}

/* Float Animations */
@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

.float-anim-1 { animation: float 4s ease-in-out infinite alternate; }
.float-anim-2 { animation: float 5s ease-in-out infinite alternate-reverse; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

@keyframes load {
    0% { width: 10%; }
    100% { width: 90%; }
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.section-header {
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

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

.stat-card {
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
}

.stat-number {
    font-size: 3.5rem;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Services */
.services-section {
    padding: 100px 0;
}

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

.service-card {
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(27, 108, 168, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(27, 108, 168, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-cyan);
}

.service-icon i {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.service-link {
    color: var(--accent-cyan);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

.price-tag {
    display: inline-block;
    margin-top: auto;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    color: var(--accent-cyan);
    font-size: 0.95rem;
}

/* Target Clients Section */
.clients-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.client-card {
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.client-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.client-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

.featured {
    border-color: rgba(0, 240, 255, 0.3);
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.6) 0%, rgba(27, 108, 168, 0.1) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: var(--bg-dark);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-container {
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: linear-gradient(135deg, rgba(27, 108, 168, 0.1), rgba(0, 240, 255, 0.05));
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

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

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

.contact-form input {
    padding: 16px;
    border-radius: 8px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 64px;
    background: rgba(0,0,0,0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
}

.footer-brand .location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    margin-top: 24px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.link-column h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.link-column a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.link-column a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: 1fr 1fr; }
    .cta-container { grid-template-columns: 1fr; padding: 40px; }
    .footer-container { grid-template-columns: 1fr; }
    .nav-links, .nav-actions { display: none; }
}

@media (max-width: 576px) {
    .clients-grid { grid-template-columns: 1fr; }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.6s; }

.clients-grid .client-card:nth-child(1) { transition-delay: 0.1s; }
.clients-grid .client-card:nth-child(2) { transition-delay: 0.2s; }
.clients-grid .client-card:nth-child(3) { transition-delay: 0.3s; }
.clients-grid .client-card:nth-child(4) { transition-delay: 0.4s; }

/* NAV LOGO (PURE CSS) */
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-hex { width: 44px; height: 38px; background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan)); clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 20px; color: white; }
.nav-logo-text { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 3px; color: white; }

/* HERO BACKGROUND & ANIMATED HEX GRID */
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(27, 108, 168, 0.12) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(0, 240, 255, 0.06) 0%, transparent 50%); pointer-events: none; z-index: -2; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; z-index: -2; }
.hex-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; transform: perspective(800px) rotateY(-15deg) rotateX(5deg); width: 100%; max-width: 580px; }
.hex-cell { aspect-ratio: 1; background: rgba(27, 108, 168, 0.08); border: 1px solid rgba(0, 240, 255, 0.12); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: rgba(0, 240, 255, 0.3); transition: all 0.3s; animation: hexflicker var(--d, 4s) var(--delay, 0s) infinite; }
@keyframes hexflicker { 0%, 90%, 100% { background: rgba(27, 108, 168, 0.08); border-color: rgba(0, 240, 255, 0.12); color: rgba(0, 240, 255, 0.3); } 92%, 98% { background: rgba(27, 108, 168, 0.25); border-color: rgba(0, 240, 255, 0.5); color: rgba(0, 240, 255, 0.8); } }

/* TICKER */
.ticker { background: rgba(27, 108, 168, 0.08); border-top: 1px solid rgba(0, 240, 255, 0.1); border-bottom: 1px solid rgba(0, 240, 255, 0.1); padding: 14px 0; overflow: hidden; width: 100%; }
.ticker-inner { display: flex; gap: 80px; animation: ticker 30s linear infinite; white-space: nowrap; width: max-content; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-size: 13px; color: var(--text-secondary); letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 12px; font-weight: 600; }
.ticker-dot { width: 6px; height: 6px; background: var(--accent-cyan); border-radius: 50%; box-shadow: 0 0 8px var(--accent-cyan-glow); }

/* WHY HANVIRA */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 8px; transition: border-color 0.3s; }
.why-point:hover { border-color: var(--accent-cyan); }
.why-num { font-family: 'Rajdhani', sans-serif; font-size: 32px; font-weight: 700; color: var(--accent-blue); opacity: 0.6; line-height: 1; min-width: 40px; }
.why-text h4 { font-size: 18px; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.why-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.shield-box { background: rgba(13, 27, 42, 0.8); border: 1px solid var(--glass-border); border-radius: 12px; padding: 40px; text-align: center; }
.shield-icon { font-size: 80px; display: block; margin-bottom: 24px; filter: drop-shadow(0 0 20px var(--accent-cyan-glow)); }
.shield-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.shield-stat { background: rgba(27, 108, 168, 0.08); border: 1px solid rgba(0, 240, 255, 0.12); border-radius: 8px; padding: 16px; text-align: center; }
.shield-stat-num { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; color: var(--accent-cyan); }
.shield-stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 60px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent); z-index: 0; }
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle { width: 64px; height: 64px; background: var(--bg-dark); border: 1px solid rgba(0, 240, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 700; color: var(--accent-cyan); box-shadow: 0 0 15px rgba(0, 240, 255, 0.1); }
.step-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 60px; }
.pricing-card { background: var(--bg-card); padding: 40px; position: relative; border-radius: 12px; border: 1px solid var(--glass-border); display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--accent-cyan); background: linear-gradient(180deg, rgba(27, 108, 168, 0.2), rgba(13, 27, 42, 0.6)); box-shadow: 0 0 30px rgba(0, 240, 255, 0.1); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan)); color: var(--bg-dark); padding: 4px 20px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 4px; }
.pricing-name { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; color: var(--text-primary); }
.pricing-price { font-family: 'Rajdhani', sans-serif; font-size: 48px; font-weight: 700; color: var(--accent-cyan); line-height: 1; }
.pricing-period { font-size: 14px; color: var(--text-secondary); }
.pricing-desc { font-size: 14px; color: var(--text-secondary); margin: 16px 0 24px; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; padding: 0; flex-grow: 1; }
.pricing-features li { font-size: 14px; color: var(--text-primary); display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--accent-cyan); font-weight: 700; min-width: 16px; }

.btn-pricing { display: inline-block; padding: 14px 24px; border-radius: 6px; font-weight: 600; text-align: center; text-decoration: none; transition: all 0.3s; margin-top: auto; border: 1px solid var(--glass-border); color: var(--text-primary); background: transparent; cursor: pointer; }
.btn-pricing:hover { border-color: var(--accent-cyan); box-shadow: 0 0 15px rgba(0, 240, 255, 0.1); }
.btn-pricing.featured { background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan)); color: var(--bg-dark); border: none; }
.btn-pricing.featured:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3); border-color: transparent; }

/* FOUNDER */
.founder-section { background: rgba(13, 27, 42, 0.3); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 80px 0; }
.founder-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 100px; align-items: center; }
.founder-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 12px; padding: 48px 40px; text-align: center; }
.founder-avatar { width: 100px; height: 100px; background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan)); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-size: 40px; font-weight: 700; color: var(--bg-dark); }
.founder-avatar-img { width: 180px; height: 180px; border-radius: 50%; margin: 0 auto 24px; display: block; object-fit: cover; border: 3px solid var(--accent-cyan); box-shadow: 0 0 15px rgba(0, 240, 255, 0.15); }
.founder-name { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; letter-spacing: 1px; color: var(--text-primary); }
.founder-role { font-size: 14px; color: var(--accent-cyan); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px; }
.tag { font-size: 12px; padding: 6px 14px; background: rgba(27, 108, 168, 0.2); border: 1px solid rgba(0, 240, 255, 0.2); color: var(--accent-cyan); border-radius: 4px; letter-spacing: 0.5px; }
.founder-content h3 { font-family: 'Rajdhani', sans-serif; font-size: 36px; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); line-height: 1.2; }
.founder-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.founder-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.cred-item { background: rgba(27, 108, 168, 0.08); border: 1px solid rgba(0, 240, 255, 0.12); border-radius: 8px; padding: 20px; }
.cred-title { font-size: 15px; font-weight: 600; color: var(--accent-cyan); margin-bottom: 6px; }
.cred-sub { font-size: 13px; color: var(--text-secondary); }

@media (max-width: 900px) {
    .why-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
}
