/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: var(--space-4) 0;
    transition: all var(--transition-base);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--white);
}

.nav-menu {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--muted-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--quilven-teal);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-signin {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--muted-text);
}

.nav-signin:hover {
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-left {
    max-width: 600px;
}

.hero-title {
    margin-bottom: var(--space-6);
}

.hero-subtitle {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Dashboard Preview */
.dashboard-preview {
    max-width: 560px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-dots span:nth-child(1) {
    background: #EF4444;
}

.dashboard-dots span:nth-child(2) {
    background: #F59E0B;
}

.dashboard-dots span:nth-child(3) {
    background: #10B981;
}

.dashboard-tab {
    font-size: var(--text-xs);
    color: var(--muted-text);
    font-weight: 500;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.metric-card {
    text-align: center;
}

.metric-value {
    font-family: var(--font-mono);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--teal-bright);
    margin-bottom: var(--space-2);
}

.metric-label {
    font-size: var(--text-xs);
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-change {
    font-size: var(--text-xs);
    margin-top: var(--space-1);
}

.metric-change.positive {
    color: #10B981;
}

.chart-container {
    margin-bottom: var(--space-4);
    color: #fff;
}

.chart-label {
    font-size: var(--text-xs);
    /* color: var(--muted-text); */
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revenue-chart {
    width: 100%;
    height: 120px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    color: #10B981;
    font-weight: 500;
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
    padding: var(--space-12) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.trust-label {
    text-align: center;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--dim-text);
    margin-bottom: var(--space-6);
    color: #fff;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
    color: #fff;
}

.trust-logo {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--dim-text);
    opacity: 0.5;
    transition: opacity var(--transition-base);
    color: #fff;
}

.trust-logo:hover {
    opacity: 1;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    line-height: 1.7;
}

/* ==================== SERVICE CARDS ==================== */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-card {
    position: relative;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: rgba(13, 148, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.service-title {
    margin-bottom: var(--space-3);
    color: var(--white);
}

.service-description {
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--quilven-teal);
    font-size: var(--text-sm);
    font-weight: 600;
}

/* ==================== RESULTS SECTION ==================== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.result-card {
    text-align: center;
    padding: var(--space-10) var(--space-6);
}

.result-value {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #2dd4bf;
    font-weight: 600;
    margin-bottom: var(--space-3);
    line-height: 1;
}

.result-label {
    font-size: var(--text-sm);
    color: var(--muted-text);
    line-height: 1.5;
}

/* ==================== HOW IT WORKS ==================== */
.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--space-8);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    font-family: var(--font-mono);
    font-size: var(--text-5xl);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-4);
}

.step-title {
    color: var(--white);
    margin-bottom: var(--space-3);
    font-size: var(--text-xl);
}

.step-description {
    line-height: 1.7;
}

.step-connector {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: var(--space-20) 0;
}

.cta-card {
    text-align: center;
    padding: var(--space-16) var(--space-12);
    position: relative;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--quilven-teal) 25%,
            var(--teal-bright) 50%,
            var(--quilven-teal) 75%,
            transparent);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-4);
}

.cta-text {
    font-size: var(--text-lg);
    max-width: 700px;
    margin: 0 auto var(--space-8);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */

.footer::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent);
    margin-bottom: 100px;
}

.footer {
    background: #0f1720;
    /* deep slate */
    padding: 120px 0 60px;
    margin-top: 160px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 120px;
    margin-bottom: 80px;
}

/* Brand */
.footer-logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    max-width: 340px;
    margin-bottom: 32px;
}

/* Badges – make subtle */
.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.6);
}

/* Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.footer-column h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
}

.footer-column a {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.footer-column a:hover {
    color: #2dd4bf;
    /* your teal */
    transform: translateX(4px);
}

/* Bottom row */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}