@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --secondary: #3b82f6;
    --secondary-glow: rgba(59, 130, 246, 0.5);
    --accent: #f59e0b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --bg-main: #020617;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo img, .footer-logo img {
    height: 55px;
    width: auto;
    display: block;
}

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

/* Hamburger Menu Logic */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 3000;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-main);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.nav-cta {
    background: var(--secondary);
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px -5px var(--secondary-glow);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px var(--secondary-glow);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 10;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-bg-media {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.hero-bg-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-main) 0%, transparent 60%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 80px;
    mask-image: linear-gradient(to left, black 80%, transparent 100%);
}

/* Feature Grid */
.trust-bar {
    padding: 4rem 0;
}

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

.feature-card {
    padding: 3.5rem 3rem;
    transition: var(--transition);
}

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

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

.feature-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
}

/* Content Sections */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.content-block {
    margin-bottom: 10rem;
}

.prose {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.prose p {
    margin-bottom: 2rem;
}

.prose h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin: 3rem 0 1.5rem;
}

.prose ul {
    margin: 1.5rem 0 3rem;
}

.prose li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.prose li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 0.8rem;
}

.prose blockquote {
    border-left: 4px solid var(--secondary);
    padding: 2rem;
    background: var(--glass);
    border-radius: 0 20px 20px 0;
    font-style: italic;
    margin: 3rem 0;
    color: var(--text-main);
}

.prose strong {
    color: var(--text-main);
    font-weight: 700;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    gap: 0.8rem;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 10px 20px -5px var(--secondary-glow);
}

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

.btn:hover {
    transform: translateY(-3px);
}

/* FAQ Details */
details {
    margin-bottom: 1.2rem;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '\f0fe';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--secondary);
    transition: var(--transition);
}

details[open] summary::after {
    transform: rotate(45deg);
    color: var(--accent);
}

details p {
    margin-top: 1.5rem;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.sidebar-cta {
    background: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
    border: none;
    text-align: center;
}

/* Footer & Mobile */
footer {
    padding: 8rem 0 3rem;
    background: #020617;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.mobile-sticky-call {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 3000;
    display: none;
}

@media (max-width: 992px) {
    .hero-bg-media {
        display: none;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-main);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 2500;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-sticky-call {
        display: block;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
}
/* About Page Specifics */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 6rem 0;
}

.mission-card {
    padding: 3rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-card {
    text-align: center;
    padding: 2.5rem;
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--secondary);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px var(--secondary-glow);
}

/* Contact Page Specifics */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    padding: 3.5rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 0.3rem;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.contact-method p {
    color: var(--text-muted);
}

/* Global Footer CTA */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #020617 100%);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 8rem;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-banner p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

@media (max-width: 992px) {
    .contact-layout, .mission-grid {
        grid-template-columns: 1fr;
    }
}
