/* ============================================================
   Swissapp Nox — Landing page
   Dark theme + red gradient · Plus Jakarta Sans
   ============================================================ */

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0b1220;
    color: #f1f5f9;
    overflow-x: hidden;
}

::selection { background: #e63946; color: white; }

/* ===== Stars background ===== */
.stars-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.15), transparent 50%),
        radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.10), transparent 50%),
        radial-gradient(1px 1px at 80% 20%, rgba(252,165,165,0.20), transparent 50%),
        radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.12), transparent 50%),
        radial-gradient(1.5px 1.5px at 50% 50%, rgba(255,255,255,0.08), transparent 50%),
        radial-gradient(2px 2px at 90% 60%, rgba(230,57,70,0.18), transparent 50%);
    background-size: 100% 100%;
    opacity: 0.6;
}

body > *:not(.stars-bg) { position: relative; z-index: 1; }

/* ===== Header ===== */
#site-header {
    background: rgba(11, 18, 32, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
}
#site-header.scrolled {
    background: rgba(11, 18, 32, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(31, 42, 68, 0.6);
}

/* ===== Logo ===== */
.nox-logo {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, #e63946, #7f1d1d);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
    position: relative;
    overflow: hidden;
}
.nox-logo::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e63946, #7f1d1d);
}
.nox-logo-mark {
    position: relative;
    color: white;
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    z-index: 1;
}

/* ===== Hero ===== */
.hero-glow {
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.25) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.hero-gradient {
    background: linear-gradient(135deg, #fca5a5 0%, #e63946 50%, #fca5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ===== Hero preview card (code → advices) ===== */
.hero-preview {
    background: linear-gradient(180deg, rgba(17, 26, 46, 0.95), rgba(11, 18, 32, 0.95));
    border: 1px solid rgba(31, 42, 68, 0.8);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(230, 57, 70, 0.1);
    backdrop-filter: blur(10px);
}
.hero-preview-header {
    padding: 14px 18px;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(31, 42, 68, 0.6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-preview-body {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
}
@media (min-width: 900px) {
    .hero-preview-body {
        grid-template-columns: 1fr auto 1.2fr;
        padding: 32px;
        gap: 28px;
    }
}
.hero-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
    padding: 18px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(31, 42, 68, 0.6);
    overflow-x: auto;
}
.hero-code .kw  { color: #94a3b8; }
.hero-code .key { color: #fca5a5; }
.hero-code .str { color: #86efac; }
.hero-code .num { color: #fbbf24; }
.hero-code .cm  { color: #64748b; font-style: italic; }
.hero-code .fn  { color: #a78bfa; }

.hero-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e63946;
    font-size: 1.5rem;
    animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50%      { transform: translateX(6px); opacity: 1; }
}
@media (max-width: 899px) {
    .hero-arrow { transform: rotate(90deg); }
}

.hero-advices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.advice {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(31, 42, 68, 0.8);
    border-left: 3px solid #e63946;
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.25s ease;
}
.advice:hover { transform: translateX(2px); border-color: rgba(230, 57, 70, 0.5); }
.advice-pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(230, 57, 70, 0.15);
    color: #fca5a5;
    margin-bottom: 6px;
}
.advice-pill-high { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.advice-pill-med  { background: rgba(96, 165, 250, 0.15); color: #93c5fd; }
.advice-high { border-left-color: #fbbf24; }
.advice-med  { border-left-color: #60a5fa; }

.advice h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
}
.advice p {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}
.advice b { color: #86efac; font-weight: 700; }

/* ===== Trust ===== */
.trust-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.trust-logo i { font-size: 1.4rem; }
.trust-logo:hover { color: #cbd5e1; }

/* ===== Section common ===== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fca5a5;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: white;
    text-align: center;
}
.section-subtitle {
    margin-top: 18px;
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.65;
    text-align: center;
}

/* ===== Buttons ===== */
.sw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    transition: all 0.18s ease;
    font-family: inherit;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}
.sw-btn-primary {
    background: linear-gradient(135deg, #e63946, #7f1d1d);
    color: white;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
}
.sw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(230, 57, 70, 0.45);
}
.sw-btn-primary:active { transform: translateY(0); }

.sw-btn-ghost-light {
    background: rgba(255,255,255,0.06);
    color: white;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}
.sw-btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* ===== Problem cards ===== */
.problem-card {
    background: linear-gradient(180deg, rgba(17, 26, 46, 0.6), rgba(11, 18, 32, 0.4));
    border: 1px solid rgba(31, 42, 68, 0.6);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}
.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(230, 57, 70, 0.08);
}
.problem-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.18), rgba(127, 29, 29, 0.18));
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: #fca5a5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.problem-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.problem-card p {
    color: #94a3b8;
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ===== Step cards ===== */
.step-card {
    background: linear-gradient(180deg, rgba(17, 26, 46, 0.7), rgba(11, 18, 32, 0.5));
    border: 1px solid rgba(31, 42, 68, 0.7);
    border-radius: 22px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e63946, transparent);
    opacity: 0.4;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.4);
}
.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e63946, #7f1d1d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
}
.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}
.step-card p {
    color: #94a3b8;
    line-height: 1.65;
    font-size: 0.95rem;
}
.step-card code {
    background: rgba(230, 57, 70, 0.12);
    color: #fca5a5;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
}
.step-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.step-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    font-size: 0.72rem;
    color: #cbd5e1;
    font-weight: 600;
}
.step-tags span i { color: #fca5a5; }

/* ===== Feature cards ===== */
.feature-card {
    background: rgba(17, 26, 46, 0.5);
    border: 1px solid rgba(31, 42, 68, 0.6);
    border-radius: 18px;
    padding: 24px;
    transition: all 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-3px);
    background: rgba(17, 26, 46, 0.8);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(127, 29, 29, 0.15));
    border: 1px solid rgba(230, 57, 70, 0.25);
    color: #fca5a5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}
.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.88rem;
}
.feature-card em { color: #cbd5e1; font-style: normal; font-weight: 600; }

/* ===== Integration ===== */
.integration-bullet {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.integration-bullet i {
    color: #86efac;
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.integration-bullet strong { color: white; font-weight: 700; }

.code-tabs {
    background: linear-gradient(180deg, rgba(17, 26, 46, 0.95), rgba(11, 18, 32, 0.95));
    border: 1px solid rgba(31, 42, 68, 0.8);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.code-tabs-header {
    display: flex;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(31, 42, 68, 0.6);
    overflow-x: auto;
}
.code-tab {
    padding: 12px 22px;
    background: transparent;
    border: none;
    color: #64748b;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    border-bottom: 2px solid transparent;
    flex-shrink: 0;
}
.code-tab:hover { color: #cbd5e1; }
.code-tab.active {
    color: white;
    border-bottom-color: #e63946;
    background: rgba(230, 57, 70, 0.05);
}
.code-tab-pane {
    display: none;
    padding: 24px;
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    line-height: 1.75;
    color: #cbd5e1;
    overflow-x: auto;
    max-height: 480px;
}
.code-tab-pane.active { display: block; }
.code-tab-pane .kw  { color: #f0abfc; }
.code-tab-pane .str { color: #86efac; }
.code-tab-pane .num { color: #fbbf24; }
.code-tab-pane .cm  { color: #64748b; font-style: italic; }
.code-tab-pane .fn  { color: #a78bfa; }
.code-tab-pane .key { color: #fca5a5; }

/* ===== Use cases ===== */
.usecase-card {
    background: rgba(17, 26, 46, 0.5);
    border: 1px solid rgba(31, 42, 68, 0.6);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.25s ease;
}
.usecase-card:hover {
    transform: translateY(-3px);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.usecase-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.usecase-icon-voice  { background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(59, 130, 246, 0.15)); color: #93c5fd; border: 1px solid rgba(96, 165, 250, 0.3); }
.usecase-icon-market { background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.15)); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.3); }
.usecase-icon-ecom   { background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(139, 92, 246, 0.15)); color: #c4b5fd; border: 1px solid rgba(167, 139, 250, 0.3); }
.usecase-icon-saas   { background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(16, 185, 129, 0.15)); color: #86efac; border: 1px solid rgba(52, 211, 153, 0.3); }
.usecase-icon-media  { background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(236, 72, 153, 0.15)); color: #f9a8d4; border: 1px solid rgba(244, 114, 182, 0.3); }
.usecase-icon-mob    { background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(127, 29, 29, 0.15)); color: #fca5a5; border: 1px solid rgba(230, 57, 70, 0.3); }

.usecase-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}
.usecase-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 16px;
}
.usecase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.usecase-list li {
    color: #cbd5e1;
    font-size: 0.85rem;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.usecase-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e63946;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.78rem;
}

/* ===== Pricing ===== */
.pricing-card {
    background: linear-gradient(180deg, rgba(17, 26, 46, 0.7), rgba(11, 18, 32, 0.5));
    border: 1px solid rgba(31, 42, 68, 0.7);
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}
.pricing-card-featured {
    background: linear-gradient(180deg, rgba(230, 57, 70, 0.12), rgba(127, 29, 29, 0.08));
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 30px 60px rgba(230, 57, 70, 0.15), 0 0 60px rgba(230, 57, 70, 0.08);
    transform: scale(1.02);
}
.pricing-card-featured:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(230, 57, 70, 0.7);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    background: linear-gradient(135deg, #e63946, #7f1d1d);
    color: white;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    white-space: nowrap;
}
.pricing-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}
.pricing-tag {
    color: #94a3b8;
    font-size: 0.88rem;
    margin-top: 6px;
    margin-bottom: 24px;
    line-height: 1.5;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
}
.pricing-price .period {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 600;
}
.pricing-extra {
    color: #64748b;
    font-size: 0.78rem;
    margin-top: 6px;
    margin-bottom: 24px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}
.pricing-features li i { color: #86efac; margin-top: 4px; flex-shrink: 0; font-size: 0.85rem; }

/* ===== FAQ ===== */
.faq-item {
    background: rgba(17, 26, 46, 0.5);
    border: 1px solid rgba(31, 42, 68, 0.7);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    transition: all 0.2s;
}
.faq-item[open] {
    border-color: rgba(230, 57, 70, 0.3);
    background: rgba(17, 26, 46, 0.85);
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    color: white;
    font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    color: #94a3b8;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.faq-item[open] summary i { transform: rotate(180deg); color: #fca5a5; }
.faq-item p {
    padding: 0 22px 20px;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
}
.faq-item p strong { color: #cbd5e1; font-weight: 700; }

/* ===== CTA card ===== */
.cta-card {
    position: relative;
    background: linear-gradient(180deg, rgba(17, 26, 46, 0.85), rgba(11, 18, 32, 0.85));
    border: 1px solid rgba(31, 42, 68, 0.7);
    border-radius: 28px;
    padding: 56px 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.cta-glow {
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.25) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}
@media (max-width: 640px) {
    .cta-card { padding: 40px 24px; }
}

/* ===== Form inputs ===== */
.sw-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(31, 42, 68, 0.8);
    background: rgba(11, 18, 32, 0.8);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: white;
    transition: all 0.18s;
    outline: none;
}
.sw-input::placeholder { color: #64748b; }
.sw-input:focus {
    border-color: #e63946;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.15);
    background: rgba(11, 18, 32, 1);
}
select.sw-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23 94a3b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 42px;
}
select.sw-input option { background: #0b1220; color: white; }

/* ===== Animations ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Mobile fine-tunes ===== */
@media (max-width: 640px) {
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 0.98rem; }
    .step-card, .problem-card, .usecase-card, .pricing-card { padding: 24px; }
    .pricing-card-featured { transform: none; }
    .pricing-card-featured:hover { transform: translateY(-4px); }
}
