/* CSS Variables & Theme Definition */
:root {
    /* Colors based on reference image */
    --bg-dark: #050a0f;
    --bg-darker: #020608;
    --bg-card: rgba(14, 25, 34, 0.6);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-active: rgba(0, 240, 181, 0.3);
    
    --primary-neon: #00f0b5; /* Teal / Neon Green */
    --primary-neon-dim: rgba(0, 240, 181, 0.15);
    --text-main: #ffffff;
    --text-muted: #8b9eb5;
    
    --glow-shadow: 0 0 20px rgba(0, 240, 181, 0.4);
    --glass-blur: blur(16px);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #1a2f42;
    border-radius: 4px;
}

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

/* Typography Utilities */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
}

.btn.large {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary-neon);
    color: #002b20;
    box-shadow: 0 0 15px rgba(0, 240, 181, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 240, 181, 0.6);
    transform: translateY(-2px);
    background: #19ffc6;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid transparent;
}

.btn-secondary:hover {
    color: var(--primary-neon);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-light);
    backdrop-filter: var(--glass-blur);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-neon);
    color: #002b20;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-weight: 800;
}

.logo-img {
    height: 175px;
    width: auto;
    display: block;
    margin-top: -60px;
    margin-bottom: -60px;
    margin-left: -15px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Background Glows */
.glow-bg {
    position: absolute;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, var(--primary-neon-dim) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.top-glow {
    top: -20%;
    left: 20%;
    opacity: 0.6;
}

.bottom-glow {
    bottom: -20%;
    right: -10%;
    opacity: 0.5;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 24px 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 240, 181, 0.08);
    border: 1px solid rgba(0, 240, 181, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary-neon);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-neon);
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 30%, #a2b4c7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Hero UI Mockup / Graphic Section */
.hero-graphic {
    max-width: 1000px;
    width: 100%;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.curve-container {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 150px;
    overflow: hidden;
    pointer-events: none;
}

.curve {
    position: absolute;
    width: 100%;
    height: 800px;
    border-radius: 50%;
    border: 2px solid rgba(0, 240, 181, 0.4);
    box-shadow: 0 -15px 40px rgba(0, 240, 181, 0.2), inset 0 15px 40px rgba(0, 240, 181, 0.1);
}

.mockup-window {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: var(--glass-blur);
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.vsl-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 240, 181, 0.15);
    background: #000;
}

/* Base Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    backdrop-filter: var(--glass-blur);
    padding: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
    border-color: var(--border-active);
    transform: translateY(-5px);
    background: rgba(20, 32, 43, 0.7);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 24px;
}

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

/* Pain Points */
.pain-points {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-flex;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

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

/* Solutions Section */
.solutions {
    padding: 100px 0;
}

.solutions .badge {
    margin: 0 auto 20px;
    display: table;
}

.solutions-grid {
    grid-template-columns: repeat(3, 1fr);
}

.highlight-card {
    grid-row: span 2;
    background: linear-gradient(145deg, rgba(14, 25, 34, 0.8) 0%, rgba(2, 35, 30, 0.6) 100%);
    border-color: rgba(0, 240, 181, 0.2);
}

.highlight-card .card-icon-container {
    width: 64px;
    height: 64px;
    background: var(--primary-neon-dim);
    border: 1px solid rgba(0, 240, 181, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-neon);
    margin-right: 12px;
    font-weight: bold;
}

.stat {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-neon);
    font-weight: 600;
    background: var(--primary-neon-dim);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    padding: 100px 0 150px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
}

.step-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step p {
    color: #fff;
    margin: 0;
    font-weight: 500;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-container input,
.form-container textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-container input:focus,
.form-container textarea:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 0 2px var(--primary-neon-dim);
}

.submit-btn {
    width: 100%;
    padding: 16px;
}

.form-result {
    margin-top: 16px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: 8px;
    background: rgba(0,0,0,0.2);
}

.form-result.success {
    color: var(--primary-neon);
    border: 1px solid rgba(0, 240, 181, 0.3);
}

.form-result.error {
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.hidden {
    display: none !important;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
}

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

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}
