:root {
    --bg-dark: #020612;
    --bg-surface: #0a1526;
    --primary-blue: #003b73;
    --accent-teal: #00b4d8;
    --accent-teal-dark: #0077b6;
    --text-main: #f0f4f8;
    --text-muted: #a0aec0;
    --glass-bg: rgba(10, 21, 38, 0.4);
    --glass-border: rgba(0, 180, 216, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .logo-text, .footer-logo, .stat-value {
    font-family: 'Outfit', sans-serif;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 6rem 0;
}

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

.highlight {
    background: linear-gradient(135deg, #48cae4, var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 18, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(2, 6, 18, 0.9);
    padding: 0.8rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--accent-teal);
    background: linear-gradient(135deg, #48cae4, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
    line-height: 1.2;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.btn-nav {
    padding: 0.6rem 1.8rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid var(--accent-teal);
    border-radius: 30px;
    color: var(--accent-teal) !important;
}

.btn-nav:hover {
    background: var(--accent-teal) !important;
    color: var(--bg-dark) !important;
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.4);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, var(--bg-surface) 0%, var(--bg-dark) 80%);
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 12s infinite ease-in-out alternate;
}

.shape-1 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: var(--primary-blue);
    top: -20%;
    left: -10%;
}

.shape-2 {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: var(--accent-teal-dark);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 30vw;
    height: 30vw;
    max-width: 400px;
    max-height: 400px;
    background: var(--accent-teal);
    top: 30%;
    left: 50%;
    opacity: 0.2;
    animation-duration: 18s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.1); }
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.cta-button.primary {
    background: var(--accent-teal);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
    background: #48cae4;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}

/* Tagline Banner */
.tagline-banner {
    padding: 3rem 0;
    text-align: center;
    background: rgba(2, 6, 18, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tagline-banner h2 {
    font-size: 1.5rem;
    letter-spacing: 3px;
}

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

/* The Opportunity Section */
.opportunity-section .section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.text-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 216, 0.3);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

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

/* Services / Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 180, 216, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    color: var(--accent-teal);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background: var(--accent-teal);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

/* Market Gap */
.gap-panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.gap-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.gap-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.gap-content .highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-teal);
    margin-top: 1.5rem;
}

/* Partner With Us */
.partner-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-list {
    list-style: none;
    margin-top: 2rem;
}

.custom-list li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-muted);
}

.custom-list i {
    color: var(--accent-teal);
    margin-top: 5px;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
}

.contact-item i {
    color: var(--accent-teal);
    font-size: 1.5rem;
}

.contact-item a, .contact-item span {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-teal);
}

/* Footer */
footer {
    background-color: #010308;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

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

/* Responsive */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
