/* ============================================================
   PVAPulse — Design System
   Light "signal / pulse-monitor" theme: warm white surface,
   graphite ink, coral pulse-line accent, deep violet secondary,
   teal live-status green.
   Display: Sora  |  Body: Manrope
   ============================================================ */

:root {
    --bg: #FFFFFF;
    --surface: #FFFFFF;
    --surface-alt: #F5F7FC;
    --ink: #15141A;
    --ink-soft: #58545F;
    --ink-faint: #8B8792;
    --border: #E7EAF3;
    --border-strong: #D3D9EA;

    --coral: #2E6FF2;
    --coral-dark: #1B4FCC;
    --coral-soft: #E6EEFF;

    --pulse-cyan: #22C9F2;

    --violet: #3E1F82;
    --violet-soft: #EEE8FB;

    --live: #14966B;
    --live-soft: #E3F6EC;

    --font-display: 'Sora', 'Segoe UI', sans-serif;
    --font-body: 'Manrope', 'Segoe UI', sans-serif;

    --r-s: 8px;
    --r-m: 14px;
    --r-l: 22px;
    --max: 1180px;
}

html[data-theme="dark"] {
    --bg: #0E0D12;
    --surface: #17151D;
    --surface-alt: #1E1B26;
    --ink: #F3F1F6;
    --ink-soft: #B9B5C2;
    --ink-faint: #7C7887;
    --border: #3D3949;
    --border-strong: #524C63;

    --coral: #4C8DFF;
    --coral-dark: #8FB8FF;
    --coral-soft: #16233F;

    --violet: #B79CFF;
    --violet-soft: #241C3D;

    --live: #34D399;
    --live-soft: #123328;
}
html[data-theme="dark"] .pulse-wave-wrap { background: #0A0910; }
html[data-theme="dark"] .utility-bar { background: #0A0910; }
html[data-theme="dark"] footer { background: #0A0910; }
html[data-theme="dark"] .contact-choice.email { background: #7C4DFF; color: #fff; border-color: #7C4DFF; }
html[data-theme="dark"] .brand-mark { background: transparent; }
html[data-theme="dark"] .nav-pill-links a.active,
html[data-theme="dark"] .nav-pill-links a:hover { background: var(--coral); color: #17151D; }
html[data-theme="dark"] .btn-primary { box-shadow: 0 10px 26px -8px rgba(76,141,255,0.55); }
html[data-theme="dark"] .btn-primary:hover { box-shadow: 0 14px 30px -8px rgba(76,141,255,0.7); }
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .platform-tile,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .stat,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .blog-card,
html[data-theme="dark"] .faq-list details { border-width: 1.5px; border-color: var(--border-strong); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { transition: background-color 0.25s ease, color 0.25s ease; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
    font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h1 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--coral-dark) 0%, var(--coral) 55%, var(--pulse-cyan) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1.02rem; margin-bottom: 6px; }

p { margin: 0 0 1em; color: var(--ink-soft); max-width: 68ch; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--ink); color: #fff; padding: 10px 16px;
    z-index: 500; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------- Utility bar */
.utility-bar {
    background: var(--ink);
    color: #cfccd6;
    font-size: 0.8rem;
}
.utility-bar .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; gap: 8px;
}
.status-dot { display: flex; align-items: center; gap: 8px; }
.status-dot::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: #22C58B; display: inline-block; flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(34,197,139,0.6);
    animation: statusPulse 1.8s infinite;
}
@keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,139,0.55); }
    70% { box-shadow: 0 0 0 6px rgba(34,197,139,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,139,0); }
}
.utility-links { display: flex; gap: 20px; }
.utility-links a { color: #cfccd6; display: flex; align-items: center; gap: 7px; font-weight: 500; }
.utility-links a:hover { color: #fff; }
.utility-links a i { font-size: 0.95rem; }
.utility-links a.tg i { color: #4FC3F7; }
.utility-links a.wa i { color: #3DDC7C; }
.utility-links a.em i { color: #B79CFF; }
@media (max-width: 700px) { .utility-links { display: none; } }

/* ---------------------------------------------------------------- Top nav */
.top-nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--bg);
    background: color-mix(in srgb, var(--bg) 90%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.top-nav .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
    width: 36px; height: 36px; border-radius: 50%;
    background: transparent; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
    flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.brand-text span { color: var(--coral); }

.nav-pill-links {
    display: flex; gap: 4px;
    background: var(--surface-alt);
    padding: 4px; border-radius: 999px;
}
.nav-pill-links a {
    padding: 8px 16px; border-radius: 999px;
    font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
}
.nav-pill-links a.active, .nav-pill-links a:hover { background: var(--ink); color: #fff; }

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

/* ---------------------------------------------------------------- Services nav dropdown */
.nav-services-item { position: relative; display: flex; align-items: center; }
.nav-services-item > a {
    padding: 9px 8px 9px 16px; border-radius: 999px 0 0 999px;
    font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
}
.nav-services-item > a.active, .nav-services-item > a:hover { background: var(--ink); color: #fff; }
.nav-chevron {
    background: none; border: none; cursor: pointer;
    padding: 9px 12px 9px 4px; border-radius: 0 999px 999px 0;
    color: var(--ink-soft); font-size: 0.7rem; line-height: 1;
}
.nav-chevron:hover { color: var(--coral); }
.nav-chevron i { transition: transform 0.2s ease; }
.nav-chevron.open i { transform: rotate(180deg); }
.nav-dropdown {
    display: none; position: absolute; top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%); background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-m); box-shadow: 0 20px 40px -16px rgba(21,20,26,0.25);
    padding: 16px; width: 460px; z-index: 120;
    grid-template-columns: repeat(3, 1fr); gap: 4px 14px;
}
.nav-dropdown.open { display: grid; }
.nav-dropdown a {
    padding: 8px 10px; border-radius: var(--r-s); font-size: 0.86rem;
    color: var(--ink-soft); white-space: nowrap;
    display: flex; align-items: center; gap: 9px;
}
.nav-dropdown a .p-icon { width: 24px; height: 24px; font-size: 0.72rem; border-radius: 7px; flex-shrink: 0; }
.nav-dropdown a:hover { background: var(--surface-alt); color: var(--ink); }
.nav-dropdown-all {
    grid-column: 1 / -1; margin-top: 8px; padding-top: 12px !important;
    border-top: 1px solid var(--border); font-weight: 700; color: var(--coral-dark) !important;
    display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 860px) { .nav-services-item, .nav-dropdown { display: none !important; } }

.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 860px) {
    .nav-pill-links { display: none; }
    .nav-cta .btn-outline { display: none; }
    .hamburger { display: flex; }
}

.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 150;
    background: var(--bg); padding: 20px; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.close-mobile {
    background: var(--surface-alt); border: none; width: 40px; height: 40px;
    border-radius: 50%; font-size: 1.4rem; margin-bottom: 20px; cursor: pointer;
}
.mobile-menu ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.mobile-menu a {
    display: block; padding: 16px 14px; font-size: 1.1rem;
    border-bottom: 1px solid var(--border); font-weight: 600;
}
.mobile-services-item { border-bottom: 1px solid var(--border); }
.mobile-services-row { display: flex; align-items: stretch; }
.mobile-services-row a { flex: 1; border-bottom: none; }
.mobile-chevron {
    background: none; border: none; padding: 0 16px; cursor: pointer;
    color: var(--ink-faint); font-size: 0.85rem;
}
.mobile-chevron i { transition: transform 0.2s ease; }
.mobile-chevron.open i { transform: rotate(180deg); }
.mobile-services-list {
    display: none; grid-template-columns: 1fr 1fr; gap: 2px;
    padding: 6px 0 14px;
}
.mobile-services-list.open { display: grid; }
.mobile-services-list a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-bottom: none; font-size: 0.88rem; font-weight: 600;
    border-radius: var(--r-s);
}
.mobile-services-list a:hover { background: var(--surface-alt); }
.mobile-services-list .p-icon {
    width: 26px; height: 26px; border-radius: 7px; font-size: 0.8rem; flex-shrink: 0;
}
.mobile-services-list .view-all {
    grid-column: 1 / -1; color: var(--coral-dark); display: flex;
    align-items: center; justify-content: space-between; margin-top: 4px;
}

/* ---------------------------------------------------------------- Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px; border-radius: 999px;
    font-family: var(--font-display); font-weight: 700; font-size: 0.94rem;
    border: 1px solid transparent; cursor: pointer;
    transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 24px -10px rgba(46,111,242,0.55); }
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 12px 28px -8px rgba(46,111,242,0.7); transform: translateY(-1px); }
.btn-outline { background: var(--surface); color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--coral); color: var(--coral-dark); box-shadow: 0 8px 20px -12px rgba(46,111,242,0.4); }
.btn-sm { padding: 9px 16px; font-size: 0.84rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------- Hero */
.hero {
    padding: 56px 0 24px;
    position: relative; overflow: hidden;
    background:
        radial-gradient(680px 420px at 88% -8%, rgba(46,111,242,0.10), transparent 62%),
        radial-gradient(520px 360px at 8% 8%, rgba(34,201,242,0.08), transparent 65%),
        radial-gradient(circle, rgba(46,111,242,0.14) 1px, transparent 1.4px),
        linear-gradient(180deg, var(--surface-alt) 0%, var(--bg) 55%);
    background-size: auto, auto, 26px 26px, auto;
    background-position: 0 0, 0 0, 0 0, 0 0;
}
html[data-theme="dark"] .hero {
    background:
        radial-gradient(680px 420px at 88% -8%, rgba(76,141,255,0.16), transparent 62%),
        radial-gradient(520px 360px at 8% 8%, rgba(34,201,242,0.12), transparent 65%),
        radial-gradient(circle, rgba(76,141,255,0.16) 1px, transparent 1.4px),
        linear-gradient(180deg, #14121A 0%, var(--bg) 55%);
    background-size: auto, auto, 26px 26px, auto;
}
.hero .container { position: relative; z-index: 1; }
.hero .container {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}

/* Floating brand icons — decorative but highlighted, always behind content */
.hero-bg-icons {
    position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.hbi {
    position: absolute; font-size: 3.6rem; opacity: 0.44;
    filter: drop-shadow(0 0 26px currentColor);
    animation: hbiFloat 7s ease-in-out infinite;
}
.hbi-ig { color: #E1306C; animation-delay: 0s; }
.hbi-tt { color: #0A0A0A; font-size: 3.1rem; animation-delay: 1.1s; }
.hbi-gm { color: #4285F4; font-size: 3.3rem; animation-delay: 2.2s; }
.hbi-fb { color: #1877F2; font-size: 3.8rem; animation-delay: 0.6s; }
html[data-theme="dark"] .hbi { opacity: 0.40; }
html[data-theme="dark"] .hbi-tt { color: #ffffff; }
/* Desktop / tablet positions (two-column hero) */
.hbi-pos-1 { top: 58%; left: 55%; }
.hbi-pos-2 { top: 62%; left: 84%; }
.hbi-pos-3 { top: 87%; left: 63%; }
.hbi-pos-4 { top: 84%; left: 91%; }
@keyframes hbiFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(6deg); }
}
@media (prefers-reduced-motion: reduce) { .hbi { animation: none; } }
/* Mobile: single-column hero — spread icons around the edges so they never
   sit under the dense heading/paragraph text, and never touch each other */
@media (max-width: 860px) {
    .hero-bg-icons { display: block; }
    .hbi { font-size: 2.2rem !important; opacity: 0.30; }
    .hbi-pos-1 { top: 4%; right: 20%; left: auto; }
    .hbi-pos-2 { top: 3%; right: 6%; left: auto; }
    .hbi-pos-3 { top: 13%; right: 26%; left: auto; }
    .hbi-pos-4 { top: 12%; right: 10%; left: auto; }
}
@media (max-width: 480px) {
    .hbi { font-size: 1.7rem !important; }
}
.hero-eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.pulse-icon {
    width: 9px; height: 9px; border-radius: 50%; background: var(--coral);
    position: relative; flex-shrink: 0;
}
.pulse-icon::after {
    content: ''; position: absolute; inset: -5px; border-radius: 50%;
    border: 1.5px solid var(--coral); animation: ringPulse 1.8s ease-out infinite;
}
@keyframes ringPulse {
    0% { transform: scale(0.6); opacity: 0.9; }
    100% { transform: scale(2.1); opacity: 0; }
}
.label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.hero-lede { font-size: 1.08rem; max-width: 52ch; }
.hero-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
@media (max-width: 860px) { .hero-actions { justify-content: center; } }
.stats-bar { padding: 28px 0; border-bottom: 1px solid var(--border); }
.hero-stats {
    display: flex; gap: 16px;
}
.stat {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-m); padding: 16px 18px; flex: 1; min-width: 0;
    position: relative; overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.stat::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.stat:nth-child(1)::before { background: linear-gradient(90deg, var(--coral), var(--pulse-cyan)); }
.stat:nth-child(2)::before { background: linear-gradient(90deg, #F5A623, #FFD166); }
.stat:nth-child(3)::before { background: linear-gradient(90deg, var(--live), #34D399); }
.stat:hover { transform: translateY(-4px); box-shadow: 0 14px 26px -16px rgba(21,20,26,0.3); border-color: var(--border-strong); }
.stat b { font-family: var(--font-display); font-size: 1.5rem; }
.stat span { font-size: 0.8rem; color: var(--ink-faint); }
.stat-text { display: flex; flex-direction: column; }
.stat-icon {
    width: 34px; height: 34px; border-radius: 9px; margin-bottom: 2px;
    display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.stat-icon i {
    line-height: 1; display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; text-align: center;
}
.stat-icon-a { background: var(--coral-soft); color: var(--coral-dark); box-shadow: 0 6px 16px -8px rgba(46,111,242,0.5); }
.stat-icon-b { background: #FFF3DE; color: #B9740A; box-shadow: 0 6px 16px -8px rgba(185,116,10,0.4); }
.stat-icon-c { background: var(--live-soft); color: var(--live); box-shadow: 0 6px 16px -8px rgba(20,150,107,0.4); }

/* ---------------------------------------------------------------- Scroll-reveal (slide from sides) */
.reveal {
    opacity: 0;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.from-left { transform: translate3d(-56px, 0, 0); }
.reveal.from-right { transform: translate3d(56px, 0, 0); }
.reveal.fade-only { transform: translate3d(0, 14px, 0); }
.reveal.in-view { opacity: 1; transform: translate3d(0, 0, 0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html[data-theme="dark"] .stat-icon-a { background: rgba(76,141,255,0.22); color: #8FB8FF; }
html[data-theme="dark"] .stat-icon-b { background: rgba(245,166,35,0.22); color: #FFC978; }
html[data-theme="dark"] .stat-icon-c { background: rgba(52,211,153,0.22); color: #6EEBB8; }
.stat span.stat-label-short { display: none; }

@media (max-width: 560px) {
    .hero-stats { gap: 8px; }
    .stat {
        flex-direction: row; align-items: center; text-align: left;
        padding: 10px 8px; gap: 8px; border-radius: 12px;
    }
    .stat-icon {
        width: 34px; height: 34px; border-radius: 50%; font-size: 0.9rem;
        margin-bottom: 0; flex-shrink: 0;
    }
    .stat-text { flex-direction: column; gap: 1px; min-width: 0; }
    .stat b { font-size: 0.92rem; line-height: 1.1; }
    .stat span { font-size: 0.58rem; line-height: 1.2; display: block; white-space: normal; color: var(--ink-faint); overflow-wrap: break-word; word-break: break-word; }
    .stat span.stat-label-full { display: none; }
    .stat span.stat-label-short { display: block; }
}

@media (max-width: 860px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero .container > * { min-width: 0; }
    .hero { padding-top: 36px; }
}

/* ---------------------------------------------------------------- Pulse wave visual */
.pulse-wave-wrap {
    background: var(--ink); border-radius: var(--r-l);
    padding: 22px 22px 18px; color: #fff;
}
.pw-head {
    display: flex; justify-content: space-between; font-size: 0.8rem;
    color: #A6A2AE; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em;
}
.pw-head span:last-child { color: #22C58B; font-weight: 700; }
.pulse-wave-wrap svg { width: 100%; height: auto; display: block; }
.pw-grid line { stroke: rgba(255,255,255,0.08); stroke-width: 1; }
.pulse-line {
    fill: none; stroke: url(#pulseGrad); stroke-width: 2.5;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: drawPulse 3.4s linear infinite;
}
@keyframes drawPulse {
    0% { stroke-dashoffset: 1400; }
    60% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -60; }
}
.pw-legend {
    display: flex; justify-content: space-between; margin-top: 10px;
    font-size: 0.78rem; color: #8B8892;
}

/* ---------------------------------------------------------------- Trust strip */
.trust-strip {
    background: var(--surface-alt); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); margin-top: 44px;
}
.trust-strip .container {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    padding-top: 18px; padding-bottom: 18px;
}
.trust-item {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.86rem; font-weight: 600; color: var(--ink);
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 999px; padding: 9px 18px 9px 14px;
    box-shadow: 0 1px 0 rgba(21,20,26,0.03);
}
.trust-item i {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: var(--coral-soft); color: var(--coral-dark);
    display: flex; align-items: center; justify-content: center; font-size: 0.68rem;
}

/* ---------------------------------------------------------------- Section scaffolding */
.section { padding: 64px 0; }
.section-alt { background: var(--surface-alt); }
.section-head {
    max-width: 640px; margin: 0 auto 36px; text-align: center;
}
.section-head p { margin-left: auto; margin-right: auto; }
.kicker {
    display: inline-block; font-size: 0.82rem; font-weight: 700;
    color: var(--coral-dark); margin-bottom: 10px;
}

/* ---------------------------------------------------------------- Platform grid (services listing) */
.platform-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px;
}
.platform-tile {
    display: flex; flex-direction: column; gap: 0;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-m); border-top: 3px solid var(--border-strong);
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    overflow: hidden;
}
.pt-link {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 22px 20px 16px; flex: 1; text-align: center;
}
.pt-link .p-icon { margin: 0 auto; }
.platform-tile:hover {
    border-color: var(--ink); transform: translateY(-3px);
    box-shadow: 0 14px 28px -18px rgba(21,20,26,0.35);
}
.platform-tile:has(.brand-ig) { border-top-color: #C1276B; }
.platform-tile:has(.brand-fb) { border-top-color: #1877F2; }
.platform-tile:has(.brand-tw) { border-top-color: var(--ink); }
.platform-tile:has(.brand-tt) { border-top-color: #FE2C55; }
.platform-tile:has(.brand-yt) { border-top-color: #FF0000; }
.platform-tile:has(.brand-discord) { border-top-color: #5865F2; }
.platform-tile:has(.brand-telegram) { border-top-color: #29A9EA; }
.platform-tile:has(.brand-snap) { border-top-color: #D6CD00; }
.platform-tile:has(.brand-linkedin) { border-top-color: #0A66C2; }
.platform-tile:has(.brand-google) { border-top-color: #4285F4; }
.platform-tile:has(.brand-microsoft) { border-top-color: #00A4EF; }
.platform-tile:has(.brand-amazon) { border-top-color: #E47911; }
.platform-tile:has(.brand-ebay) { border-top-color: #0064D2; }
.platform-tile:has(.brand-paypal) { border-top-color: #0070BA; }
.platform-tile:has(.brand-netflix) { border-top-color: #E50914; }
.platform-tile:has(.brand-spotify) { border-top-color: #1DB954; }
.platform-tile:has(.brand-reddit) { border-top-color: #FF4500; }
.platform-tile:has(.brand-pinterest) { border-top-color: #E60023; }
.platform-tile:has(.brand-threads) { border-top-color: var(--ink); }
.platform-tile:has(.brand-apple) { border-top-color: var(--ink); }
.platform-tile:has(.brand-binance) { border-top-color: #F0B90B; }
.platform-tile:has(.brand-twitch) { border-top-color: #9146FF; }
.platform-tile:has(.brand-coinbase) { border-top-color: #0052FF; }
.platform-tile:has(.brand-skype) { border-top-color: #00AFF0; }
.platform-tile:has(.brand-wechat) { border-top-color: #07C160; }
.platform-tile:has(.brand-quora) { border-top-color: #B92B27; }
.platform-tile:has(.brand-github) { border-top-color: var(--ink); }
.p-icon {
    width: 62px; height: 62px; border-radius: 16px;
    background: var(--surface-alt); display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem; color: var(--ink);
}
.platform-tile h3, .platform-tile h4 { font-size: 1.05rem; margin-bottom: 2px; }
.platform-tile p { font-size: 0.86rem; margin-bottom: 0; }
.p-price { margin-top: auto; padding-top: 6px; font-size: 0.8rem; color: var(--ink-faint); }
.p-price b { color: var(--coral-dark); font-family: var(--font-display); font-size: 0.98rem; }
.pt-buy {
    margin: 0 auto 18px; border-radius: 999px; display: block;
    width: fit-content; min-width: 120px; text-align: center;
    font-size: 0.84rem; padding: 10px 22px;
}

/* ---------------------------------------------------------------- Product / pricing cards */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px;
}
.product-card {
    position: relative;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-m); padding: 24px 22px 22px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    border-top: 3px solid var(--border-strong);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 34px -20px rgba(21,20,26,0.3);
    border-color: var(--border-strong);
}
.product-card.is-popular { border-top-color: var(--coral); }
.pc-icon {
    width: 52px; height: 52px; border-radius: var(--r-m);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 14px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover .pc-icon { transform: translateY(-5px) scale(1.06); }
.product-card .badge {
    position: absolute; top: -11px; right: 18px;
    background: var(--coral); color: #fff; font-size: 0.7rem; font-weight: 700;
    padding: 4px 11px; border-radius: 999px; font-family: var(--font-display);
}
.p-qty-label { font-size: 0.84rem; color: var(--ink-faint); margin-bottom: 2px; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 16px; }
.price { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--coral-dark); }
.price-unit { font-size: 0.84rem; color: var(--ink-faint); }
.features {
    list-style: none; margin: 0 0 18px; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; width: 100%;
}
.features li {
    font-size: 0.78rem; font-weight: 600; color: var(--ink-soft);
    display: flex; gap: 7px; align-items: flex-start; text-align: left;
    background: var(--surface-alt); border: 1px solid var(--border);
    border-radius: 10px; padding: 7px 12px;
    max-width: 100%;
}
.features li i {
    width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0;
    background: var(--live-soft); color: var(--live);
    display: flex; align-items: center; justify-content: center; font-size: 0.58rem;
    margin-top: 2px;
}

.qty-stepper {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    background: var(--surface-alt); border-radius: var(--r-s);
    padding: 8px; margin-bottom: 14px; width: 100%;
}
.qty-stepper button {
    width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--border-strong);
    background: var(--surface); cursor: pointer; font-size: 1.05rem; line-height: 1; color: var(--ink);
}
.qty-stepper button:hover { border-color: var(--ink); }
.qty-stepper input {
    width: 38px; text-align: center; border: none; background: transparent;
    font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink);
}
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ---------------------------------------------------------------- Variant/content blocks */
.content-block { max-width: 720px; }
.content-block h2 { margin-bottom: 14px; }

/* ---------------------------------------------------------------- FAQ */
.faq-list { display: grid; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-list details {
    border: 1px solid var(--border); border-radius: var(--r-m);
    padding: 16px 18px; background: var(--surface);
}
.faq-list summary {
    cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.3rem; color: var(--ink-faint); flex-shrink: 0; }
.faq-list details[open] summary::after { content: '\2212'; }
.faq-list details p { margin-top: 12px; margin-bottom: 0; font-size: 0.92rem; }

/* ---------------------------------------------------------------- Steps grid */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.step-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-m); padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px -18px rgba(21,20,26,0.28);
    border-color: var(--border-strong);
}
.step-card:hover .step-icon { transform: translateY(-3px) scale(1.06); }
.step-icon { transition: transform 0.2s ease; }
.step-icon {
    width: 42px; height: 42px; border-radius: var(--r-s);
    background: var(--violet-soft); color: var(--violet);
    display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
    margin-bottom: 14px;
}
.step-card h3 { font-size: 1rem; }
.step-card p { font-size: 0.88rem; margin-bottom: 0; }

/* ---------------------------------------------------------------- Testimonials */
.testimonial-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; }
.testimonial-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-m); padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px -18px rgba(21,20,26,0.28);
    border-color: var(--border-strong);
}
.stars { color: #F5A623; font-size: 0.82rem; margin-bottom: 12px; display: flex; gap: 2px; }
.testimonial-card p { font-size: 0.93rem; color: var(--ink); }
.who { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.avatar {
    width: 34px; height: 34px; border-radius: 50%; background: var(--coral-soft);
    color: var(--coral-dark); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; flex-shrink: 0;
}
.who strong { display: block; font-size: 0.86rem; }
.who small { color: var(--ink-faint); font-size: 0.78rem; }

/* ---------------------------------------------------------------- Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-cards-col { display: grid; gap: 14px; }
.contact-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-l); padding: 22px; text-align: left;
    display: flex; align-items: center; gap: 18px;
    border-left: 4px solid var(--border-strong);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.contact-card .cc-body { flex: 1; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.88rem; margin: 0; color: var(--ink-soft); }
.contact-card .cc-arrow {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: var(--surface-alt); display: flex; align-items: center; justify-content: center;
    color: var(--ink-faint); font-size: 0.8rem; transition: transform 0.18s ease;
}
.contact-card:hover .cc-arrow { transform: translateX(3px); }

.c-icon {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.contact-card.telegram { border-left-color: #2AABEE; }
.contact-card.telegram .c-icon { background: #2AABEE; color: #fff; box-shadow: 0 8px 22px -8px rgba(42,171,238,0.65); }
.contact-card.telegram:hover { box-shadow: 0 14px 30px -16px rgba(42,171,238,0.5); transform: translateY(-3px); }

.contact-card.whatsapp { border-left-color: #25D366; }
.contact-card.whatsapp .c-icon { background: #25D366; color: #fff; box-shadow: 0 8px 22px -8px rgba(37,211,102,0.65); }
.contact-card.whatsapp:hover { box-shadow: 0 14px 30px -16px rgba(37,211,102,0.5); transform: translateY(-3px); }

.contact-card.email { border-left-color: #6D3FE0; }
.contact-card.email .c-icon { background: #6D3FE0; color: #fff; box-shadow: 0 8px 22px -8px rgba(109,63,224,0.65); }
.contact-card.email:hover { box-shadow: 0 14px 30px -16px rgba(109,63,224,0.5); transform: translateY(-3px); }

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

/* ---------------------------------------------------------------- Message form */
.message-form { max-width: 640px; margin: 0 auto; display: grid; gap: 16px; }
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mf-field { display: flex; flex-direction: column; gap: 6px; }
.mf-field label { font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); }
.mf-field input, .mf-field textarea {
    font-family: var(--font-body); font-size: 0.94rem; color: var(--ink);
    background: var(--surface); border: 1px solid var(--border-strong);
    border-radius: var(--r-s); padding: 12px 14px; resize: vertical;
}
.mf-field input:focus, .mf-field textarea:focus {
    outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-soft);
}
#mf-send { justify-self: start; }
@media (max-width: 560px) { .mf-row { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- Order modal */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(15,14,20,0.6);
    backdrop-filter: blur(3px);
    display: none; align-items: center; justify-content: center; z-index: 300; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--surface); border-radius: var(--r-l);
    width: 100%; max-width: 440px; padding: 30px 28px 28px; position: relative;
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 30px 70px -20px rgba(21,20,26,0.35), 0 0 0 1px var(--border);
    animation: modalPop 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modalPop {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute; top: 16px; right: 16px; cursor: pointer;
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 1.2rem; color: var(--ink-faint); background: var(--surface-alt); border: none; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}
.modal-close:hover { background: var(--border); color: var(--ink); }
.modal-box h3 {
    margin-bottom: 4px; display: flex; align-items: center; gap: 10px;
}
.modal-box h3::before {
    content: '\f07a'; font-family: "Font Awesome 6 Free"; font-weight: 900;
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    background: var(--coral-soft); color: var(--coral-dark);
    display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.modal-sub { font-size: 0.86rem; color: var(--ink-faint); margin-bottom: 20px; padding-left: 44px; }
.order-summary-box {
    background: var(--surface-alt); border-radius: var(--r-m);
    padding: 18px; margin-bottom: 18px; display: grid; gap: 11px; font-size: 0.9rem;
    border: 1px solid var(--border);
}
.order-summary-box .row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.order-summary-box .row > span:first-child {
    color: var(--ink-faint); font-size: 0.83rem; font-weight: 600;
    display: flex; align-items: center; gap: 7px;
}
.order-summary-box .row.total {
    font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
    margin: 4px -18px -18px; padding: 14px 18px;
    background: var(--coral); color: #fff; border-radius: 0 0 calc(var(--r-m) - 1px) calc(var(--r-m) - 1px);
}
.order-summary-box .row.total > span:first-child { color: rgba(255,255,255,0.85); }
.modal-qty-row { align-items: center; }
.modal-qty-row .qty-stepper { width: auto; margin: 0; padding: 4px 6px; background: var(--surface); border: 1px solid var(--border-strong); }
.modal-qty-row .qty-stepper input { width: 32px; font-size: 0.92rem; }
.modal-qty-row .qty-stepper button { width: 24px; height: 24px; font-size: 0.95rem; }
.modal-field { margin-bottom: 18px; }
.modal-field label {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px;
}
.modal-field textarea {
    width: 100%; font-family: var(--font-body); font-size: 0.9rem; color: var(--ink);
    background: var(--surface); border: 1.5px solid var(--border-strong); border-radius: var(--r-s);
    padding: 12px 14px; resize: vertical; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.modal-field textarea:focus {
    outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-soft);
}
.contact-choice-grid { display: grid; gap: 10px; }
.contact-choice {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px 18px; border-radius: var(--r-m); font-weight: 700; font-size: 0.92rem;
    border: 1px solid var(--border-strong);
}
.contact-choice.telegram { background: #2AABEE; color: #fff; border-color: #2AABEE; }
.contact-choice.whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.contact-choice.email { background: #6D3FE0; color: #fff; border-color: #6D3FE0; }
.contact-choice:hover { opacity: 0.92; }

/* ---------------------------------------------------------------- Article / blog */
.article-hero { max-width: 720px; margin: 0 auto 30px; }
.article-body { max-width: 720px; margin: 0 auto; display: grid; gap: 18px; }
.article-body h2 { font-size: 1.3rem; margin-top: 6px; }
.article-body p { max-width: none; }
.article-body ul, .article-body ol { color: var(--ink-soft); padding-left: 22px; }
.article-body blockquote {
    margin: 0; padding: 16px 20px; border-left: 3px solid var(--coral);
    background: var(--coral-soft); border-radius: 0 var(--r-s) var(--r-s) 0;
    font-style: italic; color: var(--ink);
}
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.blog-card {
    display: flex; flex-direction: column; gap: 4px;
    background: var(--surface); border: 1px solid var(--border);
    border-top: 3px solid var(--coral); border-radius: var(--r-m);
    padding: 26px 24px 22px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px -18px rgba(21,20,26,0.3); }
.bc-icon {
    width: 44px; height: 44px; border-radius: var(--r-s); margin-bottom: 10px;
    background: var(--coral-soft); color: var(--coral-dark);
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
    box-shadow: 0 8px 18px -10px rgba(46,111,242,0.4);
}
.blog-card h3 { font-size: 1.08rem; margin: 8px 0 6px; }
.blog-card p { font-size: 0.9rem; }
.bc-read {
    margin-top: auto; padding-top: 14px; font-size: 0.86rem; font-weight: 700;
    color: var(--coral-dark); display: flex; align-items: center; gap: 8px;
}
.bc-read i { font-size: 0.75rem; transition: transform 0.15s ease; }
.blog-card:hover .bc-read i { transform: translateX(4px); }

/* ---------------------------------------------------------------- Legal pages */
.legal-page { max-width: 760px; margin: 0 auto; }
.legal-page h2 { margin-top: 28px; font-size: 1.2rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); }

/* ---------------------------------------------------------------- Footer */
footer { background: var(--ink); color: #cfccd6; margin-top: 20px; }
.footer-grid {
    padding: 56px 0 36px; display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
.footer-brand p { color: #A6A2AE; font-size: 0.87rem; }
.footer-brand .brand-text { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; color: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.footer-social a:hover { transform: translateY(-3px); }
.footer-social a[aria-label="Telegram"] { background: #2AABEE; box-shadow: 0 6px 16px -6px rgba(42,171,238,0.6); }
.footer-social a[aria-label="WhatsApp"] { background: #25D366; box-shadow: 0 6px 16px -6px rgba(37,211,102,0.6); }
.footer-social a[aria-label="Email"] { background: #6D3FE0; box-shadow: 0 6px 16px -6px rgba(109,63,224,0.6); }
.footer-col h4 { color: #fff; font-size: 0.86rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: #A6A2AE; font-size: 0.87rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    font-size: 0.78rem; color: #8B8892;
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Theme toggle
   ============================================================ */
.theme-toggle {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--surface-alt); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--ink-soft); font-size: 0.95rem;
    flex-shrink: 0; transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover { color: var(--coral); border-color: var(--coral); transform: rotate(12deg); }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: inline; }

/* ============================================================
   Brand icon glow system
   Every platform icon carries its real brand color and a soft
   matching glow, on a subtle tinted glass tile.
   ============================================================ */
.p-icon {
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 1px 2px rgba(21,20,26,0.06);
}
html[data-theme="dark"] .p-icon { box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 1px 2px rgba(0,0,0,0.3); }

.p-icon.brand-ig, .pc-icon.brand-ig, .mq-icon.brand-ig { background: linear-gradient(135deg,#FEE2E8,#F3E3FB); color: #C1276B; box-shadow: 0 0 0 1px rgba(193,39,107,0.12), 0 6px 16px -6px rgba(193,39,107,0.55); }
.p-icon.brand-fb, .pc-icon.brand-fb, .mq-icon.brand-fb { background: #E7F0FE; color: #1877F2; box-shadow: 0 0 0 1px rgba(24,119,242,0.12), 0 6px 16px -6px rgba(24,119,242,0.55); }
.p-icon.brand-tw, .pc-icon.brand-tw, .mq-icon.brand-tw { background: var(--surface-alt); color: var(--ink); box-shadow: 0 0 0 1px rgba(21,20,26,0.1), 0 6px 16px -6px rgba(21,20,26,0.4); }
.p-icon.brand-tt, .pc-icon.brand-tt, .mq-icon.brand-tt { background: #E3FBFA; color: #0A0A0A; box-shadow: 0 0 0 1px rgba(37,244,238,0.25), 0 6px 16px -6px rgba(254,44,85,0.45); }
.p-icon.brand-yt, .pc-icon.brand-yt, .mq-icon.brand-yt { background: #FEE9E7; color: #FF0000; box-shadow: 0 0 0 1px rgba(255,0,0,0.12), 0 6px 16px -6px rgba(255,0,0,0.5); }
.p-icon.brand-discord, .pc-icon.brand-discord, .mq-icon.brand-discord { background: #ECEBFE; color: #5865F2; box-shadow: 0 0 0 1px rgba(88,101,242,0.15), 0 6px 16px -6px rgba(88,101,242,0.55); }
.p-icon.brand-telegram, .pc-icon.brand-telegram, .mq-icon.brand-telegram { background: #E3F5FE; color: #29A9EA; box-shadow: 0 0 0 1px rgba(41,169,234,0.15), 0 6px 16px -6px rgba(41,169,234,0.55); }
.p-icon.brand-snap, .pc-icon.brand-snap, .mq-icon.brand-snap { background: #FFF9D6; color: #B8AC00; box-shadow: 0 0 0 1px rgba(255,252,0,0.3), 0 6px 16px -6px rgba(214,205,0,0.5); }
.p-icon.brand-linkedin, .pc-icon.brand-linkedin, .mq-icon.brand-linkedin { background: #E5F1FB; color: #0A66C2; box-shadow: 0 0 0 1px rgba(10,102,194,0.14), 0 6px 16px -6px rgba(10,102,194,0.55); }
.p-icon.brand-google, .pc-icon.brand-google, .mq-icon.brand-google { background: #FEF0E7; color: #EA4335; box-shadow: 0 0 0 1px rgba(66,133,244,0.14), 0 6px 16px -6px rgba(251,188,4,0.5); }
.p-icon.brand-microsoft, .pc-icon.brand-microsoft, .mq-icon.brand-microsoft { background: #EFF6FE; color: #00A4EF; box-shadow: 0 0 0 1px rgba(0,164,239,0.14), 0 6px 16px -6px rgba(0,164,239,0.5); }
.p-icon.brand-amazon, .pc-icon.brand-amazon, .mq-icon.brand-amazon { background: #FFF2DE; color: #E47911; box-shadow: 0 0 0 1px rgba(228,121,17,0.16), 0 6px 16px -6px rgba(228,121,17,0.55); }
.p-icon.brand-ebay, .pc-icon.brand-ebay, .mq-icon.brand-ebay { background: #EAF1FE; color: #0064D2; box-shadow: 0 0 0 1px rgba(0,100,210,0.14), 0 6px 16px -6px rgba(0,100,210,0.5); }
.p-icon.brand-paypal, .pc-icon.brand-paypal, .mq-icon.brand-paypal { background: #E7F1FE; color: #0070BA; box-shadow: 0 0 0 1px rgba(0,112,186,0.14), 0 6px 16px -6px rgba(0,112,186,0.5); }
.p-icon.brand-netflix, .pc-icon.brand-netflix, .mq-icon.brand-netflix { background: #FCE7E8; color: #E50914; box-shadow: 0 0 0 1px rgba(229,9,20,0.16), 0 6px 16px -6px rgba(229,9,20,0.5); }
.p-icon.brand-spotify, .pc-icon.brand-spotify, .mq-icon.brand-spotify { background: #E4F9EC; color: #1DB954; box-shadow: 0 0 0 1px rgba(29,185,84,0.16), 0 6px 16px -6px rgba(29,185,84,0.5); }
.p-icon.brand-reddit, .pc-icon.brand-reddit, .mq-icon.brand-reddit { background: #FFEEE4; color: #FF4500; box-shadow: 0 0 0 1px rgba(255,69,0,0.16), 0 6px 16px -6px rgba(255,69,0,0.5); }
.p-icon.brand-pinterest, .pc-icon.brand-pinterest, .mq-icon.brand-pinterest { background: #FCE7EA; color: #E60023; box-shadow: 0 0 0 1px rgba(230,0,35,0.16), 0 6px 16px -6px rgba(230,0,35,0.5); }
.p-icon.brand-threads, .pc-icon.brand-threads, .mq-icon.brand-threads { background: var(--surface-alt); color: var(--ink); box-shadow: 0 0 0 1px rgba(21,20,26,0.1), 0 6px 16px -6px rgba(21,20,26,0.4); }
.p-icon.brand-apple, .pc-icon.brand-apple, .mq-icon.brand-apple { background: var(--surface-alt); color: var(--ink); box-shadow: 0 0 0 1px rgba(21,20,26,0.1), 0 6px 16px -6px rgba(21,20,26,0.35); }
.p-icon.brand-binance, .pc-icon.brand-binance, .mq-icon.brand-binance { background: #FFF6DC; color: #C99400; box-shadow: 0 0 0 1px rgba(240,185,11,0.2), 0 6px 16px -6px rgba(240,185,11,0.55); }
.p-icon.brand-twitch, .pc-icon.brand-twitch, .mq-icon.brand-twitch { background: #F1E9FE; color: #9146FF; box-shadow: 0 0 0 1px rgba(145,70,255,0.16), 0 6px 16px -6px rgba(145,70,255,0.55); }
.p-icon.brand-coinbase, .pc-icon.brand-coinbase, .mq-icon.brand-coinbase { background: #E7F0FE; color: #0052FF; box-shadow: 0 0 0 1px rgba(0,82,255,0.16), 0 6px 16px -6px rgba(0,82,255,0.55); }
.p-icon.brand-skype, .pc-icon.brand-skype, .mq-icon.brand-skype { background: #E7F3FE; color: #00AFF0; box-shadow: 0 0 0 1px rgba(0,175,240,0.16), 0 6px 16px -6px rgba(0,175,240,0.55); }
.p-icon.brand-wechat, .pc-icon.brand-wechat, .mq-icon.brand-wechat { background: #E4F8E9; color: #07C160; box-shadow: 0 0 0 1px rgba(7,193,96,0.16), 0 6px 16px -6px rgba(7,193,96,0.5); }
.p-icon.brand-quora, .pc-icon.brand-quora, .mq-icon.brand-quora { background: #FCE8E8; color: #B92B27; box-shadow: 0 0 0 1px rgba(185,43,39,0.16), 0 6px 16px -6px rgba(185,43,39,0.5); }
.p-icon.brand-github, .pc-icon.brand-github, .mq-icon.brand-github { background: var(--surface-alt); color: var(--ink); box-shadow: 0 0 0 1px rgba(21,20,26,0.1), 0 6px 16px -6px rgba(21,20,26,0.4); }

html[data-theme="dark"] .p-icon.brand-ig, html[data-theme="dark"] .pc-icon.brand-ig, html[data-theme="dark"] .mq-icon.brand-ig { background: rgba(225,48,108,0.15); color: #FF7BAE; }
html[data-theme="dark"] .p-icon.brand-fb, html[data-theme="dark"] .pc-icon.brand-fb, html[data-theme="dark"] .mq-icon.brand-fb { background: rgba(24,119,242,0.15); color: #6FA8FF; }
html[data-theme="dark"] .p-icon.brand-tw, html[data-theme="dark"] .pc-icon.brand-tw, html[data-theme="dark"] .mq-icon.brand-tw { background: rgba(255,255,255,0.08); color: #fff; }
html[data-theme="dark"] .p-icon.brand-tt, html[data-theme="dark"] .pc-icon.brand-tt, html[data-theme="dark"] .mq-icon.brand-tt { background: rgba(37,244,238,0.12); color: #fff; }
html[data-theme="dark"] .p-icon.brand-yt, html[data-theme="dark"] .pc-icon.brand-yt, html[data-theme="dark"] .mq-icon.brand-yt { background: rgba(255,0,0,0.15); color: #FF6B6B; }
html[data-theme="dark"] .p-icon.brand-discord, html[data-theme="dark"] .pc-icon.brand-discord, html[data-theme="dark"] .mq-icon.brand-discord { background: rgba(88,101,242,0.18); color: #A6B0FF; }
html[data-theme="dark"] .p-icon.brand-telegram, html[data-theme="dark"] .pc-icon.brand-telegram, html[data-theme="dark"] .mq-icon.brand-telegram { background: rgba(41,169,234,0.16); color: #7BD0FF; }
html[data-theme="dark"] .p-icon.brand-snap, html[data-theme="dark"] .pc-icon.brand-snap, html[data-theme="dark"] .mq-icon.brand-snap { background: rgba(255,252,0,0.14); color: #FFF066; }
html[data-theme="dark"] .p-icon.brand-linkedin, html[data-theme="dark"] .pc-icon.brand-linkedin, html[data-theme="dark"] .mq-icon.brand-linkedin { background: rgba(10,102,194,0.18); color: #79BBFF; }
html[data-theme="dark"] .p-icon.brand-google, html[data-theme="dark"] .pc-icon.brand-google, html[data-theme="dark"] .mq-icon.brand-google { background: rgba(234,67,53,0.15); color: #FF8A7D; }
html[data-theme="dark"] .p-icon.brand-microsoft, html[data-theme="dark"] .pc-icon.brand-microsoft, html[data-theme="dark"] .mq-icon.brand-microsoft { background: rgba(0,164,239,0.15); color: #7CD8FF; }
html[data-theme="dark"] .p-icon.brand-amazon, html[data-theme="dark"] .pc-icon.brand-amazon, html[data-theme="dark"] .mq-icon.brand-amazon { background: rgba(228,121,17,0.18); color: #FFB066; }
html[data-theme="dark"] .p-icon.brand-ebay, html[data-theme="dark"] .pc-icon.brand-ebay, html[data-theme="dark"] .mq-icon.brand-ebay { background: rgba(0,100,210,0.18); color: #7FB4FF; }
html[data-theme="dark"] .p-icon.brand-paypal, html[data-theme="dark"] .pc-icon.brand-paypal, html[data-theme="dark"] .mq-icon.brand-paypal { background: rgba(0,112,186,0.18); color: #7FC4FF; }
html[data-theme="dark"] .p-icon.brand-netflix, html[data-theme="dark"] .pc-icon.brand-netflix, html[data-theme="dark"] .mq-icon.brand-netflix { background: rgba(229,9,20,0.18); color: #FF6E76; }
html[data-theme="dark"] .p-icon.brand-spotify, html[data-theme="dark"] .pc-icon.brand-spotify, html[data-theme="dark"] .mq-icon.brand-spotify { background: rgba(29,185,84,0.16); color: #6FE39C; }
html[data-theme="dark"] .p-icon.brand-reddit, html[data-theme="dark"] .pc-icon.brand-reddit, html[data-theme="dark"] .mq-icon.brand-reddit { background: rgba(255,69,0,0.18); color: #FF9269; }
html[data-theme="dark"] .p-icon.brand-pinterest, html[data-theme="dark"] .pc-icon.brand-pinterest, html[data-theme="dark"] .mq-icon.brand-pinterest { background: rgba(230,0,35,0.18); color: #FF7387; }
html[data-theme="dark"] .p-icon.brand-threads, html[data-theme="dark"] .pc-icon.brand-threads, html[data-theme="dark"] .mq-icon.brand-threads { background: rgba(255,255,255,0.08); color: #fff; }
html[data-theme="dark"] .p-icon.brand-apple, html[data-theme="dark"] .pc-icon.brand-apple, html[data-theme="dark"] .mq-icon.brand-apple { background: rgba(255,255,255,0.08); color: #fff; }
html[data-theme="dark"] .p-icon.brand-binance, html[data-theme="dark"] .pc-icon.brand-binance, html[data-theme="dark"] .mq-icon.brand-binance { background: rgba(240,185,11,0.16); color: #FFDD7A; }
html[data-theme="dark"] .p-icon.brand-twitch, html[data-theme="dark"] .pc-icon.brand-twitch, html[data-theme="dark"] .mq-icon.brand-twitch { background: rgba(145,70,255,0.18); color: #C4A6FF; }
html[data-theme="dark"] .p-icon.brand-coinbase, html[data-theme="dark"] .pc-icon.brand-coinbase, html[data-theme="dark"] .mq-icon.brand-coinbase { background: rgba(0,82,255,0.18); color: #7FA8FF; }
html[data-theme="dark"] .p-icon.brand-skype, html[data-theme="dark"] .pc-icon.brand-skype, html[data-theme="dark"] .mq-icon.brand-skype { background: rgba(0,175,240,0.18); color: #7FD8FF; }
html[data-theme="dark"] .p-icon.brand-wechat, html[data-theme="dark"] .pc-icon.brand-wechat, html[data-theme="dark"] .mq-icon.brand-wechat { background: rgba(7,193,96,0.18); color: #6FE39C; }
html[data-theme="dark"] .p-icon.brand-quora, html[data-theme="dark"] .pc-icon.brand-quora, html[data-theme="dark"] .mq-icon.brand-quora { background: rgba(185,43,39,0.18); color: #FF8E8A; }
html[data-theme="dark"] .p-icon.brand-github, html[data-theme="dark"] .pc-icon.brand-github, html[data-theme="dark"] .mq-icon.brand-github { background: rgba(255,255,255,0.08); color: #fff; }

/* ---------------------------------------------------------------- Services marquee (replaces static trust strip) */
.services-marquee {
    background: var(--surface-alt); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden; padding: 20px 0;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
    display: flex; gap: 16px; width: max-content;
    animation: marqueeScroll 38s linear infinite;
}
.services-marquee:hover .marquee-track { animation-play-state: paused; }
.mq-icon {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    background: var(--surface); border: 1px solid var(--border);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.mq-icon:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 10px 20px -8px rgba(21,20,26,0.3); }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
@media (max-width: 560px) {
    .mq-icon { width: 42px; height: 42px; font-size: 1.15rem; }
    .marquee-track { gap: 12px; animation-duration: 30s; }
}

.platform-tile:hover .p-icon { transform: translateY(-4px) scale(1.08); box-shadow: 0 12px 22px -10px rgba(21,20,26,0.35); }
.p-icon { transition: transform 0.2s ease, box-shadow 0.2s ease; }

/* Generic functional icon badges — shining glass glow */
.step-icon, .c-icon {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 8px 20px -8px rgba(62,31,130,0.45);
}
html[data-theme="dark"] .step-icon, html[data-theme="dark"] .c-icon {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 20px -8px rgba(183,156,255,0.35);
}

/* ============================================================
   Variant / age tabs (Fresh, 1-6 Months, 7-11 Months, etc.)
   ============================================================ */
.variant-tabs {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px;
    justify-content: center;
}
.tab-short { display: none; }
@media (max-width: 560px) {
    .variant-tabs {
        display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
        flex-wrap: unset; justify-content: unset; align-items: unset;
    }
    .variant-tabs button:first-child { grid-column: 1 / -1; }
    .variant-tabs button {
        padding: 11px 8px; font-size: 0.82rem; line-height: 1.25;
        white-space: normal; word-break: normal; border-radius: 12px;
        width: 100%;
    }
}
.variant-tabs button {
    padding: 10px 18px; border-radius: 999px;
    border: 1px solid var(--border-strong); background: var(--surface);
    font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
    color: var(--ink-soft); cursor: pointer; transition: all 0.15s ease;
}
.variant-tabs button.active {
    background: var(--coral); color: #fff; border-color: var(--coral);
    box-shadow: 0 8px 20px -8px rgba(46,111,242,0.55);
}
html[data-theme="dark"] .variant-tabs button.active { box-shadow: 0 8px 20px -8px rgba(76,141,255,0.5); }
.variant-panel { display: none; }
.variant-panel.active { display: block; }

/* ---------------------------------------------------------------- Platform-matched price coloring */
.product-card:has(.brand-ig) .price { color: #C1276B; }
.platform-tile:has(.brand-ig) .p-price b { color: #C1276B; }
.product-card:has(.brand-fb) .price { color: #1877F2; }
.platform-tile:has(.brand-fb) .p-price b { color: #1877F2; }
.product-card:has(.brand-tw) .price { color: var(--ink); }
.platform-tile:has(.brand-tw) .p-price b { color: var(--ink); }
.product-card:has(.brand-tt) .price { color: #FE2C55; }
.platform-tile:has(.brand-tt) .p-price b { color: #FE2C55; }
.product-card:has(.brand-yt) .price { color: #FF0000; }
.platform-tile:has(.brand-yt) .p-price b { color: #FF0000; }
.product-card:has(.brand-discord) .price { color: #5865F2; }
.platform-tile:has(.brand-discord) .p-price b { color: #5865F2; }
.product-card:has(.brand-telegram) .price { color: #29A9EA; }
.platform-tile:has(.brand-telegram) .p-price b { color: #29A9EA; }
.product-card:has(.brand-snap) .price { color: #B8AC00; }
.platform-tile:has(.brand-snap) .p-price b { color: #B8AC00; }
.product-card:has(.brand-linkedin) .price { color: #0A66C2; }
.platform-tile:has(.brand-linkedin) .p-price b { color: #0A66C2; }
.product-card:has(.brand-google) .price { color: #EA4335; }
.platform-tile:has(.brand-google) .p-price b { color: #EA4335; }
.product-card:has(.brand-microsoft) .price { color: #00A4EF; }
.platform-tile:has(.brand-microsoft) .p-price b { color: #00A4EF; }
.product-card:has(.brand-amazon) .price { color: #E47911; }
.platform-tile:has(.brand-amazon) .p-price b { color: #E47911; }
.product-card:has(.brand-ebay) .price { color: #0064D2; }
.platform-tile:has(.brand-ebay) .p-price b { color: #0064D2; }
.product-card:has(.brand-paypal) .price { color: #0070BA; }
.platform-tile:has(.brand-paypal) .p-price b { color: #0070BA; }
.product-card:has(.brand-netflix) .price { color: #E50914; }
.platform-tile:has(.brand-netflix) .p-price b { color: #E50914; }
.product-card:has(.brand-spotify) .price { color: #1DB954; }
.platform-tile:has(.brand-spotify) .p-price b { color: #1DB954; }
.product-card:has(.brand-reddit) .price { color: #FF4500; }
.platform-tile:has(.brand-reddit) .p-price b { color: #FF4500; }
.product-card:has(.brand-pinterest) .price { color: #E60023; }
.platform-tile:has(.brand-pinterest) .p-price b { color: #E60023; }
.product-card:has(.brand-threads) .price { color: var(--ink); }
.platform-tile:has(.brand-threads) .p-price b { color: var(--ink); }
.product-card:has(.brand-apple) .price { color: var(--ink); }
.platform-tile:has(.brand-apple) .p-price b { color: var(--ink); }
.product-card:has(.brand-binance) .price { color: #C99400; }
.platform-tile:has(.brand-binance) .p-price b { color: #C99400; }
.product-card:has(.brand-twitch) .price { color: #9146FF; }
.platform-tile:has(.brand-twitch) .p-price b { color: #9146FF; }
.product-card:has(.brand-coinbase) .price { color: #0052FF; }
.platform-tile:has(.brand-coinbase) .p-price b { color: #0052FF; }
.product-card:has(.brand-skype) .price { color: #00AFF0; }
.platform-tile:has(.brand-skype) .p-price b { color: #00AFF0; }
.product-card:has(.brand-wechat) .price { color: #07C160; }
.platform-tile:has(.brand-wechat) .p-price b { color: #07C160; }
.product-card:has(.brand-quora) .price { color: #B92B27; }
.platform-tile:has(.brand-quora) .p-price b { color: #B92B27; }
.product-card:has(.brand-github) .price { color: var(--ink); }
.platform-tile:has(.brand-github) .p-price b { color: var(--ink); }

/* ---------------------------------------------------------------- Robust icon-glyph centering (fixes Font Awesome baseline offset) */
.p-icon i, .pc-icon i, .mq-icon i, .c-icon i, .step-icon i, .trust-item i, .bc-icon i {
    line-height: 1; display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; text-align: center;
}

/* ---------------------------------------------------------------- Related services (internal linking) */
.related-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px;
}
.related-tile {
    display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-m);
    padding: 18px 12px; transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.related-tile:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -14px rgba(21,20,26,0.3); border-color: var(--border-strong); }
.related-tile .p-icon { width: 46px; height: 46px; font-size: 1.3rem; border-radius: 12px; }
.related-tile span:last-child { font-size: 0.86rem; font-weight: 700; color: var(--ink); }

/* ---------------------------------------------------------------- Floating contact buttons */
.floating-contacts {
    position: fixed; left: 20px; bottom: 24px; z-index: 250;
    display: flex; flex-direction: column; gap: 12px;
}
.floating-contacts a {
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    box-shadow: 0 8px 20px -4px rgba(21,20,26,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-contacts a:hover { transform: translateY(-3px) scale(1.05); }
.floating-contacts .fc-telegram { background: #29A9EA; box-shadow: 0 8px 22px -4px rgba(41,169,234,0.6); }
.floating-contacts .fc-whatsapp { background: #25D366; box-shadow: 0 8px 22px -4px rgba(37,211,102,0.6); }
.floating-contacts .fc-telegram::after,
.floating-contacts .fc-whatsapp::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 1.5px solid currentColor; opacity: 0; animation: fcPulse 2.2s ease-out infinite;
}
.floating-contacts a { position: relative; }
.floating-contacts .fc-telegram { color: #29A9EA; }
.floating-contacts .fc-whatsapp { color: #25D366; }
.floating-contacts .fc-telegram i, .floating-contacts .fc-whatsapp i { color: #fff; }
@keyframes fcPulse {
    0% { transform: scale(0.9); opacity: 0.55; }
    100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 560px) {
    .floating-contacts { left: 14px; bottom: 18px; gap: 10px; }
    .floating-contacts a { width: 46px; height: 46px; font-size: 1.3rem; }
}
