:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-800: #1e293b;
    --dark-700: #334155;
    --light: #f8fafc;
    --border: #e2e8f0;
    --text: #1e293b;
    --text-muted: #64748b;
    --radius: 16px;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --dark: #0f172a;
    --dark-700: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

nav.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 800;
    font-size: 1.1rem;
}

.nav-brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-700);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #2563eb 130%);
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #e2e8f0;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.stat {
    text-align: left;
}

.stat .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 4px;
}

.stat .stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 96px 0;
}

.section-header,
.section-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--dark);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.25s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: var(--primary-light);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-list {
    margin-top: 16px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dark-700);
    font-weight: 500;
}

.feature-list li .check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.icon-bolt {
    background: #fef3c7;
}

.icon-paint {
    background: #e0f2fe;
}

.icon-broom {
    background: #fce7f3;
}

.icon-image {
    background: #d1fae5;
}

/* ===== FEATURE PANELS (Alternating) ===== */
.feature-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    margin-bottom: 100px;
}

.feature-panel:last-child {
    margin-bottom: 0;
}

.feature-panel.reverse .feature-visual {
    order: 2;
}

.feature-panel .feature-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.feature-panel .feature-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-panel .feature-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-panel .feature-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--dark-700);
    font-weight: 500;
}

.feature-panel .feature-text ul li .check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 1.1rem;
}

.feature-visual {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 32px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mock UI for script manager */
.mock-script-list {
    width: 100%;
}

.mock-script-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.mock-script-item.active {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.mock-script-item.inactive {
    background: #fef2f2;
    border-color: #fecaca;
    opacity: 0.7;
}

.mock-script-name {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    font-family: 'JetBrains Mono', monospace;
}

.mock-script-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mock-script-status.enabled {
    background: #bbf7d0;
    color: #166534;
}

.mock-script-status.disabled {
    background: #fecaca;
    color: #991b1b;
}

.mock-toggle {
    width: 36px;
    height: 20px;
    border-radius: 100px;
    background: var(--success);
    position: relative;
    flex-shrink: 0;
}

.mock-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.mock-toggle.off {
    background: #cbd5e1;
}

.mock-toggle.off::after {
    right: auto;
    left: 2px;
}

/* Mock CSS */
.mock-code {
    width: 100%;
    background: #0f172a;
    border-radius: 12px;
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    line-height: 1.7;
    color: #94a3b8;
    overflow-x: auto;
}

.mock-code .comment {
    color: #64748b;
}

.mock-code .selector {
    color: #60a5fa;
}

.mock-code .property {
    color: #22d3ee;
}

.mock-code .value {
    color: #a7f3d0;
}

.mock-code .line-remove {
    background: rgba(239, 68, 68, 0.15);
    text-decoration: line-through;
    color: #fca5a5;
    display: block;
}

.mock-code .line-keep {
    display: block;
}

.mock-metric {
    width: 100%;
}

.mock-metric-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mock-metric-label {
    font-size: 0.85rem;
    font-weight: 600;
    width: 120px;
    color: var(--dark-700);
    flex-shrink: 0;
}

.mock-metric-track {
    flex: 1;
    height: 12px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.mock-metric-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.5s ease;
}

.mock-metric-fill.wide {
    width: 95%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.mock-metric-fill.medium {
    width: 70%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.mock-metric-fill.low {
    width: 30%;
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.mock-metric-value {
    font-size: 0.85rem;
    font-weight: 700;
    width: 48px;
    text-align: right;
    color: var(--dark-700);
    font-family: 'JetBrains Mono', monospace;
}

/* ===== SPEED SECTION ===== */
.speed-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    color: white;
}

.speed-section .section-title {
    color: white;
}

.speed-section .section-subtitle {
    color: #94a3b8;
}

.speed-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.speed-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.speed-card .big-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.speed-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.speed-card p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ===== HOW IT WORKS ===== */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.how-step {
    position: relative;
    padding: 32px;
    text-align: center;
}

.how-step .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
}

.how-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.how-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== TECH / SPECS ===== */
.specs-section {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.spec-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: box-shadow 0.2s;
}

.spec-card:hover {
    box-shadow: var(--shadow-lg);
}

.spec-card .spec-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.spec-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.spec-card ul {
    list-style: none;
}

.spec-card ul li {
    padding: 6px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.9rem;
    color: var(--dark-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-card ul li:last-child {
    border-bottom: none;
}

.spec-card ul li strong {
    color: var(--dark);
    margin-right: auto;
}

.version-text {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    background: var(--primary-light);
    padding: 2px 10px;
    border-radius: 6px;
}

/* ===== API CODE ===== */
.api-section {
    background: var(--light);
}

.api-code-wrapper {
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 720px;
    margin: 0 auto;
}

.api-code-header {
    background: #1e293b;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #334155;
}

.api-code-dots {
    display: flex;
    gap: 6px;
}

.api-code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.api-code-dots span:nth-child(1) {
    background: #ef4444;
}

.api-code-dots span:nth-child(2) {
    background: #f59e0b;
}

.api-code-dots span:nth-child(3) {
    background: #10b981;
}

.api-code-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #94a3b8;
}

.api-code-body {
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    overflow-x: auto;
}

.api-code-body .method {
    font-weight: 600;
}

.api-code-body .get {
    color: #22d3ee;
}

.api-code-body .post {
    color: #a7f3d0;
}

.api-code-body .path {
    color: #e2e8f0;
    margin-left: 8px;
}

.api-code-body .desc {
    color: #64748b;
    display: block;
    margin-bottom: 12px;
    margin-top: 2px;
}

/* ===== VARIABLES (Added so the section renders correctly) ===== */

/* ===== INSTALL ===== */
.install-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.install-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: white;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-700);
    cursor: pointer;
    transition: all 0.2s;
}

.install-tab:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.install-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.install-panel {
    display: none;
    max-width: 720px;
    margin: 0 auto;
}

.install-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.install-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.install-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.install-card .install-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.install-steps {
    list-style: none;
    counter-reset: install;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
}

.install-steps li {
    counter-increment: install;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--dark-700);
    line-height: 1.6;
}

.install-steps li::before {
    content: counter(install);
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.install-step-content {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.install-step-content strong {
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

.terminal {
    background: #0f172a;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 12px;
    box-shadow: var(--shadow-md);
}

.terminal-header {
    background: #1e293b;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #334155;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.terminal-dots span:nth-child(1) {
    background: #ef4444;
}

.terminal-dots span:nth-child(2) {
    background: #f59e0b;
}

.terminal-dots span:nth-child(3) {
    background: #10b981;
}

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #94a3b8;
}

.terminal-body {
    padding: 20px 40px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #e2e8f0;
    overflow-x: auto;
    word-break: break-word;
    /* white-space: pre-wrap; <-- REMOVED THIS LINE */
}

.terminal-body .prompt {
    color: #22d3ee;
}

.terminal-body .command {
    color: #a7f3d0;
}

.terminal-body .comment {
    color: #64748b;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #94a3b8;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.copy-btn.copied {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.install-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 32px;
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.6;
}

.install-note .note-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), #1d4ed8);
    color: white;
    text-align: center;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 40px;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    padding: 48px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
}

.footer-brand-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.footer-copy {
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .feature-panel,
    .speed-metrics,
    .how-steps,
    .specs-grid,
    .install-grid {
        grid-template-columns: 1fr;
    }

    .feature-panel .feature-text h3 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat .stat-number {
        font-size: 1.6rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 64px 0;
    }

    .feature-card {
        padding: 28px;
    }

    .feature-visual {
        padding: 20px;
    }

    .mock-metric-label {
        width: 80px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .install-card {
        padding: 24px 20px;
    }

    .install-steps li {
        flex-direction: column;
        gap: 12px;
    }

    .install-steps li::before {
        margin-top: 0;
    }
}