/* ============================================================
   Toshiyama — Stochastic Master v4.2.1 Sales Page
   Color palette:
     45% Aqua      #00e5ff  — primary, Toshiyama brand
     25% Orange    #ff8c00  — secondary, CTA/commercial
     20% DodgerBlue #1e90ff — tertiary, technical/info
      5% Lime      #39ff14  — success/active states
      5% Red       #ff1744  — warnings/alerts
   Background: deep dark + indigo/magenta/dark-blue/dark-green AI atmospherics
   ============================================================ */

:root {
    /* Background */
    --bg-deep:   #05070f;
    --bg-mid:    #080d1c;
    --bg-card:   rgba(7, 12, 26, 0.93);
    --bg-glass:  rgba(9, 14, 30, 0.78);

    /* Aqua — PRIMARY 45% */
    --aqua:          #00e5ff;
    --aqua-light:    #7ff0ff;
    --aqua-dim:      #00b0cc;
    --aqua-glow:     rgba(0, 229, 255, 0.45);
    --aqua-subtle:   rgba(0, 229, 255, 0.07);
    --border-a:      rgba(0, 229, 255, 0.25);
    --border-a-hi:   rgba(0, 229, 255, 0.65);

    /* Orange — SECONDARY 25% */
    --orange:        #ff8c00;
    --orange-light:  #ffb300;
    --orange-glow:   rgba(255, 140, 0, 0.45);
    --orange-subtle: rgba(255, 140, 0, 0.08);
    --border-o:      rgba(255, 140, 0, 0.28);

    /* DodgerBlue — TERTIARY 20% */
    --dodger:        #1e90ff;
    --dodger-light:  #70b8ff;
    --dodger-glow:   rgba(30, 144, 255, 0.4);
    --dodger-subtle: rgba(30, 144, 255, 0.07);
    --border-d:      rgba(30, 144, 255, 0.25);

    /* Lime — 5% */
    --lime:      #39ff14;
    --lime-glow: rgba(57, 255, 20, 0.45);

    /* Red — 5% */
    --red:       #ff1744;
    --red-glow:  rgba(255, 23, 68, 0.4);
    --red-subtle:rgba(255, 23, 68, 0.08);

    /* Text */
    --text-primary:   #ffffff;
    --text-secondary: #7a98bc;
    --text-muted:     #384e6a;

    /* Layout */
    --header-h:  68px;
    --container: 1240px;
    --r:         12px;
    --r-lg:      20px;
    --r-xl:      28px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
code {
    font-family: 'JetBrains Mono', monospace; font-size: 0.86em;
    background: rgba(0, 229, 255, 0.08); color: var(--aqua-light);
    padding: 2px 8px; border-radius: 5px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}
em { color: var(--dodger-light); font-style: normal; }
strong { color: var(--text-primary); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.mono { font-family: 'JetBrains Mono', monospace; color: var(--aqua-light); }
.inline-link { color: var(--aqua); border-bottom: 1px dashed rgba(0,229,255,0.4); transition: color 0.2s; }
.inline-link:hover { color: var(--dodger-light); }

/* ===== GRADIENT UTILITIES ===== */
.gradient-text {
    background: linear-gradient(90deg, var(--aqua) 0%, var(--aqua-light) 55%, #b0f8ff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-orange {
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 60%, #ffe066 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-blue {
    background: linear-gradient(90deg, var(--dodger) 0%, var(--dodger-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== BUTTONS ===== */
/* Aqua — primary decorative/nav */
.btn-aqua {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--r);
    background: linear-gradient(135deg, var(--aqua-dim) 0%, var(--aqua) 100%);
    color: #000; font-weight: 800; font-size: 1rem;
    border: none; cursor: pointer;
    box-shadow: 0 4px 24px var(--aqua-glow), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.25s; position: relative; overflow: hidden;
}
.btn-aqua::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(255,255,255,0.1) 0%,transparent 60%); }
.btn-aqua:hover { transform: translateY(-3px); box-shadow: 0 8px 36px var(--aqua-glow); }

/* Orange — commercial/purchase CTA */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--r);
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #000; font-weight: 800; font-size: 1rem;
    border: none; cursor: pointer;
    box-shadow: 0 4px 24px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.25s; position: relative; overflow: hidden;
}
.btn-primary::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(255,255,255,0.1) 0%,transparent 60%); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 36px var(--orange-glow); }
.btn-primary.btn-large { padding: 17px 34px; font-size: 1.08rem; border-radius: var(--r-lg); }

/* Secondary outline — aqua bordered */
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--r);
    background: var(--bg-glass); color: var(--text-primary);
    font-weight: 600; font-size: 1rem;
    border: 1px solid var(--border-a-hi);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all 0.25s;
}
.btn-secondary:hover {
    border-color: var(--aqua);
    background: var(--aqua-subtle);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px var(--aqua-glow);
    transform: translateY(-3px);
}
.btn-secondary.btn-large { padding: 17px 34px; font-size: 1.08rem; border-radius: var(--r-lg); }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    background: rgba(5, 7, 15, 0.9);
    border-bottom: 1px solid var(--border-a);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.site-header.scrolled {
    box-shadow: 0 4px 40px rgba(0,229,255,0.1), 0 1px 0 var(--border-a-hi);
    border-bottom-color: rgba(0,229,255,0.5);
}
.header-inner {
    max-width: var(--container); margin: 0 auto; height: 100%;
    padding: 0 28px; display: flex; align-items: center; gap: 24px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-image {
    height: 40px; width: auto;
    filter: drop-shadow(0 0 10px var(--aqua-glow)) drop-shadow(0 0 20px rgba(0,229,255,0.2));
    transition: filter 0.3s, transform 0.3s; user-select: none;
}
.logo:hover .logo-image {
    filter: drop-shadow(0 0 16px var(--aqua-glow)) drop-shadow(0 0 30px rgba(0,229,255,0.4));
    transform: scale(1.06);
}
.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.header-nav .nav-link {
    padding: 8px 15px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
    transition: color 0.2s, background 0.2s;
}
.header-nav .nav-link:hover { color: var(--aqua-light); background: var(--aqua-subtle); }
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-login {
    padding: 8px 18px; border-radius: var(--r);
    font-size: 0.86rem; font-weight: 500; color: var(--text-secondary);
    border: 1px solid var(--border-a); transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.btn-login:hover { color: var(--aqua); border-color: var(--aqua-glow); background: var(--aqua-subtle); }
.btn-buy-nav {
    padding: 9px 20px; border-radius: var(--r);
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #000; font-size: 0.86rem; font-weight: 800;
    box-shadow: 0 2px 16px var(--orange-glow); transition: all 0.2s;
}
.btn-buy-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--orange-glow); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding: calc(var(--header-h) + 60px) 0 80px;
    position: relative; display: flex; flex-direction: column; justify-content: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

/* AI atmosphere: indigo + magenta + dark-blue + dark-green */
.hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 75% 15%, rgba(80, 0, 160, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 55% 55% at 15% 75%, rgba(160, 0, 80, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 90%, rgba(0, 40, 180, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 35% 50% at 90% 50%, rgba(0, 80, 40, 0.08) 0%, transparent 55%),
        linear-gradient(170deg, #04060e 0%, #070c1a 50%, #050810 100%);
}
.orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); pointer-events: none;
}
/* indigo */
.orb-1 {
    width: 650px; height: 650px; top: -200px; right: -50px;
    background: radial-gradient(circle, rgba(100, 0, 200, 0.18) 0%, transparent 70%);
    animation: orbFloat 18s ease-in-out infinite;
}
/* magenta */
.orb-2 {
    width: 450px; height: 450px; bottom: -80px; left: -80px;
    background: radial-gradient(circle, rgba(200, 0, 100, 0.14) 0%, transparent 70%);
    animation: orbFloat 22s ease-in-out infinite reverse;
}
/* dark blue */
.orb-3 {
    width: 350px; height: 350px; top: 55%; left: 42%;
    background: radial-gradient(circle, rgba(0, 60, 220, 0.12) 0%, transparent 70%);
    animation: orbFloat 15s ease-in-out 4s infinite;
}
/* dark green — subtle */
.orb-3::after {
    content: none;
}
@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(25px,-35px) scale(1.06); }
    66% { transform: translate(-20px,25px) scale(0.96); }
}
/* Sci-fi grid */
.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,229,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.022) 1px, transparent 1px);
    background-size: 65px 65px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 100%);
}
.hero-layout {
    max-width: var(--container); margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; gap: 60px;
    position: relative; z-index: 1;
}
.hero-content { flex: 1; min-width: 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 18px; border-radius: 50px;
    background: rgba(0,229,255,0.06);
    border: 1px solid rgba(0,229,255,0.35);
    box-shadow: 0 0 20px rgba(0,229,255,0.08), inset 0 1px 0 rgba(0,229,255,0.1);
    font-size: 0.8rem; font-weight: 500; color: var(--aqua-light);
    margin-bottom: 30px; letter-spacing: 0.04em; backdrop-filter: blur(6px);
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 10px var(--aqua), 0 0 20px var(--aqua-glow);
    animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.35)} }
.hero-title { display: flex; flex-direction: column; margin-bottom: 26px; }
.ht-product {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: linear-gradient(90deg, var(--aqua) 0%, var(--aqua-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ht-version {
    font-size: clamp(0.85rem, 1.2vw, 1rem); font-weight: 600;
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.14em;
    color: var(--orange-light); margin: 6px 0 18px;
}
.ht-claim {
    font-size: clamp(3.2rem, 7vw, 5.5rem); font-weight: 900; line-height: 0.9;
    color: var(--text-primary); letter-spacing: -0.03em;
}
.hero-desc {
    font-size: 1.06rem; color: var(--text-secondary); line-height: 1.75;
    margin-bottom: 38px; max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats {
    display: flex; align-items: center;
    background: rgba(8,14,28,0.85);
    border: 1px solid var(--border-a); border-radius: var(--r-lg);
    overflow: hidden; width: fit-content;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0,229,255,0.04), inset 0 1px 0 rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
}
.h-stat { padding: 16px 28px; text-align: center; }
.h-stat-val {
    font-size: 1.35rem; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--aqua), var(--aqua-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.h-stat-lbl { font-size: 0.73rem; color: var(--text-secondary); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.08em; }
.h-stat-sep { width: 1px; height: 44px; background: var(--border-a); }
.hero-image-wrap { flex: 1; max-width: 580px; position: relative; flex-shrink: 0; }
.hero-image-glow {
    position: absolute; inset: -30px;
    background:
        radial-gradient(ellipse 60% 50% at 40% 50%, rgba(0,229,255,0.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 70% 60%, rgba(255,140,0,0.10) 0%, transparent 60%);
    pointer-events: none; animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.7} 50%{opacity:1} }
.hero-image {
    width: 100%; border-radius: var(--r-xl);
    box-shadow: 0 30px 80px rgba(0,0,0,0.75), 0 0 60px rgba(0,229,255,0.10), 0 0 30px rgba(255,140,0,0.06);
    border: 1px solid rgba(0,229,255,0.28);
    position: relative; z-index: 1;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.5s ease;
}
.hero-image-wrap:hover .hero-image { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.hero-scroll-hint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: var(--text-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
    animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-arrow { font-size: 1.2rem; color: var(--aqua); }
@keyframes scrollBounce { 0%,100%{opacity:0.4;transform:translateX(-50%) translateY(0)} 50%{opacity:0.9;transform:translateX(-50%) translateY(8px)} }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; }
.product-section    { background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%); }
.features-section   { background: var(--bg-deep); }
.persuasion-section { background: var(--bg-mid); }
.technical-section  { background: var(--bg-deep); }
.purchase-section   { background: var(--bg-mid); }
.install-section    { background: var(--bg-deep); }
.config-section     { background: var(--bg-mid); }
.testing-section    { background: var(--bg-deep); }
.ops-section        { background: var(--bg-mid); }
.vps-section        { background: var(--bg-deep); }
.broker-section     { background: var(--bg-mid); }
.pricing-section    { background: linear-gradient(180deg, var(--bg-deep) 0%, #030509 100%); }

/* Section dividers — aqua for most, orange for commercial sections */
.features-section::before,
.technical-section::before,
.install-section::before,
.testing-section::before,
.vps-section::before {
    content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--aqua-glow), transparent);
}
.persuasion-section::before,
.purchase-section::before,
.config-section::before,
.ops-section::before,
.broker-section::before,
.pricing-section::before {
    content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--dodger-glow), transparent);
}

/* Atmospheric side-orbs in mid sections */
.product-section::after,
.features-section::after {
    content: ''; position: absolute; pointer-events: none;
    width: 400px; height: 400px; border-radius: 50%;
    filter: blur(100px); opacity: 0.06;
    top: 20%; right: -100px;
    background: radial-gradient(circle, #6400c8 0%, transparent 70%);
}

.section-badge {
    display: inline-block; padding: 5px 15px; border-radius: 50px;
    font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 18px;
}
/* Aqua badges — primary */
.product-section .section-badge,
.features-section .section-badge,
.ops-section .section-badge,
.vps-section .section-badge,
.config-section .section-badge {
    border: 1px solid rgba(0,229,255,0.4); background: rgba(0,229,255,0.08);
    color: var(--aqua-light); box-shadow: 0 0 16px rgba(0,229,255,0.08);
}
/* DodgerBlue badges — technical/info */
.technical-section .section-badge,
.install-section .section-badge,
.testing-section .section-badge,
.purchase-section .section-badge {
    border: 1px solid rgba(30,144,255,0.4); background: rgba(30,144,255,0.08);
    color: var(--dodger-light); box-shadow: 0 0 16px rgba(30,144,255,0.08);
}
/* Orange badges — commercial */
.persuasion-section .section-badge,
.broker-section .section-badge,
.pricing-section .section-badge {
    border: 1px solid rgba(255,140,0,0.4); background: rgba(255,140,0,0.08);
    color: var(--orange-light); box-shadow: 0 0 16px rgba(255,140,0,0.08);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 900;
    line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.025em;
}
.section-desc {
    font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75;
    max-width: 680px; margin-bottom: 56px;
}

/* ===== PRODUCT CARDS ===== */
.product-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.product-card {
    background: var(--bg-glass); border: 1px solid var(--border-a);
    border-radius: var(--r-xl); padding: 36px 28px;
    backdrop-filter: blur(12px); position: relative; overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.product-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--aqua), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.product-card:hover { border-color: var(--border-a-hi); box-shadow: 0 12px 50px rgba(0,229,255,0.1); transform: translateY(-6px); }
.product-card:hover::before { opacity: 1; }
/* Icon color variation: aqua, dodger, orange */
.product-card:nth-child(1) .pc-icon { background: linear-gradient(135deg,rgba(0,229,255,0.18),rgba(0,229,255,0.06)); border-color: rgba(0,229,255,0.3); box-shadow: 0 4px 20px rgba(0,229,255,0.12); }
.product-card:nth-child(2) .pc-icon { background: linear-gradient(135deg,rgba(30,144,255,0.18),rgba(30,144,255,0.06)); border-color: rgba(30,144,255,0.3); box-shadow: 0 4px 20px rgba(30,144,255,0.12); }
.product-card:nth-child(3) .pc-icon { background: linear-gradient(135deg,rgba(255,140,0,0.18),rgba(255,140,0,0.06)); border-color: rgba(255,140,0,0.3); box-shadow: 0 4px 20px rgba(255,140,0,0.12); }
.pc-icon {
    width: 56px; height: 56px; border-radius: 14px; margin-bottom: 22px;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    border: 1px solid; transition: transform 0.3s;
}
.product-card:hover .pc-icon { transform: scale(1.08) rotate(-3deg); }
.product-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.product-card p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.7; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 60px; }
.feature-item {
    display: flex; gap: 15px; align-items: flex-start;
    background: var(--bg-glass); border: 1px solid var(--border-a);
    border-radius: var(--r); padding: 20px; backdrop-filter: blur(8px);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.feature-item:hover { border-color: var(--border-a-hi); background: var(--aqua-subtle); transform: translateY(-3px); }
/* Rotating icon colors: aqua, aqua, dodger, dodger, orange, lime, aqua, dodger, orange, aqua, lime, dodger */
.feature-item:nth-child(1) .fi-icon, .feature-item:nth-child(2) .fi-icon, .feature-item:nth-child(7) .fi-icon, .feature-item:nth-child(10) .fi-icon {
    background: linear-gradient(135deg,rgba(0,229,255,0.18),rgba(0,229,255,0.06)); border-color: rgba(0,229,255,0.28);
}
.feature-item:nth-child(3) .fi-icon, .feature-item:nth-child(4) .fi-icon, .feature-item:nth-child(8) .fi-icon, .feature-item:nth-child(12) .fi-icon {
    background: linear-gradient(135deg,rgba(30,144,255,0.18),rgba(30,144,255,0.06)); border-color: rgba(30,144,255,0.28);
}
.feature-item:nth-child(5) .fi-icon, .feature-item:nth-child(9) .fi-icon {
    background: linear-gradient(135deg,rgba(255,140,0,0.18),rgba(255,140,0,0.06)); border-color: rgba(255,140,0,0.28);
}
.feature-item:nth-child(6) .fi-icon, .feature-item:nth-child(11) .fi-icon {
    background: linear-gradient(135deg,rgba(57,255,20,0.15),rgba(57,255,20,0.04)); border-color: rgba(57,255,20,0.25);
}
.fi-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    border: 1px solid;
}
.fi-body h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.fi-body p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== PERSUASION ===== */
.persuasion-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 60px; }
.persuasion-block {
    background: var(--bg-glass); border: 1px solid var(--border-a);
    border-radius: var(--r-xl); padding: 38px;
    backdrop-filter: blur(10px); position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.persuasion-block:hover { border-color: var(--border-a-hi); transform: translateY(-4px); box-shadow: 0 12px 50px rgba(0,229,255,0.08); }
.pb-num {
    font-size: 3rem; font-weight: 900; font-family: 'JetBrains Mono', monospace;
    line-height: 1; margin-bottom: 18px;
    color: transparent; -webkit-text-stroke: 2px rgba(255,140,0,0.35);
}
.persuasion-block h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.persuasion-block p { color: var(--text-secondary); line-height: 1.75; font-size: 0.93rem; }

/* ===== TECHNICAL ===== */
.tech-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: start; margin-top: 60px; }
.tech-table-wrap {
    background: var(--bg-glass); border: 1px solid var(--border-d);
    border-radius: var(--r-lg); overflow: hidden; backdrop-filter: blur(12px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 30px rgba(30,144,255,0.04);
}
.tech-table { width: 100%; border-collapse: collapse; }
.tech-table td { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }
.tech-table td:first-child { color: var(--text-secondary); width: 48%; }
.tech-table td:last-child { color: var(--text-primary); font-weight: 600; }
.tech-table tr:first-child td { border-top: 1px solid rgba(30,144,255,0.12); }
.tech-table tr:hover td { background: rgba(30,144,255,0.03); }
.tech-params {
    background: var(--bg-glass); border: 1px solid var(--border-d);
    border-radius: var(--r-lg); padding: 28px; backdrop-filter: blur(12px);
}
.tech-params h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 22px; color: var(--dodger-light); }
.param-group { margin-bottom: 22px; }
.pg-title {
    font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--dodger); margin-bottom: 10px; padding-bottom: 8px;
    border-bottom: 1px solid rgba(30,144,255,0.22);
}
.param-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 0; font-size: 0.86rem; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.param-row span:first-child { color: var(--text-secondary); }
.param-row .mono { color: var(--aqua-light); }

/* ===== PURCHASE STEPS ===== */
.steps-row { display: flex; align-items: stretch; gap: 0; margin-top: 60px; }
.step {
    flex: 1; background: var(--bg-glass); border: 1px solid var(--border-d);
    border-radius: var(--r-lg); padding: 28px 22px; text-align: center;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover { border-color: rgba(30,144,255,0.55); box-shadow: 0 8px 30px rgba(30,144,255,0.1); }
/* Step number colors: aqua, dodger, orange, lime */
.step:nth-child(1) .step-num { background: linear-gradient(135deg, var(--aqua-dim), var(--aqua)); box-shadow: 0 4px 20px var(--aqua-glow); }
.step:nth-child(3) .step-num { background: linear-gradient(135deg, var(--dodger), var(--dodger-light)); box-shadow: 0 4px 20px var(--dodger-glow); }
.step:nth-child(5) .step-num { background: linear-gradient(135deg, var(--orange), var(--orange-light)); box-shadow: 0 4px 20px var(--orange-glow); }
.step:nth-child(7) .step-num { background: linear-gradient(135deg, #22bb00, var(--lime)); box-shadow: 0 4px 20px var(--lime-glow); }
.step-num {
    width: 46px; height: 46px; border-radius: 50%;
    color: #000; font-weight: 900; font-size: 1.15rem;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--aqua-dim), var(--aqua));
    box-shadow: 0 4px 20px var(--aqua-glow);
}
.step h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.6; }
.step-connector { font-size: 1.4rem; color: var(--aqua); padding: 0 6px; align-self: center; flex-shrink: 0; opacity: 0.4; }

/* ===== INSTALL ===== */
.install-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.install-step {
    background: var(--bg-glass); border: 1px solid var(--border-d);
    border-radius: var(--r-lg); padding: 28px; backdrop-filter: blur(8px);
    transition: border-color 0.3s, transform 0.3s;
}
.install-step:hover { border-color: rgba(30,144,255,0.55); transform: translateY(-4px); }
.is-num {
    font-family: 'JetBrains Mono', monospace; font-size: 1.6rem; font-weight: 900;
    color: var(--dodger); margin-bottom: 14px; line-height: 1;
    text-shadow: 0 0 20px var(--dodger-glow);
}
/* Alternate: some aqua, some dodger */
.install-step:nth-child(odd) .is-num { color: var(--aqua); text-shadow: 0 0 20px var(--aqua-glow); }
.install-step h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 10px; }
.install-step p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.65; }
.install-step a { color: var(--aqua); }
.install-note {
    display: flex; gap: 14px; align-items: flex-start; margin-top: 32px;
    padding: 20px 24px; background: rgba(0,229,255,0.05);
    border: 1px solid rgba(0,229,255,0.25); border-radius: var(--r);
}
.note-icon { font-size: 1.3rem; flex-shrink: 0; }
.install-note div { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ===== CONFIG ===== */
.config-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 60px; }
.config-card {
    background: var(--bg-glass); border: 1px solid var(--border-a);
    border-radius: var(--r-xl); padding: 30px; backdrop-filter: blur(10px);
}
.cc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.cc-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    flex-shrink: 0;
}
.config-card:nth-child(1) .cc-icon { background: rgba(0,229,255,0.12); border: 1px solid rgba(0,229,255,0.25); }
.config-card:nth-child(2) .cc-icon { background: rgba(30,144,255,0.12); border: 1px solid rgba(30,144,255,0.25); }
.cc-header h4 { font-size: 1.02rem; font-weight: 700; }
.cc-note { font-size: 0.78rem; color: var(--text-secondary); font-weight: 400; }
.config-rows { display: flex; flex-direction: column; }
.cr {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0; font-size: 0.87rem; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cr:last-child { border-bottom: none; }
.cr span:first-child { color: var(--text-secondary); }
.cr .mono { color: var(--aqua-light); }
.config-disclaimer {
    margin-top: 28px; padding: 16px 22px;
    background: rgba(255,23,68,0.05); border-left: 3px solid var(--red);
    border-radius: 0 var(--r) var(--r) 0; font-size: 0.88rem; color: var(--text-secondary);
}

/* ===== TESTING ===== */
.test-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px; }
.test-step {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--bg-glass); border: 1px solid var(--border-a);
    border-radius: var(--r); padding: 20px; backdrop-filter: blur(8px);
    transition: border-color 0.3s, transform 0.3s;
}
.test-step:hover { border-color: var(--border-a-hi); transform: translateY(-3px); }
.ts-num { font-size: 1.4rem; font-weight: 800; color: var(--aqua); flex-shrink: 0; line-height: 1.3; }
.test-step p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.65; }
.test-note {
    display: flex; gap: 14px; align-items: flex-start; margin-top: 28px;
    padding: 18px 22px; background: rgba(0,229,255,0.05);
    border: 1px solid rgba(0,229,255,0.2); border-radius: var(--r);
    font-size: 0.88rem; color: var(--text-secondary);
}

/* ===== OPS ===== */
.ops-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 60px; }
.ops-card {
    background: var(--bg-glass); border: 1px solid var(--border-a);
    border-radius: var(--r-xl); padding: 30px 22px; text-align: center;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.ops-card:hover { border-color: var(--border-a-hi); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,229,255,0.08); }
/* Icon colors: aqua, dodger, aqua, lime */
.ops-card:nth-child(1) .oc-icon { background: linear-gradient(135deg,rgba(0,229,255,0.18),rgba(0,229,255,0.06)); border-color: rgba(0,229,255,0.3); }
.ops-card:nth-child(2) .oc-icon { background: linear-gradient(135deg,rgba(30,144,255,0.18),rgba(30,144,255,0.06)); border-color: rgba(30,144,255,0.3); }
.ops-card:nth-child(3) .oc-icon { background: linear-gradient(135deg,rgba(0,229,255,0.18),rgba(0,229,255,0.06)); border-color: rgba(0,229,255,0.3); }
.ops-card:nth-child(4) .oc-icon { background: linear-gradient(135deg,rgba(57,255,20,0.15),rgba(57,255,20,0.04)); border-color: rgba(57,255,20,0.25); }
.oc-icon {
    width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    border: 1px solid; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.ops-card h4 { font-size: 0.96rem; font-weight: 700; margin-bottom: 10px; }
.ops-card p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.65; }
.ops-card strong { color: var(--aqua-light); }

/* ===== VPS ===== */
.vps-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.vps-content p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }
.vps-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.vps-list li { font-size: 0.95rem; display: flex; align-items: center; gap: 10px; color: var(--text-primary); }
.vps-note { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }
.vps-graphic { flex-shrink: 0; }
.server-box {
    background: var(--bg-glass); border: 1px solid var(--border-a);
    border-radius: var(--r-lg); padding: 24px; width: 240px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(0,229,255,0.06), 0 8px 40px rgba(0,0,0,0.5);
}
.sb-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(0,229,255,0.18);
}
.sb-label {
    font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
    font-weight: 800; color: var(--aqua); letter-spacing: 0.12em;
    text-shadow: 0 0 12px var(--aqua-glow);
}
.sb-led {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--lime); box-shadow: 0 0 8px var(--lime), 0 0 16px var(--lime-glow);
    animation: pulse 2s infinite;
}
.sb-lines { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.sb-line {
    height: 7px; border-radius: 3px;
    background: linear-gradient(90deg, rgba(0,229,255,0.5), rgba(0,229,255,0.1));
    animation: barPulse 1.8s ease-in-out infinite;
}
.sb-line:nth-child(2) { width: 78%; animation-delay: 0.4s; }
.sb-line:nth-child(3) { width: 55%; animation-delay: 0.8s; }
@keyframes barPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
.sb-bottom { border-top: 1px solid rgba(0,229,255,0.12); padding-top: 14px; display: flex; flex-direction: column; gap: 5px; }
.sb-code { font-family: 'JetBrains Mono', monospace; font-size: 0.74rem; color: var(--text-secondary); }
.sb-status {
    font-family: 'JetBrains Mono', monospace; font-size: 0.8rem;
    font-weight: 800; color: var(--lime); margin-top: 8px;
    text-shadow: 0 0 10px var(--lime-glow);
}

/* ===== BROKER ===== */
.broker-title-row { display: flex; align-items: center; gap: 20px; margin-bottom: 0; flex-wrap: wrap; }
.broker-title-row .section-title { margin-bottom: 0; }
.xm-logo-big {
    height: 52px; width: 52px; border-radius: 10px; flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6), 0 0 20px rgba(255,30,30,0.15);
    border: 1px solid rgba(255,255,255,0.1);
}
.broker-inner { display: grid; grid-template-columns: 1fr 390px; gap: 40px; align-items: start; margin-top: 60px; }
.broker-lead { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; }
.broker-features { display: flex; flex-direction: column; gap: 12px; }
.bf-item { display: flex; gap: 12px; align-items: center; font-size: 0.95rem; }
.bf-check { color: var(--orange); font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.broker-offer-box {
    background: var(--bg-glass); backdrop-filter: blur(14px);
    border: 1px solid rgba(255,140,0,0.5); border-radius: var(--r-xl); padding: 34px;
    position: relative; overflow: hidden;
    box-shadow: 0 12px 60px rgba(255,140,0,0.12), inset 0 1px 0 rgba(255,255,255,0.03);
}
.broker-offer-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--aqua));
}
.ob-badge {
    display: inline-block; padding: 4px 14px; border-radius: 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #000; font-size: 0.74rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px;
    box-shadow: 0 2px 12px var(--orange-glow);
}
.ob-title { font-size: 1.35rem; font-weight: 900; margin-bottom: 14px; }
.ob-desc { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.ob-desc s { opacity: 0.4; }
.btn-xm-logo { height: 24px; width: 24px; border-radius: 5px; display: inline-block; vertical-align: middle; margin-right: 2px; }
.btn-broker {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; text-align: center; padding: 14px 20px; border-radius: var(--r);
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #000; font-weight: 800; font-size: 0.96rem;
    box-shadow: 0 4px 24px var(--orange-glow); transition: all 0.25s; margin-bottom: 14px;
}
.btn-broker:hover { transform: translateY(-3px); box-shadow: 0 8px 36px var(--orange-glow); }
.ob-note { font-size: 0.77rem; color: var(--text-secondary); text-align: center; line-height: 1.5; }

/* ===== PRICING ===== */
.pricing-cards {
    display: grid; grid-template-columns: repeat(2,1fr);
    gap: 24px; max-width: 820px; margin: 60px auto 0;
}
.pricing-card {
    background: var(--bg-glass); border: 1px solid var(--border-a);
    border-radius: var(--r-xl); padding: 38px; position: relative; overflow: hidden;
    backdrop-filter: blur(14px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); }
/* Standard card: aqua accented */
.pricing-card.standard { border-color: var(--border-a); }
.pricing-card.standard:hover { box-shadow: 0 12px 60px rgba(0,229,255,0.12); border-color: var(--border-a-hi); }
/* Featured XM card: orange accented */
.pricing-card.featured {
    border-color: rgba(255,140,0,0.55);
    box-shadow: 0 12px 60px rgba(255,140,0,0.14), 0 0 80px rgba(255,140,0,0.05);
}
.pricing-card.featured:hover { border-color: var(--orange); }
.pricing-card.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--aqua));
}
.pricing-card.standard::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--aqua), var(--aqua-light), var(--dodger));
    opacity: 0; transition: opacity 0.3s;
}
.pricing-card.standard:hover::before { opacity: 1; }
.pc-badge {
    display: inline-block; padding: 5px 14px; border-radius: 50px;
    font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px;
}
.pricing-card.standard .pc-badge { border: 1px solid var(--border-a); color: var(--aqua-light); }
.pc-badge.featured-badge {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #000; border: none; box-shadow: 0 2px 14px var(--orange-glow);
}
.pc-old-price { font-size: 1.05rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.pc-price { display: flex; align-items: baseline; gap: 4px; line-height: 1; margin-bottom: 4px; }
.pc-amount { font-size: 4rem; font-weight: 900; color: var(--text-primary); }
/* Standard: aqua currency; Featured: orange currency */
.pricing-card.standard .pc-currency { font-size: 1.5rem; font-weight: 700; color: var(--aqua); margin-top: 8px; }
.pricing-card.featured .pc-currency { font-size: 1.5rem; font-weight: 700; color: var(--orange); margin-top: 8px; }
.pc-period { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 28px; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pc-features li { font-size: 0.9rem; color: var(--text-secondary); }
.note-li { color: var(--text-muted) !important; font-size: 0.78rem !important; }
.btn-pricing { display: block; width: 100%; text-align: center; padding: 15px 20px; border-radius: var(--r); margin-bottom: 12px; font-size: 1rem; }
/* Standard buy: aqua; Featured buy: orange */
.pricing-card.standard .btn-pricing {
    background: linear-gradient(135deg, var(--aqua-dim), var(--aqua));
    color: #000; font-weight: 800;
    box-shadow: 0 4px 24px var(--aqua-glow); transition: all 0.25s;
}
.pricing-card.standard .btn-pricing:hover { transform: translateY(-3px); box-shadow: 0 8px 36px var(--aqua-glow); }
.pricing-card.featured .btn-pricing {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #000; font-weight: 800;
    box-shadow: 0 4px 24px var(--orange-glow); transition: all 0.25s;
    animation: buttonGlow 2s ease-in-out infinite;
}
.pricing-card.featured .btn-pricing:hover { transform: translateY(-3px); box-shadow: 0 8px 40px var(--orange-glow); }
@keyframes buttonGlow { 0%,100%{box-shadow:0 4px 24px rgba(255,140,0,0.4)} 50%{box-shadow:0 4px 40px rgba(255,140,0,0.7)} }
.btn-xm { display: block; text-align: center; font-size: 0.86rem; color: var(--aqua); padding: 8px; transition: color 0.2s; }
.btn-xm:hover { color: var(--aqua-light); }
.pricing-disclaimer { max-width: 720px; margin: 40px auto 0; text-align: center; }
.pricing-disclaimer p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 12px; }
.risk-warning { color: rgba(255,23,68,0.7) !important; font-size: 0.8rem !important; }

/* ===== FOOTER ===== */
.site-footer {
    background: #030509;
    border-top: 1px solid var(--border-a);
    padding: 64px 0 32px;
}
.footer-inner { display: flex; gap: 64px; margin-bottom: 48px; }
.footer-brand { flex-shrink: 0; max-width: 220px; }
.footer-logo {
    height: 38px; width: auto; margin-bottom: 16px;
    filter: drop-shadow(0 0 10px var(--aqua-glow)) drop-shadow(0 0 20px rgba(0,229,255,0.15));
}
.footer-tagline { font-size: 0.87rem; color: var(--text-secondary); margin-bottom: 8px; }
.footer-contact a { font-size: 0.87rem; color: var(--aqua); transition: color 0.2s; }
.footer-contact a:hover { color: var(--aqua-light); }
.footer-links { display: flex; gap: 52px; flex: 1; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.fc-title { font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--aqua); margin-bottom: 6px; }
.footer-col a { font-size: 0.87rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--dodger-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px;
    text-align: center; display: flex; flex-direction: column; gap: 6px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(0,229,255,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,229,255,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .ops-grid { grid-template-columns: repeat(2,1fr); }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .tech-grid { grid-template-columns: 1fr; }
    .broker-inner { grid-template-columns: 1fr; }
    .vps-inner { grid-template-columns: 1fr; }
    .vps-graphic { display: flex; justify-content: center; }
    .hero-image-wrap { max-width: 440px; }
}
@media (max-width: 900px) {
    .product-cards { grid-template-columns: 1fr; max-width: 500px; }
    .persuasion-grid { grid-template-columns: 1fr; }
    .install-grid { grid-template-columns: repeat(2,1fr); }
    .test-steps { grid-template-columns: repeat(2,1fr); }
    .steps-row { flex-direction: column; gap: 12px; }
    .step-connector { transform: rotate(90deg); align-self: center; }
    .config-cards { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 460px; }
    .footer-inner { flex-direction: column; gap: 36px; }
    .footer-links { flex-wrap: wrap; gap: 30px; }
}
@media (max-width: 768px) {
    .hero-layout { flex-direction: column; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-image-wrap { max-width: 100%; order: -1; }
    .hero-image { transform: none !important; }
    .hero-stats { width: 100%; justify-content: center; flex-wrap: wrap; }
    .header-nav {
        display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
        background: rgba(5,7,15,0.98); border-bottom: 1px solid var(--border-a);
        flex-direction: column; gap: 0; padding: 12px 0; backdrop-filter: blur(20px);
    }
    .header-nav.open { display: flex; }
    .header-nav .nav-link { padding: 13px 28px; border-radius: 0; width: 100%; }
    .hamburger { display: flex; }
    .btn-buy-nav { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .install-grid { grid-template-columns: 1fr; }
    .test-steps { grid-template-columns: 1fr; }
    .ops-grid { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
    .hero { min-height: auto; padding: calc(var(--header-h) + 40px) 0 60px; }
    .hero-desc { max-width: 100%; }
    .section-desc { max-width: 100%; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; }
    .h-stat-sep { width: 100%; height: 1px; }
    .h-stat { width: 100%; }
    .container { padding: 0 18px; }
}
