/* ===== CSS Custom Properties ===== */
:root {
    --bg-deep: #0B0D17;
    --accent-purple: #6C63FF;
    --accent-cyan: #00D4FF;
    --text-light: #F1F2F8;
    --text-muted: #4A4A6A;
    --card-bg: #12152A;
    --card-border: #1E2148;
    --gradient: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

/* ===== Gradient Text ===== */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Section Badge ===== */
.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

/* ===== Section Subtitle ===== */
.section-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-align: center;
}

/* ===== Fade-in Animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(108, 99, 255, 0.5);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-muted);
}

.btn-ghost:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    background: var(--gradient);
    color: #fff;
    border-radius: 6px;
}

.btn-sm:hover {
    color: #fff;
    box-shadow: 0 2px 15px rgba(108, 99, 255, 0.4);
}

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(11, 13, 23, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74, 74, 106, 0.2);
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo:hover {
    color: var(--text-light);
}

.logo-icon {
    color: var(--accent-purple);
    font-size: 1.1rem;
}

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

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--text-muted);
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 6px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(108, 99, 255, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74, 74, 106, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 74, 106, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

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

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 8px 20px;
    border-radius: 24px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* ===== Terminal (Agent Zero / OmniRoute style) ===== */
.hero-terminal {
    background: #0a0c14;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    max-width: 580px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(18, 21, 42, 0.8);
    border-bottom: 1px solid var(--card-border);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot:nth-child(1) { background: #ff5f57; }
.terminal-dot:nth-child(2) { background: #febc2e; }
.terminal-dot:nth-child(3) { background: #28c840; }

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.terminal-body {
    padding: 16px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}

.terminal-line {
    color: var(--text-light);
}

.terminal-prompt {
    color: var(--accent-purple);
    margin-right: 8px;
    font-weight: 600;
}

.terminal-output {
    color: var(--text-muted);
    padding-left: 20px;
}

.terminal-success {
    color: #28c840;
    margin-right: 8px;
}

.terminal-cursor .cursor {
    display: inline-block;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== Stats (OmniRoute style) ===== */
.stats {
    padding: 48px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.02), transparent);
}

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

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}
/* ===== Services ===== */
.services {
    padding: 120px 0;
}

.services h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

/* ===== Featured Service ===== */
.featured-service {
    grid-column: 1 / -1;
    margin-bottom: 24px;
}

.featured-service .card-tag {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--accent-cyan);
}

.featured-tagline {
    font-size: 1.1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 16px;
}

.featured-journey {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.journey-marker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-purple);
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
}

.journey-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.journey-arrow {
    color: var(--accent-cyan);
    font-size: 1.3rem;
    font-weight: 300;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(108, 99, 255, 0.1);
}

.card-icon-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-emoji {
    font-size: 1.8rem;
}

.card-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 3px 10px;
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-purple);
}

.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-purple);
}

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

/* ===== Tools Grid (OmniRoute provider style) ===== */
.tools {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 99, 255, 0.03), transparent);
}

.tools h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-align: center;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tool-chip {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
    cursor: default;
}

.tool-chip:hover {
    border-color: var(--accent-purple);
    background: rgba(108, 99, 255, 0.08);
    transform: translateY(-2px);
}

/* ===== Process ===== */
.process {
    padding: 120px 0;
}

.process h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
}

.step-connector {
    width: 60px;
    height: 3px;
    background: var(--gradient);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.step p {
    color: var(--text-muted);
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Why Us ===== */
.why-us {
    padding: 120px 0;
}

.why-us h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.08);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 99, 255, 0.03), transparent);
}

.testimonials h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--accent-cyan);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== FAQ (Mem0 accordion style) ===== */
.faq {
    padding: 120px 0;
}

.faq h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-purple);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
    padding: 64px 0 0;
    border-top: 1px solid var(--card-border);
    background: rgba(10, 12, 20, 0.5);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

.footer-newsletter-text {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.footer-form {
    display: flex;
    gap: 8px;
}

.footer-input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text-light);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-input:focus {
    border-color: var(--accent-purple);
}

.footer-input::placeholder {
    color: var(--text-muted);
}

.btn-subscribe {
    padding: 10px 18px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--card-border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-legal a:hover {
    color: var(--accent-cyan);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-deep);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--card-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services, .process, .why-us, .testimonials, .faq, .cta, .tools {
        padding: 80px 0;
    }

    .process-steps {
        gap: 32px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-terminal {
        font-size: 0.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ===== Contact Form ===== */
.contact {
    padding: 120px 0;
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    text-align: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: rgba(10, 12, 20, 0.8);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
}

.contact-detail h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--accent-purple);
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===== Careers CTA ===== */
.careers {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.05), transparent);
}

.careers-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.careers h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.careers p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.careers .btn {
    display: inline-block;
}

@media (max-width: 768px) {
    .careers {
        padding: 80px 0;
    }
    
    .careers p {
        font-size: 1rem;
    }
}

/* ===== Footer Sponsor Logo ===== */
.footer-sponsor {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
}

.footer-sponsor-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.footer-sponsor a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    height: 35px;
}

.footer-sponsor a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-sponsor-logo {
    height: 35px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer-sponsor {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .footer-sponsor a {
        height: 28px;
    }

    .footer-sponsor-logo {
        height: 28px;
    }
}