:root {
    --primary-color: #0070f3;
    --primary-glow: rgba(0, 112, 243, 0.4);
    --secondary-color: #00e5ff;
    --bg-dark: #0a0f1a;
    --bg-darker: #05080f;
    --text-main: #f0f4f8;
    --text-muted: #9ba3af;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Typography & Utilities */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--secondary-color);
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, var(--primary-color), #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--primary-glow);
    background: linear-gradient(90deg, #0056b3, var(--primary-color));
}

.btn-primary-small {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-small:hover {
    background: #0056b3;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn-primary-small) {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(0, 112, 243, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.hero-image-wrapper {
    position: relative;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: rotate(45deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Value Prop Section */
.value-prop {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

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

.value-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.value-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

.v-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.3s, border-color 0.3s;
}

.v-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.v-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.v-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.v-card p {
    color: var(--text-muted);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 0 30px rgba(0, 112, 243, 0.2);
    border-color: rgba(0, 112, 243, 0.5);
}

.service-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img-box img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-muted);
}

/* Contact CTA */
.contact-cta {
    padding: 100px 0;
    position: relative;
}

.glass-panel-dark {
    background: linear-gradient(135deg, rgba(0, 112, 243, 0.1), rgba(10, 15, 26, 0.8));
    border: 1px solid rgba(0, 112, 243, 0.3);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.glass-panel-dark h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.glass-panel-dark p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    padding: 20px 30px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(0, 112, 243, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-item .icon {
    font-size: 2rem;
}

.contact-info {
    text-align: left;
}

.contact-info .label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.contact-info .value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-darker);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--secondary-color);
}

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

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 40px;
    }
    .hero h1 { font-size: 2.8rem; }
    .hero-subtitle { max-width: 100%; margin: 0 auto 30px; }
    .hero-cta { align-items: center; }
    
    .value-cards { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .contact-methods { flex-direction: column; }
    .glass-panel-dark { padding: 40px 20px; }
    .hero h1 { font-size: 2.2rem; }
}
