:root {
    --bg: #04050d;
    --bg2: #080b18;
    --surface: rgba(255, 255, 255, 0.035);
    --surface2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(99, 179, 237, 0.2);
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --violet: #8b5cf6;
    --teal: #14b8a6;
    --text: #f0f4ff;
    --text2: #8892aa;
    --text3: #4a5568;
    --glow-blue: rgba(59, 130, 246, 0.15);
    --glow-cyan: rgba(6, 182, 212, 0.12);
    --glow-violet: rgba(139, 92, 246, 0.12);
    --grad1: linear-gradient(135deg, #3b82f6, #06b6d4);
    --grad2: linear-gradient(135deg, #8b5cf6, #3b82f6);
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 4px;
}

/* ─── NAV ────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(4, 5, 13, 0.7);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
}

.nav-logo svg {
    width: 140px;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--grad1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: #fff;
}

.nav-logo span {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text2);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-ghost {
    padding: 9px 20px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
    border: 1px solid var(--border2);
    color: var(--text);
    background: transparent;
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font-body);
    text-decoration: none;
}

.btn-ghost:hover {
    background: var(--surface2);
    border-color: var(--cyan);
}

.btn-primary {
    padding: 9px 22px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    background: var(--grad1);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all .25s;
    font-family: var(--font-body);
    text-decoration: none;
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(59, 130, 246, 0.5);
}

/* ─── HERO ───────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 20px 80px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59, 130, 246, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: .6;
    }
    90% {
        opacity: .4;
    }
    100% {
        transform: translateY(-100px) translateX(var(--drift, 30px));
        opacity: 0;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 99px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.07);
    font-size: .75rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fade-up .8s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, .4);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(6, 182, 212, 0);
    }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin: 0 auto 24px;
    animation: fade-up .8s .1s ease both;
}

.hero-headline .grad {
    background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 40%, #a78bfa 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    color: var(--text2);
    font-weight: 400;
    max-width: 700px;
    margin: 0 0 44px 0;
    animation: fade-up .8s .2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-up .8s .3s ease both;
}

.btn-hero {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--grad1);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all .25s;
    font-family: var(--font-body);
    text-decoration: none;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 56px rgba(59, 130, 246, 0.55);
}

.btn-hero-ghost {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    background: var(--surface2);
    color: var(--text);
    border: 1px solid var(--border2);
    cursor: pointer;
    transition: all .25s;
    font-family: var(--font-body);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 64px;
    animation: fade-up .8s .45s ease both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: .8rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 2px;
}

/* ─── FADE UP ──────────────────────────────── */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── SECTIONS GENERICS ─────────────────────── */
section {
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 120px 0;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 99px;
    border: 1px solid rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.06);
    font-size: .72rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text2);
    max-width: 560px;
}

.section-title .accent {
    background: var(--grad1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── PROBLEM SECTION ───────────────────────── */
#problem {
    background: var(--bg2);
}

.problem-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(239, 68, 68, 0.06) 0%, transparent 60%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.problem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.5), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateY(-4px);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.problem-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.problem-desc {
    font-size: .875rem;
    color: var(--text2);
}

.problem-stat {
    margin-top: 14px;
    font-size: .8rem;
    font-weight: 700;
    color: #f87171;
}

/* ─── SOLUTION ──────────────────────────────── */
#solution {
    background: var(--bg);
}

.solution-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 20% 50%, rgba(59, 130, 246, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(139, 92, 246, 0.07) 0%, transparent 60%);
}

.solution-platforms {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    margin-top: 64px;
    align-items: center;
}

.platform-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, var(--glow-color, rgba(59, 130, 246, .1)) 0%, transparent 60%);
    pointer-events: none;
}

.platform-card.manager {
    --glow-color: rgba(59, 130, 246, 0.1);
}

.platform-card.b2c {
    --glow-color: rgba(139, 92, 246, 0.1);
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.platform-badge.manager {
    background: rgba(59, 130, 246, .12);
    color: var(--blue);
    border: 1px solid rgba(59, 130, 246, .2);
}

.platform-badge.b2c {
    background: rgba(139, 92, 246, .12);
    color: var(--violet);
    border: 1px solid rgba(139, 92, 246, .2);
}

.platform-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.platform-desc {
    font-size: .9rem;
    color: var(--text2);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    color: var(--text2);
}

.feature-check {
    font-size: 1rem;
    color: var(--cyan);
    flex-shrink: 0;
}

.feature-list.violet .feature-check {
    color: var(--violet);
}

.sync-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sync-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--blue), var(--violet));
    position: relative;
    overflow: hidden;
}

.sync-line::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, transparent, #fff, transparent);
    animation: sync-pulse 1.5s ease-in-out infinite;
}

@keyframes sync-pulse {
    0% {
        top: -20px;
    }
    100% {
        top: 60px;
    }
}

.sync-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    animation: rotate-badge 8s linear infinite;
}

@keyframes rotate-badge {
    0% {
        box-shadow: 0 0 30px rgba(59, 130, 246, .4);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, .5);
    }
    100% {
        box-shadow: 0 0 30px rgba(59, 130, 246, .4);
    }
}

/* ─── ADVANTAGES ───────────────────────────── */
#advantages {
    background: var(--bg2);
}

.adv-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.adv-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    cursor: default;
}

.adv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}

.adv-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-5px);
}

.adv-card:hover::after {
    opacity: 1;
}

.adv-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--grad1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.adv-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.adv-desc {
    font-size: .85rem;
    color: var(--text2);
    line-height: 1.6;
}

.adv-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}

.adv-badge {
    padding: 6px 14px;
    border-radius: 99px;
    border: 1px solid var(--border2);
    background: var(--surface);
    font-size: .72rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: .06em;
}

/* ─── SOCIAL PROOF ─────────────────────────── */
#social {
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all .3s;
}

.testimonial-card:hover {
    border-color: var(--border2);
    transform: translateY(-3px);
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9rem;
}

.author-role {
    font-size: .78rem;
    color: var(--text2);
}

.hotel-name {
    font-size: .72rem;
    color: var(--cyan);
    font-weight: 600;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.metric-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: all .3s;
}

.metric-card:hover {
    border-color: var(--border2);
}

.metric-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--grad1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: .82rem;
    color: var(--text2);
    margin-top: 6px;
}

/* ─── DASHBOARD SECTION ─────────────────────── */
#dashboard-section {
    background: var(--bg2);
}

.dash-full {
    background: rgba(8, 11, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .7), 0 0 60px rgba(59, 130, 246, 0.08);
}

.dash-full-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
}

.dash-full-title {
    font-family: var(--font-display);
    font-size: .875rem;
    font-weight: 700;
}

.dash-full-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.dash-panel {
    padding: 28px;
    border-right: 1px solid var(--border);
}

.dash-panel:last-child {
    border-right: none;
}

.dash-panel-title {
    font-size: .75rem;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.revenue-big {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cyan);
}

.revenue-sub {
    font-size: .8rem;
    color: #4ade80;
    margin-top: 4px;
}

.chart-mini {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    margin-top: 16px;
}

.mini-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, var(--cyan) 0%, rgba(6, 182, 212, .2) 100%);
    animation: grow-bar .6s ease both;
}

.booking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: .8rem;
}

.booking-room {
    font-weight: 600;
}

.booking-status {
    padding: 2px 10px;
    border-radius: 99px;
    font-size: .68rem;
    font-weight: 700;
}

.booking-status.in {
    background: rgba(74, 222, 128, .12);
    color: #4ade80;
}

.booking-status.out {
    background: rgba(251, 191, 36, .12);
    color: #fbbf24;
}

.booking-status.pending {
    background: rgba(96, 165, 250, .12);
    color: #60a5fa;
}

.occupancy-bar {
    height: 8px;
    border-radius: 99px;
    background: var(--surface2);
    margin-top: 10px;
    overflow: hidden;
}

.occupancy-fill {
    height: 100%;
    border-radius: 99px;
    background: var(--grad1);
    animation: fill-bar 1.2s ease both;
}

@keyframes fill-bar {
    from {
        width: 0 !important;
    }
}

.occ-label {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    margin-top: 6px;
}

.occ-label span:first-child {
    color: var(--text2);
}

.occ-label span:last-child {
    font-weight: 700;
    color: var(--cyan);
}

.notif-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: .78rem;
}

.notif-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.notif-dot.blue {
    background: var(--blue);
}

.notif-dot.green {
    background: #4ade80;
}

.notif-dot.yellow {
    background: #fbbf24;
}

.notif-dot.cyan {
    background: var(--cyan);
}

.notif-title {
    font-weight: 600;
}

.notif-desc {
    color: var(--text2);
    font-size: .72rem;
}

/* ─── MARKET SECTION ───────────────────────── */
#market {
    background: var(--bg);
}

.market-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
}

.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.market-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mstat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: all .3s;
}

.mstat-card:hover {
    border-color: var(--border2);
    transform: translateY(-3px);
}

.mstat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
}

.mstat-num.blue {
    color: var(--blue);
}

.mstat-num.cyan {
    color: var(--cyan);
}

.mstat-num.violet {
    color: var(--violet);
}

.mstat-num.teal {
    color: var(--teal);
}

.mstat-label {
    font-size: .8rem;
    color: var(--text2);
    margin-top: 6px;
}

.market-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    width: 100%;
    aspect-ratio: 1;
    max-width: 420px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.map-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}

.map-subtitle {
    font-size: .82rem;
    color: var(--text2);
    text-align: center;
    margin-top: 6px;
}

.map-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.map-country {
    padding: 5px 12px;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 600;
    border: 1px solid var(--border2);
    color: var(--cyan);
    background: rgba(6, 182, 212, .06);
    animation: blink-dot 2s ease-in-out infinite;
}

.map-country:nth-child(2n) {
    animation-delay: .4s;
}

.map-country:nth-child(3n) {
    animation-delay: .8s;
}

@keyframes blink-dot {
    0%, 100% {
        opacity: .7;
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(6, 182, 212, .3);
    }
}

.expansion-msg {
    text-align: center;
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
}

.expansion-msg span {
    color: var(--cyan);
}

/* ─── TECH SECTION ─────────────────────────── */
#tech {
    background: var(--bg2);
}

.tech-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(139, 92, 246, 0.07) 0%, transparent 60%);
}

.tech-diagram {
    margin-top: 60px;
    position: relative;
}

.tech-nodes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tech-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.node-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.node-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--grad1);
    opacity: 0;
    transition: opacity .3s;
}

.tech-node:hover .node-circle {
    border-color: var(--border2);
    transform: scale(1.1);
}

.tech-node:hover .node-circle::before {
    opacity: .15;
}

.node-circle span {
    position: relative;
    z-index: 1;
}

.node-label {
    font-size: .75rem;
    color: var(--text2);
    font-weight: 600;
    text-align: center;
}

.tech-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--violet));
    position: relative;
    overflow: hidden;
}

.tech-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scan-line 2s linear infinite;
}

@keyframes scan-line {
    to {
        left: 100%;
    }
}

.tech-row2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.tech-feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    transition: all .3s;
}

.tech-feature:hover {
    border-color: rgba(139, 92, 246, .25);
    transform: translateY(-3px);
}

.tech-feature-icon {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.tech-feature-title {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.tech-feature-desc {
    font-size: .8rem;
    color: var(--text2);
}

/* ─── CTA SECTION ──────────────────────────── */
#cta-final {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.cta-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: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.cta-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-tagline {
    font-size: .75rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 20px;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 1.05rem;
    color: var(--text2);
    margin-bottom: 48px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    background: var(--surface2);
    border: 1px solid var(--border2);
    border-radius: 14px;
    padding: 8px;
    backdrop-filter: blur(20px);
}

.cta-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: .9rem;
    padding: 8px 12px;
}

.cta-input::placeholder {
    color: var(--text3);
}

.cta-submit {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 700;
    background: var(--grad1);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all .25s;
    font-family: var(--font-body);
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.cta-submit:hover {
    opacity: .9;
    transform: scale(1.02);
}

.cta-trust {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    color: var(--text2);
}

.trust-icon {
    color: var(--cyan);
}

/* ─── FOOTER ───────────────────────────────── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: .875rem;
    color: var(--text2);
    margin-top: 12px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: .875rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: .85rem;
    color: var(--text2);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: .8rem;
    color: var(--text3);
}

.footer-social {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    text-decoration: none;
    font-size: .85rem;
    transition: all .2s;
}

.social-link:hover {
    border-color: var(--border2);
    color: var(--cyan);
    background: var(--surface2);
}

/* ─── SCROLL INDICATOR ─────────────────────── */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    color: var(--text3);
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.scroll-arrow {
    font-size: 1.1rem;
    color: var(--text3);
}

/* ─── GRADIENT DIVIDER ─────────────────────── */
.grad-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border2), transparent);
    margin: 0;
}

/* ─── MOBILE ────────────────────────────────── */
@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    #hero .container {
        padding: 0;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .solution-platforms {
        grid-template-columns: 1fr;
    }

    .sync-connector {
        flex-direction: row;
    }

    .sync-line {
        width: 60px;
        height: 2px;
    }

    .adv-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .metrics-row {
        grid-template-columns: 1fr;
    }

    .market-grid {
        grid-template-columns: 1fr;
    }

    .tech-row2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
    }

    .dash-sidebar {
        display: none;
    }

    .dash-full-body {
        grid-template-columns: 1fr;
    }

    .dash-panel {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .dash-panel:last-child {
        border-bottom: none;
    }

    .kpi-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .market-stats {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
    }
}
