/* ===== OneManVanFSM — Modern Marketing Theme ===== */

:root {
    --omv-primary: #4ea8de;
    --omv-primary-hover: #3a96cc;
    --omv-primary-glow: rgba(78, 168, 222, 0.25);
    --omv-accent: #38bdf8;
    --omv-dark-bg: #0e1f38;
    --omv-dark-surface: #152840;
    --omv-dark-card: #1b2d44;
    --omv-light-bg: #f4f7fb;
    --omv-white: #ffffff;
    --omv-text: #1e293b;
    --omv-text-muted: #475569;
    --omv-text-light: #94a3b8;
    --omv-success: #10b981;
    --omv-warning: #f59e0b;
    --omv-danger: #ef4444;
    --omv-border: #e2e8f0;
    --omv-radius: 16px;
    --omv-radius-sm: 10px;
    --omv-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --omv-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
    --omv-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base ===== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--omv-text);
    background: var(--omv-white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* ===== Loading Screen ===== */

.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--omv-dark-bg);
    color: #e2e8f0;
    gap: 2rem;
}

.loading-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--omv-primary);
}

.loading-brand i { font-size: 2rem; }

.loading-spinner .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(78, 168, 222, 0.2);
    border-top-color: var(--omv-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
    color: var(--omv-text-light);
    font-size: 0.9rem;
}

/* ===== Section System ===== */

.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background: var(--omv-dark-bg);
    color: #e2e8f0;
}

.section-alt {
    background: var(--omv-dark-surface);
    color: #e2e8f0;
}

.section-light {
    background: var(--omv-light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--omv-text-muted);
    max-width: 620px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.section-dark .section-subtitle,
.section-alt .section-subtitle {
    color: var(--omv-text-light);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--omv-primary);
    background: rgba(78, 168, 222, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

/* ===== Hero ===== */

.hero {
    background: var(--omv-dark-bg);
    padding: 11rem 0 7rem;
    text-align: center;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(78, 168, 222, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 70% 60%, rgba(56, 189, 248, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 50% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    animation: heroGradientDrift 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGradientDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(3%, -2%) scale(1.05); }
    100% { transform: translate(-2%, 3%) scale(1.02); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 168, 222, 0.3), transparent);
}

.hero > .container { position: relative; z-index: 1; }

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.brand-highlight {
    background: linear-gradient(135deg, var(--omv-primary) 0%, var(--omv-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--omv-text-light);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.85rem 2.25rem;
    font-weight: 600;
    border-radius: var(--omv-radius-sm);
    font-size: 1.05rem;
}

.hero-stats { margin-top: 4rem; }

.hero-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--omv-radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(78, 168, 222, 0.1);
    transition: var(--omv-transition);
}

.hero-stat:hover {
    background: rgba(78, 168, 222, 0.06);
    border-color: rgba(78, 168, 222, 0.25);
}

.hero-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--omv-primary), var(--omv-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--omv-text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.35rem;
    font-weight: 500;
}

/* ===== Buttons ===== */

.btn-primary-omv {
    background: linear-gradient(135deg, var(--omv-primary), #3b8fcc);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: var(--omv-transition);
    box-shadow: 0 4px 16px var(--omv-primary-glow);
}

.btn-primary-omv:hover {
    background: linear-gradient(135deg, var(--omv-primary-hover), #2d7ab3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--omv-primary-glow);
    color: #fff;
}

.btn-outline-omv {
    border: 2px solid rgba(78, 168, 222, 0.35);
    color: var(--omv-primary);
    background: transparent;
    font-weight: 600;
    transition: var(--omv-transition);
}

.btn-outline-omv:hover {
    border-color: var(--omv-primary);
    background: rgba(78, 168, 222, 0.08);
    color: var(--omv-primary);
    transform: translateY(-2px);
}

/* ===== USP Bar ===== */

.usp-bar {
    background: var(--omv-dark-surface);
    border-top: 1px solid rgba(78, 168, 222, 0.08);
    border-bottom: 1px solid rgba(78, 168, 222, 0.08);
    padding: 1.75rem 0;
}

.usp-item {
    text-align: center;
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 500;
}

.usp-item i {
    color: var(--omv-primary);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.4rem;
}

/* ===== Feature Cards ===== */

.feature-card {
    background: var(--omv-white);
    border: 1px solid var(--omv-border);
    border-radius: var(--omv-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--omv-transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--omv-primary), var(--omv-accent));
    opacity: 0;
    transition: var(--omv-transition);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--omv-shadow-lg), 0 0 30px rgba(78, 168, 222, 0.08);
    border-color: rgba(78, 168, 222, 0.25);
}

.feature-card:hover::before { opacity: 1; }

.section-dark .feature-card,
.section-alt .feature-card {
    background: var(--omv-dark-card);
    border-color: rgba(255, 255, 255, 0.06);
}

.section-dark .feature-card:hover,
.section-alt .feature-card:hover {
    border-color: rgba(78, 168, 222, 0.2);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.section-dark .feature-card h5,
.section-alt .feature-card h5 { color: #e2e8f0; }

.section-dark .feature-card p,
.section-alt .feature-card p { color: var(--omv-text-light); }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(78, 168, 222, 0.12), rgba(56, 189, 248, 0.08));
    color: var(--omv-primary);
}

.feature-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--omv-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ===== Replaces Table ===== */

.replaces-table {
    border-radius: var(--omv-radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.replaces-table thead th {
    background: rgba(78, 168, 222, 0.12);
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    padding: 1rem 1.25rem;
    white-space: nowrap;
}

.replaces-table tbody td {
    background: var(--omv-dark-card);
    color: #cbd5e1;
    border-color: rgba(255, 255, 255, 0.04);
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    transition: var(--omv-transition);
}

.replaces-table tbody tr:hover td {
    background: rgba(78, 168, 222, 0.06);
}

.section-light .replaces-table tbody td {
    background: var(--omv-white);
    color: var(--omv-text);
    border-color: var(--omv-border);
}

.section-light .replaces-table thead th {
    background: var(--omv-dark-bg);
    color: #e2e8f0;
}

.section-light .replaces-table tbody tr:hover td {
    background: rgba(78, 168, 222, 0.04);
}

/* ===== Comparison Table ===== */

.comparison-table {
    border-radius: var(--omv-radius);
    box-shadow: var(--omv-shadow);
    width: 100%;
}

.comparison-table thead th {
    background: var(--omv-dark-bg);
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    padding: 1rem 0.75rem;
    text-align: center;
}

.comparison-table thead th:first-child {
    text-align: left;
    width: 22%;
}

.comparison-table thead th:not(:first-child):not(.highlight-col) {
    width: 17%;
}

.comparison-table thead th.highlight-col {
    background: linear-gradient(135deg, var(--omv-primary), #3b8fcc);
    color: #fff;
    width: 27%;
}

.comparison-table tbody td {
    padding: 0.8rem;
    font-size: 0.9rem;
    text-align: center;
    border-color: var(--omv-border);
    vertical-align: middle;
    color: var(--omv-text);
    background-color: var(--omv-white);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tbody td.highlight-col {
    background-color: #eaf4fb !important;
    color: var(--omv-text);
    font-weight: 600;
    white-space: normal;
}

.comparison-table tbody tr:hover td { background-color: rgba(78, 168, 222, 0.05) !important; }

.comparison-table tbody tr:hover td.highlight-col { background-color: #d6ecf7 !important; }

/* ===== Pricing ===== */

.pricing-card {
    background: var(--omv-dark-card);
    border: 2px solid rgba(78, 168, 222, 0.15);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--omv-primary), var(--omv-accent));
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, var(--omv-primary), #3b8fcc);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 2.5rem;
    transform: rotate(45deg);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--omv-text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: 3.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--omv-primary), var(--omv-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.pricing-period {
    color: var(--omv-text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features li {
    color: #cbd5e1;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--omv-success);
    margin-right: 0.75rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-vs {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--omv-radius-sm);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-vs h6 {
    color: var(--omv-danger);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.pricing-vs-item {
    display: flex;
    justify-content: space-between;
    color: var(--omv-text-light);
    font-size: 0.85rem;
    padding: 0.3rem 0;
}

.pricing-vs-item .vs-cost {
    color: var(--omv-danger);
    font-weight: 600;
}

/* ===== FAQ ===== */

.faq-item {
    background: var(--omv-white);
    border: 1px solid var(--omv-border);
    border-radius: var(--omv-radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--omv-transition);
}

.faq-item:hover { border-color: rgba(78, 168, 222, 0.25); }

.faq-item[open] {
    box-shadow: var(--omv-shadow);
    border-color: rgba(78, 168, 222, 0.3);
}

.faq-question {
    width: 100%;
    border: none;
    background: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--omv-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--omv-transition);
    list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover { background: rgba(78, 168, 222, 0.03); }

.faq-question i {
    color: var(--omv-primary);
    transition: transform 0.25s ease;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

details[open] .faq-question i { transform: rotate(180deg); }

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--omv-text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ===== CTA Banner ===== */

.cta-banner {
    background: var(--omv-dark-bg);
    padding: 6rem 0;
    text-align: center;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(78, 168, 222, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner > .container { position: relative; z-index: 1; }

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.cta-banner p {
    color: var(--omv-text-light);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* ===== Screenshot Gallery ===== */

/* --- Tab Switcher --- */

.gallery-tabs {
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    background: var(--omv-dark-surface);
    border: 1px solid rgba(78, 168, 222, 0.12);
    border-radius: 12px;
    padding: 0.35rem;
    width: fit-content;
    margin: 0 auto 3rem;
}

.gallery-tab-btn {
    padding: 0.6rem 1.75rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--omv-text-light);
    cursor: pointer;
    transition: var(--omv-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-tab-btn:hover {
    color: var(--omv-primary);
}

.gallery-tab-btn.active {
    background: var(--omv-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(78, 168, 222, 0.35);
}

/* --- Device: Browser Frame --- */

.device-browser {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: box-shadow var(--omv-transition);
}

.gallery-card:hover .device-browser {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(78, 168, 222, 0.2);
}

.device-browser-bar {
    background: #070e18;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.device-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.device-browser-dot:nth-child(1) { background: #ff5f57; }
.device-browser-dot:nth-child(2) { background: #febc2e; }
.device-browser-dot:nth-child(3) { background: #28c840; }

.device-browser-url {
    flex: 1;
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 4px 12px;
    font-size: 0.68rem;
    color: #4a5a6a;
    font-family: 'SF Mono', 'Fira Code', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.device-browser-screen {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.device-browser-screen img {
    width: 100%;
    display: block;
    border-radius: 0;
}

/* --- Device: Phone Frame --- */

.device-phone-wrap {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0 1rem;
}

.device-phone {
    background: #070e18;
    border-radius: 38px;
    padding: 16px 10px 22px;
    border: 2px solid #1e2f42;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        6px 0 0 -1px #131e2e,
        -6px 0 0 -1px #131e2e;
    width: 190px;
    position: relative;
    transition: transform var(--omv-transition), box-shadow var(--omv-transition);
}

.gallery-card:hover .device-phone {
    transform: translateY(-6px);
    box-shadow:
        0 36px 80px rgba(0, 0, 0, 0.65),
        inset 0 0 0 1px rgba(78, 168, 222, 0.15);
}

.device-phone-notch {
    width: 56px;
    height: 5px;
    background: #1e2f42;
    border-radius: 3px;
    margin: 0 auto 10px;
}

.device-phone-screen {
    background: var(--omv-dark-surface);
    border-radius: 26px;
    overflow: hidden;
    line-height: 0;
    position: relative;
}

.device-phone-screen img {
    width: 100%;
    display: block;
    border-radius: 26px;
}

/* --- Gallery Cards --- */

.gallery-card {
    background: var(--omv-dark-card);
    border-radius: var(--omv-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--omv-transition), border-color var(--omv-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 168, 222, 0.2);
}

.gallery-card.featured {
    border-color: rgba(78, 168, 222, 0.15);
}

.gallery-card.featured:hover {
    border-color: rgba(78, 168, 222, 0.35);
}

/* --- Gallery Caption --- */

.gallery-caption {
    padding: 1.1rem 1.25rem 1.25rem;
    flex: 1;
}

.gallery-caption-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.gallery-tag {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--omv-primary);
    background: rgba(78, 168, 222, 0.12);
    padding: 0.18rem 0.6rem;
    border-radius: 20px;
    display: inline-block;
}

.gallery-caption h5 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: #e2e8f0;
    line-height: 1.4;
}

.gallery-caption p {
    font-size: 0.82rem;
    color: var(--omv-text-light);
    line-height: 1.55;
    margin-bottom: 0;
}

/* --- Gallery Placeholders (shimmer animation) --- */

.gallery-placeholder {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--omv-dark-surface) 0%, var(--omv-dark-card) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(78, 168, 222, 0.055) 50%,
        transparent 65%
    );
    background-size: 200% 100%;
    animation: shimmer 2.8s ease-in-out infinite;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.gallery-placeholder i {
    color: var(--omv-primary);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.gallery-placeholder-label {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--omv-text-light);
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

.gallery-placeholder.size-featured {
    min-height: 380px;
}

.gallery-placeholder.size-featured i {
    font-size: 4.5rem;
}

.gallery-placeholder.size-standard {
    min-height: 210px;
}

.gallery-placeholder.size-standard i {
    font-size: 2.75rem;
}

.gallery-placeholder.size-phone {
    min-height: 320px;
}

.gallery-placeholder.size-phone i {
    font-size: 2.25rem;
}

/* --- Gallery Category Headings --- */

.gallery-category-heading {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.5);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0;
}

/* ===== Replace Preview Cards ===== */

.replace-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--omv-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--omv-transition);
}

.replace-card:hover {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.15);
}

.replace-card i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.replace-card span {
    font-size: 0.85rem;
    color: var(--omv-text-light);
}

/* ===== Hosting Cards ===== */

.hosting-card {
    background: var(--omv-white);
    border: 1px solid var(--omv-border);
    border-radius: var(--omv-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--omv-transition);
}

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

.hosting-card .feature-icon {
    margin: 0 auto 1.25rem;
}

/* ===== Utilities ===== */

.text-omv-primary { color: var(--omv-primary) !important; }

.gradient-text {
    background: linear-gradient(135deg, var(--omv-primary), var(--omv-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 168, 222, 0.2), transparent);
    border: none;
    margin: 0;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .hero { padding: 9rem 0 5rem; }
    .hero-title { font-size: 2.75rem; }
    .section-title { font-size: 2rem; }
    .cta-banner h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .hero { padding: 8rem 0 4rem; }
    .hero-title { font-size: 2.25rem; }
    .hero-tagline { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .section { padding: 4rem 0; }
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 1rem; }
    .cta-banner { padding: 4rem 0; }
    .cta-banner h2 { font-size: 1.75rem; }

    /* Comparison table: enforce min-width so columns never compress to unreadable */
    .comparison-table {
        font-size: 0.82rem;
        min-width: 640px;
    }
    .comparison-table thead th { padding: 0.75rem 0.5rem; }
    .comparison-table tbody td { padding: 0.6rem 0.5rem; font-size: 0.82rem; }

    /* Replaces table */
    .replaces-table thead th { padding: 0.75rem 0.75rem; font-size: 0.78rem; }
    .replaces-table tbody td { padding: 0.7rem 0.75rem; font-size: 0.82rem; }

    /* Pricing card */
    .pricing-card { padding: 2.5rem 1.5rem; }
    .pricing-vs-item { font-size: 0.8rem; gap: 0.5rem; }
    .pricing-vs-item .vs-cost { white-space: nowrap; }

    /* FAQ answers */
    .faq-answer { font-size: 0.9rem; line-height: 1.7; }
}

/* ===== Scroll To Top Button ===== */

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--omv-primary), #3b8fcc);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--omv-primary-glow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    box-shadow: 0 8px 24px var(--omv-primary-glow);
    transform: translateY(-3px);
}

.device-browser-screen img,
.device-phone-screen img {
    width: 100%;
    display: block;
    border-radius: 0;
    cursor: zoom-in;
}

/* ===== Lightbox ===== */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightbox-fade 0.18s ease;
}

@keyframes lightbox-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100vw - 180px);
    padding-top: 2.5rem;
}

.lightbox-img {
    max-width: 100%;
    max-height: calc(100vh - 110px);
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
    display: block;
    cursor: default;
}

.lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--omv-transition);
}

.lightbox-close:hover { background: rgba(239, 68, 68, 0.65); }

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2001;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--omv-transition), transform 0.15s;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-nav:hover {
    background: rgba(78, 168, 222, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    color: #e2e8f0;
    font-size: 0.88rem;
    text-align: center;
    margin-top: 0.85rem;
    opacity: 0.9;
}

.lightbox-counter {
    font-size: 0.75rem;
    color: var(--omv-text-light);
    margin-top: 0.3rem;
}

@media (max-width: 576px) {
    .lightbox-nav { width: 44px; height: 44px; font-size: 1.3rem; }
    .lightbox-prev { left: 0.4rem; }
    .lightbox-next { right: 0.4rem; }
    .lightbox-content { width: calc(100vw - 110px); }
}

/* ===== Error UI ===== */

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

/* ===== Scroll Reveal Animations ===== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered children — each card fades in slightly later */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.56s; }

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translate(0, 0);
}

/* Animated stat counter pulse on reveal */
.hero-stat-value {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed .hero-stat-value {
    animation: statPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes statPop {
    0%   { transform: scale(0.5); opacity: 0; }
    60%  { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-stagger > *,
    .hero::before {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
