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

:root {
    --primary: #1a5ab8;
    --primary-light: #3b82f6;
    --primary-dark: #143d7a;
    --accent: #2563eb;
    --bg-body: #f8faff;
    --bg-light: #eef2f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --text-primary: #0f1729;
    --text-secondary: #4b5563;
    --text-muted: #8896a6;
    --border: rgba(26, 90, 184, 0.1);
    --border-hover: rgba(26, 90, 184, 0.25);
    --red: #dc2626;
    --green: #16a34a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 8px 32px rgba(26, 90, 184, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    max-width: 100%;
}

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

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }
.reveal:nth-child(7) { transition-delay: 0.6s; }
.reveal:nth-child(8) { transition-delay: 0.7s; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-primary);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--text-primary);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 90, 184, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 90, 184, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 90, 184, 0.35);
}

.btn-primary svg {
    transition: var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-hover);
}

.btn-secondary:hover {
    background: rgba(26, 90, 184, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-cta {
    background: #fff;
    color: var(--primary-dark);
    padding: 16px 36px;
    font-size: 1.05rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

.btn-cta svg {
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 140px 24px 16px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Gradient Mesh Background */
.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

.mesh-1 {
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle at 30% 40%, rgba(26, 90, 184, 0.28), rgba(59, 130, 246, 0.10) 50%, transparent 75%);
    top: -20%;
    right: -15%;
    animation: mesh-drift-1 22s ease-in-out infinite;
}

.mesh-2 {
    width: 55vw;
    height: 55vw;
    max-width: 750px;
    max-height: 750px;
    background: radial-gradient(circle at 60% 50%, rgba(37, 99, 235, 0.22), rgba(96, 165, 250, 0.08) 50%, transparent 75%);
    top: 25%;
    left: -15%;
    animation: mesh-drift-2 28s ease-in-out infinite;
}

.mesh-3 {
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle at 40% 60%, rgba(59, 130, 246, 0.20), rgba(37, 99, 235, 0.06) 50%, transparent 75%);
    bottom: 0%;
    right: 0%;
    animation: mesh-drift-3 32s ease-in-out infinite;
}

.mesh-4 {
    width: 45vw;
    height: 45vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle at 50% 30%, rgba(20, 61, 122, 0.18), rgba(26, 90, 184, 0.05) 50%, transparent 70%);
    top: 45%;
    left: 20%;
    animation: mesh-drift-4 26s ease-in-out infinite;
}

.mesh-5 {
    width: 40vw;
    height: 40vw;
    max-width: 550px;
    max-height: 550px;
    background: radial-gradient(circle at 70% 40%, rgba(96, 165, 250, 0.16), rgba(147, 197, 253, 0.06) 50%, transparent 70%);
    top: 5%;
    left: 35%;
    animation: mesh-drift-5 35s ease-in-out infinite;
}

@keyframes mesh-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 60px) scale(1.05); }
    50% { transform: translate(-80px, 30px) scale(0.95); }
    75% { transform: translate(-20px, 80px) scale(1.02); }
}

@keyframes mesh-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.08); }
    50% { transform: translate(30px, 50px) scale(0.97); }
    75% { transform: translate(70px, 10px) scale(1.03); }
}

@keyframes mesh-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-50px, -30px) scale(1.06); }
    50% { transform: translate(40px, -60px) scale(0.96); }
    75% { transform: translate(-20px, -40px) scale(1.04); }
}

@keyframes mesh-drift-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.04); }
    50% { transform: translate(-40px, -20px) scale(1.08); }
    75% { transform: translate(20px, 30px) scale(0.98); }
}

@keyframes mesh-drift-5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, 40px) scale(1.06); }
    50% { transform: translate(50px, 20px) scale(0.94); }
    75% { transform: translate(10px, -30px) scale(1.02); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(26, 90, 184, 0.06);
    border: 1px solid rgba(26, 90, 184, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
}

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

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

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 24px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: -24px;
}

/* ===== DASHBOARD MOCKUP ===== */
.dashboard-mockup {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(26, 90, 184, 0.1);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.06),
        0 20px 60px rgba(26, 90, 184, 0.08);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.dash-animate {
    opacity: 0;
    transform: translateY(12px);
    animation: dash-fade-in 0.5s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes dash-fade-in {
    to { opacity: 1; transform: translateY(0); }
}

/* Top bar */
.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(26, 90, 184, 0.04);
    border-bottom: 1px solid rgba(26, 90, 184, 0.08);
}

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

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dot.red { background: #f87171; }
.dash-dot.yellow { background: #fbbf24; }
.dash-dot.green { background: #34d399; }

.dash-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.dash-topbar-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dash-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16a34a;
    animation: status-blink 2s ease-in-out infinite;
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.dash-status {
    font-size: 0.65rem;
    font-weight: 600;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* KPI Row */
.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(26, 90, 184, 0.06);
}

.dash-kpi {
    background: rgba(255, 255, 255, 0.9);
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dash-kpi-label {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.dash-kpi-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-kpi-change {
    font-size: 0.65rem;
    font-weight: 600;
}

.dash-kpi-change.positive {
    color: #16a34a;
}

/* Chart */
.dash-chart-area {
    padding: 14px 16px 8px;
}

.dash-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.dash-chart-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dash-chart-tabs {
    display: flex;
    gap: 2px;
    background: var(--bg-light);
    border-radius: 6px;
    padding: 2px;
}

.dash-tab {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--text-muted);
    cursor: pointer;
}

.dash-tab.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.dash-chart {
    height: 90px;
    position: relative;
}

.dash-chart-svg {
    width: 100%;
    height: 100%;
}

.dash-chart-line,
.dash-chart-fill {
    transition: d 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bottom row */
.dash-bottom {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1px;
    background: rgba(26, 90, 184, 0.06);
    border-top: 1px solid rgba(26, 90, 184, 0.06);
}

.dash-campaign {
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
}

.dash-campaign-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: block;
}

.dash-campaign-row {
    display: grid;
    grid-template-columns: 1fr 60px 28px;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.dash-campaign-row:last-child { margin-bottom: 0; }

.dash-campaign-name {
    font-size: 0.6rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-progress {
    height: 4px;
    background: var(--bg-light);
    border-radius: 2px;
    overflow: hidden;
}

.dash-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #1a5ab8, #3b82f6);
    border-radius: 2px;
    animation: progress-anim 1.2s ease forwards;
    animation-delay: 1.2s;
}

@keyframes progress-anim {
    to { width: var(--pw); }
}

.dash-campaign-val {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

/* Mini stats */
.dash-mini-stats {
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-mini-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-mini-stat svg {
    flex-shrink: 0;
}

.dash-ring-anim {
    stroke-dashoffset: 75;
    animation: ring-draw 1.5s ease forwards;
    animation-delay: 1.4s;
    transform: rotate(-90deg);
    transform-origin: center;
}

@keyframes ring-draw {
    from { stroke-dashoffset: 75; }
    to { stroke-dashoffset: 0; }
}

.dash-mini-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    line-height: 1;
}

.dash-mini-label {
    font-size: 0.55rem;
    color: var(--text-muted);
    display: block;
    line-height: 1;
    margin-top: 2px;
}

/* ===== TRUSTED BY MARQUEE ===== */
.trusted-section {
    padding: 12px 0 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    margin-top: auto;
}

.trusted-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-body), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-body), transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
}

.brand-logo {
    width: 140px;
    height: 40px;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.marquee-item:hover .brand-logo {
    opacity: 0.85;
    color: var(--primary);
}

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

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--bg-light);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 50% at 0% 0%, rgba(26, 90, 184, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 100% 100%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    opacity: 0;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(220, 38, 38, 0.1);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

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

/* ===== DIFFERENTIATOR SECTION ===== */
.diff-section {
    background: var(--bg-body);
}

.diff-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.diff-content .section-tag {
    display: block;
    text-align: left;
}

.diff-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.diff-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.diff-content p strong {
    color: var(--text-primary);
}

.diff-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Comparison Widget */
.comparison-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
}

.comp-side {
    flex: 1;
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.comp-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comp-bar-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comp-bar-row span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.comp-bar {
    height: 8px;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.comp-bar-fill {
    height: 100%;
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.comp-bar-fill.red {
    background: linear-gradient(90deg, var(--red), #f87171);
}

.comp-bar-fill.blue {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.comp-bar-fill.animated {
    width: var(--target-width);
}

.comp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
}

.comp-divider span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 6px 8px;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--bg-light);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 90, 184, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: var(--shadow);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 90, 184, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
}

.service-icon {
    width: 100%;
    height: 100%;
}

.service-dot {
    animation: pulse-dot 2s ease-in-out infinite;
    transform-origin: center;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--bg-body);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    transition: height 0.3s ease;
    border-radius: 2px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-marker {
    position: relative;
    flex-shrink: 0;
    z-index: 2;
}

.step-number {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition-slow);
    box-shadow: var(--shadow);
}

.process-step.active .step-number {
    border-color: var(--primary);
    background: rgba(26, 90, 184, 0.08);
    box-shadow: 0 0 24px rgba(26, 90, 184, 0.2);
}

.step-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition-slow);
}

.process-step.active .step-ring {
    border-color: rgba(26, 90, 184, 0.25);
    animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}

.step-content {
    flex: 1;
    padding-top: 12px;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-visual {
    max-width: 280px;
    opacity: 0.8;
    transition: var(--transition);
}

.process-step:hover .step-visual {
    opacity: 1;
}

.step-illustration {
    width: 100%;
}

.step-dot {
    animation: pulse-dot 2s ease-in-out infinite;
    transform-origin: center;
}

.draw-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw-path 3s ease-in-out infinite;
}

@keyframes draw-path {
    0% { stroke-dashoffset: 300; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}

.progress-bar-animate {
    animation: progress-grow 3s ease-in-out infinite;
}

@keyframes progress-grow {
    0% { width: 0; }
    60% { width: 100px; }
    100% { width: 155px; }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: var(--bg-light);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(26, 90, 184, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

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

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.benefit-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.benefit-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
}

.benefit-icon-wrap {
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Benefits grid: last 2 cards centered */
.benefits-grid .benefit-card:nth-child(4) {
    grid-column: 1 / 2;
}

.benefits-grid .benefit-card:nth-child(5) {
    grid-column: 2 / 3;
}

/* ===== RESULTS SECTION ===== */
.results-section {
    background: var(--bg-body);
    padding-bottom: 60px;
}

.results-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.results-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.results-chart {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    height: 300px;
    position: relative;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 240px;
    padding-bottom: 32px;
}

.chart-y-axis span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
    width: 36px;
}

.chart-area {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 240px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
    position: relative;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    position: relative;
}

.bar-fill {
    width: 100%;
    max-width: 48px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 6px 6px 0 0;
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.chart-bar.highlight .bar-fill {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    box-shadow: 0 0 20px rgba(26, 90, 184, 0.3);
}

.bar-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
    border-radius: 6px 6px 0 0;
}

.bar-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.chart-legend {
    position: absolute;
    bottom: -40px;
    left: 50px;
    display: flex;
    gap: 24px;
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--primary);
    display: inline-block;
}

.legend-line {
    width: 16px;
    height: 2px;
    background: var(--primary-light);
    display: inline-block;
    border-radius: 1px;
}

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

.cta-wrapper {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
    border-radius: var(--radius-xl);
    padding: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-circle.c1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: float-slow 10s ease-in-out infinite;
}

.cta-circle.c2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation: float-slow 12s ease-in-out infinite;
    animation-delay: 2s;
}

.cta-circle.c3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-slow-center 8s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

@keyframes float-slow-center {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(calc(-50% + 20px), calc(-50% - 20px)) scale(1.05); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section .section-tag.light {
    color: rgba(255, 255, 255, 0.7);
}

.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f1729;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 64px 0 32px;
    color: #e2e8f0;
}

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

.footer-logo span {
    color: #e2e8f0;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 120px;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid .benefit-card:nth-child(4),
    .benefits-grid .benefit-card:nth-child(5) {
        grid-column: auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--text-primary);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-line {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .comparison-widget {
        flex-direction: column;
        gap: 16px;
    }

    .comp-divider {
        width: 100%;
        padding: 8px 0;
    }

    .results-widget {
        padding: 32px 20px;
    }

    .cta-wrapper {
        padding: 48px 24px;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .chart-area {
        gap: 6px;
    }

    .bar-fill {
        max-width: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(26, 90, 184, 0.3);
    color: #fff;
}
