/* ==========================================================================
   DashboardFox Self-Hosted Page Styles
   Page-specific styles for self-hosted.html
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page Header Override
   -------------------------------------------------------------------------- */
.page-header-inner { max-width: 800px; }

/* --------------------------------------------------------------------------
   Section Dark Variant
   -------------------------------------------------------------------------- */
.section-dark { background: var(--color-text); color: white; }

/* --------------------------------------------------------------------------
   Credibility line (matches other pages)
   -------------------------------------------------------------------------- */
.page-header .credibility {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   Use Cases — Alternating Rows
   -------------------------------------------------------------------------- */
.use-cases-rows {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.uc-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s;
}
.uc-row:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}
.uc-row-reverse { direction: rtl; }
.uc-row-reverse > * { direction: ltr; }

/* Visual side */
.uc-row-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    min-height: 200px;
}
.uc-row-visual-green { background: linear-gradient(135deg, rgba(20, 117, 58, 0.05) 0%, rgba(20, 117, 58, 0.02) 100%); }
.uc-row-visual-blue { background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%); }

/* Content side */
.uc-row-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.uc-row-content .use-case-card-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}
.uc-row-content .use-case-card-icon svg { width: 24px; height: 24px; }
.uc-row-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.uc-row-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}
.uc-row-content p:last-child { margin-bottom: 0; }
.uc-row-content .tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--color-success-soft);
    color: var(--color-success);
    align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Use Case Diagram Shared Primitives
   -------------------------------------------------------------------------- */
.uc-diagram {
    width: 100%;
    max-width: 420px;
}
.uc-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.uc-mini-icon svg { width: 20px; height: 20px; }
.uc-icon-blue { background: var(--color-primary-soft); color: var(--color-primary); }
.uc-icon-green { background: var(--color-success-soft); color: var(--color-success); }
.uc-icon-primary { background: var(--color-primary); color: white; }
.uc-mini-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.uc-mini-node span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    white-space: nowrap;
}
.uc-mini-node-accent span { color: var(--color-primary); font-weight: 700; }
.uc-connector {
    flex: 0 0 auto;
    padding: 0 8px;
    display: flex;
    align-items: center;
}
.uc-connector-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--color-border);
    position: relative;
}
.uc-connector-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    border-left: 5px solid var(--color-border);
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
}
.uc-visual-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.uc-visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
}
.uc-visual-badge svg { width: 13px; height: 13px; }
.uc-visual-badge-green { background: var(--color-success-soft); color: var(--color-success); }
.uc-visual-badge-blue { background: var(--color-primary-soft); color: var(--color-primary); }

/* --- Diagram 1: Security Boundary --- */
.uc-boundary {
    border: 1.5px dashed var(--color-success);
    border-radius: var(--radius-lg);
    padding: 32px 24px 24px;
    position: relative;
    background: rgba(255,255,255,0.5);
}
.uc-boundary-label {
    position: absolute;
    top: -12px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-success);
    background: var(--color-success-soft);
    padding: 3px 12px 3px 8px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}
.uc-boundary-label svg { width: 14px; height: 14px; }
.uc-boundary-flow {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Diagram 2: Embedded Browser --- */
.uc-browser {
    border: 1.5px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.uc-browser-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--color-bg-muted);
    border-bottom: 1px solid var(--color-border);
}
.uc-browser-dots { display: flex; gap: 5px; }
.uc-browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
}
.uc-browser-url {
    flex: 1;
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
    background: white;
    padding: 4px 12px;
    border-radius: 5px;
    border: 1px solid var(--color-border);
    text-align: center;
}
.uc-browser-body {
    display: flex;
    min-height: 120px;
}
.uc-browser-sidebar {
    width: 56px;
    padding: 12px 8px;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: rgba(37, 99, 235, 0.015);
}
.uc-sb-item {
    height: 7px;
    border-radius: 3px;
    background: var(--color-border);
    opacity: 0.6;
}
.uc-sb-active {
    background: var(--color-primary);
    opacity: 0.35;
    box-shadow: inset 0 0 0 0.5px var(--color-primary);
}
.uc-embed-zone {
    flex: 1;
    margin: 10px;
    padding: 10px;
    border: 1.5px dashed rgba(37, 99, 235, 0.3);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.uc-embed-kpis { display: flex; gap: 6px; }
.uc-kpi {
    flex: 1;
    padding: 8px;
    background: var(--color-bg-muted);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.uc-kpi-val {
    display: block;
    height: 7px;
    width: 60%;
    border-radius: 2px;
}
.uc-kpi-blue { background: var(--color-primary); opacity: 0.3; }
.uc-kpi-green { background: var(--color-success); opacity: 0.3; }
.uc-kpi-label {
    display: block;
    height: 4px;
    width: 45%;
    border-radius: 2px;
    background: var(--color-border);
    opacity: 0.5;
}
.uc-embed-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 4px 2px 0;
    min-height: 44px;
}
.uc-embed-chart span {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: var(--color-primary);
    opacity: 0.45;
}
.uc-embed-chart span:nth-child(even) { opacity: 0.7; }
.uc-embed-tag {
    position: absolute;
    bottom: 6px;
    right: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    padding: 2px 8px;
    border-radius: 3px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

/* --- Diagram 3: Deploy Flow --- */
.uc-deploy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}
.uc-deploy-from,
.uc-deploy-to {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}
.uc-deploy-name { font-size: 13px; font-weight: 700; color: var(--color-text); }
.uc-deploy-sub { font-size: 11px; font-weight: 500; color: var(--color-text-muted); }
.uc-deploy-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    min-width: 80px;
}
.uc-deploy-arrow-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--color-border);
    position: relative;
}
.uc-deploy-arrow-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3.5px;
    border-left: 6px solid var(--color-border);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}
.uc-deploy-arrow-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    padding: 3px 12px;
    border-radius: 100px;
    white-space: nowrap;
}
.uc-deploy-server {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.uc-deploy-users {
    display: flex;
    gap: 5px;
    margin-top: 4px;
}
.uc-deploy-users span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-success-soft);
    border: 1.5px solid rgba(22, 163, 74, 0.2);
}

/* --- Diagram 4: Pricing Comparison --- */
.uc-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}
.uc-pricing-old,
.uc-pricing-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.uc-pricing-old { position: relative; }
.uc-pricing-invoices {
    position: relative;
    width: 100px;
    height: 80px;
}
.uc-invoice {
    position: absolute;
    border-radius: 6px;
    border: 1px solid rgba(214, 53, 32, 0.18);
    background: white;
}
.uc-invoice-back {
    width: 86px; height: 66px; top: 0;
    left: 50%; transform: translateX(-50%); opacity: 0.3;
}
.uc-invoice-mid {
    width: 90px; height: 68px; top: 4px;
    left: 50%; transform: translateX(-50%); opacity: 0.5;
}
.uc-invoice-front {
    width: 96px; height: 72px; top: 8px;
    left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: flex-start; padding: 10px 12px; gap: 4px;
}
.uc-invoice-line {
    display: block; height: 4px; width: 70%;
    border-radius: 2px; background: rgba(214, 53, 32, 0.1);
}
.uc-invoice-line.short { width: 45%; }
.uc-invoice-amount { font-size: 16px; font-weight: 800; color: #d63520; opacity: 0.5; margin-top: auto; }
.uc-invoice-period { font-size: 10px; font-weight: 600; color: #d63520; opacity: 0.4; }
.uc-pricing-strike {
    position: absolute; top: 48%; left: 50%;
    width: 110px; height: 2px; background: #d63520; opacity: 0.35;
    transform: translate(-50%, -50%) rotate(-18deg); pointer-events: none;
}
.uc-pricing-label {
    font-size: 11px; font-weight: 600; padding: 3px 12px; border-radius: 100px;
}
.uc-pricing-label-red { background: rgba(214, 53, 32, 0.08); color: #d63520; }
.uc-pricing-label-green { background: var(--color-success-soft); color: var(--color-success); }
.uc-pricing-arrow { padding: 0 14px; display: flex; align-items: center; }
.uc-pricing-arrow-line {
    display: block; width: 32px; height: 1.5px;
    background: var(--color-success); opacity: 0.4; position: relative;
}
.uc-pricing-arrow-line::after {
    content: ""; position: absolute; right: 0; top: -3.5px;
    border-left: 6px solid var(--color-success);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent; opacity: 0.4;
}
.uc-receipt {
    width: 110px; padding: 14px 16px;
    border: 2px solid var(--color-success); border-radius: 10px;
    background: rgba(255,255,255,0.8);
    display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.uc-receipt-check {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--color-success-soft);
    display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.uc-receipt-check svg { width: 13px; height: 13px; color: var(--color-success); }
.uc-receipt-amount { font-size: 20px; font-weight: 800; color: var(--color-success); }
.uc-receipt-period { font-size: 12px; font-weight: 600; color: var(--color-text-muted); }


/* --------------------------------------------------------------------------
   Architecture Diagram (Why Self-Host)
   -------------------------------------------------------------------------- */
/* ============================================================
   ARCHITECTURE DIAGRAM — card-based layout
   ============================================================ */
.sh-architecture {
    max-width: 960px;
    margin: 0 auto;
}

.sh-arch-cards-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

/* Arch cards */
.sh-arch-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-surface);
}
.sh-arch-card-infra { border: 1.5px solid var(--color-primary); }
.sh-arch-card-db    { border: 1.5px solid var(--color-success); }

.sh-arch-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border-subtle);
}
.sh-arch-card-infra .sh-arch-card-header { background: var(--color-primary-soft); }
.sh-arch-card-db .sh-arch-card-header    { background: var(--color-success-soft); }

.sh-arch-card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sh-arch-card-icon svg { width: 18px; height: 18px; }
.sh-arch-card-icon-blue  { background: var(--color-primary-soft); color: var(--color-primary); border: 1px solid rgba(55,152,255,0.2); }
.sh-arch-card-icon-green { background: var(--color-success-soft); color: var(--color-success); border: 1px solid rgba(22,163,74,0.2); }

.sh-arch-card-meta { flex: 1; min-width: 0; }
.sh-arch-card-meta strong { display: block; font-size: 14px; font-weight: 700; color: var(--color-text); }
.sh-arch-card-meta span   { display: block; font-size: 13px; color: var(--color-text-muted); }

.sh-arch-card-body { padding: 14px 16px; }

/* Server rows in infra card */
.sh-arch-server-rows { display: flex; flex-direction: column; gap: 6px; }
.sh-arch-server-row {
    height: 14px;
    border-radius: 3px;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border-subtle);
    position: relative;
    overflow: hidden;
}
.sh-arch-server-row-active { border-color: rgba(55,152,255,0.3); }
.sh-arch-server-row-active::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.7;
}

/* DB preview table in db card */
.sh-arch-db-rows {
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
    font-size: 13px;
}
.sh-arch-db-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 8px;
    padding: 5px 10px;
    color: var(--color-text-secondary);
}
.sh-arch-db-row.conn-preview-header {
    background: var(--color-success-soft);
    color: var(--color-success);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.sh-arch-db-row-alt { background: var(--color-bg-subtle); }

/* Card footers */
.sh-arch-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-top: 1px solid var(--color-border-subtle);
    font-size: 13px;
    font-weight: 600;
}
.sh-arch-card-footer svg { width: 14px; height: 14px; flex-shrink: 0; }
.sh-arch-card-footer-blue  { background: var(--color-primary-soft); color: var(--color-primary); }
.sh-arch-card-footer-green { background: var(--color-success-soft); color: var(--color-success); }

/* Center connector */
.sh-arch-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.sh-arch-connector-line {
    width: 1px;
    height: 20px;
    background: var(--color-border);
}
.sh-arch-connector-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 14px;
    background: var(--color-surface);
    border: 1.5px solid var(--color-primary);
    border-radius: var(--radius-md);
    text-align: center;
    white-space: nowrap;
}
.sh-arch-connector-hub-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--color-primary-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sh-arch-connector-hub-icon svg { width: 16px; height: 16px; }
.sh-arch-connector-hub strong { font-size: 13px; font-weight: 700; color: var(--color-text); }
.sh-arch-connector-hub span   { font-size: 13px; color: var(--color-text-muted); }
.sh-arch-connector-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-success);
    padding: 4px 8px;
    background: var(--color-success-soft);
    border-radius: 100px;
    border: 1px solid rgba(22,163,74,0.2);
}
.sh-arch-connector-badge svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Architecture benefit badges */
.sh-arch-benefits {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}
.sh-arch-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-secondary);
    padding: 8px 16px;
    background: var(--color-bg-muted);
    border-radius: 100px;
}
.sh-arch-benefit svg { width: 18px; height: 18px; color: var(--color-primary); }


/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing-intro { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.pricing-intro h2 { font-size: clamp(32px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.pricing-intro p { font-size: 18px; color: var(--color-text-secondary); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.pricing-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s;
}
.pricing-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
@media (prefers-reduced-motion: reduce) {
    .pricing-card:hover { transform: none; }
}
.pricing-card.popular {
    border-color: var(--color-primary);
    border-width: 2px;
    position: relative;
}
.pricing-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-card-users {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-card-count { font-size: 36px; font-weight: 800; margin-bottom: 4px; }
.pricing-card-label { font-size: 15px; color: var(--color-text-muted); margin-bottom: 20px; }
.pricing-card-price { font-size: 28px; font-weight: 800; color: var(--color-primary); margin-bottom: 4px; }
.pricing-card-note { font-size: 14px; color: var(--color-text-muted); }

.pricing-includes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    padding: 24px;
    background: var(--color-bg-muted);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}
.pricing-includes span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--color-text-secondary);
}
.pricing-includes span svg { width: 18px; height: 18px; color: var(--color-success); }

.pricing-cta { text-align: center; }
.pricing-cta p { font-size: 16px; color: var(--color-text-muted); margin-top: 16px; }

/* --------------------------------------------------------------------------
   Renewal Options
   -------------------------------------------------------------------------- */
.renewal-options {
    background: var(--color-bg-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 32px;
}
.renewal-options-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.renewal-options-header svg { width: 24px; height: 24px; color: var(--color-primary); }
.renewal-options-header h3 { font-size: 20px; font-weight: 700; margin: 0; }
.renewal-options > p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}
.renewal-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.renewal-option {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}
.renewal-option.highlight {
    background: var(--color-success-soft);
    border-color: rgba(22, 163, 74, 0.3);
}
.renewal-option-name { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.renewal-option-price { font-size: 24px; font-weight: 800; color: var(--color-primary); margin-bottom: 8px; }
.renewal-option.highlight .renewal-option-price { color: var(--color-success); }
.renewal-option-price span { font-size: 14px; font-weight: 500; color: var(--color-text-muted); }
.renewal-option-desc { font-size: 16px; color: var(--color-text-secondary); line-height: 1.5; }
.renewal-note {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}
.renewal-note a { color: var(--color-primary); }

/* --------------------------------------------------------------------------
   Special Pricing Callout
   -------------------------------------------------------------------------- */
.special-pricing {
    background: var(--color-primary-soft);
    border: 1px solid rgba(55, 152, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
}
.special-pricing-icon {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.special-pricing-icon svg { width: 32px; height: 32px; }
.special-pricing-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.special-pricing-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}
.special-pricing-content a { color: var(--color-primary); font-weight: 600; }

/* Requirement SVG illustrations — consistent height across all 3 cards */
.req-svg {
    width: 120px;
    height: 80px;
    display: block;
}

/* System Requirements — Thumbs
   -------------------------------------------------------------------------- */
.requirement-card-thumb {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.req-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
}

/* CPU thumb */
.req-thumb-cpu { gap: 6px; }
.req-thumb-cpu-pins {
    display: flex;
    gap: 8px;
}
.req-thumb-cpu-pins span {
    display: block;
    width: 2px;
    height: 8px;
    background: var(--color-primary);
    opacity: 0.5;
    border-radius: 1px;
}
.req-thumb-cpu-middle {
    display: flex;
    align-items: center;
    gap: 6px;
}
.req-thumb-cpu-pins-side {
    flex-direction: column;
}
.req-thumb-cpu-pins-side span {
    width: 8px;
    height: 2px;
}
.req-thumb-cpu-die {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 8px;
    background: var(--color-primary-soft);
    border: 1px solid rgba(55,152,255,0.25);
    border-radius: 4px;
}
.req-thumb-cpu-core {
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    opacity: 0.35;
    border-radius: 2px;
}

/* RAM thumb */
.req-thumb-ram { width: 120px; gap: 0; }
.req-thumb-ram-stick {
    width: 100%;
    background: var(--color-primary-soft);
    border: 1px solid rgba(55,152,255,0.25);
    border-radius: 3px 3px 0 0;
    padding: 8px 6px;
}
.req-thumb-ram-chips {
    display: flex;
    gap: 4px;
    justify-content: center;
}
.req-thumb-ram-chip {
    width: 14px;
    height: 16px;
    background: var(--color-primary);
    opacity: 0.25;
    border-radius: 2px;
    border: 1px solid rgba(55,152,255,0.3);
}
.req-thumb-ram-chip-active { opacity: 0.55; }
.req-thumb-ram-pins {
    display: flex;
    gap: 6px;
    padding: 4px 6px;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border-subtle);
    border-top: none;
    border-radius: 0 0 3px 3px;
    width: 100%;
    box-sizing: border-box;
}
.req-thumb-ram-pins span {
    flex: 1;
    height: 8px;
    background: var(--color-primary);
    opacity: 0.2;
    border-radius: 1px;
}

/* DB thumb */
.req-thumb-db { gap: 0; }
.req-thumb-db-top {
    width: 70px;
    height: 12px;
    background: var(--color-success-soft);
    border: 1px solid rgba(22,163,74,0.3);
    border-radius: 50%;
}
.req-thumb-db-body {
    width: 70px;
    background: var(--color-success-soft);
    border-left: 1px solid rgba(22,163,74,0.3);
    border-right: 1px solid rgba(22,163,74,0.3);
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.req-thumb-db-stripe {
    height: 6px;
    background: var(--color-success);
    opacity: 0.2;
    border-radius: 2px;
}
.req-thumb-db-stripe-active { opacity: 0.5; }
.req-thumb-db-bottom {
    width: 70px;
    color: var(--color-success);
    opacity: 0.5;
    margin-top: -2px;
}
.req-thumb-db-bottom svg { width: 70px; height: auto; display: block; }

/* --------------------------------------------------------------------------
   Download Section — HTML/CSS Illustrations
   -------------------------------------------------------------------------- */
.download-card-illustration {
    margin-bottom: 16px;
    padding: 12px;
    background: var(--color-bg-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 150px;
    width: 100%;
    box-sizing: border-box;
}

.download-card-illustration .dl-mockup {
    width: 100%;
}

.dl-mockup {
    width: 100%;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 11px;
}

.dl-mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: var(--color-primary-soft);
    border-bottom: 1px solid var(--color-border-subtle);
}
.dl-mockup-titlebar-dark {
    background: var(--color-bg-subtle);
}
.dl-mockup-dots {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.dl-mockup-dots span,
.dl-mockup-dots .dl-dot-red,
.dl-mockup-dots .dl-dot-amber,
.dl-mockup-dots .dl-dot-green {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-border);
}
.dl-dot-red   { background: #ef4444; opacity: 0.7; }
.dl-dot-amber { background: #f59e0b; opacity: 0.7; }
.dl-dot-green { background: #22c55e; opacity: 0.7; }

.dl-mockup-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    flex: 1;
    text-align: center;
}
.dl-title-muted { color: var(--color-text-muted); }

/* Windows mockup body */
.dl-mockup-body {
    padding: 10px 12px;
}
.dl-mockup-status {
    font-size: 11px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}
.dl-progress-track {
    height: 10px;
    background: var(--color-primary-soft);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}
.dl-progress-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dl-progress-fill span {
    font-size: 8px;
    font-weight: 700;
    color: white;
}
.dl-mockup-checklist {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dl-check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--color-text-muted);
}
.dl-check-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.dl-check-done { color: var(--color-success); }
.dl-check-done svg { color: var(--color-success); }
.dl-check-active { color: var(--color-primary); font-weight: 600; }
.dl-check-spinner {
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-primary-soft);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    animation: dl-spin 0.8s linear infinite;
}
@keyframes dl-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .dl-check-spinner { animation: none; border-top-color: var(--color-primary); }
}

.dl-mockup-footer {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    padding: 8px 12px;
    border-top: 1px solid var(--color-border-subtle);
    background: var(--color-bg-subtle);
}
.dl-mockup-btn {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 600;
    cursor: default;
}
.dl-mockup-btn-ghost {
    background: white;
    color: var(--color-primary);
    border: 1px solid rgba(55,152,255,0.3);
}
.dl-mockup-btn-primary {
    background: var(--color-primary);
    color: white;
}

/* Linux terminal mockup */
.dl-terminal-body {
    padding: 10px 12px;
    background: var(--color-bg-subtle);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.dl-terminal-line {
    font-family: monospace;
    font-size: 10.5px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}
.dl-terminal-cmd  { color: var(--color-primary); font-weight: 700; }
.dl-terminal-success { color: var(--color-success); font-weight: 700; }

/* Docker mockup */
.dl-mockup-docker {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    padding: 12px 10px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    height: 100%;
    box-sizing: border-box;
}
.dl-docker-registry {
    padding: 8px;
    background: var(--color-success-soft);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: var(--radius-sm);
    text-align: center;
}
.dl-docker-registry-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-success);
    margin-bottom: 6px;
}
.dl-docker-layers { display: flex; flex-direction: column; gap: 3px; }
.dl-docker-layer {
    height: 8px;
    border-radius: 2px;
    background: var(--color-success);
    opacity: 0.2;
    border: 1px solid rgba(22,163,74,0.25);
}
.dl-docker-layer-mid { opacity: 0.35; }
.dl-docker-layer-top { opacity: 0.55; }

.dl-docker-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 8px;
    color: var(--color-success);
}
.dl-docker-arrow-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-success);
}
.dl-docker-arrow-line svg { width: 36px; height: 14px; color: var(--color-success); }

.dl-docker-container {
    padding: 8px;
    background: white;
    border: 1.5px solid var(--color-success);
    border-radius: var(--radius-sm);
}
.dl-docker-container-header {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dl-docker-container-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-success);
    flex-shrink: 0;
}
.dl-docker-container-kpis {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}
.dl-docker-kpi {
    flex: 1;
    height: 12px;
    border-radius: 2px;
    background: var(--color-primary-soft);
    border: 1px solid rgba(55,152,255,0.2);
}
.dl-docker-kpi-green {
    background: var(--color-success-soft);
    border-color: rgba(22,163,74,0.2);
}
.dl-docker-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 700;
    color: var(--color-success);
}
.dl-docker-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-success);
    flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   System Requirements — Grid & Cards
   -------------------------------------------------------------------------- */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.requirement-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}
.requirement-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.requirement-specs { display: flex; flex-direction: column; gap: 12px; }
.requirement-spec {
    padding: 12px;
    background: var(--color-bg-muted);
    border-radius: var(--radius-md);
}
.requirement-spec.recommended {
    background: var(--color-success-soft);
    border: 1px solid rgba(22, 163, 74, 0.2);
}
.requirement-spec-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}
.requirement-spec.recommended .requirement-spec-label { color: var(--color-success); }
.requirement-spec-value { font-size: 20px; font-weight: 800; color: var(--color-text); }
.requirement-spec.recommended .requirement-spec-value { color: var(--color-success); }

/* --------------------------------------------------------------------------
   Download Section
   -------------------------------------------------------------------------- */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.download-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.download-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
@media (prefers-reduced-motion: reduce) {
    .download-card:hover { transform: none; }
}

/* Download card color variants */
.download-card.download-windows { border-color: rgba(55, 152, 255, 0.3); }
.download-card.download-windows:hover { border-color: var(--color-primary); }
.download-card.download-windows .download-card-icon { background: var(--color-primary-soft); }
.download-card.download-windows .btn { background: var(--color-primary); }
.download-card.download-windows .btn:hover { background: var(--color-primary-dark); box-shadow: var(--shadow-primary); }

.download-card.download-linux { border-color: rgba(255, 88, 71, 0.3); }
.download-card.download-linux:hover { border-color: var(--color-accent); }
.download-card.download-linux .download-card-icon { background: var(--color-accent-soft); }
.download-card.download-linux .btn { background: var(--color-accent); }
.download-card.download-linux .btn:hover { background: var(--color-accent-hover); box-shadow: var(--shadow-accent); }

.download-card.download-docker { border-color: rgba(22, 163, 74, 0.3); }
.download-card.download-docker:hover { border-color: var(--color-success); }
.download-card.download-docker .download-card-icon { background: var(--color-success-soft); }
.download-card.download-docker .btn { background: var(--color-success); }
.download-card.download-docker .btn:hover { background: #15803d; box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3); }

.download-card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-muted);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.download-card-icon img { height: 40px; width: auto; }
.download-card-icon svg { width: 36px; height: 36px; color: var(--color-text); }
.download-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.download-card p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}
.download-card .btn { width: 100%; color: white; }

.download-note {
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    background: var(--color-bg-muted);
    border-radius: var(--radius-md);
}
.download-note p { font-size: 16px; color: var(--color-text-secondary); margin: 0; }
.download-note strong { color: var(--color-text); }

/* --------------------------------------------------------------------------
   FAQ Section (accordion style - consistent with other pages)
   -------------------------------------------------------------------------- */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
}
.faq-question:hover { color: var(--color-primary); }
.faq-question:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding-bottom: 24px;
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* --------------------------------------------------------------------------
   Yurbi Callout
   -------------------------------------------------------------------------- */
.yurbi-callout {
    background: var(--color-bg-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 60px;
}
.yurbi-callout p { font-size: 16px; color: var(--color-text-secondary); margin: 0; }
.yurbi-callout p strong { color: var(--color-text); }
.yurbi-callout a {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.yurbi-callout a:hover { text-decoration: underline; }
.yurbi-callout a svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   Product Comparison Grid
   -------------------------------------------------------------------------- */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.compare-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.compare-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}
.compare-card-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}
.compare-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}
.compare-features li {
    font-size: 15px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--color-border-light, rgba(0,0,0,0.05));
}
.compare-features li::before {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 15px;
}
.compare-features li.included {
    color: var(--color-text-secondary);
}
.compare-features li.included::before {
    content: "✓";
    color: var(--color-success);
    font-weight: 700;
}
.compare-features li.not-included {
    color: var(--color-text-muted);
}
.compare-features li.not-included::before {
    content: "✗";
    color: var(--color-text-muted);
}
.compare-features li.caution {
    color: var(--color-text-secondary);
}
.compare-features li.caution::before {
    content: "⚠";
    font-size: 13px;
}
.compare-best-for {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}
.compare-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.models-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-bg-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-top: 32px;
}
.models-note svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.models-note p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}
.models-note a { color: var(--color-primary); }

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-content h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.contact-content > p {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-options { display: flex; flex-direction: column; gap: 16px; }
.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg-muted);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s;
}
.contact-option:hover { background: var(--color-primary-soft); }
.contact-option:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.contact-option-icon {
    width: 48px;
    height: 48px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}
.contact-option-icon svg { width: 24px; height: 24px; }
.contact-option strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.contact-option span { font-size: 16px; color: var(--color-text-secondary); }

.contact-form-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.contact-form-wrapper h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }

.form-status {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    border-radius: var(--radius-md);
    text-align: center;
}
.form-status:empty { display: none; }
.form-status-success {
    color: #16a34a;
    background: #f0fdf4;
    padding: 12px 16px;
}
.form-status-error {
    color: #dc2626;
    background: #fef2f2;
    padding: 12px 16px;
}

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 49, 68, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.modal-header {
    padding: 28px 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.modal-header h3 { font-size: 24px; font-weight: 800; }
.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--color-bg-muted);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.2s;
}
.modal-close:hover { background: var(--color-border); color: var(--color-text); }
.modal-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.modal-close svg { width: 20px; height: 20px; }
.modal-body { padding: 24px 28px 28px; }
.modal-body > p { font-size: 16px; color: var(--color-text-secondary); margin-bottom: 24px; }

/* --------------------------------------------------------------------------
   Form Styles
   -------------------------------------------------------------------------- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-soft);
}
.form-note { font-size: 14px; color: var(--color-text-muted); margin-top: 16px; }
.btn-full-width { width: 100%; }

/* --------------------------------------------------------------------------
   Product Comparison — Visual Headers
   -------------------------------------------------------------------------- */
.compare-card-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    margin: -32px -32px 24px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    text-align: center;
}
.compare-visual-cloud {
    background: linear-gradient(180deg, var(--color-primary-soft) 0%, transparent 100%);
}
.compare-visual-selfhosted {
    background: linear-gradient(180deg, rgba(26, 40, 54, 0.06) 0%, transparent 100%);
}
.compare-visual-yurbi {
    background: linear-gradient(180deg, var(--color-success-soft) 0%, transparent 100%);
}
.compare-visual-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-visual-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.compare-visual-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Final CTA (Self-Hosted Specific)
   -------------------------------------------------------------------------- */
.sh-final-cta {
    background: linear-gradient(135deg, #1e4a8a 0%, #152d4a 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
}
.sh-final-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
.sh-final-cta h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}
.sh-final-cta-content > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}
.sh-final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.sh-final-cta .btn-primary {
    background: white;
    color: #1e4a8a;
}
.sh-final-cta .btn-primary:hover {
    background: var(--color-bg-muted);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.sh-final-cta .btn-ghost {
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}
.sh-final-cta .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}
.sh-final-cta-values {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.sh-final-cta-value {
    font-size: 14px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sh-final-cta-value svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   WCAG Fix: "Most Popular" badge size
   -------------------------------------------------------------------------- */
.pricing-card.popular::before {
    font-size: 13px;
}

/* --------------------------------------------------------------------------
   Responsive - Self-Hosted specific
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    /* Use-case rows go single-column */
    .uc-row { grid-template-columns: 1fr; }
    .uc-row-reverse { direction: ltr; }
    .uc-row-visual { min-height: 160px; padding: 32px 24px; }
    .uc-row-content { padding: 32px; }
    .sh-arch-cards-diagram { grid-template-columns: 1fr; }
    .sh-arch-connector { flex-direction: row; width: 100%; justify-content: center; }
    .sh-arch-connector-line { width: 40px; height: 1px; }
    .sh-arch-benefits { gap: 10px; }
    .sh-arch-benefit { font-size: 14px; padding: 6px 12px; }
    .contact-section { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .uc-diagram { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 900px) {
    .special-pricing { flex-direction: column; text-align: center; }
    .sh-final-cta-values { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .download-grid { grid-template-columns: 1fr; }
    .requirements-grid { grid-template-columns: 1fr; }
    .page-header-ctas { flex-direction: column; }
    .yurbi-callout { flex-direction: column; text-align: center; }
    .renewal-options-grid { grid-template-columns: 1fr; }
    .special-pricing { padding: 32px; }
    .models-note { flex-direction: column; }
    .sh-final-cta-buttons { flex-direction: column; }
    .compare-card-visual { margin: -32px -32px 20px; }
}

@media (max-width: 500px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .sh-arch-benefits { flex-direction: column; align-items: center; }
    .uc-row-visual { padding: 24px 16px; min-height: 140px; }
    .uc-row-content { padding: 24px 20px; }
    .uc-connector-line { width: 20px; }
    .uc-deploy-arrow { min-width: 56px; padding: 0 8px; }
    .uc-pricing-arrow { padding: 0 8px; }
    .uc-pricing-arrow-line { width: 22px; }
}