/* 
  Brand Colors:
  Background: #0C0E13
  Accent Green: #C6F13A
  White: #FFFFFF
  Soft Grey: #A6A6A6
*/

:root {
    --bg-color: #0C0E13;
    --accent-color: #C6F13A;
    --text-white: #FFFFFF;
    --text-grey: #A6A6A6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(198, 241, 58, 0.05) 0%, rgba(12, 14, 19, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(198, 241, 58, 0.03) 0%, rgba(12, 14, 19, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p {
    color: var(--text-grey);
    font-size: 1.125rem;
    max-width: 600px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 241, 58, 0.3);
    box-shadow: 0 10px 40px -10px rgba(198, 241, 58, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: #000000;
}

.btn-primary:hover {
    background: #d4f566;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(198, 241, 58, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(255,255,255,0.05);
}

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

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(12, 14, 19, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-buttons.center {
    justify-content: center;
}

/* Hero Visual (Placeholder for 3D Dashboard) */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.glass-dashboard {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.dash-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.dash-item.green {
    border-color: rgba(198, 241, 58, 0.3);
    color: var(--accent-color);
}

@keyframes float {
    0% { transform: translateY(0px) rotateY(-15deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(-15deg) rotateX(5deg); }
    100% { transform: translateY(0px) rotateY(-15deg) rotateX(5deg); }
}

/* Trust Section */
.trust {
    padding: 40px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.trust-text {
    margin: 0 auto 2rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-grey);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Why Choose */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.timeline-card {
    padding: 2rem;
    border-left: 2px solid var(--glass-border);
    position: relative;
    transition: var(--transition);
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 2rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.timeline-card:hover {
    background: var(--glass-bg);
    border-radius: 0 24px 24px 0;
}

/* Process */
.horizontal-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(198, 241, 58, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    border: 1px solid rgba(198, 241, 58, 0.3);
}

.step-text {
    font-weight: 600;
}

.arrow {
    color: var(--text-grey);
    font-size: 1.5rem;
}

/* Results */
.results-dashboard {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 0;
    display: inline-block;
}

.stat span {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.stat p {
    font-size: 1.125rem;
    color: var(--text-white);
    margin-top: 0.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: rgba(198, 241, 58, 0.2);
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: serif;
    line-height: 1;
}

.stars {
    color: var(--accent-color);
    margin-top: 1.5rem;
    letter-spacing: 2px;
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--accent-color);
}

.accordion-header span {
    font-size: 1.5rem;
    font-weight: 300;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-grey);
    padding-top: 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* arbitrary large enough height */
    padding-top: 1rem;
}

.accordion-item.active .accordion-header span {
    transform: rotate(45deg);
}

/* Final CTA */
.cta-box {
    text-align: center;
    padding: 5rem 2rem;
}

.cta-box.glow {
    position: relative;
}

.cta-box.glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(198, 241, 58, 0.1) 0%, rgba(12, 14, 19, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    margin: 0 auto 2.5rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

/* ============================
   LEAD CAPTURE FORM
============================*/
.cta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-header h2 { margin-bottom: 0.75rem; }
.cta-header p { margin: 0 auto; }

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 780px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-grey);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.875rem 1.25rem;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-white);
    outline: none;
    transition: var(--transition);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23A6A6A6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 14px;
    cursor: pointer;
}

.form-group select option {
    background: #1a1d25;
    color: var(--text-white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(166, 166, 166, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(198, 241, 58, 0.5);
    background: rgba(198, 241, 58, 0.03);
    box-shadow: 0 0 0 3px rgba(198, 241, 58, 0.08);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: rgba(255, 80, 80, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.08);
}

.form-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.btn-full {
    flex: 1;
    width: 100%;
    font-size: 1.1rem;
}

.form-msg {
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-weight: 500;
    font-size: 1rem;
}

.form-msg.success {
    background: rgba(198, 241, 58, 0.08);
    border: 1px solid rgba(198, 241, 58, 0.3);
    color: var(--accent-color);
}

.form-msg.error {
    background: rgba(255, 80, 80, 0.08);
    border: 1px solid rgba(255, 80, 80, 0.3);
    color: #ff6b6b;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-actions {
        flex-direction: column;
    }
}


.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a, .footer-social a {
    color: var(--text-grey);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--text-white);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.875rem;
    margin-top: 2rem;
}

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

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.in-view {
    opacity: 1;
    transform: translateY(0) scale(1) translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .horizontal-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .nav-links {
        display: none; /* simple mobile menu fallback */
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .stat h3 {
        font-size: 3rem;
    }
}
