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

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --accent: #00ff88;
    --accent-dim: #00ff8833;
    --accent-secondary: #ff006e;
    --text: #e0e0e0;
    --text-dim: #888;
    --text-muted: #555;
    --border: #222;
    --gradient-glow: linear-gradient(135deg, #00ff88 0%, #00b8ff 100%);
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.highlight {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    color: var(--accent);
    font-weight: 900;
    margin-right: 0.5rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, var(--accent-dim) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        var(--bg-dark);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

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

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #00ffaa;
    box-shadow: 0 0 30px var(--accent-dim);
    transform: translateY(-2px);
}

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

.cta-button.secondary:hover {
    background: var(--accent-dim);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* AI Providers Floating Ribbon */
.ai-ribbon {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    z-index: 99;
    overflow: hidden;
}

.ribbon-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

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

.ribbon-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    transition: all 0.3s;
    min-width: 80px;
}

.ribbon-logo:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.ribbon-logo svg {
    width: 36px;
    height: 36px;
}

.ribbon-logo svg[viewBox="0 0 127 127"] {
    width: 32px;
    height: 32px;
}

.ribbon-logo span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent);
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

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

/* Why Section */
.why {
    padding: 6rem 2rem;
    background: var(--bg-card);
    position: relative;
}

.glow-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: var(--gradient-glow);
    box-shadow: 0 0 20px var(--accent);
}

.why h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.why-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.big-text {
    font-size: 1.5rem;
    color: var(--text);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
}

.why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

.why-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent);
}

.why-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

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

/* Team / Leadership */
.team {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.team h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.team-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
    margin-bottom: 1rem;
}

.profile-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.profile-title {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
}

.team-text {
    flex: 1;
    min-width: 300px;
}

.team-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.team-text p {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.team-text strong {
    color: var(--accent);
}

.team-credentials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.credential {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.cred-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
}

.cred-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .team-content {
        flex-direction: column;
    }
    
    .team-credentials {
        justify-content: center;
    }
}

/* Case Studies */
.case-studies {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-studies h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.case-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.case-metric {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.case-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

/* Pricing */
.pricing {
    padding: 6rem 2rem;
    background: var(--bg-card);
    text-align: center;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--accent);
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

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

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.pricing-card li::before {
    content: '▸';
    color: var(--accent);
    margin-right: 0.5rem;
}

.pricing-card .cta-button {
    width: 100%;
    text-align: center;
}

/* Contact */
.contact {
    padding: 6rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    margin-bottom: 4rem;
}

.footer-content .logo {
    margin-bottom: 0.5rem;
}

footer p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .ribbon-track {
        gap: 2rem;
    }
    
    .ribbon-logo {
        min-width: 60px;
    }
    
    .ribbon-logo svg {
        width: 24px;
        height: 24px;
    }
    
    .ribbon-logo span {
        font-size: 0.6rem;
    }
}