/* ==========================================================================
   Rammax - Raycast & macOS Sequoia Native Indie Mac Theme
   ========================================================================== */

:root {
    /* Raycast / Apple Silicon Obsidian Palette */
    --bg-main: #0a0b0e;
    --bg-surface: #12141a;
    --bg-card: rgba(22, 25, 34, 0.75);
    --bg-card-hover: rgba(30, 34, 46, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.04);
    
    /* Accents: Raycast signature Coral & Apple Sequoia Emerald */
    --accent-raycast: #ff6363;
    --accent-raycast-hover: #ff7878;
    --accent-gradient: linear-gradient(135deg, #ff6363 0%, #ff4545 45%, #ff8a65 100%);
    
    --accent-emerald: #10b981;
    --accent-emerald-glow: rgba(16, 185, 129, 0.3);
    --accent-warning: #f59e0b;
    --accent-cyan: #06b6d4;
    
    /* Typography */
    --text-primary: #f5f6f8;
    --text-secondary: #949aab;
    --text-muted: #5e6577;
    
    /* Borders & Glass Bevels */
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-medium: rgba(255, 255, 255, 0.13);
    --border-highlight: rgba(255, 255, 255, 0.2);
    --border-accent: rgba(255, 99, 99, 0.35);
    --inner-bevel: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-card: 0 16px 40px -10px rgba(0, 0, 0, 0.55);
    --shadow-window: 0 24px 70px rgba(0, 0, 0, 0.75);
    --shadow-glow: 0 0 35px rgba(255, 99, 99, 0.3);
    
    --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
    --font-mono: "SF Mono", Menlo, Monaco, "JetBrains Mono", monospace;
    --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    letter-spacing: -0.012em;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Ambient Glows (Raycast warm coral + subtle emerald) */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.glow-1 {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 99, 99, 0.18) 0%, transparent 70%);
}

.glow-2 {
    top: 600px;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
}

.glow-3 {
    top: 1400px;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 99, 99, 0.1) 0%, transparent 70%);
}

/* Keyboard Shortcut Badges */
kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border: 1px solid var(--border-medium);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px 6px;
    line-height: 1;
    margin: 0 2px;
}

/* Navigation Header */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 11, 14, 0.78);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-bolt {
    font-size: 20px;
    color: var(--accent-raycast);
    filter: drop-shadow(0 0 8px rgba(255, 99, 99, 0.6));
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.badge-tag {
    font-size: 10px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    padding: 2px 7px;
    border-radius: var(--radius-full);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 7px 14px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(255, 99, 99, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255, 99, 99, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border-color: var(--border-subtle);
    box-shadow: var(--inner-bevel);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.btn-nav-gh {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.btn-nav-gh:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-medium);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.28);
    color: #34d399;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.15);
}

.badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 30%, #ff6363 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 760px;
    margin-bottom: 40px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

/* Download Card */
.download-card {
    width: 100%;
    max-width: 640px;
    background: var(--bg-card);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    box-shadow: var(--inner-bevel), var(--shadow-window);
    padding: 24px 28px;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-download {
    width: 100%;
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 24px rgba(255, 99, 99, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 99, 99, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-download-icon {
    font-size: 28px;
    line-height: 1;
}

.btn-download-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-dl-title {
    font-size: 16px;
    font-weight: 700;
}

.btn-dl-sub {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

.download-options {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.dl-alt-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.dl-link {
    color: var(--accent-raycast);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.dl-link:hover {
    color: var(--accent-raycast-hover);
    text-decoration: underline;
}

.dl-sep {
    color: var(--border-medium);
}

.download-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.install-tip {
    background: rgba(255, 99, 99, 0.08);
    border: 1px solid rgba(255, 99, 99, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.45;
    color: #ffb3b3;
    text-align: left;
}

.badge-recommended {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.install-header h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.install-header p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Terminal Install Box */
.terminal-install-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terminal-install-box {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 25px rgba(56, 189, 248, 0.08);
}

.terminal-code-row {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    min-width: 0;
}

.terminal-prompt {
    color: var(--accent-raycast);
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 800;
    user-select: none;
}

.terminal-cmd {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: #38bdf8;
    white-space: nowrap;
    user-select: all;
}

.btn-terminal-copy {
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-sm);
    padding: 9px 18px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 99, 99, 0.35);
    flex-shrink: 0;
}

.btn-terminal-copy:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(255, 99, 99, 0.55);
}

.terminal-subtext {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.terminal-subtext strong {
    color: #34d399;
}

/* Other Options Accordion Drawer */
.other-options-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    margin-top: 4px;
}

.btn-other-options {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-other-options:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.other-options-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
    font-size: 11px;
}

.other-options-arrow.open {
    transform: rotate(180deg);
}

.other-options-drawer {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    animation: fadeIn 0.2s ease;
}

.other-options-drawer.hidden {
    display: none;
}

.warning-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    gap: 12px;
    font-size: 12.5px;
    line-height: 1.5;
    color: #fde68a;
}

.warning-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.warning-box strong {
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

.warning-box code {
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
    color: #38bdf8;
}

.dmg-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.btn-dmg {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 14px;
    text-decoration: none;
    gap: 2px;
}

.btn-dmg span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-dmg small {
    font-size: 11px;
    color: var(--text-muted);
}

.install-tip strong {
    color: #ffffff;
}

/* Authentic Dashboard Preview Showcase */
.hero-preview-container {
    width: 100%;
    max-width: 960px;
    margin: 16px auto 36px;
    position: relative;
    z-index: 2;
}

.hero-preview-window {
    background: #0d0f14;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-window), 0 0 60px rgba(255, 99, 99, 0.12), var(--inner-bevel);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hero-preview-window:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 70px rgba(255, 99, 99, 0.22);
}

.hero-preview-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Visual Memory Comparison Bar */
.visual-comparison {
    width: 100%;
    max-width: 780px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--inner-bevel), var(--shadow-card);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comp-header h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--text-primary);
}

.comp-metric-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 3px 9px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 12px;
}

.comp-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comp-bar-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comp-bar-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.comp-name {
    color: var(--text-secondary);
    font-weight: 500;
}

.comp-val {
    font-weight: 700;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.val-electron {
    color: #ef4444;
}

.val-rammax {
    color: #10b981;
}

.bar-track {
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-electron {
    background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
}

.bar-rammax {
    background: linear-gradient(90deg, #10b981 0%, #06b6d4 100%);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

.comp-footer {
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 12px;
}

.comp-footer strong {
    color: #10b981;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-raycast);
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Table Card */
.table-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--inner-bevel), var(--shadow-card);
    overflow: hidden;
}

.bench-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.bench-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.bench-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.table-app-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 4px;
}

.bench-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.bench-old {
    color: #ef4444;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.bench-new {
    color: var(--text-primary);
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.bench-saved {
    color: #10b981;
    font-weight: 700;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.bench-table-summary {
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 14px;
}

.summary-metric {
    font-weight: 800;
    color: #34d399;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--inner-bevel), var(--shadow-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-medium);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 4px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 400px));
    justify-content: center;
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--inner-bevel), var(--shadow-card);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.pricing-guarantee {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--border-accent);
    background: linear-gradient(180deg, rgba(255, 99, 99, 0.08) 0%, rgba(22, 25, 34, 0.95) 100%);
    box-shadow: var(--inner-bevel), 0 20px 50px rgba(255, 99, 99, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(255, 99, 99, 0.4);
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.price-currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-val {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text-primary);
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li strong {
    color: var(--text-primary);
}

.check-icon {
    color: #10b981;
    font-weight: 800;
}

.btn-full {
    width: 100%;
}

/* FAQ Accordion */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    text-align: left;
    box-sizing: border-box;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question:focus {
    outline: none;
}

.faq-toggle {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    margin-left: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-answer {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #08090c;
    border-top: 1px solid var(--border-subtle);
    padding: 40px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .nav-links {
        display: none;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
