@font-face {
    font-family: 'Dragnel';
    src: url('DragnelRegular.woff2') format('woff2'),
         url('DragnelRegular-q2wGl.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-a: #060608;
    --bg-b: #0c0d12;
    --card: rgba(255, 255, 255, 0.035);
    --card-hover: rgba(255, 255, 255, 0.055);
    --glass: rgba(10, 12, 18, 0.62);
    --glass-strong: rgba(8, 10, 16, 0.82);
    --stroke: rgba(255, 255, 255, 0.08);
    --stroke-strong: rgba(255, 255, 255, 0.12);
    --text: #d8dae3;
    --text-bright: #f4f5f8;
    --muted: #8b90a0;
    --accent: #4cc9a0;
    --accent-2: #6ee7c0;
    --accent-dim: rgba(76, 201, 160, 0.1);
    --accent-glow: rgba(76, 201, 160, 0.35);
    --warn: #d4ad5a;
    --warn-dim: rgba(212, 173, 90, 0.1);
    --ok: #4cc9a0;
    --bad: #d07070;
    --discord: #5865f2;
    --discord-hover: #4752c4;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
    --font-sans: "Inter", "Lato", "Segoe UI", system-ui, sans-serif;
    --font-display: "Dragnel", Georgia, serif;
    --content-max: 1180px;
}

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

html { scroll-behavior: smooth; }

html, body {
    min-height: 100%;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg-a);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(76, 201, 167, 0.3);
    color: #fff;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

/* ── Background ── */
.bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.90;
    filter: saturate(0.7);
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(76, 201, 160, 0.04), transparent 55%),
        linear-gradient(180deg, rgba(6, 6, 10, 0.35) 0%, rgba(6, 6, 10, 0.55) 50%, rgba(6, 6, 10, 0.82) 100%);
}

#particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ── Layout ── */
.page {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 0 clamp(20px, 4vw, 40px) 120px;
}

.wrap {
    width: min(var(--content-max), 100%);
    display: flex;
    flex-direction: column;
    gap: clamp(64px, 10vw, 96px);
    padding-top: 20px;
    padding-bottom: 32px;
}

.glass-panel {
    border: 1px solid var(--glass-border, var(--stroke));
    border-radius: var(--radius-md);
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.15);
    -webkit-backdrop-filter: blur(20px) saturate(1.15);
    box-shadow: var(--shadow-soft);
}

.glass-panel:hover {
    border-color: var(--stroke-strong);
}

.page-section {
    scroll-margin-top: 80px;
}

.section-sub--narrow {
    max-width: 36rem;
}

.section-title--center,
.section-sub--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    text-align: center;
}

.contact-section .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.contact-section .btn-discord {
    margin: 0 auto;
}

.page-footer {
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--stroke);
}

/* ── Base Card ── */
.card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 8px;
    padding: 22px;
    overflow: visible;
    transition: border-color 0.2s;
}

.card:hover {
    border-color: rgba(255,255,255,0.09);
}

.card-glow { position: relative; }
.card-glow::before {
    content: '';
    position: absolute;
    top: -1px; left: 35%; right: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Site header / nav ── */
.site-header {
    position: sticky;
    top: 14px;
    z-index: 50;
    margin-bottom: 8px;
}

.topbar {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 12px 10px 16px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-pill);
    background: var(--glass-strong);
    backdrop-filter: blur(24px) saturate(1.25);
    -webkit-backdrop-filter: blur(24px) saturate(1.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.topbar:hover { transform: none; }

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

.brand-text {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--stroke);
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-bright);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}

.topbar-nav a:hover {
    color: var(--text-bright);
}

/* ── Language Switcher ── */
.lang-switcher {
    position: relative;
    margin-left: 6px;
}

.lang-current {
    background: none;
    border: 1px solid var(--stroke);
    border-radius: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.06em;
    transition: color 0.15s, border-color 0.15s;
}

.lang-current img {
    border-radius: 2px;
    display: block;
}

.lang-current:hover {
    color: var(--text);
    border-color: rgba(255,255,255,0.15);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--bg-b);
    border: 1px solid var(--stroke);
    border-radius: 4px;
    padding: 4px 0;
    min-width: 52px;
    z-index: 100;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.1s, background 0.1s;
}

.lang-option img {
    border-radius: 2px;
    display: block;
}

.lang-option:hover {
    color: var(--text-bright);
    background: rgba(255,255,255,0.04);
}

.lang-option.active {
    color: var(--accent);
}

/* brand — see site-header .brand */

/* ── Status ── */
.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bad);
    box-shadow: 0 0 6px rgba(217,96,96,0.5);
    transition: background 0.3s, box-shadow 0.3s;
}

.dot.online {
    background: var(--ok);
    box-shadow: 0 0 6px rgba(76,201,167,0.5);
}

/* ── Hero ── */
.hero {
    position: relative;
    padding: clamp(24px, 5vw, 48px) 0 8px;
    border: none;
    background: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.hero-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: min(100%, 400px);
    padding-bottom: 4px;
}

.hero-orb {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 400px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-orb-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 45%,
        rgba(76, 201, 160, 0.35) 0%,
        rgba(76, 201, 160, 0.08) 35%,
        rgba(88, 101, 242, 0.06) 55%,
        transparent 72%
    );
    filter: blur(28px);
    animation: hero-glow-breathe 5s ease-in-out infinite;
}

.hero-orb-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-ring--outer {
    inset: 0;
    padding: 2px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(76, 201, 160, 0.55) 60deg,
        rgba(142, 232, 200, 0.9) 120deg,
        rgba(88, 101, 242, 0.45) 200deg,
        transparent 280deg,
        rgba(76, 201, 160, 0.4) 340deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: hero-orb-spin 18s linear infinite;
    opacity: 0.85;
}

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

@keyframes hero-glow-breathe {
    0%, 100% { transform: scale(1); opacity: 0.75; }
    50% { transform: scale(1.06); opacity: 1; }
}

.hero-logo {
    position: relative;
    z-index: 2;
    width: min(300px, 68vw);
    height: auto;
    display: block;
    margin: clamp(24px, 6vw, 40px) 0 0;
    filter: drop-shadow(0 0 32px rgba(76, 201, 160, 0.25)) drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
    animation: float 8s ease-in-out infinite;
}

.hero-discord-link {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: -23px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 20px;
    min-height: 44px;
    box-shadow: 0 8px 28px rgba(88, 101, 242, 0.25);
    white-space: nowrap;
}

.hero-discord-link:hover {
    transform: translateY(-1px);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 14px;
    padding: 5px 12px;
    border: 1px solid rgba(76, 201, 160, 0.22);
    border-radius: var(--radius-pill);
    background: rgba(76, 201, 160, 0.06);
    color: var(--accent-2);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: none;
    max-width: 100%;
    line-height: 1.35;
    text-align: left;
}

.hero-headline {
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--font-sans);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-headline-line {
    font-size: clamp(1.65rem, 4.2vw, 2.65rem);
    color: var(--text-bright);
}

.hero-headline-accent {
    font-size: clamp(1.65rem, 4.2vw, 2.65rem);
    background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent) 45%, #8ed4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-tagline {
    color: var(--muted);
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    line-height: 1.65;
    max-width: 34rem;
    margin: 0 0 20px;
}

.hero-compat-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.hero-compat-badges .compat-badge {
    padding: 5px 11px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-compat-badges .compat-badge--accent {
    border-color: rgba(69, 196, 158, 0.35);
    color: var(--accent);
}

.hero-compat-badges .compat-badge--imgui {
    color: var(--muted);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
    max-width: 420px;
    margin: 0 0 28px;
    padding: 1px;
    border-radius: var(--radius-md);
    background: var(--stroke);
    overflow: hidden;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 12px;
    background: rgba(8, 10, 14, 0.85);
    text-align: left;
}

.hero-stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-bright);
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.35;
}

.hero-proof {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 18px;
}

.hero-proof-item {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-bright);
    font-size: 0.78rem;
    font-weight: 600;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(760px, 100%);
    margin: 0 auto 28px;
    overflow: hidden;
    border: 1px solid rgba(76, 201, 167, 0.14);
    border-radius: 10px;
    background: rgba(76, 201, 167, 0.1);
}

.hero-trust span {
    padding: 11px 12px;
    background: rgba(5, 5, 9, 0.72);
    color: var(--text-bright);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sales-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 24px;
}

.sales-card {
    padding: 18px 18px 16px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
}

.sales-card h3 {
    margin: 0 0 8px;
    color: var(--text-bright);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sales-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.live-server-shell {
    max-width: 960px;
    margin: 0 auto;
    padding: 22px 22px 20px;
    border: 1px solid rgba(76, 201, 167, 0.12);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(76, 201, 167, 0.05), rgba(255,255,255,0.02));
}

.live-server-head {
    max-width: 760px;
    margin: 0 auto 18px;
    text-align: center;
}

.live-server-head .section-title {
    text-align: center;
    margin-bottom: 8px;
}

.live-server-head .section-sub {
    text-align: center;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-cta-primary {
    min-width: 200px;
    box-shadow: 0 12px 40px rgba(76, 201, 160, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-pill);
    padding: 11px 22px;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-lg {
    padding: 13px 26px;
    font-size: 0.88rem;
}

.btn:hover {
    transform: translateY(-1px);
    color: var(--text-bright);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.btn-primary {
    border-color: rgba(76, 201, 160, 0.45);
    color: var(--text-bright);
    background: linear-gradient(135deg, rgba(76, 201, 160, 0.22) 0%, rgba(76, 201, 160, 0.08) 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(76, 201, 160, 0.32) 0%, rgba(76, 201, 160, 0.14) 100%);
    border-color: var(--accent);
    color: var(--text-bright);
    box-shadow: 0 8px 28px rgba(76, 201, 160, 0.18);
}

.btn-ghost {
    color: var(--muted);
    border-color: rgba(255,255,255,0.1);
}

.btn-ghost:hover {
    color: var(--accent);
    border-color: rgba(76,201,167,0.3);
}

.btn-discord {
    background: rgba(88,101,242,0.12);
    border-color: rgba(88,101,242,0.4);
    color: #8b9aff;
}

.btn-discord:hover {
    background: rgba(88,101,242,0.22);
    color: #a7b4ff;
}

/* ── Section Layout ── */
.section-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    max-width: 40rem;
}

.section-head--center {
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 44rem;
}

.section-eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-2);
}

.section-title-lg {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-bright);
}

.section-title {
    text-align: left;
    margin: 0 0 4px;
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-bright);
}

.section-sub {
    text-align: left;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    max-width: 38rem;
}

.section-head .section-sub {
    margin-bottom: 0;
}

.packages-head .section-sub {
    max-width: none;
    line-height: 1.65;
    margin-bottom: 20px;
}

.package-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: none;
    margin: 0 0 16px;
}

.package-proof-strip span {
    flex: 1 1 180px;
    padding: 11px 14px;
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
}

.section-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.04);
    margin: 48px 0;
}

/* ── Features catalog ── */
#features,
#packages,
#live-server,
#faq {
    padding: 0;
}

.features-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: min(var(--content-max), 100%);
    width: 100%;
}

.features-section .section-head {
    margin-bottom: 16px;
    gap: 6px;
}

.features-section .section-title-lg {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.features-section .section-sub {
    font-size: 0.86rem;
    line-height: 1.5;
}

.features-head .section-sub {
    margin-bottom: 0;
}

.feat-overview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    overflow: hidden;
}

.feat-overview--compact {
    border: 1px solid var(--stroke);
    border-radius: var(--radius-sm);
    background: rgba(8, 10, 14, 0.45);
}

.feat-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feat-tab-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 8px 8px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.feat-tab-bar::-webkit-scrollbar {
    height: 4px;
}

.feat-tab-bar::-webkit-scrollbar-thumb {
    background: var(--stroke);
    border-radius: 4px;
}

.feat-tab {
    flex: 1 1 0;
    min-width: 4.5rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 6px;
    border: 1px solid transparent;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.feat-tab:hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.03);
}

.feat-tab.is-active {
    color: var(--accent-2);
    background: rgba(76, 201, 160, 0.12);
    border-color: rgba(76, 201, 160, 0.4);
    box-shadow: none;
    animation: none;
}

.feat-tabs.has-open-panel .feat-tab:not(.is-active) {
    color: var(--text);
    border-color: rgba(76, 201, 160, 0.22);
    animation: feat-tab-glow 2.6s ease-in-out infinite;
}

.feat-tabs.has-open-panel .feat-tab:not(.is-active):hover {
    color: var(--accent-2);
    background: rgba(76, 201, 160, 0.1);
    border-color: rgba(76, 201, 160, 0.45);
    animation: none;
    box-shadow:
        0 0 20px rgba(76, 201, 160, 0.35),
        0 0 40px rgba(76, 201, 160, 0.12);
}

@keyframes feat-tab-glow {
    0%, 100% {
        box-shadow: 0 0 6px rgba(76, 201, 160, 0.12);
    }
    50% {
        box-shadow:
            0 0 14px rgba(76, 201, 160, 0.32),
            0 0 28px rgba(76, 201, 160, 0.1);
    }
}

.feat-tab-label {
    display: block;
}

.feat-tab-count {
    display: inline-block;
    min-width: 1rem;
    padding: 0 5px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--muted);
    opacity: 0.9;
}

.feat-tab.is-active .feat-tab-count {
    border-color: rgba(76, 201, 160, 0.35);
    color: var(--accent-2);
}

.feat-tab-panels {
    border-top: 1px solid var(--stroke);
    min-height: 0;
}

.feat-tabs:not(.has-open-panel) .feat-tab-panels {
    border-top-color: transparent;
}

.feat-tab-panel {
    padding: 0;
}

.feat-tab-panel[hidden] {
    display: none;
}

.feat-tab-panel-intro {
    margin: 0;
    padding: 10px 14px 0;
    font-size: 0.76rem;
    line-height: 1.45;
    color: var(--muted);
}

.feat-acc-list {
    margin: 0;
    padding: 8px 14px 12px;
    list-style: none;
    display: grid;
    gap: 0;
}

@media (max-width: 720px) {
    .feat-tab {
        flex: 0 0 auto;
        min-width: 5.5rem;
        font-size: 0.68rem;
    }
}

.feat-overview-foot {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 14px 12px;
    border-top: 1px solid var(--stroke);
}

.feat-line {
    display: grid;
    gap: 3px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: none;
    border-radius: 0;
    border-left: none;
}

.feat-line:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.feat-line-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.feat-line-desc {
    font-size: 0.76rem;
    line-height: 1.45;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feat-overview-note {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.5;
    color: var(--muted);
}

.feat-overview-note em {
    font-style: normal;
    color: var(--warn);
    font-weight: 700;
}

.feat-overview-lang {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.feat-overview-lang-label {
    margin-right: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.feat-overview--compact .lang-chip {
    padding: 2px 6px;
    font-size: 0.6rem;
}

.lang-chip {
    padding: 3px 7px;
    border-radius: 4px;
    border: 1px solid var(--stroke);
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.feat-tag {
    display: inline-block;
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    vertical-align: middle;
}

.feat-tag--src {
    color: var(--warn);
    border: 1px solid rgba(201, 160, 74, 0.3);
    background: var(--warn-dim);
}

.feat-tag--client {
    color: #d4a0a0;
    border: 1px solid rgba(208, 112, 112, 0.3);
    background: rgba(208, 112, 112, 0.08);
}

.pkg-intro {
    margin: 0;
    max-width: 40rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.section-head--center .pkg-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pkg-intro a {
    color: var(--accent-2);
    font-weight: 600;
    text-decoration: none;
}

.pkg-intro a:hover {
    text-decoration: underline;
}

.integration-accordion-list strong {
    color: var(--text-bright);
    font-weight: 600;
}

.pkg-proof-line {
    margin: 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.packages-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-trust-line {
    margin: -8px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.pkg-compare {
    padding: 16px 18px;
}

.pkg-compare-title {
    margin: 0 0 12px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-bright);
    text-align: center;
}

.pkg-compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pkg-compare-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.pkg-compare-table th,
.pkg-compare-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--stroke);
    text-align: left;
    vertical-align: top;
}

.pkg-compare-table thead th {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pkg-compare-table tbody th[scope="row"] {
    color: var(--text-bright);
    font-weight: 600;
    white-space: nowrap;
}

.pkg-compare-table tbody tr:last-child th,
.pkg-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.requirements-section,
.changelog-section {
    max-width: min(40rem, 100%);
    margin-inline: auto;
}

.requirements-list,
.changelog-list {
    margin: 0;
    padding: 18px 22px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.requirements-list li,
.changelog-list li {
    position: relative;
    padding-left: 16px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.requirements-list li::before,
.changelog-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.changelog-list li::before {
    border-radius: 2px;
    width: 4px;
    height: 4px;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.pkg-card-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 22px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.pkg-card-compact:hover {
    border-color: var(--stroke-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.pkg-card-compact--featured {
    border-color: rgba(76, 201, 160, 0.35);
    background: linear-gradient(165deg, rgba(76, 201, 160, 0.12) 0%, rgba(10, 12, 18, 0.9) 55%);
    box-shadow: 0 16px 48px rgba(76, 201, 160, 0.08);
}

.pkg-card-compact--featured:hover {
    border-color: rgba(76, 201, 160, 0.5);
    box-shadow: 0 20px 56px rgba(76, 201, 160, 0.12);
}

.pkg-card-compact--install {
    border-color: rgba(120, 160, 255, 0.35);
    background: linear-gradient(165deg, rgba(120, 160, 255, 0.1) 0%, rgba(10, 12, 18, 0.92) 55%);
}

.pkg-card-compact--install:hover {
    border-color: rgba(120, 160, 255, 0.5);
    box-shadow: 0 20px 56px rgba(120, 160, 255, 0.1);
}

.pkg-card-compact h3 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.3;
}

.pkg-card-tagline {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.pkg-card-compact--install .pkg-card-tagline {
    color: #9eb8ff;
}

.pkg-card-compact .pkg-card-badge {
    position: static;
    top: auto;
    right: auto;
    align-self: flex-start;
    max-width: 100%;
    margin: 0;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(76, 201, 160, 0.2);
    background: rgba(76, 201, 160, 0.1);
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.35;
    text-transform: uppercase;
    white-space: normal;
}

.pkg-card-compact--install .pkg-card-badge {
    border-color: rgba(120, 160, 255, 0.25);
    background: rgba(120, 160, 255, 0.12);
    color: #9eb8ff;
}

.pkg-card-compact .pkg-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.1;
}

.pkg-card-compact .pkg-price small {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
}

.pkg-card-list {
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.pkg-card-list li {
    position: relative;
    padding-left: 14px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.pkg-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.pkg-card-compact .btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.integration-accordion {
    margin-top: 8px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: var(--card);
    overflow: hidden;
}

.integration-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: transparent;
    color: var(--text-bright);
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.integration-accordion-icon {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.15s;
}

.integration-accordion.is-open .integration-accordion-icon {
    transform: rotate(180deg);
}

.integration-accordion-body {
    padding: 0 16px 16px;
    max-width: 36rem;
}

.integration-accordion-list {
    margin: 0 0 14px;
    padding: 0 0 0 18px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.integration-accordion-list li {
    margin-bottom: 6px;
}

.pkg-test-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 22px;
    margin-bottom: 4px;
}

.pkg-test-banner.glass-panel {
    border-color: rgba(76, 201, 160, 0.2);
    background: linear-gradient(135deg, rgba(76, 201, 160, 0.1) 0%, var(--glass) 60%);
}

.pkg-test-lead {
    margin: 0;
    max-width: 36rem;
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.5;
}

.features-section {
    gap: 16px;
}

.pkg-features-link {
    margin: 18px 0 0;
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
}

.pkg-features-link a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.pkg-features-link a:hover {
    text-decoration: underline;
}

.usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--stroke);
    border: 1px solid var(--stroke);
    border-radius: 6px;
    overflow: hidden;
}

.usp-card {
    padding: 28px 24px;
    text-align: left;
    border: none;
    border-radius: 0;
    background: var(--bg-a);
    transition: background 0.2s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.usp-card:hover {
    background: var(--bg-b);
    transform: none;
}

.usp-icon {
    font-size: 1.6rem;
    display: block;
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 2px;
}

.usp-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    opacity: 0.85;
    filter: none;
}

.usp-card h3 {
    margin: 0 0 6px;
    font-family: 'Dragnel', serif;
    font-size: 0.9rem;
    color: var(--text-bright);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.usp-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* ── Pricing Header ── */
.pricing-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid var(--stroke);
    border-radius: 6px 6px 0 0;
    overflow: visible;
}

.pricing-header--two {
    grid-template-columns: 1fr 1fr;
}

/* Paket-Block: Karten + Tabelle als eine Einheit */
.pkg-shell {
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid var(--stroke);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(8, 8, 12, 0.55);
    box-shadow:
        0 0 0 1px rgba(76, 201, 167, 0.06),
        0 24px 48px rgba(0, 0, 0, 0.35);
}

.pkg-shell-clean {
    width: 100%;
    max-width: none;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(9, 9, 14, 0.78);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.pkg-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pkg-offer-stack {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.pkg-offer {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
    gap: 18px;
    align-items: stretch;
}

.pkg-offer-main,
.pkg-side-card {
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 16px;
    background: rgba(14, 14, 19, 0.82);
}

.pkg-offer-main {
    padding: 28px 30px 26px;
}

.pkg-offer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.pkg-offer-head h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--text-bright);
}

.pkg-offer-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.pkg-offer-flag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
}

.pkg-offer-flag--testserver {
    border: 1px solid rgba(76, 201, 167, 0.28);
    background: rgba(76, 201, 167, 0.12);
    color: var(--accent);
}

.pkg-offer-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.pkg-offer-note {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(76, 201, 167, 0.14);
    background: rgba(76, 201, 167, 0.06);
    color: var(--ok);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
}

.pkg-offer-copy {
    max-width: none;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.pkg-offer .pkg-card-kicker {
    margin-bottom: 12px;
}

.pkg-offer .pkg-card-badge {
    position: static;
    flex-shrink: 0;
}

.pkg-offer .pkg-price {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
}

.pkg-offer-side {
    display: flex;
}

.pkg-side-card {
    width: 100%;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pkg-side-label {
    color: var(--text-bright);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pkg-side-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pkg-side-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text);
    font-size: 0.8rem;
    line-height: 1.45;
}

.pkg-side-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ok);
    font-weight: 900;
}

.pkg-side-card--excluded .pkg-side-list li::before {
    content: 'X';
    color: #ff5c5c;
}

.pkg-side-card .btn {
    margin-top: auto;
    width: 100%;
}

.pkg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 28px 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 14px;
    background: rgba(13, 13, 18, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.pkg-card--featured {
    border-color: rgba(76, 201, 167, 0.24);
    background: rgba(14, 13, 11, 0.84);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pkg-card:hover {
    transform: translateY(-2px);
    border-color: rgba(76, 201, 167, 0.18);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.pkg-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    border-radius: 14px 14px 0 0;
    background: rgba(255, 255, 255, 0.08);
}

.pkg-card--featured::before {
    height: 2px;
    background: var(--accent);
}

.pkg-card-kicker {
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pkg-card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 10px;
    border: 1px solid rgba(76, 201, 167, 0.18);
    border-radius: 999px;
    background: rgba(76, 201, 167, 0.08);
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pkg-card--featured .pkg-card-badge {
    background: rgba(76, 201, 167, 0.14);
    color: var(--accent);
    border-color: rgba(76, 201, 167, 0.22);
}

.pkg-card h3 {
    margin: 0;
    min-height: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1.14rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--text-bright);
}

.pkg-price {
    margin: 20px 0 14px;
    color: var(--accent);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.pkg-price small {
    margin-left: 8px;
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pkg-card p {
    margin: 0;
    max-width: none;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.pkg-card-diff {
    margin: 16px 0 22px;
    padding: 11px 12px;
    border-radius: 8px;
    background: rgba(76, 201, 167, 0.06);
    border: 1px solid rgba(76, 201, 167, 0.14);
    color: var(--ok);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pkg-card-diff.muted {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.075);
    color: var(--muted);
}

.pkg-card .btn {
    margin-top: auto;
    width: 100%;
}

.pkg-card--featured .btn {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-a);
    font-weight: 800;
    box-shadow: none;
}

.pkg-card--featured .btn:hover {
    background: #d8a94e;
    border-color: #d8a94e;
}

.pkg-included {
    margin-top: 18px;
    padding: 20px 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.pkg-included-title {
    margin-bottom: 14px;
    color: var(--text-bright);
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pkg-feature-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pkg-feature-group {
    padding: 16px 16px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.018);
}

.pkg-feature-group h4 {
    margin: 0 0 12px;
    color: var(--accent);
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pkg-feature-group ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pkg-feature-group li {
    position: relative;
    padding-left: 18px;
    color: var(--text);
    font-size: 0.75rem;
    line-height: 1.42;
}

.pkg-feature-group li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ok);
    font-weight: 900;
}

.pkg-feature-group li:last-child {
    color: var(--accent);
    font-weight: 800;
}

.pkg-sales-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: var(--accent-dim);
    color: var(--text);
    font-size: 0.86rem;
    line-height: 1.65;
}

.pkg-shell .pricing-header {
    border: none;
    border-radius: 0;
}

.pkg-shell .compare-table {
    border: none;
    border-top: 1px solid var(--stroke);
    border-radius: 0;
}

.pricing-header-spacer {
    background: var(--bg-a);
    border-right: 1px solid var(--stroke);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 6px 0 0 0;
}

.pricing-spacer-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
}

.pricing-header-col {
    padding: 32px 24px 28px;
    text-align: center;
    background: rgba(76,201,167,0.04);
    border-right: 1px solid var(--stroke);
    position: relative;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.pricing-header-col .btn {
    margin-top: auto;
    width: 100%;
    max-width: 280px;
}

.pricing-header-col .pkg-tier-title {
    max-width: 22ch;
    line-height: 1.35;
}

.pkg-price-block {
    width: 100%;
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-header-col .pricing-fit {
    flex: 1 1 auto;
    margin-top: 14px;
    margin-bottom: 18px;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
    font-size: 0.8rem;
}

.pricing-header-col::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    opacity: 0.4;
    transition: opacity 0.2s;
}

.pricing-header-col:last-child {
    border-right: none;
}

/* Recommended / Popular package highlight */
.pricing-header-col.recommended {
    background: rgba(76,201,167,0.08);
    box-shadow: inset 0 0 30px rgba(76,201,167,0.05);
}

.pricing-header-col.recommended::before {
    opacity: 1;
    height: 3px;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-a);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 10px;
    white-space: nowrap;
}

.pricing-header-col h3 {
    margin: 0;
    font-family: 'Dragnel', serif;
    font-size: 0.88rem;
    color: var(--text-bright);
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.badge-soon {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    background: linear-gradient(135deg, #f5c518, #e0a800);
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 6px;
}

.pricing-header-col .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0;
    line-height: 1.1;
    font-family: 'Lato', sans-serif;
}

.pricing-header-col .price small {
    font-size: 0.6rem;
    color: var(--muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-fit {
    margin: 0 0 10px;
    color: var(--text-bright);
    font-size: 0.76rem;
    line-height: 1.55;
}

.pricing-header-col.recommended .btn {
    background: var(--accent);
    color: var(--bg-a);
    border-color: var(--accent);
    font-weight: 700;
}

.pricing-header-col.recommended .btn:hover {
    background: #d4a34a;
    border-color: #d4a34a;
}

/* ── Comparison Table ── */
.compare-table {
    border: 1px solid var(--stroke);
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow-x: auto;
}

.compare-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.compare-table thead {
    display: none;
}

.compare-table--packages thead {
    display: table-header-group;
}

.pkg-table-caption {
    caption-side: top;
    text-align: left;
    padding: 14px 18px 12px;
    font-family: 'Dragnel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(76, 201, 167, 0.07);
    border-bottom: 1px solid var(--stroke);
}

.compare-table--packages thead th {
    padding: 14px 16px 12px;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    background: rgba(6, 6, 10, 0.95);
    border-bottom: 2px solid rgba(76, 201, 167, 0.28);
    vertical-align: bottom;
}

.compare-table--packages thead th:first-child {
    text-align: left;
    width: 44%;
    color: var(--text-bright);
    letter-spacing: 0.1em;
}

.compare-table--packages thead th:nth-child(2),
.compare-table--packages thead th:nth-child(3) {
    text-align: center;
    width: 28%;
}

.compare-table--packages thead th:nth-child(3) {
    background: rgba(76, 201, 167, 0.06);
    color: var(--text-bright);
}

.compare-table--packages tr.pkg-row-diff td {
    border-top: 1px solid rgba(76, 201, 167, 0.2);
    padding-top: 14px;
    padding-bottom: 14px;
}

.compare-table--packages tr.pkg-row-diff td:first-child {
    color: var(--text-bright);
    font-weight: 600;
}

.compare-table--packages tr.pkg-row-diff td:nth-child(3) {
    background: rgba(76, 201, 167, 0.06);
}

.compare-table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--text);
    vertical-align: middle;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table td:first-child {
    width: 40%;
    color: var(--muted);
    font-size: 0.8rem;
}

.compare-table td:nth-child(2),
.compare-table td:nth-child(3) {
    text-align: center;
    width: 30%;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Recommended column subtle highlight */
.compare-table td:nth-child(3) {
    background: rgba(76,201,167,0.03);
}

/* Colored check / dash */
.compare-table .ck {
    color: var(--ok);
}

.compare-table .no {
    color: rgba(255,255,255,0.15);
    font-weight: 400;
}

/* Category rows */
.compare-table tr.cat td {
    background: rgba(76,201,167,0.04);
    font-family: 'Dragnel', serif;
    font-size: 0.72rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 12px 16px 10px;
    border-bottom: 1px solid var(--stroke);
}

.compare-table tr.cat td:nth-child(3) {
    background: rgba(76,201,167,0.06);
}

/* Zebra striping */
.compare-table tbody tr:not(.cat):nth-child(even) td {
    background: rgba(255,255,255,0.012);
}

.compare-table tbody tr:not(.cat):nth-child(even) td:nth-child(3) {
    background: rgba(76,201,167,0.04);
}

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

.compare-table tr.cat:hover td {
    background: rgba(76,201,167,0.04);
}

/* ── Video Player ── */
.video-gallery {
    max-width: 100%;
}

.video-gallery--compact {
    width: 100%;
    max-width: none;
}

.video-gallery--compact .section-head {
    margin-bottom: 12px;
    max-width: 40rem;
}

.video-gallery--compact .preview-panel.glass-panel {
    width: 100%;
    padding: 10px 12px;
}

.video-gallery--compact .vgrid-labeled {
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 8px;
    margin-bottom: 0;
}

.video-gallery--compact .vplayer {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 640px) {
    .video-gallery--compact .vgrid-labeled {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
}

.video-gallery--compact .vthumb-labeled {
    border-radius: 8px;
    aspect-ratio: 16 / 10;
}

.video-gallery--compact .vthumb-labeled::after {
    background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.9));
}

.video-gallery--compact .vthumb-copy {
    left: 8px;
    right: 8px;
    bottom: 7px;
}

.video-gallery--compact .vthumb-copy strong {
    font-size: 0.68rem;
    line-height: 1.2;
}

.video-gallery--compact .vthumb-copy small {
    margin-top: 2px;
    font-size: 0.58rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-gallery--compact .vthumb:hover {
    transform: none;
}

.video-gallery--compact .vthumb-play {
    opacity: 0.55;
}

.preview-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    margin: 18px 0 16px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    background: rgba(255,255,255,0.025);
    scrollbar-width: none;
}

.preview-tabs::-webkit-scrollbar {
    display: none;
}

.preview-tab {
    flex: 0 0 auto;
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    padding: 9px 13px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.preview-tab:hover {
    color: var(--text-bright);
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
}

.preview-tab.active {
    color: var(--accent);
    background: rgba(76,201,167,0.12);
    border-color: rgba(76,201,167,0.22);
    box-shadow: inset 0 0 0 1px rgba(76,201,167,0.08);
}

.preview-panel {
    display: none;
}

.preview-panel.active {
    display: block;
}

/* ── Thumbnail Grid ── */
.vgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.vgrid-labeled {
    gap: 14px;
}

@media (max-width: 930px) {
    .vgrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .vgrid-labeled {
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .vgrid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.vthumb {
    position: relative;
    border: 1px solid var(--stroke);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    aspect-ratio: 16 / 9;
    padding: 0;
    transition: border-color 0.2s, transform 0.2s;
}

.vthumb-labeled {
    border-radius: 10px;
    background: rgba(5, 5, 9, 0.9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

.vthumb-labeled::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(0,0,0,0.88));
    pointer-events: none;
}

.vthumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    filter: brightness(0.7);
    transition: filter 0.2s;
}

.vthumb:hover video {
    filter: brightness(0.9);
}

.vthumb:hover {
    border-color: rgba(255,255,255,0.15);
    transform: scale(1.02);
}

.vthumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.vthumb.active video {
    filter: brightness(0.85);
}

.vthumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 2;
}

.vthumb:hover .vthumb-play {
    opacity: 1;
}

.vthumb.active .vthumb-play {
    opacity: 0;
}

.vthumb-num {
    position: absolute;
    top: 4px;
    left: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.vthumb-copy {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 3;
    text-align: left;
    pointer-events: none;
}

.vthumb-copy strong {
    display: block;
    color: var(--text-bright);
    font-size: 0.8rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.vthumb-copy small {
    display: block;
    margin-top: 4px;
    color: rgba(220, 221, 226, 0.72);
    font-size: 0.68rem;
    line-height: 1.35;
}

/* ── Main Player ── */
.vplayer {
    position: relative;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    margin-top: 10px;
    animation: vplayerIn 0.3s ease;
}

@keyframes vplayerIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

.vplayer-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

.vplayer-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    transition: opacity 0.2s;
    z-index: 2;
}

.vplayer-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.vplayer-overlay svg {
    opacity: 0.8;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.vplayer-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    z-index: 3;
    opacity: 0;
    transition: opacity 0.25s;
}

.vplayer:hover .vplayer-controls {
    opacity: 1;
}

.vplayer-controls.force-show {
    opacity: 1;
}

.vctrl {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.15s;
}

.vctrl:hover { opacity: 1; }

.vplayer-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.vplayer-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
}

.vplayer-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    cursor: pointer;
}

.vplayer-time {
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
    min-width: 32px;
    text-align: right;
}

/* ── Info Box ── */
.info-box {
    border-color: rgba(210, 60, 60, 0.2);
    background: rgba(210, 60, 60, 0.04);
    padding: 24px 28px;
    max-width: 100%;
    border-left: 2px solid #c44040;
    border-radius: 0 6px 6px 0;
}

.info-box-title {
    margin: 0 0 12px;
    font-family: 'Dragnel', serif;
    font-size: 0.95rem;
    color: #d45050;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.info-box p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.65;
}

.info-box p:last-child { margin-bottom: 0; }
.info-box strong { color: var(--text); }

.info-box-duck {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    border-color: rgba(76, 201, 167, 0.24);
    background: rgba(76, 201, 167, 0.05);
    border-left-color: var(--accent);
}

.info-box-duck .info-box-title {
    color: var(--accent);
}

.info-box-duck-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box-duck-image {
    width: min(220px, 100%);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,0.35));
}

.info-box-duck-content p {
    margin-bottom: 12px;
}

.duck-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.duck-list li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.duck-list li:last-child {
    margin-bottom: 0;
}

.vt-links-wrap {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.vt-links-title {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-bright);
}

.vt-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vt-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    background: rgba(255,255,255,0.025);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.vt-link:hover {
    border-color: rgba(76,201,167,0.45);
    background: rgba(76,201,167,0.06);
    transform: translateY(-1px);
}

.vt-link-label {
    color: var(--text-bright);
    font-size: 0.88rem;
    font-weight: 700;
}

.vt-link-url {
    color: var(--muted);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Live Server ── */
.live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 20px;
    border: 1px solid var(--stroke);
    border-radius: 6px;
    overflow: hidden;
}

.live-grid-compact {
    margin-top: 0;
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.live-stat {
    padding: 24px 20px;
    text-align: center;
    border: none;
    border-radius: 0;
    background: var(--bg-a);
    border-right: 1px solid var(--stroke);
}

.live-stat:last-child { border-right: none; }

.live-stat .kpi-title {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.live-stat .value {
    font-size: 1.6rem;
    margin-top: 8px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-bright);
    font-variant-numeric: tabular-nums;
}

.test-env-label {
    color: var(--muted);
    font-size: 0.78rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.test-env-label .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 4px rgba(76,201,167,0.4);
    animation: discPulse 2.5s infinite;
}

.live-test-actions {
    margin-top: 14px;
}

.live-proof-copy {
    margin-top: 14px;
    text-align: center;
}

.live-server-note {
    max-width: 560px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.test-download-btn {
    min-width: 220px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(76, 201, 167, 0.22),
        0 0 22px rgba(76, 201, 167, 0.28),
        0 0 42px rgba(76, 201, 167, 0.14);
    animation: testDownloadGlow 2.8s ease-in-out infinite;
}

.test-download-btn:hover,
.test-download-btn:focus-visible {
    box-shadow:
        0 0 0 1px rgba(76, 201, 167, 0.34),
        0 0 26px rgba(76, 201, 167, 0.38),
        0 0 54px rgba(76, 201, 167, 0.2);
}

@keyframes testDownloadGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(76, 201, 167, 0.22),
            0 0 22px rgba(76, 201, 167, 0.28),
            0 0 42px rgba(76, 201, 167, 0.14);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(76, 201, 167, 0.3),
            0 0 28px rgba(76, 201, 167, 0.36),
            0 0 58px rgba(76, 201, 167, 0.18);
    }
}

@keyframes discPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ── Note Section ── */
.note-card {
    padding: 24px 22px;
    background: var(--bg-a);
    border: 1px solid var(--stroke);
    border-radius: 6px;
}

.note-card-single {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(76, 201, 167, 0.18);
    border-color: rgba(76, 201, 167, 0.42);
    box-shadow: inset 0 0 28px rgba(76, 201, 167, 0.05);
}

.note-card p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.note-card-single p {
    color: var(--text-bright);
}

.note-card p:last-child {
    margin-bottom: 0;
}

/* ── FAQ ── */
.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: min(40rem, 100%);
    margin-inline: auto;
}

.faq-section .section-head {
    margin-bottom: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.faq-item {
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.active {
    border-color: rgba(var(--accent-rgb, 99, 102, 241), 0.45);
    background: rgba(var(--accent-rgb, 99, 102, 241), 0.06);
    box-shadow: 0 0 24px rgba(var(--accent-rgb, 99, 102, 241), 0.12);
}

.faq-item-title {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
    font-family: inherit;
}

.faq-question:hover { color: var(--accent); }

.faq-q-text {
    flex: 1;
    min-width: 0;
}

.faq-question .faq-arrow {
    margin-top: 2px;
    transition: transform 0.3s ease, color 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
    color: var(--muted);
    opacity: 0.45;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 18px 14px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.faq-answer-inner strong {
    color: var(--text);
    font-weight: 600;
}

.faq-answer-inner a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.faq-answer-inner a:hover {
    border-bottom-color: var(--accent);
}

.faq-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 12px;
    margin: 4px 0 0;
    font-size: 0.84rem;
    color: var(--muted);
}

.faq-footer-label {
    opacity: 0.85;
}

.faq-footer-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.faq-footer-link:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* ── Footer ── */
footer {
    text-align: center;
    color: var(--muted);
    font-size: 11px;
    padding: 40px 0 8px;
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.2s;
}

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

.footer-divider {
    width: 30px;
    height: 1px;
    background: var(--stroke);
    margin: 8px auto;
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 80;
    width: 36px; height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(8,8,12,0.9);
    color: var(--muted);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s, color 0.2s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--accent);
    border-color: rgba(76,201,167,0.3);
}

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(8,8,12,0.97);
    border-top: 1px solid var(--stroke);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--muted);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hiding { transform: translateY(100%); }

.cookie-text { max-width: 600px; line-height: 1.5; }

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-text a:hover { color: var(--text); }

.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-btn {
    padding: 8px 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
}

.cookie-accept {
    background: var(--accent);
    color: #0b0b10;
}

.cookie-accept:hover { background: #d9a64e; }

.cookie-decline {
    background: rgba(255,255,255,0.05);
    color: var(--muted);
    border: 1px solid rgba(255,255,255,0.08);
}

.cookie-decline:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text);
}

/* ── Discord Modal ── */
body.is-lang-gated .page,
body.is-lang-gated .cookie-banner {
    visibility: hidden;
}

.lang-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(4, 5, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lang-gate.show {
    display: flex;
}

.lang-gate-card {
    width: min(520px, 100%);
    padding: 28px 24px 24px;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    background: rgba(12, 14, 22, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    text-align: center;
}

.lang-gate-title {
    margin: 0 0 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1.35rem;
    color: var(--text-bright);
}

.lang-gate-sub {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.lang-gate-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

@media (min-width: 480px) {
    .lang-gate-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.lang-gate-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.lang-gate-btn:hover {
    border-color: rgba(76, 201, 160, 0.45);
    background: rgba(76, 201, 160, 0.1);
    transform: translateY(-1px);
}

.lang-gate-btn img {
    border-radius: 3px;
    flex-shrink: 0;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    padding: 20px;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-b);
    border: 1px solid var(--stroke);
    border-radius: 8px;
    padding: 32px 28px;
    max-width: 420px;
    width: 100%;
    position: relative;
}

.modal--simple {
    max-width: 400px;
    padding: 22px 20px 20px;
}

.modal--simple .modal-desc {
    margin-bottom: 14px;
}

.modal--simple .modal-check {
    padding: 10px 0;
    font-size: 0.84rem;
    line-height: 1.45;
}

.modal--simple .modal-check:last-of-type {
    margin-bottom: 14px;
    padding-bottom: 0;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--text); }

.modal-title {
    margin: 0 0 6px;
    font-family: 'Dragnel', serif;
    font-size: 1.1rem;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-desc {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.modal-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text);
    user-select: none;
}

.modal-check:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.modal-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.modal-info-btn {
    background: none;
    border: none;
    color: var(--bad);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0 4px;
    margin-left: 4px;
    transition: opacity 0.15s;
    flex-shrink: 0;
}

.modal-info-btn:hover {
    opacity: 0.75;
}

.modal-info-box {
    display: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--stroke);
    border-radius: 4px;
    padding: 10px 14px;
    margin: -4px 0 12px;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

.modal-info-box.show {
    display: block;
}

.modal-proceed {
    width: 100%;
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.2s;
}

.modal-proceed.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-proceed-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 930px) {
    .pkg-shell-clean {
        padding: 12px;
    }
    .pkg-offer {
        grid-template-columns: 1fr;
    }
    .pkg-offer-main {
        padding: 22px 20px 20px;
    }
    .pkg-offer-head,
    .pkg-offer-price-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .pkg-offer-note {
        white-space: normal;
    }
    .pkg-card-grid,
    .pkg-feature-groups {
        grid-template-columns: 1fr;
    }
    .hero-trust,
    .package-proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pkg-card {
        min-height: 0;
        padding: 26px 22px 22px;
    }
    .pkg-card h3 {
        min-height: 0;
    }
    .pricing-header {
        grid-template-columns: 1fr;
    }
    .pricing-header-spacer { display: none; }
    .pricing-header-col {
        border-right: none;
        border-bottom: 1px solid var(--stroke);
        min-height: 0;
    }
    .pricing-header-col:last-child { border-bottom: none; }
    .compare-table { font-size: 0.75rem; }
    .compare-table td:first-child { width: 35%; }
    .compare-table--packages thead th {
        font-size: 0.58rem;
        padding: 10px 8px;
    }
    .pkg-table-caption {
        font-size: 0.65rem;
        padding: 10px 12px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-compat-badges,
    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        max-width: 100%;
    }

    .hero-visual {
        order: -1;
        min-height: 0;
        padding: 8px 0 4px;
    }

    .hero-brand {
        width: min(100%, 340px);
    }

    .hero-orb {
        width: min(100%, 340px);
    }

    .hero-logo {
        width: min(260px, 72vw);
        margin-top: clamp(20px, 5vw, 32px);
    }

    .hero-discord-link {
        margin-top: -20px;
        max-width: calc(100% - 24px);
    }

    .hero-headline {
        font-size: clamp(1.65rem, 6vw, 2.2rem);
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-actions .btn-lg {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .pkg-compare-scroll {
        margin: 0 -4px;
    }

    .requirements-section,
    .changelog-section,
    .faq-section {
        padding-inline: 0;
    }
    .sales-summary { grid-template-columns: 1fr; }
    .topbar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(8,8,12,0.95);
        align-items: center;
    }
    .mobile-menu-toggle {
        display: inline-flex;
        order: 2;
    }
    .topbar-nav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 12px;
        padding: 12px;
        border: 1px solid var(--stroke);
        border-radius: 8px;
        background: rgba(12,13,18,0.96);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .topbar.menu-open .topbar-nav {
        display: flex;
    }
    .topbar-nav a {
        width: 100%;
        padding: 10px 12px;
        border-radius: 6px;
        background: rgba(255,255,255,0.02);
    }
    .topbar-nav a:hover {
        background: rgba(255,255,255,0.05);
    }
    .topbar.menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .topbar.menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    .topbar.menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .topbar .lang-switcher {
        margin-left: 0;
    }
    .topbar .lang-current {
        width: 100%;
        justify-content: space-between;
        padding: 10px 12px;
    }
    .topbar .lang-dropdown {
        position: static;
        display: none;
        margin-top: 6px;
        width: 100%;
        box-shadow: none;
    }
    .topbar .lang-switcher.open .lang-dropdown {
        display: block;
    }
    .brand-text { font-size: 0.75rem; }
    .status {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        padding-top: 4px;
    }
    .live-grid {
        grid-template-columns: 1fr 1fr;
    }
    .live-stat {
        border-bottom: 1px solid var(--stroke);
    }
    .live-stat:last-child { border-bottom: none; border-right: none; }
    .back-to-top { bottom: 16px; right: 16px; }
    .info-box-duck {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .vt-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .usp-grid { grid-template-columns: 1fr; }
    .live-grid { grid-template-columns: 1fr; }
    .live-stat { border-right: none; }
    .hero-trust,
    .package-proof-strip {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 28px 12px 24px;
        max-width: 100%;
    }
    .hero-logo {
        width: min(220px, 78vw);
        margin-top: 18px;
    }

    .hero-discord-link {
        margin-top: -18px;
        width: min(100%, 280px);
        justify-content: center;
        font-size: 0.8rem;
        padding: 12px 16px;
    }

    .hero-brand {
        width: min(100%, 300px);
    }

    .hero-orb {
        width: min(100%, 300px);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-stat {
        padding: 12px 14px;
    }

    .page {
        padding-inline: clamp(12px, 4vw, 20px);
    }

    .wrap {
        gap: 48px;
    }

    .lang-gate-grid {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 20px 16px;
    }

    .pkg-test-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .hero-eyebrow {
        margin-bottom: 10px;
        padding: 5px 10px;
        font-size: 0.66rem;
    }
    .hero h2 {
        margin-bottom: 10px;
        font-size: 1.35rem;
        line-height: 1.15;
        letter-spacing: 1px;
    }
    .hero-tagline {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .hero-proof {
        width: 100%;
        gap: 8px;
        margin-bottom: 14px;
    }
    .hero-proof-item {
        flex: 1 1 calc(50% - 8px);
        min-height: 0;
        padding: 7px 10px;
        font-size: 0.69rem;
        letter-spacing: 0.02em;
    }
    .hero-proof-item:last-child {
        flex-basis: 100%;
    }
    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 16px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 8px;
    }
    .hero-trust span {
        font-size: 0.64rem;
        line-height: 1.35;
        padding: 10px 8px;
    }
    .sales-summary {
        margin-top: 12px;
    }
    .live-server-shell {
        padding: 18px 16px 16px;
    }
    .live-grid-compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sales-card {
        padding: 16px 14px;
    }
    .sales-card h3 {
        font-size: 0.82rem;
    }
    .sales-card p {
        font-size: 0.79rem;
    }
    .section-divider { margin: 32px 0; }
    .compare-table td { padding: 7px 10px; font-size: 0.72rem; }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        text-align: center;
        padding: 12px;
        gap: 12px;
        border: 1px solid var(--stroke);
        border-radius: 12px;
    }
    .cookie-text {
        font-size: 0.76rem;
        line-height: 1.45;
    }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; }
    .topbar {
        margin: 0 -24px;
        padding: 12px 16px;
    }
    .preview-tabs {
        gap: 4px;
        padding: 5px;
        margin: 16px 0 14px;
    }
    .preview-tab {
        padding: 8px 12px;
        font-size: 0.68rem;
    }
    .info-box {
        padding: 20px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Page background (rymd-style base — hakimel/codepen bzrZGo) ── */
.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: #050508;
    background-image:
        radial-gradient(circle at top right, rgba(76, 201, 160, 0.12), transparent 42%),
        radial-gradient(circle at 18% 82%, rgba(88, 101, 242, 0.1), transparent 40%),
        radial-gradient(circle at 72% 38%, rgba(121, 68, 154, 0.08), transparent 38%);
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb-ring--outer,
    .hero-orb-glow {
        animation: none;
    }

    .feat-tabs.has-open-panel .feat-tab:not(.is-active) {
        animation: none;
        box-shadow: 0 0 10px rgba(76, 201, 160, 0.2);
    }
}

.brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

.preview-panel.glass-panel {
    padding: 16px;
}

.lang-option.is-disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

.lang-option .lang-soon {
    margin-left: auto;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted);
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-compat-badges,
    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        max-width: 100%;
    }

    .hero-visual {
        order: -1;
    }
}

@media (max-width: 900px) {
    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .wrap {
        gap: 52px;
    }

    .site-header {
        top: 10px;
    }
}

@media (max-width: 640px) {
    .pkg-test-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .pkg-test-banner .btn {
        width: 100%;
        justify-content: center;
    }
}

.pkg-test-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 0 20px;
    padding: 20px 22px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: var(--accent-dim);
}

.pkg-test-banner h3 {
    margin: 0 0 8px;
    color: var(--text-bright);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pkg-test-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 720px;
}

.pkg-test-banner .btn {
    flex-shrink: 0;
}

.editor-lang-strip {
    text-align: center;
    margin: 4px 0 0;
    padding: 18px 20px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: var(--card);
}

.editor-lang-strip-title {
    margin: 0 0 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.editor-lang-strip-sub {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.84rem;
}

.editor-lang-strip-list {
    margin: 0;
    color: var(--text-bright);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.info-box-grass {
    border-color: rgba(76, 201, 167, 0.18);
}

.pkg-feature-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .pkg-feature-groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pkg-feature-groups {
        grid-template-columns: 1fr;
    }

    .pkg-test-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .pkg-test-banner .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── DX8/9 & DX11+ compatibility banner ── */
.compat-banner {
    max-width: 820px;
    margin: 0 auto 20px;
    padding: 22px 24px;
    text-align: center;
    border: 1px solid rgba(76, 201, 167, 0.22);
    border-radius: 12px;
    background: rgba(76, 201, 167, 0.06);
}

.compat-banner-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.compat-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-bright);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.compat-badge--accent {
    border-color: rgba(76, 201, 167, 0.45);
    background: rgba(76, 201, 167, 0.12);
    color: var(--accent);
}

.compat-badge--imgui {
    border-color: rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
}

.compat-banner-title {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-bright);
}

.compat-banner-lead,
.compat-banner-visual {
    margin: 0 auto;
    max-width: 680px;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--muted);
}

.integration-self-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 180, 80, 0.18);
    border: 1px solid rgba(255, 180, 80, 0.4);
    color: #e8b86d;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.integration-self-line {
    margin: 8px 0 !important;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid rgba(255, 180, 80, 0.5);
    color: var(--text-bright) !important;
    font-size: 0.82rem !important;
}

.integration-card--req {
    grid-column: 1 / -1;
    border-color: rgba(76, 201, 167, 0.25);
    background: rgba(76, 201, 167, 0.05);
}

.integration-req-line {
    margin-top: 10px !important;
    padding-top: 10px;
    border-top: 1px solid var(--stroke);
    color: var(--text-bright) !important;
    font-size: 0.84rem !important;
}

/* ── Source integration panel ── */
.integration-panel {
    margin: 0 0 22px;
    padding: 22px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: var(--card);
}

.integration-panel-head h3 {
    margin: 0 0 10px;
    color: var(--text-bright);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.integration-panel-head p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.integration-panel-core {
    margin-top: 12px !important;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(69, 196, 158, 0.2);
    background: var(--accent-dim);
    color: var(--text) !important;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.integration-card {
    padding: 16px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.integration-card--warn {
    border-color: rgba(201, 160, 74, 0.28);
    background: var(--warn-dim);
}

.integration-card--pbr {
    border-color: rgba(208, 112, 112, 0.28);
    background: rgba(208, 112, 112, 0.06);
}

.integration-card h4 {
    margin: 0 0 8px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-bright);
}

.integration-card p {
    margin: 0 0 8px;
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--muted);
}

.integration-price {
    margin: 10px 0 12px !important;
    color: var(--accent) !important;
    font-weight: 700;
}

.integration-card .btn-sm {
    padding: 8px 12px;
    font-size: 0.72rem;
}

.usp-card--integration {
    border-color: rgba(255, 180, 80, 0.28);
    background: rgba(255, 180, 80, 0.04);
}

.tag-integration {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 180, 80, 0.15);
    border: 1px solid rgba(255, 180, 80, 0.35);
    color: #e8b86d;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.usp-integration-note {
    margin: 10px 0 0 !important;
    font-size: 0.8rem !important;
    color: var(--accent) !important;
}

@media (max-width: 768px) {
    .integration-grid {
        grid-template-columns: 1fr;
    }
}
