:root {
    --bg-darker: #0c101a;
    --bg-dark-alt: #161b27;
    --bg-light: #ffffff;
    --bg-card-light: #ffffff;
    --bg-card-dark: #121825;
    --border-color-dark: #2a3143;
    --border-color-light: #e2e8f0;
    --border-color: #2a3143;
    --text-light: #ffffff;
    --text-dark: #0f172a;
    --text-muted-light: #94a3b8;
    --text-muted-dark: #475569;
    --accent: #00D26A;
    --accent-glow: rgba(0, 210, 106, 0.25);
    --font-main: 'Inter', sans-serif;
    --green-gradient: linear-gradient(135deg, #02592d 0%, #08934f 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Base Sections */
.dark-section {
    background-color: var(--bg-darker);
    color: var(--text-light);
}

.dark-alt-section {
    background-color: var(--bg-dark-alt);
    color: var(--text-light);
}

.light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.gradient-section {
    background: var(--green-gradient);
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.text-accent {
    color: var(--accent);
}

.opacity-30 {
    opacity: 0.3;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 28px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-pill {
    border-radius: 9999px;
}

.btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-white {
    background-color: var(--bg-light);
    color: #0f172a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
}

.logo-dot {
    color: var(--accent);
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 16px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    opacity: 0.8;
}

.nav a:hover {
    color: var(--accent);
    opacity: 1;
}

/* Titles & Typos */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 1.15rem;
    margin-top: 1rem;
    color: var(--text-muted-dark);
}

.dark-alt-section .section-desc {
    color: var(--text-muted-light);
}

/* Tags */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.dot-green {
    font-size: 1.2rem;
    line-height: 0;
}

.tag-text {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 10%;
    right: 50%;
    transform: translateX(50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 210, 106, 0.1) 0%, rgba(12, 16, 26, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.badges {
    display: inline-flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

.icon-sm {
    width: 16px;
    height: 16px;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--bg-card-light);
    border: 1px solid var(--border-color-light);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 210, 106, 0.3);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 210, 106, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-circle svg {
    width: 20px;
    height: 20px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
}

/* Testimonials Settings */
.testimonials-section h2 {
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-color-dark);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    position: relative;
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
}

.quote-text {
    font-style: italic;
    font-size: 1.05rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--accent);
    margin: 0;
}

/* Process Section */
.process-section h2 {
    font-size: 2.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-darker);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    transform: translate(20%, -20%);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
}

/* CTA gradient */
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.15rem;
    opacity: 0.9;
}

.footer-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 2rem 0;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-p {
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 900px) {
    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    header .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}