/**
 * Presensia Team — marketing landing page
 */

:root {
    --navy-900: #0f1f38;
    --navy-800: #162d4a;
    --navy-700: #1e3a5f;
    --navy-600: #2d5a87;
    --navy-500: #3b7abf;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;
    --cyan-400: #22d3ee;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --amber-400: #fbbf24;
    --rose-400: #fb7185;
    --violet-400: #a78bfa;
    --text: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --surface: #ffffff;
    --surface-warm: #f8fafc;
    --surface-blue: #f0f7ff;
    --line: #e2e8f0;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
.nav-outer {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    transition: box-shadow 0.3s;
}
.nav-outer.scrolled { box-shadow: 0 1px 24px rgba(15,31,56,0.08); }
nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.brand {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem;
    color: var(--navy-700); text-decoration: none;
}
.brand img { width: 36px; height: 36px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
    padding: 8px 14px; border-radius: var(--radius-xs);
    font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
    text-decoration: none; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--navy-700); background: var(--surface-blue); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border-radius: var(--radius-sm);
    font-size: 0.9375rem; font-weight: 600; text-decoration: none;
    border: none; cursor: pointer; font-family: inherit;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.btn:active { transform: scale(0.97); }
.btn-primary {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    color: #fff; box-shadow: 0 2px 12px rgba(30,58,95,0.25);
}
.btn-primary:hover {
    box-shadow: 0 6px 28px rgba(30,58,95,0.35);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent; color: var(--navy-700);
    border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--navy-600); background: var(--surface-blue); }
.btn-trial {
    background: transparent; color: var(--navy-700);
    border: 1.5px solid #cbd5e1;
}
.btn-trial:hover { border-color: var(--navy-600); background: var(--surface-blue); }
.btn-whatsapp {
    background: rgba(16,185,129,0.12); color: #047857;
    border: 1.5px solid rgba(16,185,129,0.35);
}
.btn-whatsapp:hover {
    background: #10b981; color: #fff; border-color: #10b981;
    transform: translateY(-1px);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 0.8125rem; }
.btn--block { width: 100%; }

.hamburger {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger svg { display: block; }

/* ─── HERO ─── */
.hero {
    position: relative; padding: 140px 0 80px;
    background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 45%, var(--navy-600) 100%);
    color: #fff; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(96,165,250,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(34,211,238,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 8px; border-radius: 100px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.8125rem; font-weight: 500; margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--emerald-400);
    box-shadow: 0 0 8px var(--emerald-400);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; } 50% { opacity: 0.5; }
}
.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--blue-300) 0%, var(--cyan-400) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .lead {
    font-size: 1.125rem; opacity: 0.88; max-width: 48ch;
    margin-bottom: 32px; line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-subnote {
    font-size: 0.88rem; opacity: 0.82; margin: -6px 0 22px;
}
.hero-subnote a { color: #a7f3d0; font-weight: 600; text-decoration: none; }
.hero-subnote a:first-of-type { font-weight: 700; }
.hero .btn-trial,
.cta-section .btn-trial {
    color: #fff;
    border-color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.08);
}
.hero .btn-trial:hover,
.cta-section .btn-trial:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.65);
}
.hero .btn-whatsapp,
.cta-section .btn-whatsapp {
    background: rgba(16,185,129,0.92);
    color: #fff;
    border-color: rgba(16,185,129,0.95);
}
.hero .btn-whatsapp:hover,
.cta-section .btn-whatsapp:hover {
    background: #10b981;
    border-color: #10b981;
}
.hero-stats {
    display: flex; gap: 32px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem; font-weight: 700;
}
.hero-stat-label { font-size: 0.8125rem; opacity: 0.65; margin-top: 2px; }

.hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-mockup {
    width: 100%; max-width: 480px;
    background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 28px; position: relative;
}
.hero-mockup--tight { padding: 18px; }
.mockup-dashboard-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 12px;
}
.mockup-dashboard-title { font-weight: 700; font-family: 'Poppins', sans-serif; }
.mockup-dashboard-role { font-size: 0.75rem; opacity: 0.7; }
.mockup-screenshot {
    width: 100%; height: auto; border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14); display: block;
}
.mockup-fallback {
    border-radius: 14px; border: 1px dashed rgba(255,255,255,0.25);
    padding: 22px; background: rgba(255,255,255,0.06);
}
.mockup-fallback-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.mockup-fallback-text { font-size: 0.8rem; opacity: 0.75; line-height: 1.6; }
.mockup-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.mockup-tag {
    padding: 6px 12px; border-radius: 100px;
    font-size: 0.75rem; color: rgba(255,255,255,0.95);
}
.mockup-tag--emerald { background: rgba(16,185,129,0.14); }
.mockup-tag--blue { background: rgba(96,165,250,0.14); }
.mockup-tag--cyan { background: rgba(34,211,238,0.14); }

/* ─── ALERT ─── */
.alert {
    margin: -20px 0 24px; padding: 14px 18px; border-radius: var(--radius-sm);
    font-size: 0.9375rem;
}
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ─── TRUST BAR ─── */
.trust-bar {
    padding: 48px 0; background: var(--surface-warm);
    border-bottom: 1px solid var(--line);
}
.trust-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9375rem; font-weight: 500; color: var(--text-secondary);
}
.trust-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.trust-icon--blue { background: rgba(37,99,235,0.12); color: #2563eb; }
.trust-icon--emerald { background: rgba(16,185,129,0.12); color: #059669; }
.trust-icon--amber { background: rgba(245,158,11,0.12); color: #d97706; }
.trust-icon--violet { background: rgba(124,58,237,0.12); color: #7c3aed; }

/* ─── SOCIAL PROOF (logo klien) ─── */
.social-proof {
    padding: 40px 0 48px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.social-proof-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 24px;
}
.social-proof-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 6px;
}
.social-proof-head p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}
.social-proof-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 36px;
}
.social-proof-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    opacity: 0.88;
    filter: grayscale(1);
    transition: opacity 0.2s ease, filter 0.2s ease;
}
.social-proof-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}
.social-proof-logo img {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}
.social-proof-disclaimer {
    margin: 20px auto 0;
    max-width: 640px;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.landing-module-note {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
    font-size: 0.875rem;
    line-height: 1.6;
}
.social-proof-logo__sector {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

/* ─── SECTION ─── */
.section { padding: 80px 0; }
.section-alt { background: var(--surface-warm); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-label {
    display: inline-block; padding: 4px 14px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-label--rose { background: rgba(251,113,133,0.10); color: #e11d48; }
.section-label--blue { background: rgba(96,165,250,0.12); color: var(--navy-700); }
.section-label--emerald { background: rgba(16,185,129,0.10); color: var(--emerald-500); }
.section-label--emerald-soft { background: rgba(16,185,129,0.12); color: var(--emerald-500); }
.section-label--cyan { background: rgba(34,211,238,0.10); color: #0891b2; }
.section-label--cyan-soft { background: rgba(34,211,238,0.1); color: #0891b2; }
.section-label--violet { background: rgba(167,139,250,0.12); color: #7c3aed; }
.section-label--spaced { margin-bottom: 10px; }
.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700; color: var(--navy-800); letter-spacing: -0.025em;
    margin-bottom: 12px;
}
.section-header p { font-size: 1.0625rem; color: var(--text-muted); max-width: 52ch; margin: 0 auto; }

/* ─── FEATURES GRID ─── */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
    padding: 28px; border-radius: var(--radius); background: #fff;
    border: 1px solid var(--line);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--navy-700), var(--blue-400));
    opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 40px rgba(15,31,56,0.1);
    transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.feature-icon--emerald { background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(52,211,153,0.15)); }
.feature-icon--blue { background: linear-gradient(135deg, rgba(96,165,250,0.1), rgba(147,197,253,0.15)); }
.feature-icon--cyan { background: linear-gradient(135deg, rgba(34,211,238,0.1), rgba(103,232,249,0.15)); }
.feature-icon--amber { background: linear-gradient(135deg, rgba(251,191,36,0.1), rgba(252,211,77,0.15)); }
.feature-icon--violet { background: linear-gradient(135deg, rgba(167,139,250,0.1), rgba(196,181,253,0.15)); }
.feature-icon--navy { background: linear-gradient(135deg, rgba(30,58,95,0.10), rgba(96,165,250,0.12)); }
.feature-card h3 {
    font-size: 1.0625rem; font-weight: 700; color: var(--navy-800);
    margin-bottom: 8px;
}
.feature-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }

/* ─── COMPARISON TABLE ─── */
.compare-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line);
    font-size: 0.9375rem;
}
.compare-table thead th {
    background: var(--navy-800); color: #fff; padding: 16px 20px;
    font-weight: 600; text-align: left;
}
.compare-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 var(--radius) 0 0; text-align: center; }
.compare-table thead th:nth-child(2) { text-align: center; }
.compare-table tbody td {
    padding: 14px 20px; border-bottom: 1px solid var(--line);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:nth-child(2),
.compare-table tbody td:nth-child(3) { text-align: center; }
.compare-table tbody tr:nth-child(even) { background: var(--surface-warm); }
.compare-table .icon-check { color: var(--emerald-500); font-weight: 700; font-size: 1.125rem; }
.compare-table .icon-x { color: #cbd5e1; font-size: 1.125rem; }
.compare-highlight {
    background: linear-gradient(135deg, rgba(30,58,95,0.04), rgba(96,165,250,0.06));
}
.compare-table thead th.compare-highlight {
    background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
}
.compare-table tbody td.compare-highlight {
    background: rgba(16,185,129,0.05);
}
.compare-table--wide { min-width: 560px; }
.anchor-offset {
    display: block; position: relative; top: -88px;
    visibility: hidden; height: 0; pointer-events: none;
}

/* ─── HOW IT WORKS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
    content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, var(--line), var(--navy-500), var(--line));
    z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700;
    box-shadow: 0 4px 16px rgba(30,58,95,0.25);
}
.step-card h4 { font-size: 0.9375rem; font-weight: 700; color: var(--navy-800); margin-bottom: 6px; }
.step-card p { font-size: 0.8125rem; color: var(--text-muted); }

/* ─── CTA ─── */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(155deg, var(--navy-900), var(--navy-700) 50%, var(--navy-600));
    color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(34,211,238,0.1), transparent),
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(96,165,250,0.1), transparent);
}
.cta-section .wrap { position: relative; z-index: 1; }
.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700; margin-bottom: 16px;
}
.cta-section p { font-size: 1.0625rem; opacity: 0.85; max-width: 50ch; margin: 0 auto 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── DEMO BOX ─── */
.demo-section { padding: 56px 0; background: var(--surface-warm); }
.demo-box {
    max-width: 640px; margin: 0 auto; padding: 32px;
    border-radius: var(--radius); background: #fff;
    border: 1px solid var(--line); text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.demo-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem; font-weight: 700; color: var(--navy-800);
    margin-bottom: 8px;
}
.demo-box > p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 24px; }
.demo-forms { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.demo-forms .btn { min-width: 180px; }
.footnote { font-size: 0.8125rem; color: var(--text-muted); margin-top: 16px; }
.footnote code {
    background: var(--surface-warm); padding: 2px 6px; border-radius: 4px;
    font-size: 0.8125rem;
}

/* ─── PROBLEM / SOLUTION ─── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.problem-list { list-style: none; display: grid; gap: 12px; }
.problem-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 14px 16px; border-radius: 14px; background: #fff;
    border: 1px solid var(--line);
}
.problem-bullet {
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(251,113,133,0.10);
    color: #e11d48;
}
.problem-bullet--info {
    background: rgba(96,165,250,0.12); color: var(--navy-700);
}
.problem-item--highlight {
    border-style: dashed; background: rgba(255,255,255,0.65);
}
.problem-item strong { display: block; font-size: 0.95rem; color: var(--navy-800); margin-bottom: 2px; }
.problem-item span { display: block; font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.solution-card {
    padding: 28px; border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(30,58,95,0.03), rgba(96,165,250,0.06));
    border: 1px solid rgba(96,165,250,0.22);
}
.solution-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem; font-weight: 800; color: var(--navy-900);
    line-height: 1.25; margin-bottom: 10px;
}
.solution-card__desc {
    color: var(--text-secondary); font-size: 0.98rem; line-height: 1.75;
}
.solution-points { list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.solution-point { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9375rem; color: var(--text-secondary); }
.solution-check { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; background: rgba(16,185,129,0.12); display: flex; align-items: center; justify-content: center; }

/* ─── PREVIEW ─── */
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.preview-card {
    border-radius: var(--radius); border: 1px solid var(--line); background: #fff;
    overflow: hidden; box-shadow: 0 4px 24px rgba(15,31,56,0.06);
}
.preview-thumb {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(30,58,95,0.95), rgba(45,90,135,0.9));
    position: relative;
}
.preview-thumb::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 70% 30%, rgba(96,165,250,0.25), transparent 60%);
}
.preview-thumb--emerald { background: linear-gradient(135deg, rgba(16,185,129,0.85), rgba(30,58,95,0.92)); }
.preview-thumb--violet { background: linear-gradient(135deg, rgba(167,139,250,0.85), rgba(30,58,95,0.92)); }
.preview-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 2;
}
.preview-body { padding: 16px 18px 18px; }
.preview-body h3 { font-size: 1rem; font-weight: 800; color: var(--navy-800); margin-bottom: 6px; }
.preview-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── GALLERY ─── */
.gallery-tabs {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    margin-bottom: 28px;
}
.gallery-tab {
    padding: 8px 16px; border-radius: 100px;
    border: 1px solid var(--line); background: #fff;
    font-size: 0.875rem; font-weight: 600; color: var(--text-secondary);
    cursor: pointer; transition: all 0.2s;
}
.gallery-tab:hover { border-color: rgba(96,165,250,0.45); color: var(--navy-700); }
.gallery-tab.is-active {
    background: var(--navy-800); border-color: var(--navy-800); color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-item {
    display: flex; flex-direction: column; text-align: left;
    border-radius: var(--radius); border: 1px solid var(--line); background: #fff;
    overflow: hidden; box-shadow: 0 4px 24px rgba(15,31,56,0.06);
    cursor: pointer; padding: 0;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(15,31,56,0.10);
    border-color: rgba(96,165,250,0.35);
}
.gallery-item.is-hidden { display: none; }
.gallery-item--featured { grid-column: span 1; }

.gallery-item__thumb {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(30,58,95,0.95), rgba(45,90,135,0.9));
}
.gallery-item__thumb--desktop { aspect-ratio: 16 / 10; }
.gallery-item__thumb--mobile {
    aspect-ratio: 16 / 10;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(30,58,95,0.06));
}
.gallery-item__thumb--mobile .gallery-item__img {
    position: relative; inset: auto;
    width: auto; height: 92%; max-width: 42%;
    object-fit: contain; border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15,31,56,0.18);
}
.gallery-item__img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    transition: transform 0.35s;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.03); }
.gallery-item__thumb--mobile:hover .gallery-item__img { transform: scale(1.04); }

.gallery-item__fallback {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; font-size: 0.8125rem; color: rgba(255,255,255,0.85);
    background: linear-gradient(135deg, rgba(30,58,95,0.92), rgba(45,90,135,0.88));
}
.gallery-item__thumb--mobile .gallery-item__fallback {
    color: var(--text-muted);
    background: linear-gradient(135deg, rgba(241,245,249,0.95), rgba(226,232,240,0.9));
}
.gallery-item__fallback-icon { opacity: 0.7; }

.gallery-item__zoom {
    position: absolute; top: 10px; right: 10px; z-index: 3;
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,0.92); color: var(--navy-800);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.9);
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(15,31,56,0.12);
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: scale(1); }

.gallery-item__body { padding: 14px 16px 16px; flex: 1; }
.gallery-item__badge {
    display: inline-block; font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 100px; margin-bottom: 8px;
}
.gallery-item__badge--blue { background: rgba(96,165,250,0.12); color: var(--navy-700); }
.gallery-item__badge--emerald { background: rgba(16,185,129,0.12); color: #047857; }
.gallery-item__body h3 { font-size: 0.9375rem; font-weight: 800; color: var(--navy-800); margin-bottom: 4px; }
.gallery-item__body p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; }

.gallery-disclaimer {
    text-align: center; font-size: 0.8125rem; color: var(--text-muted);
    margin-top: 20px; line-height: 1.6;
}
.gallery-cta {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    margin-top: 24px;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox__backdrop {
    position: absolute; inset: 0;
    background: rgba(15,31,56,0.82); backdrop-filter: blur(4px);
}
.gallery-lightbox__dialog {
    position: relative; z-index: 1;
    width: min(960px, 100%); max-height: calc(100vh - 40px);
    background: #fff; border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.gallery-lightbox__close {
    position: absolute; top: 12px; right: 12px; z-index: 5;
    width: 40px; height: 40px; border: none; border-radius: 10px;
    background: rgba(255,255,255,0.95); color: var(--navy-800);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(15,31,56,0.15);
}
.gallery-lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 44px; height: 44px; border: none; border-radius: 50%;
    background: rgba(255,255,255,0.95); color: var(--navy-800);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(15,31,56,0.15);
}
.gallery-lightbox__nav--prev { left: 12px; }
.gallery-lightbox__nav--next { right: 12px; }
.gallery-lightbox__stage {
    flex: 1; min-height: 0; background: #0f172a;
    display: flex; align-items: center; justify-content: center;
    max-height: min(70vh, 640px); overflow: hidden;
}
.gallery-lightbox__img {
    max-width: 100%; max-height: min(70vh, 640px);
    width: auto; height: auto; object-fit: contain;
}
.gallery-lightbox__meta { padding: 16px 20px 20px; border-top: 1px solid var(--line); }
.gallery-lightbox__badge {
    display: inline-block; font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 100px; margin-bottom: 6px;
    background: rgba(96,165,250,0.12); color: var(--navy-700);
}
.gallery-lightbox__badge.is-employee { background: rgba(16,185,129,0.12); color: #047857; }
.gallery-lightbox__title { font-size: 1.0625rem; font-weight: 800; color: var(--navy-800); margin-bottom: 4px; }
.gallery-lightbox__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 8px; }
.gallery-lightbox__counter { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pricing-card {
    border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
    padding: 26px; position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 10px 44px rgba(15,31,56,0.10); border-color: rgba(96,165,250,0.35); }
.pricing-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
    background: rgba(96,165,250,0.10); color: var(--navy-700);
    margin-bottom: 12px;
}
.pricing-title { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--navy-900); margin-bottom: 6px; }
.pricing-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.pricing-list { list-style: none; display: grid; gap: 10px; margin: 18px 0 22px; }
.pricing-li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text-secondary); }
.pricing-li .ic { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; background: rgba(16,185,129,0.12); display: flex; align-items: center; justify-content: center; }
.pricing-card.featured {
    border-color: rgba(16,185,129,0.35);
    box-shadow: 0 14px 60px rgba(16,185,129,0.10);
}
.pricing-card.featured::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 10%, rgba(16,185,129,0.10), transparent 55%);
    pointer-events: none;
}
.pricing-ribbon {
    position: absolute; top: 14px; right: 14px;
    padding: 5px 10px; border-radius: 100px;
    font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase;
    background: linear-gradient(135deg, #10b981, #059669); color: #fff;
    box-shadow: 0 4px 14px rgba(16,185,129,0.35);
}
.pricing-badge--green { background: rgba(16,185,129,0.12); color: var(--emerald-500); }
.pricing-badge--violet { background: rgba(167,139,250,0.12); color: var(--violet-400); }
.pricing-capacity {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 700; color: var(--navy-700);
    background: var(--surface-blue); padding: 6px 10px; border-radius: 8px;
    margin-bottom: 14px;
}
.pricing-actions { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.pricing-actions .btn { width: 100%; justify-content: center; }
.pricing-footnote {
    margin-top: 20px; padding: 14px 16px; border-radius: 12px;
    border: 1px dashed rgba(96,165,250,0.45); background: rgba(96,165,250,0.06);
    font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; text-align: center;
}
.pricing-compare-wrap {
    margin-top: 28px; border-radius: var(--radius); border: 1px solid var(--line);
    background: #fff; overflow: hidden; box-shadow: 0 6px 28px rgba(15,31,56,0.06);
}
.pricing-compare-head {
    padding: 16px 18px; border-bottom: 1px solid var(--line);
    font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 800; color: var(--navy-900);
}
.compare-text { font-size: 0.8125rem; font-weight: 700; color: var(--navy-700); }
.compare-wrap-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.claims-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
    margin-top: 22px;
}
.claim-card {
    padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line);
    background: #fff; box-shadow: 0 4px 18px rgba(15,31,56,0.05);
}
.claim-card strong {
    display: block; font-size: 0.875rem; font-weight: 800; color: var(--navy-900);
    margin-bottom: 6px;
}
.claim-card span { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; }
.demo-trial-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
    margin-bottom: 16px;
}
.demo-trial-col {
    border-radius: 12px; border: 1px solid var(--line); padding: 12px 14px; background: #f8fafc;
}
.demo-trial-col h4 {
    font-size: 0.8125rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 10px; color: var(--navy-700);
}
.demo-trial-col--trial { border-color: rgba(16,185,129,0.35); background: rgba(16,185,129,0.06); }
.demo-trial-col--trial h4 { color: var(--emerald-500); }
.demo-trial-row {
    display: grid; grid-template-columns: 72px 1fr; gap: 8px;
    font-size: 0.8125rem; padding: 6px 0; border-top: 1px solid rgba(15,31,56,0.06);
}
.demo-trial-row:first-of-type { border-top: none; padding-top: 0; }
.demo-trial-row dt { color: var(--text-muted); font-weight: 700; margin: 0; }
.demo-trial-row dd { color: var(--text-secondary); margin: 0; line-height: 1.45; }
.trial-success {
    padding: 14px 16px; border-radius: 10px; background: rgba(16,185,129,0.1);
    color: #065f46; font-size: 0.88rem; margin-bottom: 12px; line-height: 1.55;
}
.trial-form-hint { font-size: 0.8rem; color: var(--text-muted); margin: 0 0 10px; line-height: 1.5; }
.trial-mini-form select {
    width: 100%; padding: 10px 12px; border-radius: 10px; border: 1.4px solid var(--line);
    font-size: 0.87rem; font-family: inherit; background: #fff;
}
.trial-mini-form .field-error { font-size: 0.75rem; color: #dc2626; margin-top: 4px; }

/* ─── COMPACT TRIAL + GUIDE ─── */
.compact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; align-items: stretch; }
.compact-card {
    border-radius: var(--radius); border: 1px solid var(--line); background: #fff;
    padding: 24px; box-shadow: 0 6px 28px rgba(15,31,56,0.06);
}
.compact-title {
    font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--navy-900);
    margin-bottom: 8px;
}
.compact-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.compact-list { list-style: none; display: grid; gap: 8px; margin-bottom: 16px; }
.compact-list li { font-size: 0.88rem; color: var(--text-secondary); display: flex; gap: 9px; }
.compact-list .dot {
    width: 20px; height: 20px; border-radius: 7px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(16,185,129,0.12); color: #10b981;
}
.trial-mini-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.trial-mini-form .full { grid-column: 1 / -1; }
.trial-mini-form input {
    width: 100%; padding: 10px 12px; border-radius: 10px; border: 1.4px solid var(--line);
    font-size: 0.87rem; font-family: inherit;
}
.trial-mini-form input:focus { outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(59,130,246,0.08); }
.trial-mini-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.guide-mini-box {
    border-radius: 12px; padding: 14px; background: linear-gradient(135deg, rgba(167,139,250,0.10), rgba(96,165,250,0.08));
    border: 1px solid rgba(167,139,250,0.25); margin-bottom: 14px;
}
.guide-mini-text {
    font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7;
}

/* ─── FAQ ─── */
.faq-list { max-width: 920px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.faq-q {
    width: 100%; text-align: left; padding: 16px 18px;
    background: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    font-size: 0.95rem; font-weight: 800; color: var(--navy-900);
}
.faq-a { display: none; padding: 0 18px 16px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-icon { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; background: var(--surface-blue); display:flex; align-items:center; justify-content:center; color: var(--navy-700); }
.faq-q__label { display: flex; align-items: center; gap: 12px; }
.faq-q__toggle { opacity: 0.7; }
.landing-cta-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.landing-cta-block { text-align: center; margin-top: 18px; }
.landing-cta-block--demo { margin-top: 14px; }

/* ─── FOOTER ─── */
footer {
    padding: 40px 0; border-top: 1px solid var(--line);
    background: var(--surface-warm);
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
}
.footer-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Poppins', sans-serif; font-weight: 600;
    color: var(--navy-700); font-size: 1rem;
}
.footer-brand img { width: 28px; height: 28px; }
.footer-copy { font-size: 0.8125rem; color: var(--text-muted); }
.footer-copy a { color: var(--navy-700); text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE NAV ─── */
.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(15,31,56,0.5); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner {
    position: absolute; top: 0; right: 0; bottom: 0; width: 280px;
    background: #fff; padding: 24px;
    transform: translateX(100%); transition: transform 0.3s;
    display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.active .mobile-menu-inner { transform: translateX(0); }
.mobile-close {
    align-self: flex-end; background: none; border: none;
    cursor: pointer; padding: 8px; margin-bottom: 16px;
}
.mobile-menu a {
    display: block; padding: 12px 16px; border-radius: var(--radius-xs);
    font-size: 0.9375rem; font-weight: 500; color: var(--text);
    text-decoration: none; transition: background 0.2s;
}
.mobile-menu a:hover { background: var(--surface-blue); }
.mobile-menu-cta { margin-top: 16px; }

/* ─── UTILITIES ─── */
.is-hidden { display: none !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero .lead { margin: 0 auto 32px; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .problem-grid { grid-template-columns: 1fr; }
    .preview-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item--featured { grid-column: span 1; }
    .pricing-grid { grid-template-columns: 1fr; }
    .compact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .mobile-menu { display: block; }
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .section { padding: 56px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-lightbox { padding: 12px; }
    .gallery-lightbox__nav { width: 38px; height: 38px; }
    .gallery-lightbox__nav--prev { left: 6px; }
    .gallery-lightbox__nav--next { right: 6px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .steps-grid::before { display: none; }
    .compare-table { font-size: 0.8125rem; }
    .compare-table thead th,
    .compare-table tbody td { padding: 10px 12px; }
    .trust-inner { gap: 24px; }
    .trial-mini-form { grid-template-columns: 1fr; }
    .claims-grid { grid-template-columns: 1fr 1fr; }
    .demo-trial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .claims-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
}
