:root {
    --bg-primary: #16171B;
    --bg-secondary: #1E2026;
    --accent-green: #22C55E;
    --accent-amber: #F59E0B;
    --text-primary: #F4F4F5;
    --text-secondary: #71717A;
    --text-tertiary: #52525B;
    --text-muted: #3F3F46;
    --border-color: #2A2B30;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-space {
    font-family: 'Space Grotesk', sans-serif;
}

.font-mono {
    font-family: 'Roboto Mono', monospace;
}

/* Header */
.header {
    background-color: var(--bg-primary);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: inline-block;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--text-primary);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(244, 244, 245, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-primary-custom {
    background-color: var(--accent-green);
    color: var(--bg-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: none;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #1ea34c;
    color: var(--bg-primary);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    min-height: 700px;
}

.badge-custom {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.688rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-custom i {
    color: var(--accent-green);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 2rem 0;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background-color: var(--accent-green);
    color: var(--bg-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background-color: #1ea34c;
    color: var(--bg-primary);
    text-decoration: none;
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    text-decoration: none;
}

.trust-label {
    color: var(--text-tertiary);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.688rem;
    font-weight: 500;
}

.trust-item {
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    object-fit: cover;
    background-color: var(--bg-secondary);
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 5rem 0;
}

.stat-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-value.accent {
    color: var(--accent-green);
}

.stat-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.688rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Services Section */
.services-section {
    padding: 6.25rem 0;
}

.section-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.688rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3.75rem;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.service-icon.green {
    background-color: var(--accent-green);
}

.service-icon.amber {
    background-color: var(--accent-amber);
}

.service-icon i {
    color: var(--bg-primary);
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.service-description {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    background-color: var(--bg-secondary);
    padding: 6.25rem 0;
}

.product-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--bg-secondary);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Process Section */
.process-section {
    background-color: var(--bg-primary);
    padding: 6.25rem 0;
}

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

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin: 0 auto 1.25rem;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-number.active {
    background-color: var(--accent-green);
    color: var(--bg-primary);
}

.step-number.inactive {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-secondary);
    padding: 6.25rem 0;
}

.testimonial-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 1rem;
}

.testimonial-avatar.green {
    background-color: var(--accent-green);
    color: var(--bg-primary);
}

.testimonial-avatar.amber {
    background-color: var(--accent-amber);
    color: var(--bg-primary);
}

.testimonial-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: 6.25rem 0;
}

.cta-box {
    background-color: var(--accent-green);
    border-radius: 4px;
    padding: 5rem 6.25rem;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 2rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--bg-primary);
    margin-bottom: 2rem;
}

.btn-cta-primary {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.btn-cta-primary:hover {
    background-color: #1e2026;
    color: var(--text-primary);
    text-decoration: none;
}

.btn-cta-secondary {
    background-color: transparent;
    color: var(--bg-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3.75rem 0;
}

.footer-logo {
    margin-bottom: 1rem;
}

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

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-title {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.688rem;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    margin-top: 2.5rem;
}

.copyright {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.688rem;
    color: var(--text-tertiary);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .services-section,
    .products-section,
    .process-section,
    .testimonials-section,
    .cta-section {
        padding: 4rem 0;
    }

    .stats-section {
        padding: 3rem 0;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 1rem 0;
    }

    .logo-img {
        height: 32px;
    }

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

    .hero-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
        margin: 1.5rem 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .hero-image {
        min-height: 250px;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .service-title,
    .product-title {
        font-size: 1.125rem;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 0.875rem;
        padding: 0.875rem 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .btn-primary-custom {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    .badge-custom {
        font-size: 0.625rem;
        padding: 0.375rem 0.75rem;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-item {
        text-align: center;
        padding: 0.25rem 0;
    }

    .footer-tagline {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.375rem;
    }

    .cta-title {
        font-size: 1.375rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.625rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-icon i {
        width: 24px;
        height: 24px;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .testimonial-name {
        font-size: 0.875rem;
    }

    .testimonial-role {
        font-size: 0.688rem;
    }
}
