:root {
    --primary-green: #00e785;
    --primary-hover: #00c974;
    --accent-blue: #4fc3ff;
    --accent-yellow: #ffe96e;
    --dark-bg: #1d1d1d;
    --text-main: #1d1d1d;
    --text-muted: #5e5e6e;
    --bg-light: #f9faff;
    --white: #ffffff;
    --border-color: #e6e6e6;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --font-main: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.highlight {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent-yellow);
    z-index: -1;
    opacity: 0.4;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary-green);
    color: #004d2a;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 8px 20px rgba(0, 231, 133, 0.3);
}

.btn-outline {
    border: 2px solid var(--border-color);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: var(--text-main);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo .dot {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(0, 231, 133, 0.1);
    color: #00a860;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    background: var(--white);
    padding: 10px;
    border: 1px solid var(--border-color);
}

.dashboard-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.location-1 {
    bottom: -30px;
    left: -30px;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 231, 133, 0.2);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-box {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Social Proof */
.social-proof {
    padding: 40px 0;
    text-align: center;
    background-color: var(--bg-light);
}

.social-proof p {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 20px;
}

.logo-strip {
    font-size: 1.2rem;
    font-weight: 700;
    color: #888;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

/* Features / Onboarding */
.features-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.checklist li {
    list-style: none;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.checklist li::before {
    content: '✓';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.sub-step {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.video-reqs {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.req-item {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 16px;
}

.status-badge.success {
    background: #e6fffa;
    color: #00a860;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1d1d1d 0%, #2c3e50 100%);
    color: var(--white);
}

.eligibility-wrapper {
    display: grid;
    place-items: center;
    text-align: center;
}

.eligibility-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.metric-label {
    font-weight: 500;
    font-size: 1.1rem;
}

.metric-card small {
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 16px 0;
}

.company-details {
    font-size: 0.9rem;
    color: var(--text-main);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-column h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.link-column a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.link-column a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-2-align-center {
        grid-template-columns: 1fr;
    }

    .order-2-mobile {
        order: 2;
    }
}

/* Common Section Styles */
.section-common {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: inline-block;
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-2-align-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Feature Boxes (AI) */
.feature-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.feature-badge {
    background: #e1f5fe;
    color: #0288d1;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.metrics-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.metric strong {
    font-size: 1.5rem;
    display: block;
    color: var(--primary-green);
}

/* Checklists & Content Side */
.content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.checklist-lg li {
    list-style: none;
    padding-left: 30px;
    position: relative;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.checklist-lg li::before {
    content: '✓';
    color: var(--white);
    background: var(--primary-green);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stats-row div strong {
    display: block;
    font-size: 1.8rem;
    color: var(--text-main);
}

.stats-row div {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
}

/* Visual Placeholders */
.visual-placeholder {
    width: 100%;
    height: 400px;
    background: #f0f2f5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bac0c7;
    font-weight: 700;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
}

/* Integrations Logos */
.integration-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

/* Metric Cards Simple */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card-simple {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.big-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-label {
    font-weight: 600;
    color: var(--text-main);
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: var(--primary-green);
    color: #004d2a;
    text-align: center;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Footer Expanded */
.footer {
    padding: 80px 0 0;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-green);
}

.legal-links {
    display: flex;
    gap: 20px;
}

/ *     S a a S     W i d g e t s     * /     
/* SaaS Widgets */
.mock-window {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.window-header {
    background: #f8f9fa;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

/* Mock Chat */
.mock-chat-body {
    padding: 20px;
    background: #efe7dd;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-bubble.received {
    align-self: flex-start;
    background: #fff;
    border-top-left-radius: 2px;
}

.chat-bubble.sent {
    align-self: flex-end;
    background: #dcf8c6;
    border-top-right-radius: 2px;
}

.chat-time {
    display: block;
    font-size: 0.7rem;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

/* Mock Kanban */
.mock-kanban-board {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f4f5f7;
    overflow-x: auto;
}

.kanban-col {
    flex: 1;
    min-width: 120px;
}

.kanban-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: #5e6c84;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.kanban-card {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.kanban-tag {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 8px;
}

.tag-high {
    background: #ffe2e2;
    color: #d63d3d;
}

.tag-med {
    background: #fff4d6;
    color: #b7860b;
}

/* Mock Graph */
.mock-graph-container {
    padding: 30px;
    background: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 250px;
    gap: 10px;
}

.graph-bar {
    width: 100%;
    background: #ecfdf5;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s ease;
}

.graph-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #999;
}

.graph-bar.active {
    background: var(--primary-green);
    box-shadow: 0 5px 15px rgba(0, 231, 133, 0.4);
}