/* ══════════════════════════════════════════════════
   InduCon Lager — Shared Stylesheet
   ══════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0F2B46;
    --primary-dark: #091C2F;
    --accent: #F47B20;
    --accent-hover: #E06A10;
    --accent-light: #FF9A44;
    --blue: #1D6FA4;
    --blue-light: #2A8BC8;
    --green: #1E8E3E;
    --green-bg: #E6F4EA;
    --red: #D93025;
    --purple: #7C3AED;
    --surface: #FFFFFF;
    --bg: #F8FAFB;
    --bg-alt: #EDF2F7;
    --text: #1A2332;
    --text-secondary: #5A6B7D;
    --text-muted: #8896A6;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --gradient-hero: linear-gradient(135deg, #0F2B46 0%, #1B4B72 50%, #1D6FA4 100%);
    --gradient-accent: linear-gradient(135deg, #F47B20 0%, #FF9A44 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
    --gradient-blue: linear-gradient(135deg, #1D6FA4 0%, #2A8BC8 100%);
    --shadow-sm: 0 1px 3px rgba(15,43,70,0.06);
    --shadow-md: 0 4px 16px rgba(15,43,70,0.08);
    --shadow-lg: 0 12px 40px rgba(15,43,70,0.12);
    --shadow-xl: 0 24px 64px rgba(15,43,70,0.16);
    --shadow-glow: 0 0 40px rgba(244,123,32,0.15);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── UTILITIES ───────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.hidden { display: none !important; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid { display: grid; }

/* ── PATTERN BACKGROUND ──────────────────────────── */
.pattern-bg {
    position: relative;
}
.pattern-bg::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.pattern-bg > * { position: relative; z-index: 1; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(15,43,70,0.97);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: #fff;
}
.nav-logo {
    width: 40px; height: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.3);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.nav-brand:hover .nav-logo { transform: rotate(-5deg) scale(1.05); }
.nav-brand-text { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; }
.nav-brand-sub { font-size: 0.7rem; font-weight: 400; opacity: 0.7; display: block; letter-spacing: 0.05em; text-transform: uppercase; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 0.88rem; font-weight: 500;
    padding: 8px 16px; border-radius: 10px;
    transition: all 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
    background: var(--accent) !important; color: #fff !important;
    padding: 10px 24px !important; font-weight: 600 !important;
    box-shadow: 0 2px 12px rgba(244,123,32,0.25);
}
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(244,123,32,0.35); }
.nav-login {
    border: 1px solid rgba(255,255,255,0.25) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    transition: all 0.2s !important;
}
.nav-login:hover { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.4) !important; }
.nav-hamburger {
    display: none; background: none; border: none; color: #fff;
    font-size: 1.5rem; cursor: pointer; padding: 8px;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 12px;
    font-size: 0.95rem; font-weight: 700;
    text-decoration: none; cursor: pointer; border: none;
    transition: all 0.25s; font-family: inherit;
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary {
    background: var(--gradient-accent); color: #fff;
    box-shadow: 0 4px 24px rgba(244,123,32,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(244,123,32,0.4); }
.btn-secondary {
    background: rgba(255,255,255,0.1); color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-outline {
    background: transparent; color: var(--primary);
    border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn-blue {
    background: var(--gradient-blue); color: #fff;
    box-shadow: 0 4px 16px rgba(29,111,164,0.25);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,111,164,0.35); }
.btn-white {
    background: #fff; color: var(--primary);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: 100px 32px; }
.section-sm { padding: 64px 32px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.section-title {
    font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.15; margin-bottom: 16px; color: var(--primary);
}
.section-title-sm { font-size: 2rem; }
.section-sub {
    font-size: 1.1rem; color: var(--text-secondary); max-width: 600px;
    margin: 0 auto; line-height: 1.7;
}

/* ── CARDS ────────────────────────────────────────── */
.card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}
.card-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(244,123,32,0.3); }

/* ── HERO (shared structure) ─────────────────────── */
.hero {
    background: var(--gradient-hero);
    position: relative; overflow: hidden;
}
.hero-fade-bottom::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
}

/* ── PAGE HERO (subpages) ────────────────────────── */
.page-hero {
    padding: 160px 32px 80px;
}
.page-hero h1 {
    font-size: 3rem; font-weight: 800; color: #fff;
    letter-spacing: -0.03em; margin-bottom: 16px;
}
.page-hero p {
    font-size: 1.15rem; color: rgba(255,255,255,0.65);
    max-width: 600px; line-height: 1.7;
}
.page-hero.centered { text-align: center; }
.page-hero.centered p { margin: 0 auto; }

/* ── BREADCRUMB ──────────────────────────────────── */
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 24px; font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--accent); font-weight: 600; }

/* ── STATS BAR ───────────────────────────────────── */
.stats-bar {
    max-width: var(--max-width); margin: -50px auto 0; padding: 0 32px;
    position: relative; z-index: 10;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.stat-item { background: #fff; padding: 32px 28px; text-align: center; }
.stat-number {
    font-size: 2.2rem; font-weight: 800; color: var(--primary);
    letter-spacing: -0.03em; line-height: 1;
    font-family: 'JetBrains Mono', monospace;
}
.stat-number span { color: var(--accent); }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 8px; font-weight: 500; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
    background: var(--primary-dark); padding: 60px 32px 32px; color: rgba(255,255,255,0.5);
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-brand-text { color: #fff; font-weight: 700; font-size: 1rem; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer-col-title { color: #fff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem;
}

/* ── ANIMATIONS ──────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.95); transition: opacity 0.5s ease, transform 0.5s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float { animation: float 4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes scan-line { 0% { top: 10%; } 100% { top: 90%; } }
@keyframes count-pulse { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } }
@keyframes slide-in-right { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes check-pop { 0% { transform: scale(0); } 60% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* ── TABS ────────────────────────────────────────── */
.tabs { display: flex; gap: 4px; background: var(--bg-alt); border-radius: 14px; padding: 4px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
    padding: 12px 24px; border-radius: 10px; border: none;
    background: transparent; color: var(--text-secondary);
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
    display: flex; align-items: center; gap: 8px;
}
.tab-btn:hover { color: var(--text); background: rgba(255,255,255,0.5); }
.tab-btn.active { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: slide-in-right 0.3s ease; }

/* ── FEATURE DETAIL CARDS ────────────────────────── */
.feature-detail {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    padding: 48px 0;
}
.feature-detail.reverse { direction: rtl; }
.feature-detail.reverse > * { direction: ltr; }
.feature-detail-content .section-tag { margin-bottom: 8px; }
.feature-detail-content h3 {
    font-size: 1.8rem; font-weight: 800; color: var(--primary);
    letter-spacing: -0.02em; margin-bottom: 16px;
}
.feature-detail-content p {
    color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px;
}
.feature-list { list-style: none; }
.feature-list li {
    padding: 10px 0; display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.95rem; color: var(--text-secondary);
}
.feature-check {
    width: 22px; height: 22px; border-radius: 7px;
    background: rgba(244,123,32,0.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* ── MOCKUP FRAMES ───────────────────────────────── */
.mockup-frame {
    background: var(--primary-dark);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.08);
}
.mockup-toolbar {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 12px; margin-bottom: 4px;
}
.mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
.mockup-dot-r { background: #FF5F57; }
.mockup-dot-y { background: #FEBC2E; }
.mockup-dot-g { background: #28C840; }
.mockup-url {
    flex: 1; margin-left: 12px;
    background: rgba(255,255,255,0.08); border-radius: 6px;
    padding: 4px 12px; font-size: 0.7rem; color: rgba(255,255,255,0.4);
    font-family: 'JetBrains Mono', monospace;
}
.mockup-screen {
    background: #fff; border-radius: 12px; overflow: hidden;
}

/* ── TIMELINE ────────────────────────────────────── */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 3px; background: var(--border);
    transform: translateX(-50%);
}
.timeline-item {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    margin-bottom: 48px; position: relative;
}
.timeline-item::before {
    content: ''; position: absolute; left: 50%; top: 24px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--accent); border: 3px solid var(--bg);
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(244,123,32,0.15);
}
.timeline-item.done::before { background: var(--green); box-shadow: 0 0 0 4px rgba(30,142,62,0.15); }
.timeline-date {
    text-align: right; padding-top: 16px;
    font-size: 0.85rem; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.05em;
}
.timeline-item.done .timeline-date { color: var(--green); }
.timeline-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow-sm);
}
.timeline-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.timeline-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.timeline-badge {
    display: inline-block; padding: 3px 12px; border-radius: 100px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; margin-bottom: 12px;
}
.badge-live { background: var(--green-bg); color: var(--green); }
.badge-dev { background: #FFF3E0; color: #E65100; }
.badge-planned { background: #E3F2FD; color: #1565C0; }

/* ── INTERACTIVE DEMO ────────────────────────────── */
.demo-container {
    max-width: 480px; margin: 0 auto;
    background: var(--primary-dark);
    border-radius: 24px; padding: 16px;
    box-shadow: var(--shadow-xl), 0 0 80px rgba(29,111,164,0.15);
    border: 1px solid rgba(255,255,255,0.08);
}
.demo-screen {
    background: #fff; border-radius: 14px; overflow: hidden;
    min-height: 500px;
}
.demo-header {
    background: var(--gradient-hero);
    padding: 14px 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.demo-header-title { color: #fff; font-weight: 700; font-size: 0.95rem; }
.demo-header-btns { display: flex; gap: 6px; }
.demo-header-btn {
    background: rgba(255,255,255,0.12); border-radius: 6px;
    padding: 4px 10px; font-size: 0.7rem; color: rgba(255,255,255,0.7);
    border: none; cursor: pointer; font-family: inherit;
}
.demo-body { padding: 24px 20px; }
.demo-steps { display: flex; gap: 6px; margin-bottom: 24px; justify-content: center; }
.demo-step-dot {
    height: 4px; border-radius: 2px; background: var(--border);
    transition: all 0.3s;
}
.demo-step-dot.active { background: var(--accent); }
.demo-step-dot.done { background: var(--green); }
.demo-card { text-align: center; }
.demo-icon { font-size: 3rem; margin-bottom: 12px; }
.demo-card h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: 16px; color: var(--text); }
.demo-input {
    width: 100%; padding: 14px 16px; border: 2px solid var(--border);
    border-radius: 10px; font-size: 1rem; color: var(--text);
    background: var(--bg); font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}
.demo-input:focus { border-color: var(--blue); }
.demo-input::placeholder { color: var(--text-muted); }
.demo-btn {
    width: 100%; padding: 14px; border-radius: 10px; margin-top: 14px;
    background: var(--gradient-accent); color: #fff;
    font-weight: 700; font-size: 1rem; border: none;
    cursor: pointer; font-family: inherit;
    transition: all 0.2s;
}
.demo-btn:hover { box-shadow: 0 4px 16px rgba(244,123,32,0.3); }
.demo-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.demo-btn-secondary {
    background: var(--bg); color: var(--text-secondary);
    border: 1px solid var(--border);
}
.demo-btn-secondary:hover { border-color: var(--blue); color: var(--blue); box-shadow: none; }
.demo-alert {
    padding: 12px 16px; border-radius: 10px;
    font-size: 0.9rem; font-weight: 500; margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
    animation: slide-in-right 0.3s ease;
}
.demo-alert-success { background: var(--green-bg); color: var(--green); }
.demo-alert-info { background: #E3F2FD; color: #1565C0; }
.demo-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 100px;
    font-size: 0.82rem; font-weight: 600;
    margin-bottom: 12px;
}
.demo-badge-employee { background: #E3F2FD; color: #1565C0; }
.demo-badge-project { background: #FFF3E0; color: #E65100; }
.demo-scan-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px; background: var(--bg);
    border-radius: 10px; margin-bottom: 8px;
    border: 1px solid var(--border);
    animation: slide-in-right 0.25s ease;
}
.demo-scan-item-name { font-weight: 600; font-size: 0.9rem; }
.demo-scan-item-detail { font-size: 0.8rem; color: var(--text-muted); }
.demo-scan-item-qty {
    background: var(--accent); color: #fff;
    padding: 4px 12px; border-radius: 8px;
    font-weight: 700; font-size: 0.85rem;
}
.demo-btn-row { display: flex; gap: 10px; margin-top: 14px; }
.demo-btn-row .demo-btn { flex: 1; }
.demo-btn-row .demo-btn:first-child { flex: 0.6; }
.demo-pin-dots {
    display: flex; gap: 12px; justify-content: center; margin: 20px 0;
}
.demo-pin-dot {
    width: 16px; height: 16px; border-radius: 50%;
    border: 2px solid var(--border); background: transparent;
    transition: all 0.2s;
}
.demo-pin-dot.filled { background: var(--accent); border-color: var(--accent); animation: count-pulse 0.3s; }
.demo-success-anim {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--green-bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; margin: 0 auto 20px;
    animation: check-pop 0.5s ease;
}

/* ── PRICING (shared) ────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.price-card {
    background: var(--gradient-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px; text-align: center;
    transition: all 0.3s; position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--accent); box-shadow: var(--shadow-glow); transform: scale(1.02); }
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-popular {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-accent); color: #fff;
    padding: 4px 20px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.price-name { font-size: 1rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.price-amount {
    font-size: 3rem; font-weight: 900; color: var(--primary);
    letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
    font-family: 'JetBrains Mono', monospace;
}
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.price-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.5; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.price-features { list-style: none; text-align: left; margin-bottom: 32px; }
.price-features li { padding: 8px 0; font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.price-features li::before { content: '\2713'; color: var(--accent); font-weight: 700; }

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section { background: var(--gradient-hero); text-align: center; }
.cta-title { font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.03em; }
.cta-sub { font-size: 1.15rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
    width: 100%; padding: 14px 16px; border: 2px solid var(--border);
    border-radius: 10px; font-size: 0.95rem; font-family: inherit;
    color: var(--text); background: var(--bg);
    transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--blue); }
.form-textarea { resize: vertical; min-height: 120px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 28px;
    display: flex; align-items: flex-start; gap: 16px;
}
.contact-info-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(244,123,32,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.contact-info-card a { color: var(--accent); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
    .feature-detail { grid-template-columns: 1fr; gap: 32px; }
    .feature-detail.reverse { direction: ltr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 1fr; gap: 16px; }
    .timeline::before { left: 20px; }
    .timeline-item::before { left: 20px; }
    .timeline-date { text-align: left; padding-left: 48px; }
    .timeline-card { margin-left: 48px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--primary-dark); padding: 16px;
        border-top: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        z-index: 200;
    }
    .nav-links.open a { padding: 12px 16px; border-radius: 8px; }
    .nav-links.open .nav-cta { margin-top: 8px; text-align: center; justify-content: center; }
    .section { padding: 64px 20px; }
    .section-title { font-size: 2rem; }
    .page-hero { padding: 130px 20px 60px; }
    .page-hero h1 { font-size: 2.2rem; }
    .tabs { flex-direction: column; }
}
@media (max-width: 640px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Mobile hero and grids (inline styles override) ── */
@media (max-width: 900px) {
    .hero [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
    .hero [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
    .hero h1 { font-size: 2.4rem !important; }
}
@media (max-width: 768px) {
    [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
    [style*="grid-template-columns: repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
    [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns:1fr 1fr"][style*="gap:80px"] { grid-template-columns: 1fr !important; gap: 32px !important; }
    [style*="grid-template-columns: 1fr 1fr"][style*="gap:80px"] { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* ── SPLASH ANIMATION (scroll-triggered) ────────── */
.splash-anim .sp-bg,
.splash-anim .sp-pillar,
.splash-anim .sp-shelf,
.splash-anim .sp-item { opacity: 0; }

.splash-anim.animate .sp-bg { animation: sp-bg-in .4s ease forwards; }
.splash-anim.animate .sp-pillar { animation: sp-pillar-in .4s cubic-bezier(.34,1.56,.64,1) forwards; }
.splash-anim.animate .sp-p1 { animation-delay: .25s; }
.splash-anim.animate .sp-p2 { animation-delay: .35s; }
.splash-anim.animate .sp-shelf { animation: sp-shelf-in .35s cubic-bezier(.22,1,.36,1) forwards; }
.splash-anim.animate .sp-s1 { animation-delay: .5s; }
.splash-anim.animate .sp-s2 { animation-delay: .6s; }
.splash-anim.animate .sp-s3 { animation-delay: .7s; }
.splash-anim.animate .sp-item { animation: sp-item-in .3s cubic-bezier(.34,1.56,.64,1) forwards; }
.splash-anim.animate .sp-i1 { animation-delay: .85s; }
.splash-anim.animate .sp-i2 { animation-delay: .95s; }
.splash-anim.animate .sp-i3 { animation-delay: 1.05s; }
.splash-anim.animate .sp-i4 { animation-delay: 1.15s; }
.splash-anim.animate .sp-i5 { animation-delay: 1.25s; }

@keyframes sp-bg-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes sp-pillar-in { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sp-shelf-in { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes sp-item-in { from { opacity: 0; transform: scale(0); } to { opacity: .5; transform: scale(1); } }

/* Build-out animations (reverse order) */
.splash-anim.animate-out .sp-item { animation: sp-item-out .3s cubic-bezier(.34,1.56,.64,1) forwards; }
.splash-anim.animate-out .sp-i5 { animation-delay: 0s; }
.splash-anim.animate-out .sp-i4 { animation-delay: .1s; }
.splash-anim.animate-out .sp-i3 { animation-delay: .2s; }
.splash-anim.animate-out .sp-i2 { animation-delay: .3s; }
.splash-anim.animate-out .sp-i1 { animation-delay: .4s; }
.splash-anim.animate-out .sp-shelf { animation: sp-shelf-out .35s cubic-bezier(.22,1,.36,1) forwards; }
.splash-anim.animate-out .sp-s3 { animation-delay: .55s; }
.splash-anim.animate-out .sp-s2 { animation-delay: .65s; }
.splash-anim.animate-out .sp-s1 { animation-delay: .75s; }
.splash-anim.animate-out .sp-pillar { animation: sp-pillar-out .4s cubic-bezier(.34,1.56,.64,1) forwards; }
.splash-anim.animate-out .sp-p2 { animation-delay: .85s; }
.splash-anim.animate-out .sp-p1 { animation-delay: .95s; }
.splash-anim.animate-out .sp-bg { animation: sp-bg-out .4s ease 1.1s forwards; }

@keyframes sp-item-out { from { opacity: .5; transform: scale(1); } to { opacity: 0; transform: scale(0); } }
@keyframes sp-shelf-out { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(30px); } }
@keyframes sp-pillar-out { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(40px); } }
@keyframes sp-bg-out { from { opacity: 1; } to { opacity: 0; } }

/* ── DOCUMENTATION PAGE ─────────────────────────── */
.doc-search { max-width: 600px; margin: 0 auto; position: relative; }
.doc-search input {
    width: 100%; padding: 18px 24px 18px 52px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 14px; font-size: 1rem;
    color: #fff; background: rgba(255,255,255,0.08);
    font-family: inherit; outline: none; transition: border-color 0.2s;
}
.doc-search input::placeholder { color: rgba(255,255,255,0.4); }
.doc-search input:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }
.doc-search-icon {
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.4); font-size: 1.1rem;
}
.doc-categories {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin-bottom: 64px;
}
.doc-cat-card {
    background: var(--gradient-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px 20px;
    text-align: center; cursor: pointer; text-decoration: none;
    transition: all 0.2s; display: block; color: inherit;
}
.doc-cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.doc-cat-icon { font-size: 1.8rem; margin-bottom: 10px; }
.doc-cat-title { font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.doc-cat-count { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.doc-section { margin-bottom: 48px; scroll-margin-top: 100px; }
.doc-section-title {
    font-size: 1.4rem; font-weight: 800; color: var(--primary);
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex; align-items: center; gap: 12px;
}
.doc-section-icon { font-size: 1.5rem; }
.doc-faq-item { border-bottom: 1px solid var(--border-light); }
.doc-faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0; border: none; background: none; cursor: pointer;
    font-size: 0.98rem; font-weight: 600; color: var(--text);
    text-align: left; font-family: inherit; transition: color 0.2s;
}
.doc-faq-q:hover { color: var(--accent); }
.doc-faq-arrow { transition: transform 0.3s; font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0; margin-left: 16px; }
.doc-faq-item.open .doc-faq-arrow { transform: rotate(180deg); }
.doc-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.doc-faq-item.open .doc-faq-a { max-height: 600px; }
.doc-faq-a-inner { padding: 0 0 20px; color: var(--text-secondary); line-height: 1.8; font-size: 0.93rem; }
.doc-faq-a-inner ul { list-style: none; padding: 0; margin: 8px 0 0; }
.doc-faq-a-inner li { padding: 4px 0; padding-left: 20px; position: relative; }
.doc-faq-a-inner li::before { content: '\2014'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.doc-faq-a-inner a { color: var(--accent); text-decoration: none; }
.doc-faq-a-inner a:hover { text-decoration: underline; }
.doc-faq-a-inner code {
    background: var(--bg-alt); padding: 2px 8px; border-radius: 4px;
    font-family: 'JetBrains Mono', monospace; font-size: 0.85rem;
}

@media (max-width: 768px) {
    .doc-categories { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .doc-categories { grid-template-columns: 1fr; }
}
