/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a26;
    --border: #1e1e2e;
    --text: #e4e4ef;
    --text-muted: #8888a0;
    --primary: #00C853;
    --primary-light: #00E676;
    --green: #00C853;
    --orange: #FDCB6E;
    --red: #fd7979;
    --gradient: linear-gradient(135deg, #00C853, #00E676);
    --gradient-text: linear-gradient(135deg, #00E676, #69F0AE);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border-radius: 0 0 8px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== LOGO IMAGE ========== */
.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

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

.coming-soon-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(253, 203, 110, 0.15);
    border: 1px solid rgba(253, 203, 110, 0.3);
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange);
    vertical-align: middle;
    margin-left: 8px;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-dropdown { position: relative; }

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-item:hover { background: rgba(255,255,255,0.05); }

.dropdown-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 169, 53, 0.15);
    border-radius: 8px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.dropdown-item div:last-child { display: flex; flex-direction: column; gap: 2px; }
.dropdown-item strong { font-size: 0.9rem; font-weight: 600; }
.dropdown-item span { font-size: 0.8rem; color: var(--text-muted); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; padding: 8px 0; }

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #00A844;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--text-muted);
    background: rgba(255,255,255,0.03);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border-radius: 8px;
}

.btn-ghost:hover { color: var(--text); }

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 0.95rem; }

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: 50%;
    transform: translateX(-70%);
    opacity: 0.15;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--green);
    top: 0;
    left: 50%;
    transform: translateX(20%);
    opacity: 0.1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(59, 169, 53, 0.12);
    border: 1px solid rgba(59, 169, 53, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    max-width: 640px;
    margin: 0 auto 36px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

/* ========== HERO VISUAL (Dashboard Mockup) ========== */
.hero-visual { max-width: 960px; margin: 0 auto; }

.browser-frame {
    background: #0c0f0c;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03);
}

.browser-bar {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px; border-bottom: 1px solid var(--border); background: #0a0d0a;
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:last-child { background: #28c840; }

.browser-url {
    display: flex; align-items: center; gap: 6px;
    padding: 5px 14px; background: rgba(255,255,255,0.04); border-radius: 6px;
    font-size: 0.72rem; color: #666; font-family: 'JetBrains Mono', monospace;
    flex: 1; max-width: 300px;
}

.dashboard-mock { display: flex; height: 420px; }

.dash-sidebar {
    width: 180px; background: #0a0d0a; border-right: 1px solid var(--border);
    padding: 16px 12px; display: flex; flex-direction: column; flex-shrink: 0;
}

.dash-logo-area { padding: 0 4px 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.dash-nav-items { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }

.dash-nav-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px; border-radius: 6px;
    font-size: 0.72rem; font-weight: 500; color: #666; cursor: default;
}

.dash-nav-item.active { background: rgba(0,200,83,0.1); color: var(--primary-light); }

.dash-layers-title {
    font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: #555; padding: 0 10px; margin-bottom: 10px;
}

.dash-layer-toggles { display: flex; flex-direction: column; gap: 6px; padding: 0 4px; }

.dash-layer-toggle {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.68rem; color: #555; padding: 4px 6px; border-radius: 4px;
}

.dash-layer-toggle.on { color: #999; }

.toggle-dot { width: 8px; height: 8px; border-radius: 50%; }
.green-dot { background: #00C853; }
.blue-dot { background: #4A9EFF; }
.orange-dot { background: #FDCB6E; }
.pink-dot { background: #fd7979; }

.dash-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }

.dash-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 16px; border-bottom: 1px solid var(--border); background: #0c0f0c;
}

.dash-search {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 12px; background: rgba(255,255,255,0.04);
    border: 1px solid var(--border); border-radius: 6px;
    font-size: 0.72rem; color: #555; min-width: 200px;
}

.dash-toolbar-actions { display: flex; gap: 6px; }

.toolbar-btn {
    width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); border-radius: 6px; cursor: default;
}

.dash-map {
    flex: 1; position: relative;
    background: linear-gradient(180deg, #0a120a 0%, #0d150d 100%); overflow: hidden;
}

.map-svg { width: 100%; height: 100%; }
.pin-group { animation: float 3s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.map-info-card {
    position: absolute; top: 16px; right: 16px; width: 220px;
    background: rgba(12,15,12,0.94); backdrop-filter: blur(16px);
    border: 1px solid var(--border); border-radius: 12px; padding: 16px;
}

.info-card-header {
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 0.78rem;
}

.info-card-header .dot { width: 8px; height: 8px; }

.info-card-score { display: flex; gap: 14px; margin-bottom: 14px; align-items: center; }

.score-circle { position: relative; width: 52px; height: 52px; flex-shrink: 0; }

.score-circle span {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800; color: #00C853;
}

.score-details { flex: 1; display: flex; flex-direction: column; gap: 6px; }

.score-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.score-row span { font-size: 0.6rem; color: #777; white-space: nowrap; }

.mini-bar { flex: 1; height: 3px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.mini-bar div { height: 100%; background: var(--gradient); border-radius: 3px; }

.info-card-stats { display: flex; gap: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
.mini-stat { flex: 1; text-align: center; }
.mini-stat-val { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); }
.mini-stat-label { display: block; font-size: 0.55rem; color: #666; margin-top: 2px; }

.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot.green { background: var(--green); }

.map-ai-chip {
    position: absolute; bottom: 12px; left: 12px;
    display: flex; align-items: center; gap: 8px;
    padding: 7px 14px; background: rgba(12,15,12,0.92); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 100px;
    font-size: 0.68rem; color: var(--primary-light); font-family: 'JetBrains Mono', monospace;
}

.ai-typing {
    background: linear-gradient(90deg, var(--primary-light), #7BE077, var(--primary-light));
    background-size: 200% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.map-controls { position: absolute; bottom: 12px; right: 12px; display: flex; flex-direction: column; gap: 2px; }

.map-controls button {
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    background: rgba(12,15,12,0.9); border: 1px solid var(--border);
    color: #888; font-size: 0.9rem; cursor: default;
}

.map-controls button:first-child { border-radius: 6px 6px 0 0; }
.map-controls button:last-child { border-radius: 0 0 6px 6px; }

/* ========== SOCIAL PROOF ========== */
.social-proof {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.client-logo {
    display: flex;
    align-items: center;
    white-space: nowrap;
    opacity: 0.85;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
    max-width: 140px;
}

.text-logo {
    filter: none;
    font-weight: 700;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.01em;
}

.text-logo:hover {
    color: rgba(255,255,255,0.95);
}

.hello-sugar-logo {
    font-style: italic;
    font-size: 1.15rem;
}

.gopher-logo {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cleanest-logo {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 169, 53, 0.1);
    border: 1px solid rgba(59, 169, 53, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-header p {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ========== FEATURES ========== */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(59, 169, 53, 0.3);
    background: var(--bg-card-hover);
}

.feature-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 169, 53, 0.12);
    border-radius: 12px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.feature-icon.purple { background: rgba(59, 169, 53, 0.12); color: var(--primary-light); }
.feature-icon.green { background: rgba(0, 184, 148, 0.12); color: var(--green); }
.feature-icon.orange { background: rgba(253, 203, 110, 0.12); color: var(--orange); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.data-layers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
}

.layer {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: default;
}

.layer span { position: relative; z-index: 1; }

.layer-1 { background: rgba(59, 169, 53, 0.12); border: 1px solid rgba(59, 169, 53, 0.2); color: var(--primary-light); }
.layer-2 { background: rgba(0, 184, 148, 0.12); border: 1px solid rgba(0, 184, 148, 0.2); color: var(--green); }
.layer-3 { background: rgba(253, 203, 110, 0.12); border: 1px solid rgba(253, 203, 110, 0.2); color: var(--orange); }
.layer-4 { background: rgba(253, 121, 121, 0.12); border: 1px solid rgba(253, 121, 121, 0.2); color: var(--red); }

.layer:hover { transform: translateX(8px); }

/* ========== PRODUCTS ========== */
.products {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    border-color: rgba(59, 169, 53, 0.3);
}

.product-card.lite:hover {
    border-color: rgba(0, 184, 148, 0.3);
}

.product-badge {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    background: rgba(59, 169, 53, 0.15);
    color: var(--primary-light);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.lite-badge {
    background: rgba(0, 184, 148, 0.15);
    color: var(--green);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-card > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-card .btn-primary,
.product-card .btn-outline {
    width: 100%;
}

/* ========== INDUSTRIES ========== */
.industries {
    padding: 100px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    border-color: rgba(59, 169, 53, 0.25);
    transform: translateY(-4px);
}

.industry-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 169, 53, 0.1);
    border-radius: 14px;
    color: var(--primary-light);
    margin: 0 auto 20px;
}

.industry-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== STATS ========== */
.stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(59, 169, 53, 0.25);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== CTA ========== */
.cta-section {
    padding: 80px 0 100px;
}

.cta-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-bg .glow-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: 20%;
    opacity: 0.15;
}

.cta-bg .glow-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: 20%;
    opacity: 0.1;
}

.cta-card h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    max-width: 520px;
    margin: 0 auto 32px;
    color: var(--text-muted);
    font-size: 1.05rem;
    position: relative;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a { color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--text); }

/* ========== ANIMATIONS ========== */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== VIDEO MODAL ========== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.open { display: flex; }

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.video-modal-content video {
    width: 100%;
    display: block;
    border-radius: 16px;
    background: #000;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.video-close:hover { opacity: 1; }

/* ========== BTN SECONDARY ========== */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-large { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }

    .products-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; padding: 32px 24px; }

    .dashboard-mock { height: 300px; }
    .dash-sidebar { display: none; }
    .map-info-card { width: 160px; padding: 10px; }
    .info-card-stats { display: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
