/* ============================================
   bugstack 2.0 — Vercel-Inspired Design System
   Light theme
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: #fff;
    color: #171717;
    line-height: 1.6;
    font-size: 16px;
}

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

ul { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

img, svg { display: block; }

/* --- Container --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.gradient-text {
    background: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.45) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    line-height: 1.4;
}

.btn-primary {
    background: #171717;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    background: transparent;
    color: #171717;
    border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
    border-color: #ccc;
    background: #fafafa;
}

.btn-full { width: 100%; justify-content: center; }

.btn-sm {
    font-size: 13px;
    padding: 6px 14px;
}

.btn-lg {
    font-size: 15px;
    padding: 12px 28px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid #eaeaea;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #171717;
    font-weight: 600;
    font-size: 16px;
}

.nav-logo .logo-icon {
    flex-shrink: 0;
    width: 28px;
    height: auto;
}

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

.nav-links a {
    font-size: 14px;
    color: #666;
    transition: color 0.15s;
}

.nav-links a:hover { color: #171717; }

/* Nav dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    transition: color 0.15s;
}

.nav-dropdown-trigger:hover { color: #171717; }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s, visibility 0.15s;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background 0.1s;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    background: #fafafa;
    flex-shrink: 0;
    color: #666;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.dropdown-title {
    font-size: 13px;
    font-weight: 500;
    color: #171717;
}

.dropdown-desc {
    font-size: 12px;
    color: #999;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link-auth {
    font-size: 14px;
    color: #666;
    transition: color 0.15s;
}

.nav-link-auth:hover { color: #171717; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 6px;
    background: #171717;
    color: #fff;
    transition: background 0.15s;
}

.nav-cta:hover { background: #333; }

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #171717;
    transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu-btn.active span:first-child {
    transform: translateY(3.25px) rotate(45deg);
}

.mobile-menu-btn.active span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #fff;
    padding: 24px;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
    color: #666;
    border-bottom: 1px solid #eaeaea;
    transition: color 0.15s;
}

.mobile-menu a:hover { color: #171717; }

.mobile-menu-divider {
    height: 1px;
    background: #eaeaea;
    margin: 8px 0;
}

.mobile-menu-label {
    display: block;
    padding: 12px 0 4px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-menu-indent {
    padding-left: 12px !important;
}

.mobile-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 24px !important;
    background: #171717;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 500;
    border: none !important;
}

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

.svg-filters {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image:
        repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 60px);
    filter: url(#grid-warp);
    mask-image:
        radial-gradient(ellipse 50% 45% at 50% 50%, transparent 30%, black 80%);
    -webkit-mask-image:
        radial-gradient(ellipse 50% 45% at 50% 50%, transparent 30%, black 80%);
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.hero-content {
    animation: fadeUp 0.6s ease-out;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #171717;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    max-width: 560px;
    margin: 0 auto 36px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 13px;
    color: #999;
    margin-bottom: 48px;
}

/* Terminal */
.hero-install {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
}

.hero-install::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 175%;
    height: 250%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(255, 80, 80, 0.4),
        rgba(255, 160, 60, 0.35),
        rgba(255, 230, 80, 0.3),
        rgba(80, 210, 120, 0.35),
        rgba(80, 160, 255, 0.4),
        rgba(140, 100, 255, 0.35),
        rgba(255, 100, 180, 0.35),
        rgba(255, 80, 80, 0.4)
    );
    filter: blur(60px);
    border-radius: 50%;
    animation: auraShift 12s ease-in-out infinite, auraPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.terminal-window {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid #eaeaea;
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.terminal-body {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 16px;
    font-family: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
    font-size: 14px;
}

.terminal-prompt {
    color: #999;
    user-select: none;
}

.terminal-body code {
    color: #171717;
    flex: 1;
}

.copy-btn {
    color: #999;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    flex-shrink: 0;
}

.copy-btn:hover {
    color: #171717;
    background: rgba(0,0,0,0.04);
}

.copy-btn.copied { color: #0070f3; }

/* ============================================
   Trust Badges
   ============================================ */
.trust-badges {
    padding: 80px 0;
    border-top: 1px solid #eaeaea;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #eaeaea;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
}

.badge-card {
    background: #fff;
    padding: 32px 28px;
    transition: background 0.15s;
}

.badge-card:hover { background: #fafafa; }

.badge-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #171717;
}

.badge-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
}

.badge-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section {
    padding: 120px 0;
    border-top: 1px solid #eaeaea;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #171717;
}

.section-subtitle {
    font-size: 17px;
    color: #666;
    max-width: 480px;
    margin: 0 auto;
}

/* ============================================
   How It Works
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #eaeaea;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
}

.step-card {
    background: #fff;
    padding: 36px 28px;
    transition: background 0.15s;
}

.step-card:hover { background: #fafafa; }

.step-number {
    font-size: 13px;
    font-family: 'Geist Mono', monospace;
    color: #999;
    margin-bottom: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Code block */
.code-block {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border-bottom: 1px solid #eaeaea;
}

.code-lang {
    font-size: 12px;
    color: #999;
    font-family: 'Geist Mono', monospace;
}

.code-block pre {
    padding: 16px 14px;
    font-family: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
    font-size: 13px;
    line-height: 1.7;
    overflow-x: auto;
}

.code-block code {
    color: #171717;
}

.code-block .kw { color: #cf222e; }
.code-block .str { color: #0550ae; }
.code-block .fn { color: #8250df; }
.code-block .prop { color: #953800; }
.code-block .const { color: #953800; }

/* Dashboard preview */
.dashboard-preview {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid #eaeaea;
}

.preview-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.preview-content {
    padding: 4px 0;
}

.error-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.error-row:last-child { border-bottom: none; }

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.status-error { background: #ef4444; }
.status-dot.status-fixed { background: #22c55e; }

.error-type-label {
    color: #171717;
    font-weight: 500;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
}

.error-location {
    color: #999;
    font-size: 12px;
}

/* PR preview */
.pr-preview {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
}

.pr-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid #eaeaea;
    font-size: 13px;
    color: #171717;
    font-weight: 500;
}

.pr-header-row svg { color: #22c55e; flex-shrink: 0; }

.pr-diff {
    padding: 8px 0;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
}

.diff-line {
    padding: 2px 14px;
}

.diff-comment { color: #999; }
.diff-removed { color: #cf222e; background: rgba(255,129,130,0.1); }
.diff-added { color: #1a7f37; background: rgba(46,160,67,0.1); }

/* ============================================
   Features
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #eaeaea;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
}

.feature-card {
    background: #fff;
    padding: 32px 28px;
    transition: background 0.15s;
}

.feature-card:hover { background: #fafafa; }

.feature-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #171717;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   Technology Section
   ============================================ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #eaeaea;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
}

.tech-item {
    background: #fff;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: background 0.15s;
}

.tech-item:hover { background: #fafafa; }

.tech-item svg {
    color: #666;
    margin-bottom: 4px;
}

.tech-name {
    font-size: 14px;
    font-weight: 600;
    color: #171717;
}

.tech-desc {
    font-size: 12px;
    color: #999;
}

/* ============================================
   Demo Section
   ============================================ */
.demo-visual {
    max-width: 900px;
    margin: 0 auto;
}

.browser-frame {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #eaeaea;
}

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

.browser-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.browser-url {
    font-size: 12px;
    color: #999;
    font-family: 'Geist Mono', monospace;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid #eaeaea;
}

.browser-content {
    padding: 0;
}

.demo-dashboard {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 360px;
}

.demo-sidebar {
    border-right: 1px solid #eaeaea;
    padding: 12px 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: #999;
    cursor: default;
    transition: color 0.15s;
}

.sidebar-item.active {
    color: #171717;
    background: #f5f5f5;
}

.demo-main {
    display: grid;
    grid-template-columns: 260px 1fr;
}

.demo-error-list {
    border-right: 1px solid #eaeaea;
    padding: 0;
}

.demo-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: default;
    transition: background 0.15s;
}

.demo-error.selected {
    background: #f5f5f5;
}

.error-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.error-status-dot.pending { background: #f59e0b; }
.error-status-dot.fixed { background: #22c55e; }

.error-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.error-type {
    font-size: 13px;
    font-weight: 500;
    color: #171717;
}

.error-file {
    font-size: 11px;
    color: #999;
    font-family: 'Geist Mono', monospace;
}

.error-time {
    font-size: 11px;
    color: #999;
    flex-shrink: 0;
}

/* Diff view */
.demo-diff {
    padding: 0;
}

.diff-header {
    padding: 12px 16px;
    border-bottom: 1px solid #eaeaea;
    font-size: 13px;
    font-weight: 500;
    color: #171717;
}

.diff-content {
    padding: 8px 0;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    overflow-x: auto;
}

.diff-row {
    display: flex;
    padding: 1px 0;
}

.diff-row .diff-num {
    width: 40px;
    text-align: right;
    padding-right: 12px;
    color: #ccc;
    user-select: none;
    flex-shrink: 0;
}

.diff-row .diff-code {
    color: #666;
    padding-right: 16px;
    white-space: pre;
}

.diff-row.removed { background: rgba(255,129,130,0.1); }
.diff-row.removed .diff-code { color: #cf222e; }

.diff-row.added { background: rgba(46,160,67,0.1); }
.diff-row.added .diff-code { color: #1a7f37; }

.diff-actions {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid #eaeaea;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #eaeaea;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.pricing-card {
    background: #fff;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: background 0.15s;
}

.pricing-card:hover { background: #fafafa; }

.pricing-card.featured {
    background: #fafafa;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #171717;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pricing-header {
    margin-bottom: 28px;
}

.pricing-name {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #171717;
}

.price-period {
    font-size: 14px;
    color: #999;
}

.pricing-tagline {
    font-size: 14px;
    color: #666;
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features svg {
    color: #171717;
    flex-shrink: 0;
}

.trial-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 12px;
}

.pricing-note {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.pricing-note p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.pricing-note a {
    color: #171717;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pricing-note a:hover { color: #000; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 500;
    color: #171717;
    text-align: left;
    transition: color 0.15s;
}

.faq-question:hover { color: #000; }

.faq-chevron {
    color: #999;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p, .faq-answer ul {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-answer ul {
    padding-left: 20px;
    list-style: disc;
}

.faq-answer li {
    list-style: disc;
    margin-bottom: 4px;
}

.faq-answer p:last-child, .faq-answer ul:last-child {
    margin-bottom: 20px;
}

.faq-answer a {
    color: #171717;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer strong { color: #171717; }

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #171717;
}

.cta-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.cta-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.cta-badges span {
    font-size: 13px;
    color: #999;
}

.cta-note {
    font-size: 14px;
    color: #999;
    margin-top: 24px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    border-top: 1px solid #eaeaea;
    padding: 60px 0 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 240px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #171717;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    width: 28px;
    height: auto;
}

.footer-tagline {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

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

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

.footer-column h4 {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 4px;
}

.footer-column a {
    font-size: 14px;
    color: #999;
    transition: color 0.15s;
}

.footer-column a:hover { color: #171717; }

.footer-bottom {
    border-top: 1px solid #eaeaea;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes auraShift {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(-48%, -52%) rotate(120deg) scale(1.05);
    }
    66% {
        transform: translate(-52%, -48%) rotate(240deg) scale(0.95);
    }
}

@keyframes auraPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav-links, .nav-right { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

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

    .hero-ctas .btn { width: 100%; justify-content: center; }

    .section { padding: 80px 0; }

    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 15px; }

    .badges-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .demo-dashboard {
        grid-template-columns: 1fr;
    }

    .demo-sidebar {
        display: flex;
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        padding: 0;
        overflow-x: auto;
    }

    .sidebar-item {
        white-space: nowrap;
    }

    .demo-main {
        grid-template-columns: 1fr;
    }

    .demo-error-list {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }

    .cta-title { font-size: 32px; }

    .cta-badges {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .cta-title { font-size: 26px; }
    .price-amount { font-size: 36px; }
}

/* ============================================
   Blog — Listing & Post Pages
   ============================================ */

/* Active nav link */
.nav-link-active {
    color: #171717 !important;
    font-weight: 500;
}

/* --- Blog Listing --- */
.blog-listing {
    padding: 140px 0 120px;
}

.blog-header {
    margin-bottom: 64px;
}

.blog-header h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #171717;
    margin-bottom: 12px;
}

.blog-header-desc {
    font-size: 18px;
    color: #666;
    max-width: 560px;
}

.blog-posts {
    display: flex;
    flex-direction: column;
}

.blog-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    border-top: 1px solid #eaeaea;
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
}

.blog-card:last-child {
    border-bottom: 1px solid #eaeaea;
}

.blog-card:hover {
    background: #fafafa;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 8px;
}

.blog-card-content {
    flex: 1;
}

.blog-card-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-separator {
    color: #ccc;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #171717;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 640px;
}

.blog-card-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.blog-tag {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #eaeaea;
}

.blog-card-arrow {
    font-size: 20px;
    color: #999;
    margin-left: 24px;
    flex-shrink: 0;
    transition: transform 0.15s, color 0.15s;
}

.blog-card:hover .blog-card-arrow {
    transform: translateX(4px);
    color: #171717;
}

/* --- Blog Post --- */
.blog-post {
    padding: 140px 0 120px;
}

.blog-post-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-back-link {
    display: inline-block;
    font-size: 14px;
    color: #999;
    margin-bottom: 32px;
    transition: color 0.15s;
}

.blog-back-link:hover {
    color: #171717;
}

.blog-post-header {
    margin-bottom: 48px;
}

.blog-post-meta {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-post-header h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #171717;
    margin-bottom: 16px;
}

/* --- Blog Post Body Typography --- */
.blog-post-body {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
}

.blog-post-body p {
    margin-bottom: 24px;
}

.blog-post-body h2 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #171717;
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-post-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #171717;
    margin-top: 36px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-post-body ul,
.blog-post-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.blog-post-body li {
    margin-bottom: 8px;
}

.blog-post-body strong {
    font-weight: 600;
    color: #171717;
}

.blog-post-body em {
    font-style: italic;
}

.blog-post-body a {
    color: #171717;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s;
}

.blog-post-body a:hover {
    color: #666;
}

.blog-post-body code {
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #eaeaea;
}

.blog-post-body pre {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px 24px;
    overflow-x: auto;
    margin-bottom: 24px;
}

.blog-post-body pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
}

.blog-post-body blockquote {
    border-left: 3px solid #eaeaea;
    padding-left: 20px;
    margin: 24px 0;
    color: #666;
    font-style: italic;
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    margin: 24px 0;
}

.blog-post-body hr {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 48px 0;
}

/* Blog Tables */
.blog-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.blog-table th {
    background: #fafafa;
    font-weight: 600;
    color: #171717;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #eaeaea;
}

.blog-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
}

.blog-table tr:last-child td {
    border-bottom: none;
}

.blog-table tr:hover td {
    background: #fafafa;
}

/* --- Blog Responsive --- */
@media (max-width: 768px) {
    .blog-listing {
        padding: 120px 0 80px;
    }

    .blog-header h1 {
        font-size: 36px;
    }

    .blog-header-desc {
        font-size: 16px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-card-desc {
        font-size: 14px;
    }

    .blog-card-arrow {
        display: none;
    }

    .blog-post {
        padding: 120px 0 80px;
    }

    .blog-post-header h1 {
        font-size: 30px;
    }

    .blog-post-body {
        font-size: 16px;
    }

    .blog-post-body h2 {
        font-size: 22px;
        margin-top: 36px;
    }

    .blog-post-body h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 28px;
    }

    .blog-post-header h1 {
        font-size: 26px;
    }
}

/* ============================================
   Demo Booking Form
   ============================================ */
.demo-form-section {
    padding: 80px 0;
}

.demo-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 40px;
}

.demo-form-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #171717;
    margin-bottom: 8px;
}

.demo-form-wrapper > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 32px;
}

.demo-form .form-group {
    margin-bottom: 20px;
}

.demo-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #171717;
    margin-bottom: 6px;
}

.demo-form input {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    color: #171717;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.demo-form input::placeholder {
    color: #999;
}

.demo-form input:focus {
    border-color: #171717;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.demo-form .btn {
    margin-top: 8px;
}

.demo-form-note {
    font-size: 12px;
    color: #999;
    margin-top: 16px;
    text-align: center;
}

.nav-cta-demo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    background: transparent;
    color: #171717;
    border: 1px solid #e5e5e5;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.nav-cta-demo:hover {
    border-color: #ccc;
    background: #fafafa;
}

@media (max-width: 768px) {
    .demo-form-wrapper {
        padding: 28px 20px;
    }

    .nav-cta-demo {
        display: none;
    }
}
