* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f0f4f8;
    --card: #ffffff;
    --primary: #3b5998;
    --primary-light: #4a7dff;
    --secondary: #8babd8;
    --highlight: #e8f0fe;
    --text-dark: #1a2b4a;
    --text-mid: #6b7c93;
    --text-light: #9ba8b7;
    --shadow: 0 2px 12px rgba(26, 43, 74, 0.08);
    --shadow-lg: 0 8px 30px rgba(26, 43, 74, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --error: #e74c3c;
}

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

/* NAV */
nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo { font-size: 28px; display: flex; align-items: center; }
.logo-img {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

footer .logo-img {
    height: 36px;
    max-width: 180px;
}

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text-dark); }
.nav-cta {
    background: var(--primary-light) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 8px;
    transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }

/* HERO */
.hero {
    text-align: center;
    padding: 80px 24px 60px;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-accent {
    color: var(--primary-light);
}

.hero-sub {
    font-size: 18px;
    color: var(--text-mid);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btn {
    display: inline-block;
    background: var(--primary-light);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(74, 125, 255, 0.35);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 125, 255, 0.45);
}

.hero-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
}

/* HOW IT WORKS */
.how-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

.how-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.step-card {
    background: white;
    padding: 32px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-mid);
}

/* DIGITIZE SECTION */
.digitize-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.digitize-container {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed #d0d8e4;
    border-radius: var(--radius);
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--primary-light);
    background: var(--highlight);
}

.upload-icon {
    margin-bottom: 4px;
}

.upload-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 16px;
}

.upload-subtext {
    font-size: 14px;
    color: var(--text-mid);
    margin-top: 4px;
}

.upload-browse {
    color: var(--primary-light);
    font-weight: 500;
    cursor: pointer;
}

.upload-formats {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
}

/* Preview Card */
.preview-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    border: 1px solid #e2e8f0;
}

.preview-card img {
    width: 100%;
    display: block;
}

.remove-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: rgba(0,0,0,0.7);
}

/* Settings */
.settings-panel {
    margin-top: 24px;
}

.settings-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.setting-group {
    flex: 1;
    min-width: 120px;
}

.setting-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.setting-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #d0d8e4;
    background: white;
    color: var(--text-dark);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
}

.setting-group select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(74, 125, 255, 0.15);
}

.instruction-group {
    margin-bottom: 20px;
}

.instruction-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-instructions-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--primary-light);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background: white;
    min-height: 88px;
    resize: vertical;
    transition: all 0.2s ease;
}

.ai-instructions-input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(74, 125, 255, 0.2);
}

.ai-instructions-input::placeholder {
    color: #9CA3AF;
    font-size: 13px;
}

.instruction-hint {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
}

/* Size toggle */
.size-toggle {
    display: flex;
    background: var(--highlight);
    border-radius: 8px;
    padding: 3px;
}

.size-tab {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.size-tab.active {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#customMode input[type="number"] {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #d0d8e4;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    width: 80px;
}

#customMode input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(74, 125, 255, 0.15);
}

.common-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.size-preset {
    padding: 6px 10px;
    border: 1px solid #d0d8e4;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 11px;
    font-family: inherit;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.3;
    transition: all 0.2s;
}

.size-preset:hover {
    border-color: var(--primary-light);
    background: var(--highlight);
}

.size-preset small {
    color: var(--text-mid);
}

.size-preset.selected {
    border-color: var(--primary-light);
    background: var(--highlight);
}

.digitize-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-light);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    font-family: inherit;
}

.digitize-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.digitize-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.debug-btn {
    display: block;
    margin: 10px auto 0;
    padding: 6px 14px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    font-family: inherit;
}

.debug-btn:hover {
    border-color: var(--text-mid);
    color: var(--text-mid);
}

/* Progress */
.progress-container {
    background: #e2e8f0;
    border-radius: 8px;
    height: 8px;
    margin-top: 24px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary-light));
    border-radius: 8px;
    width: 0%;
    transition: width 0.4s ease;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-mid);
    margin-top: 12px;
}

.progress-percent {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

/* Error */
.error-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 20px;
}

.error-card p {
    color: var(--error);
    font-size: 14px;
    text-align: center;
}

/* Results */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.comparison-card {
    text-align: center;
}

.comparison-card h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.comparison-card img {
    width: 100%;
    display: block;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    background: #fafbfc;
}

.comparison-card > div {
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: #fafbfc;
}

#stitchPreview svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.stat-card {
    background: var(--highlight);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Thread Colors */
#threadColors {
    margin-top: 20px;
}

.thread-heading {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.thread-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.thread-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--highlight);
    border-radius: 8px;
    padding: 6px 12px;
}

.thread-swatch {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.thread-info {
    font-size: 12px;
    color: var(--text-mid);
}

/* Download */
.download-section {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.format-selector {
    flex: 1;
    min-width: 180px;
}

.format-selector label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.format-selector select {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #d0d8e4;
    background: white;
    color: var(--text-dark);
    font-size: 14px;
    font-family: inherit;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.download-btn:hover { opacity: 0.85; }

/* Features */
.features-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

.features-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.feature-card {
    background: white;
    padding: 32px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-mid);
}

/* Footer */
footer {
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 40px 24px;
    text-align: center;
}

.footer-content p {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .steps-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-grid { grid-template-columns: 1fr; }
    .settings-row { flex-direction: column; }
    .download-section { flex-direction: column; }
    .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 480px) {
    .steps-grid, .features-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .digitize-container { padding: 24px 16px; }
}

/* ============================================================
   NEW LANDING PAGE SECTIONS
   ============================================================ */

/* Primary CTA button (replaces hero-btn for general use) */
.btn-primary {
    display: inline-block;
    background: var(--primary-light);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(74, 125, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 125, 255, 0.45);
}

.btn-secondary {
    display: inline-block;
    color: var(--text-mid);
    padding: 16px 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}
.btn-secondary:hover { color: var(--primary-light); }

/* HERO BADGE & STATS */
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--highlight);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-family: 'JetBrains Mono', monospace;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
}
.hero-stat { text-align: center; }
.hero-stat-value { display: block; font-size: 28px; font-weight: 800; color: var(--text-dark); }
.hero-stat-label { font-size: 12px; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; height: 40px; background: #d0d8e4; }

/* TRUST BAR */
.trust-bar {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.trust-bar p { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.brand-list { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; font-size: 14px; font-weight: 500; color: var(--text-mid); }

/* SECTION HEADER */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--highlight);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', monospace;
}
.section-header h2 { font-size: 32px; font-weight: 700; color: var(--text-dark); }
.section-sub { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-top: 12px; }

/* PRICING */
.pricing-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

.pricing-hero {
    background: var(--bg);
    padding: 40px 24px 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    background: white;
    text-align: center;
    position: relative;
}

.pricing-featured {
    border: 2px solid var(--primary-light);
    box-shadow: 0 8px 30px rgba(74, 125, 255, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-light);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.price span { font-size: 16px; font-weight: 400; color: var(--text-mid); }

.pricing-card > p { color: var(--text-mid); font-size: 14px; margin-bottom: 24px; }

.pricing-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-mid);
    border-bottom: 1px solid #f0f0f0;
}
.pricing-card li::before { content: "✓ "; color: var(--primary-light); font-weight: 700; }

.pricing-btn-primary {
    display: inline-block;
    background: var(--primary-light);
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}
.pricing-btn-primary:hover { opacity: 0.9; }

.pricing-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-light);
    padding: 12px 28px;
    border-radius: 10px;
    border: 1px solid var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}
.pricing-btn-secondary:hover { background: var(--highlight); }

/* TECHNOLOGY PIPELINE */
.tech-section { max-width: 1100px; margin: 0 auto; padding: 80px 24px; }

.pipeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pipeline-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.pipeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pipeline-number { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700; color: var(--text-light); margin-bottom: 12px; }
.pipeline-icon { margin-bottom: 12px; width: 48px; height: 48px; }
.pipeline-icon img { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; }
.pipeline-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.pipeline-tech { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--primary); margin-bottom: 12px; }
.pipeline-card p:last-of-type { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.pipeline-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 10px;
    background: var(--highlight);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
}

/* COMPARISON */
.compare-section { background: white; padding: 80px 24px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.compare-col { padding: 32px; border-radius: var(--radius); }
.compare-them { background: #f8f9fb; border: 1px solid #e2e8f0; }
.compare-us { background: linear-gradient(135deg, #eef4ff, #f0f4ff); border: 2px solid var(--primary-light); }
.compare-col h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.compare-col ul { list-style: none; }
.compare-col li { padding: 10px 0; font-size: 14px; color: var(--text-mid); border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; gap: 10px; }
.compare-us li { color: var(--text-dark); font-weight: 500; }
.compare-icon { font-size: 16px; }

/* SPECS */
.specs-section { max-width: 1100px; margin: 0 auto; padding: 80px 24px; }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.spec-card { background: white; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); }
.spec-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; color: var(--text-light); letter-spacing: 1px; margin-bottom: 4px; }
.spec-value { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.spec-card p { font-size: 12px; color: var(--text-mid); line-height: 1.5; }

/* BLOG */
.blog-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

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

.blog-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--highlight);
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px 24px 24px;
}

.blog-card-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--highlight);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 10px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
}

.blog-placeholder { opacity: 0.7; }

/* FAQ */
.faq-section { max-width: 800px; margin: 0 auto; padding: 80px 24px; }
.faq-grid { display: grid; gap: 16px; }
.faq-item { background: white; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); }
.faq-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* CTA */
.cta-section { text-align: center; padding: 80px 24px; background: linear-gradient(135deg, #eef4ff, #f0f4ff); }
.cta-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 18px; color: var(--text-mid); margin-bottom: 32px; }

/* FOOTER UPDATES */
.footer-tagline { color: var(--text-mid); font-size: 14px; margin-top: 4px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin: 16px 0; }
.footer-links a { color: var(--text-mid); text-decoration: none; font-size: 14px; }
.footer-copy { font-size: 12px; color: var(--text-light); margin-top: 12px; }

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 8px 0;
}
.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
}
.footer-legal a:hover { color: var(--text-mid); }

/* MOBILE MENU */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* LEGAL PAGES */
.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.legal-page h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.legal-updated {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-page ul {
    margin: 0 0 16px 20px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.8;
}

.legal-page li { margin-bottom: 4px; }

.disclaimer-box {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}

.disclaimer-box h2 { margin-top: 0; font-size: 18px; color: #5d4037; }
.disclaimer-box p { color: #5d4037; }

/* RESPONSIVE ADDITIONS */
@media (max-width: 768px) {
    .pipeline-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { display: none; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: white; padding: 16px; border-bottom: 1px solid #e2e8f0; gap: 12px; z-index: 99; }
    .mobile-menu { display: block; }
    .footer-legal { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
    .specs-grid { grid-template-columns: 1fr; }
}
