/* ============================================================
   HYTOVIA TOOLS — Design System v1.1
   Dark-first · monochrom · futuristisch · clean
   Polished: bigger mockups, refined cards, device frames,
   pricing tiers, comparison table, FAQ accordion
   ============================================================ */

:root {
    /* Background layers */
    --bg: #06060a;
    --bg-soft: #0a0a0f;
    --bg-elevated: #11111a;
    --bg-card: #14141e;
    --bg-card-hover: #1a1a26;
    --bg-card-elevated: #1d1d2a;

    /* Borders */
    --border: #1f1f2b;
    --border-strong: #2a2a3a;
    --border-hover: #3a3a4f;
    --border-bright: #4f4f6a;

    /* Text */
    --text: #f5f5f7;
    --text-bright: #ffffff;
    --text-mute: #9c9caf;
    --text-dim: #6e6e7e;
    --text-faint: #3a3a4a;

    /* Accent — used carefully */
    --accent: #ffffff;
    --accent-violet: #8b5cf6;
    --accent-violet-bright: #a78bfa;
    --accent-cyan: #06b6d4;
    --accent-cyan-bright: #67e8f9;
    --accent-amber: #fbbf24;
    --accent-status: #4ade80;
    --accent-status-bright: #86efac;
    --accent-danger: #f87171;

    /* Layout */
    --container: 1280px;
    --container-narrow: 880px;
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Type */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Menlo', monospace;

    /* Motion */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 30px 60px -30px rgba(0, 0, 0, 0.5);
    --shadow-card-hover: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 40px 80px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04);
    --shadow-device: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 50px 100px -30px rgba(0, 0, 0, 0.9), 0 0 60px rgba(139, 92, 246, 0.15);
}

/* ============================================================
   Reset & base
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: var(--bg);
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul, ol { list-style: none; }
em { font-style: italic; }
strong { color: var(--text-bright); font-weight: 600; }

::selection {
    background: rgba(139, 92, 246, 0.4);
    color: var(--text-bright);
}

:focus-visible {
    outline: 2px solid var(--accent-violet);
    outline-offset: 4px;
    border-radius: 2px;
}

/* ============================================================
   Container
   ============================================================ */

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

.container-narrow {
    max-width: var(--container-narrow);
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

/* ============================================================
   Ambient background — multi-layer atmospheric
   ============================================================ */

.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    will-change: transform;
}

.ambient-orb-1 {
    width: 900px;
    height: 900px;
    top: -300px;
    right: -250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, transparent 70%);
    opacity: 0.5;
    animation: orb-float-1 34s ease-in-out infinite;
}

.ambient-orb-2 {
    width: 800px;
    height: 800px;
    top: 30%;
    left: -350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, transparent 70%);
    opacity: 0.45;
    animation: orb-float-2 42s ease-in-out infinite;
}

.ambient-orb-3 {
    width: 700px;
    height: 700px;
    bottom: -200px;
    right: 20%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.25) 0%, transparent 70%);
    opacity: 0.4;
    animation: orb-float-3 50s ease-in-out infinite;
}

@keyframes orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, 80px) scale(1.05); }
}
@keyframes orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -100px) scale(1.08); }
}
@keyframes orb-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -60px) scale(1.04); }
}

.ambient-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
}

.ambient-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' /%3E%3C/svg%3E");
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 70%,
        var(--bg) 100%);
}

main, .nav, .footer { position: relative; z-index: 2; }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.01em;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
    border: 1px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 15px 24px;
    font-size: 15px;
    border-radius: 10px;
}

.btn-primary {
    background: linear-gradient(180deg, #ffffff 0%, #e5e5ea 100%);
    color: #07070a;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 10px 30px -10px rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 16px 40px -10px rgba(255, 255, 255, 0.35);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: var(--border-strong);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(6, 6, 10, 0.6);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav.is-scrolled {
    background: rgba(6, 6, 10, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.nav-logo svg { color: var(--text); }

.nav-logo-accent {
    color: var(--text-mute);
    font-weight: 500;
    margin-left: 2px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-mute);
    font-weight: 500;
    transition: color 0.2s var(--ease);
    position: relative;
}

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

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-violet-bright), transparent);
    opacity: 0;
    transition: opacity 0.2s var(--ease);
}

.nav-links a:hover::after { opacity: 1; }

.nav-links a.is-active {
    color: var(--text-bright);
}

.nav-links a.is-active::after {
    opacity: 1;
}

.nav-cta { display: none; }

.nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: 6px;
}

.nav-mobile-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.nav-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.nav-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
    padding: 14px 0;
    color: var(--text-mute);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.nav-mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 12px;
    justify-content: center;
}

@media (min-width: 960px) {
    .nav-links { display: flex; }
    .nav-cta { display: inline-flex; }
    .nav-mobile-toggle { display: none; }
}

/* ============================================================
   Section base
   ============================================================ */

.section {
    padding: 96px 0;
    position: relative;
}

@media (min-width: 768px) {
    .section { padding: 140px 0; }
}

.section-head {
    max-width: 820px;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-bright);
    margin-bottom: 22px;
}

.section-sub {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.6;
    color: var(--text-mute);
    max-width: 680px;
}

.section-sub strong { color: var(--text); }

.text-mute {
    color: var(--text-mute);
    font-weight: 600;
}

.text-shimmer {
    background: linear-gradient(120deg,
        #ffffff 0%,
        #ffffff 30%,
        #c4b5fd 48%,
        #ffffff 65%,
        #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 14s linear infinite;
}

@keyframes shimmer {
    to { background-position: -200% center; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
    padding: 80px 0 60px;
    position: relative;
}

@media (min-width: 768px) {
    .hero { padding: 100px 0 80px; }
}

.hero-container { text-align: center; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-mute);
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-status);
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.7);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-title {
    font-size: clamp(38px, 7vw, 84px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    color: var(--text-bright);
}

.hero-subtitle {
    font-size: clamp(16px, 1.7vw, 19px);
    color: var(--text-mute);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 32px;
}

.hero-subtitle strong { color: var(--text); font-weight: 500; }

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    transition: all 0.2s var(--ease);
}

.chip svg {
    color: var(--accent-status);
    flex-shrink: 0;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 56px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 780px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    flex: 1;
    min-width: 140px;
}

.hero-meta-value {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-bright);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-meta-label {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.4;
}

.hero-meta-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

@media (max-width: 640px) {
    .hero-meta { flex-direction: column; align-items: stretch; }
    .hero-meta-divider { width: 100%; height: 1px; }
    .hero-meta-item { text-align: center; }
}

/* Hero visual: 3 devices floating */
.hero-visual {
    margin-top: 80px;
    perspective: 2400px;
    position: relative;
    height: 580px;
}

@media (min-width: 768px) {
    .hero-visual { height: 660px; margin-top: 100px; }
}

.device-stack {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.device {
    position: absolute;
    transition: transform 0.6s var(--ease);
}

.device-front {
    width: 240px;
    z-index: 3;
    transform: translateY(0) rotateY(0deg);
}

.device-back-left {
    width: 220px;
    z-index: 2;
    transform: translateX(-200px) translateY(20px) rotateY(15deg) rotateZ(-3deg);
    opacity: 0.92;
}

.device-back-right {
    width: 220px;
    z-index: 2;
    transform: translateX(200px) translateY(40px) rotateY(-15deg) rotateZ(4deg);
    opacity: 0.92;
}

@media (max-width: 760px) {
    .device-back-left, .device-back-right { display: none; }
    .device-front { width: 220px; transform: none; }
}

@media (min-width: 1024px) {
    .device-front { width: 280px; }
    .device-back-left { width: 240px; transform: translateX(-240px) translateY(40px) rotateY(15deg) rotateZ(-3deg); }
    .device-back-right { width: 240px; transform: translateX(240px) translateY(60px) rotateY(-15deg) rotateZ(4deg); }
}

@media (min-width: 1280px) {
    .device-front { width: 300px; }
    .device-back-left { transform: translateX(-280px) translateY(50px) rotateY(15deg) rotateZ(-3deg); }
    .device-back-right { transform: translateX(280px) translateY(70px) rotateY(-15deg) rotateZ(4deg); }
}

/* Device frame — iPhone-like with notch */
.device-frame {
    position: relative;
    border-radius: 38px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-device);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
}

.device-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 38px;
    pointer-events: none;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 30%,
        transparent 100%);
    z-index: 2;
}

.device-frame img {
    border-radius: 32px;
    width: 100%;
    height: auto;
    display: block;
}

.device-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #000;
    border-radius: 11px;
    z-index: 3;
}

.device-notch::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1a1a26;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Float badges in hero */
.float-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(20, 20, 30, 0.85);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-size: 13px;
    color: var(--text);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
    z-index: 5;
    pointer-events: none;
}

.float-badge-num {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-bright);
    letter-spacing: -0.02em;
}

.float-badge-label {
    font-size: 11px;
    color: var(--text-mute);
}

.float-badge-1 {
    top: 8%;
    left: 6%;
    animation: float-1 6s ease-in-out infinite;
}
.float-badge-2 {
    bottom: 24%;
    right: 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    animation: float-2 7s ease-in-out infinite;
}
.float-badge-3 {
    bottom: 4%;
    left: 8%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    animation: float-3 8s ease-in-out infinite;
}

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

@media (max-width: 760px) {
    .float-badge-1 { top: 0%; left: 0%; }
    .float-badge-2 { bottom: 10%; right: -5%; }
    .float-badge-3 { display: none; }
}

/* ============================================================
   Logo strip
   ============================================================ */

.logo-strip {
    padding: 64px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(10, 10, 15, 0.5);
}

.logo-strip-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.logo-strip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 48px;
}

.logo-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-mute);
    font-weight: 500;
    font-size: 15px;
    opacity: 0.85;
    transition: opacity 0.3s var(--ease);
}

.logo-strip-item:hover { opacity: 1; }

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-strong);
    border-radius: 9px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0;
}

/* ============================================================
   Inclusions ("Das bekommen Sie")
   ============================================================ */

.section-inclusions {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) { .inclusions-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .inclusions-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; } }
@media (min-width: 1200px) { .inclusions-grid { grid-template-columns: repeat(5, 1fr); } }

.inclusion {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.inclusion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.inclusion::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.inclusion:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.inclusion:hover::before { opacity: 1; }
.inclusion:hover::after { opacity: 1; }

.inc-icon-wrap {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    margin-bottom: 18px;
    color: var(--accent-violet-bright);
}

.inc-icon {
    width: 20px;
    height: 20px;
}

.inclusion h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.inclusion p {
    font-size: 13.5px;
    color: var(--text-mute);
    line-height: 1.55;
}

.inclusion p em { color: var(--text); font-style: italic; }

/* Bottom-line callout */
.bottom-line {
    margin-top: 56px;
    padding: 28px 32px;
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.08), transparent 60%),
        var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 22px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 0 60px rgba(139, 92, 246, 0.08),
        0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.bottom-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-violet-bright), transparent);
}

.bottom-line-mark {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-bright));
    border-radius: 12px;
    color: var(--text-bright);
    box-shadow: 0 8px 24px -6px rgba(139, 92, 246, 0.4);
}

.bottom-line-body {
    flex: 1;
}

.bottom-line-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-violet-bright);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bottom-line p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

.bottom-line p strong { color: var(--text-bright); font-weight: 600; }
.bottom-line p em { color: var(--text-mute); font-style: italic; }

@media (max-width: 640px) {
    .bottom-line {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
}

/* ============================================================
   Pakete (Pricing Tiers)
   ============================================================ */

.section-pakete {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
}

.pakete-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

@media (min-width: 768px) { .pakete-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
    .pakete-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}

.paket {
    padding: 36px 30px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.paket::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.paket:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 40px 80px -20px rgba(0, 0, 0, 0.7);
}

.paket-featured {
    background:
        linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, transparent 30%),
        var(--bg-card);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 0 60px rgba(139, 92, 246, 0.1),
        0 40px 80px -20px rgba(0, 0, 0, 0.7);
}

.paket-featured::before {
    background: linear-gradient(90deg, transparent, var(--accent-violet-bright), transparent);
    opacity: 0.6;
}

.paket-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-bright));
    color: var(--text-bright);
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.paket-head {
    margin-bottom: 24px;
}

.paket-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    line-height: 1;
    margin-bottom: 14px;
}

.paket h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.paket-tag {
    color: var(--text-mute);
    font-size: 14px;
}

.paket-price {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.paket-price-amount {
    display: block;
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 500;
    color: var(--text-bright);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 4px;
}

.paket-price-meta {
    display: block;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

.paket-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    flex: 1;
}

.paket-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.5;
}

.paket-list li svg {
    color: var(--accent-status);
    flex-shrink: 0;
    margin-top: 4px;
}

.paket-list li em { color: var(--text-mute); }

.paket-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 20px;
}

.paket-time-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.paket-time-value {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-bright);
    font-weight: 500;
}

.paket-example {
    font-size: 13px;
    color: var(--text-mute);
    line-height: 1.55;
    margin-bottom: 24px;
}

.paket-example strong { color: var(--text); font-weight: 600; }

.paket-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s var(--ease);
    margin-top: auto;
}

.paket-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.paket-cta-primary {
    background: linear-gradient(180deg, #ffffff 0%, #e5e5ea 100%);
    color: #07070a;
    border-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 10px 30px -10px rgba(255, 255, 255, 0.25);
}

.paket-cta-primary:hover {
    background: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 16px 40px -10px rgba(255, 255, 255, 0.35);
}

.pakete-note {
    max-width: 760px;
    margin: 32px auto 0;
    text-align: center;
    font-size: 14.5px;
    color: var(--text-mute);
    line-height: 1.65;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.pakete-note strong { color: var(--text); }

/* ============================================================
   Services
   ============================================================ */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.service-card {
    padding: 38px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before { opacity: 1; }

.service-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.service-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-dim);
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    line-height: 1;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-bright);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-desc {
    color: var(--text-mute);
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.service-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

.service-list li span {
    color: var(--text-dim);
    font-family: var(--font-mono);
    flex-shrink: 0;
}

.service-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-mute);
    line-height: 1.4;
}

/* ============================================================
   Cases — bigger, more impressive
   ============================================================ */

.section-cases {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
}

.case {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 0;
    border-top: 1px solid var(--border);
    align-items: center;
}

.case:first-of-type {
    border-top: none;
    padding-top: 0;
}

@media (min-width: 1024px) {
    .case {
        grid-template-columns: 1fr 1.05fr;
        gap: 80px;
        padding: 100px 0;
    }
    .case-reverse .case-content { order: 2; }
    .case-reverse .case-visual { order: 1; }
}

.case-content { display: flex; flex-direction: column; gap: 18px; }

.case-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.case-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-mute);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.case-paket-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-violet-bright);
    padding: 5px 10px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.case-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-status);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.case-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.case-sub {
    font-size: 19px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
}

.case-desc {
    color: var(--text-mute);
    font-size: 15.5px;
    line-height: 1.7;
}

.case-quote {
    margin-top: 12px;
    padding: 20px 24px;
    background:
        linear-gradient(90deg, rgba(139, 92, 246, 0.05), transparent),
        rgba(255, 255, 255, 0.015);
    border-left: 2px solid var(--accent-violet-bright);
    border-radius: 0 12px 12px 0;
    font-size: 15.5px;
    color: var(--text-mute);
    line-height: 1.65;
}

.case-quote em { color: var(--text); font-style: italic; }

.case-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 8px 0 4px;
}

.highlight {
    padding: 18px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.highlight:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.highlight-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-bright);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 6px;
}

.highlight-label {
    display: block;
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.4;
}

.case-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 14px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--border-hover);
    width: fit-content;
    transition: all 0.2s var(--ease);
}

.case-link:hover {
    color: var(--text-bright);
    border-bottom-color: var(--text-bright);
}

/* Case visuals — bigger, more dynamic */
.case-visual { position: relative; }

.case-mockups {
    position: relative;
    aspect-ratio: 1 / 1.08;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-mockup {
    position: absolute;
    transition: transform 0.5s var(--ease);
}

.case-mockup-main {
    width: 60%;
    z-index: 2;
    left: 8%;
    top: 4%;
    transform: rotate(-3deg);
}

.case-mockup-side {
    width: 60%;
    z-index: 1;
    right: 6%;
    bottom: 4%;
    transform: rotate(4deg);
    opacity: 0.95;
}

.case:hover .case-mockup-main { transform: rotate(-2deg) translateY(-8px); }
.case:hover .case-mockup-side { transform: rotate(3deg) translateY(-8px); }

/* Cases mini grid */
.cases-grid {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 700px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.case-mini {
    padding: 24px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.case-mini:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.case-mini-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.case-mini h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.case-mini p {
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.55;
}

/* ============================================================
   Services section
   ============================================================ */

.section-services {
    background:
        radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
}

/* ============================================================
   Comparison Table
   ============================================================ */

.section-compare {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
}

.compare-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.compare-table::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.2fr;
    border-bottom: 1px solid var(--border);
}

.compare-row:last-child { border-bottom: none; }

.compare-cell {
    padding: 18px 22px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--text-mute);
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-cell-good svg {
    color: var(--accent-status);
    flex-shrink: 0;
}

.compare-cell-bad svg {
    color: var(--accent-danger);
    opacity: 0.7;
    flex-shrink: 0;
}

.compare-head { background: rgba(255, 255, 255, 0.03); }

.compare-cell-good-head,
.compare-cell-bad-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 24px 22px;
}

.compare-brand {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-bright);
    letter-spacing: -0.01em;
}

.compare-cell-bad-head .compare-brand { color: var(--text-mute); }

.compare-brand-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

.compare-label {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
    letter-spacing: 0.01em;
    border-right: 1px solid var(--border);
}

.compare-good {
    color: var(--text);
    border-right: 1px solid var(--border);
}

.compare-bad {
    color: var(--text-mute);
    background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 760px) {
    .compare-table { border-radius: var(--radius); }
    .compare-row {
        grid-template-columns: 1fr;
        padding: 20px 18px;
        border-bottom: 1px solid var(--border);
    }
    .compare-cell {
        padding: 8px 0;
        border: none;
        background: none !important;
    }
    .compare-cell-empty { display: none; }
    .compare-head {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 18px;
    }
    .compare-head .compare-cell-empty { display: none; }
    .compare-head .compare-cell { padding: 0; }
    .compare-label {
        font-size: 13px;
        color: var(--text-bright);
        font-weight: 600;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 4px;
        border-right: none;
    }
    .compare-good::before { content: "✓"; color: var(--accent-status); font-weight: 700; margin-right: 8px; }
    .compare-bad::before { content: "✗"; color: var(--accent-danger); font-weight: 700; margin-right: 8px; }
    .compare-good svg, .compare-bad svg { display: none; }
}

/* ============================================================
   Capabilities
   ============================================================ */

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) { .capabilities-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .capabilities-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1200px) { .capabilities-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.capability {
    padding: 26px 22px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.capability::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.capability:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.capability:hover::after { opacity: 1; }

.cap-icon {
    width: 24px;
    height: 24px;
    color: var(--text);
    margin-bottom: 18px;
    opacity: 0.9;
}

.capability h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.capability p {
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.6;
}

.capabilities-note {
    max-width: 720px;
    margin: 56px auto 0;
    text-align: center;
    color: var(--text-mute);
    font-size: 16px;
    line-height: 1.7;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: 12px;
}

/* ============================================================
   Process
   ============================================================ */

.section-process {
    background:
        radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    counter-reset: step;
    max-width: 940px;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.process-step:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.process-num {
    font-family: var(--font-mono);
    font-size: 22px;
    color: var(--accent-violet-bright);
    font-weight: 400;
    line-height: 1;
    padding-top: 4px;
    min-width: 44px;
    opacity: 0.8;
}

.process-step-body { flex: 1; }

.process-step-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.process-step h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-bright);
    letter-spacing: -0.01em;
}

.process-time {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.03);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.process-step p {
    color: var(--text-mute);
    line-height: 1.65;
    font-size: 15px;
}

/* ============================================================
   FAQ
   ============================================================ */

.section-faq {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item[open],
.faq-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-bright);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary > span {
    flex: 1;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.faq-icon {
    color: var(--text-mute);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.faq-item[open] .faq-icon { transform: rotate(180deg); }

.faq-body {
    padding: 0 24px 22px 24px;
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.7;
}

.faq-body p { margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body strong { color: var(--text); }

.faq-body ol {
    margin: 8px 0 12px 18px;
    list-style: decimal;
    color: var(--text-mute);
}

.faq-body ol li {
    margin-bottom: 8px;
    padding-left: 4px;
    line-height: 1.65;
}

/* ============================================================
   About
   ============================================================ */

.section-about { padding: 80px 0; }

.about { text-align: left; }

.about-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 20px 0 32px;
    color: var(--text-bright);
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-mute);
}

.about-body strong {
    color: var(--text-bright);
    font-weight: 600;
}

/* ============================================================
   CTA
   ============================================================ */

.section-cta {
    padding-bottom: 120px;
    position: relative;
}

.cta {
    padding: 64px 48px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 70%),
        var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 60%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.4), transparent);
}

.cta::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 240px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 16px 0 20px;
    color: var(--text-bright);
}

.cta-sub {
    font-size: 17px;
    color: var(--text-mute);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}

.cta-channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

@media (min-width: 700px) { .cta-channels { grid-template-columns: 1fr 1fr; } }

.cta-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s var(--ease);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.cta-channel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.cta-channel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.cta-channel:hover::before { opacity: 1; }

.cta-channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--accent-violet-bright);
    position: relative;
    z-index: 1;
}

.cta-channel-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.cta-channel-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

.cta-channel-value {
    font-size: 15px;
    color: var(--text-bright);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cta-channel-arrow {
    color: var(--text-dim);
    flex-shrink: 0;
    transition: all 0.2s var(--ease);
    position: relative;
    z-index: 1;
}

.cta-channel:hover .cta-channel-arrow {
    color: var(--text);
    transform: translate(3px, -3px);
}

.cta-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.cta-bullet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-mute);
}

.cta-bullet svg {
    color: var(--accent-status);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .cta { padding: 40px 24px; border-radius: 20px; }
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
    padding-top: 80px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 30%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 64px;
    }
}

.footer-brand { max-width: 380px; }

.footer-tag {
    margin-top: 18px;
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.6;
}

.footer-mini-meta {
    margin-top: 18px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
}

.footer-mini-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    font-weight: 400;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-mute);
    transition: color 0.2s var(--ease);
}

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

.footer-base {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.footer-base-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: var(--text-dim);
}

.footer-mono { font-family: var(--font-mono); }

/* ============================================================
   Reveal animations
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Legal pages
   ============================================================ */

.legal {
    padding: 80px 0 120px;
    max-width: 760px;
}

.legal h1 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: var(--text-bright);
}

.legal h2 {
    font-size: 22px;
    margin: 36px 0 14px;
    color: var(--text-bright);
    letter-spacing: -0.01em;
}

.legal h3 {
    font-size: 17px;
    margin: 24px 0 8px;
    color: var(--text-bright);
}

.legal p, .legal li {
    color: var(--text-mute);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 15.5px;
}

.legal a {
    color: var(--text);
    border-bottom: 1px solid var(--border-hover);
}

.legal a:hover { border-bottom-color: var(--text); }

.legal ul {
    margin: 8px 0 16px 0;
    padding-left: 18px;
}

.legal ul li { list-style: disc; padding-left: 4px; }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-mute);
    font-family: var(--font-mono);
    font-size: 13px;
    margin-bottom: 24px;
    transition: color 0.2s var(--ease);
}

.back-link:hover { color: var(--text); }

/* ============================================================
   Print
   ============================================================ */

@media print {
    .ambient, .nav, .footer, .hero-cta, .hero-visual { display: none !important; }
    body { background: white; color: black; }
}

/* ============================================================
   Scroll progress indicator
   ============================================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 200;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.04);
}

.scroll-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,
        var(--accent-violet-bright) 0%,
        var(--accent-cyan-bright) 100%);
    box-shadow: 0 0 8px var(--accent-violet-bright);
    transition: width 0.1s linear;
}

/* ============================================================
   Activity Strip
   ============================================================ */

.activity-strip {
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
    overflow: hidden;
}

.activity-strip .container {
    padding: 0;
    max-width: 100%;
}

.activity-band {
    padding: 18px 0;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.activity-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: activity-scroll 60s linear infinite;
    will-change: transform;
}

.activity-loop {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 14px;
    flex-shrink: 0;
}

@keyframes activity-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.activity-track:hover { animation-play-state: paused; }

.activity-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.2s var(--ease);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

.activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-status);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.activity-dot-cyan {
    background: var(--accent-cyan-bright);
    box-shadow: 0 0 8px rgba(103, 232, 249, 0.6);
}

.activity-dot-amber {
    background: var(--accent-amber);
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

.activity-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.activity-value {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-bright);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.activity-meta {
    font-size: 12.5px;
    color: var(--text-mute);
}

.activity-sep {
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--text-faint);
    flex-shrink: 0;
}

/* ============================================================
   Laptop Mockup
   ============================================================ */

.case-visual-with-laptop {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 580px;
}

.laptop-screen {
    position: relative;
    border-radius: 12px 12px 4px 4px;
    overflow: hidden;
    background: #000;
    border: 6px solid #2a2a35;
    border-bottom: none;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 40px 80px -20px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(139, 92, 246, 0.12);
}

.laptop-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.laptop-base {
    position: relative;
    height: 12px;
    background: linear-gradient(180deg, #2a2a35 0%, #1a1a24 100%);
    border-radius: 0 0 20px 20px;
    margin-left: -12px;
    margin-right: -12px;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.5);
}

.laptop-hinge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0a0a0d;
    border-radius: 0 0 4px 4px;
}

.laptop-shadow {
    position: absolute;
    bottom: -30px;
    left: 10%;
    right: 10%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4), transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

.case-mockups-compact {
    aspect-ratio: 1.4 / 1;
    max-width: 440px;
}

.case-mockups-compact .case-mockup-main {
    width: 42%;
    left: 10%;
    top: 0;
}

.case-mockups-compact .case-mockup-side {
    width: 42%;
    right: 10%;
    bottom: 0;
}

/* ============================================================
   Code Preview (Mac-style Editor)
   ============================================================ */

.section-code {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
}

.code-window {
    background: linear-gradient(180deg, #131320 0%, #0c0c14 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 40px 80px -20px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(139, 92, 246, 0.08);
    position: relative;
}

.code-window::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.4), transparent);
}

.code-window-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}

.code-window-dots {
    display: flex;
    gap: 7px;
    flex-shrink: 0;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot-red {
    background: #ff5f57;
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.2) inset;
}
.code-dot-yellow {
    background: #febc2e;
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.2) inset;
}
.code-dot-green {
    background: #28c840;
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.2) inset;
}

.code-window-tabs {
    display: flex;
    gap: 2px;
    flex: 1;
    overflow: hidden;
}

.code-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 6px 6px 0 0;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    background: transparent;
    border: 1px solid transparent;
    border-bottom: none;
    white-space: nowrap;
    transition: all 0.2s var(--ease);
}

.code-tab svg { flex-shrink: 0; opacity: 0.6; }

.code-tab-active {
    color: var(--text-bright);
    background: #0a0a14;
    border-color: var(--border);
    position: relative;
}

.code-tab-active::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: #0a0a14;
}

.code-tab-active svg { opacity: 1; }

.code-tab-modified {
    color: var(--accent-violet-bright);
    font-size: 10px;
    line-height: 1;
}

.code-window-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.code-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--accent-status);
    letter-spacing: 0.02em;
}

.code-meta-badge .status-dot {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
}

.code-meta-text {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-dim);
}

.code-window-body {
    display: flex;
    background: #0a0a14;
    padding: 18px 0 18px 0;
    overflow-x: auto;
    position: relative;
}

.code-line-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 14px;
    user-select: none;
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.6;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    margin-right: 16px;
    flex-shrink: 0;
}

.code-line-numbers span {
    display: block;
}

.code-content {
    flex: 1;
    margin: 0;
    padding: 0;
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text);
    white-space: pre;
    overflow: visible;
}

.code-content code {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background: none;
    padding: 0;
    color: inherit;
}

/* Syntax highlighting tokens */
.c-keyword { color: #c084fc; font-weight: 500; }
.c-string  { color: #86efac; }
.c-comment { color: #6e6e7e; font-style: italic; }
.c-func    { color: #67e8f9; }
.c-type    { color: #fbbf24; }
.c-number  { color: #f9a8d4; }
.c-arg     { color: #e9e9ee; }

.code-window-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.code-footer-left,
.code-footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.code-footer-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-mute);
}

.code-footer-item svg {
    color: var(--text-dim);
    flex-shrink: 0;
}

.code-footer-item:nth-child(3) svg { color: var(--accent-status); }

.code-footer-mono {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
}

/* Code comment card below window */
.code-comment-card {
    margin-top: 28px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background:
        linear-gradient(135deg, rgba(6, 182, 212, 0.06), transparent 60%),
        var(--bg-card);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.code-comment-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan-bright), transparent);
}

.code-comment-mark {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-bright));
    border-radius: 11px;
    color: #0a0a14;
}

.code-comment-body { flex: 1; }

.code-comment-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-cyan-bright);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.code-comment-card p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0;
}

.code-comment-card p strong { color: var(--text-bright); }

@media (max-width: 640px) {
    .code-window-bar {
        padding: 10px 12px;
        flex-wrap: wrap;
    }
    .code-window-tabs { order: 3; flex-basis: 100%; }
    .code-window-meta { margin-left: auto; }
    .code-window-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .code-line-numbers { font-size: 11px; }
    .code-content { font-size: 11px; }
    .code-comment-card { flex-direction: column; padding: 20px; }
}

/* ============================================================
   AI Workflow Visualization
   ============================================================ */

.section-workflow {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 55%);
    position: relative;
    overflow: hidden;
}

.workflow-flow {
    position: relative;
    margin-bottom: 56px;
}

.workflow-line {
    position: absolute;
    top: 100px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.4) 15%,
        rgba(167, 139, 250, 0.5) 50%,
        rgba(6, 182, 212, 0.4) 85%,
        transparent 100%);
    z-index: 0;
    overflow: hidden;
}

.workflow-particle {
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-bright);
    box-shadow:
        0 0 12px var(--accent-violet-bright),
        0 0 24px var(--accent-violet);
}

.workflow-particle-1 { animation: particle-flow 6s linear infinite; }
.workflow-particle-2 { animation: particle-flow 6s linear infinite; animation-delay: 2s; }
.workflow-particle-3 { animation: particle-flow 6s linear infinite; animation-delay: 4s; }

@keyframes particle-flow {
    from { left: -2%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    to { left: 102%; opacity: 0; }
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1100px) {
    .workflow-steps { grid-template-columns: repeat(3, 1fr); }
    .workflow-line { display: none; }
}

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

@media (max-width: 480px) {
    .workflow-steps { grid-template-columns: 1fr; }
}

.workflow-step {
    position: relative;
    padding: 28px 22px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
    text-align: center;
    overflow: hidden;
}

.workflow-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.workflow-step:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.workflow-step-highlight {
    background:
        linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, transparent 30%),
        var(--bg-card);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 0 60px rgba(139, 92, 246, 0.1);
}

.workflow-step-highlight::before {
    background: linear-gradient(90deg, transparent, var(--accent-violet-bright), transparent);
}

.workflow-step-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.workflow-step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 12px;
    color: var(--accent-violet-bright);
    position: relative;
}

.workflow-icon-trigger { color: var(--accent-cyan-bright); background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.25); }
.workflow-icon-receive { color: var(--accent-violet-bright); }
.workflow-icon-ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.25));
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.2);
}
.workflow-icon-ai::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
    z-index: -1;
    filter: blur(8px);
    opacity: 0.4;
}
.workflow-icon-action { color: var(--accent-amber); background: rgba(251, 191, 36, 0.1); border-color: rgba(251, 191, 36, 0.25); }
.workflow-icon-result { color: var(--accent-status); background: rgba(74, 222, 128, 0.1); border-color: rgba(74, 222, 128, 0.25); }

.workflow-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.workflow-step p {
    font-size: 13.5px;
    color: var(--text-mute);
    line-height: 1.55;
    margin-bottom: 14px;
}

.workflow-step p code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text);
    padding: 1px 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.workflow-step-tag {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-mute);
    letter-spacing: 0.01em;
    line-height: 1.4;
}

/* Workflow stats */
.workflow-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 28px 32px;
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.06), transparent 60%),
        var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    margin: 56px auto 32px;
    max-width: 920px;
    position: relative;
    overflow: hidden;
}

.workflow-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-violet-bright), transparent);
}

.workflow-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.workflow-stat-value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-bright);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 6px;
}

.workflow-stat-label {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.4;
    max-width: 180px;
}

.workflow-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

@media (max-width: 760px) {
    .workflow-stats { flex-direction: column; gap: 20px; padding: 24px; }
    .workflow-stat-divider { width: 100%; height: 1px; }
}

.workflow-note {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 15.5px;
    color: var(--text-mute);
    line-height: 1.65;
    padding: 0 20px;
}

.workflow-note strong { color: var(--text); }

/* ============================================================
   Sticky Mobile CTA + Back-to-Top
   ============================================================ */

.sticky-cta {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: linear-gradient(180deg, #ffffff 0%, #e5e5ea 100%);
    color: #07070a;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 20px 40px -10px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease);
    z-index: 90;
    text-decoration: none;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
}

.sticky-cta.is-visible {
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    opacity: 1;
}

.sticky-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(7, 7, 10, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.sticky-cta-text { font-weight: 600; }

.sticky-cta-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s var(--ease);
}

.sticky-cta:hover .sticky-cta-arrow {
    transform: translateX(3px);
}

@media (min-width: 960px) {
    .sticky-cta { display: none; }
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--text);
    backdrop-filter: blur(10px);
    transform: translateY(80px);
    opacity: 0;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
    z-index: 90;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

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

.back-to-top:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}
