/* Şuvak Hosting — Açık & Sade Landing Teması */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #0e9ab8;
    --secondary: #6366f1;
    --background: #f4f7fb;
    --surface: #ffffff;
    --surface-alt: #eef3f9;
    --gradient1: #0e9ab8;
    --gradient2: #6366f1;
    --button: #0e9ab8;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
    --online: #22c55e;
    --online-bg: rgba(34, 197, 94, 0.1);
    --radius: 10px;
    --radius-lg: 16px;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
    font-family: var(--font);
    background: #020617;
    color: var(--text);
    line-height: 1.65;
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ─── Cyber cinematic page background (static) ─── */
.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: #020617;
}

.page-bg-void {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 40%, rgba(0, 229, 255, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 60%, rgba(124, 58, 237, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 85% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #020617 0%, #0a1628 40%, #030712 100%);
}

.page-bg-cyber-dc {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1400px;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.72;
    mix-blend-mode: screen;
}

.page-bg-perspective {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 50%;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.04) 100%),
        repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(0, 229, 255, 0.06) 79px, rgba(0, 229, 255, 0.06) 80px),
        repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(0, 229, 255, 0.04) 79px, rgba(0, 229, 255, 0.04) 80px);
    transform: perspective(500px) rotateX(62deg);
    transform-origin: center bottom;
    mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
}

.page-bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(2, 6, 23, 0.75) 100%);
}

.page-bg--static .page-bg-canvas,
.page-bg--static .page-bg-hex,
.page-bg--static .page-bg-streams,
.page-bg--static .page-bg-neon,
.page-bg--static .page-bg-scan { display: none; }

.header,
.hero,
.section,
.section-divider,
.footer {
    position: relative;
    z-index: 1;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.text-gradient {
    background: linear-gradient(135deg, var(--gradient1), var(--gradient2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient1), var(--gradient2));
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.05);
}

.btn-outline {
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(14, 154, 184, 0.04);
}

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header-line {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.35), transparent);
    opacity: 0;
    transition: var(--transition);
}

.header.scrolled .header-line { opacity: 1; }

.header:not(.scrolled) .nav-link {
    color: rgba(226, 232, 240, 0.85);
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.1);
}

.header:not(.scrolled) .logo-text {
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.header:not(.scrolled) .mobile-toggle {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(0, 229, 255, 0.25);
}

.header:not(.scrolled) .mobile-toggle span {
    background: #e2e8f0;
}

.header:not(.scrolled) .btn-outline {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(0, 229, 255, 0.35);
    color: #e2e8f0;
}

.header:not(.scrolled) .btn-outline:hover {
    border-color: #00e5ff;
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img { height: 40px; width: auto; }

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nav-list { display: flex; gap: 4px; }

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(14, 154, 184, 0.08);
}

.header-actions { display: flex; gap: 10px; }
.nav-mobile-actions { display: none; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: var(--transition);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: transparent;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.35; }

.hero-video,
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-dc-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.55;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(2, 6, 23, 0.3) 0%, transparent 70%);
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 40%, rgba(0, 229, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 75% 55%, rgba(124, 58, 237, 0.06) 0%, transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge-wrap { margin-bottom: 20px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
    backdrop-filter: blur(8px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00e5ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00e5ff;
    animation: badge-glow 2s ease infinite;
}

@keyframes badge-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: #f8fafc;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
}

.hero-desc {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.75;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 28px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 229, 255, 0.15);
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}

.stat-val {
    font-size: 1.375rem;
    font-weight: 700;
    color: #00e5ff;
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.stat-label {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

/* Hero — sunucu durum paneli */
.hero-server-panel {
    width: 100%;
    max-width: 560px;
    margin-bottom: 28px;
    padding: 14px 16px 12px;
    background: rgba(2, 6, 23, 0.55);
    border: 1px solid rgba(0, 229, 255, 0.22);
    border-radius: 10px;
    box-shadow:
        0 0 24px rgba(0, 229, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-server-panel__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.12);
}

.hero-server-panel__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    animation: hero-status-blink 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-server-panel__title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hero-server-panel__tag {
    margin-left: auto;
    padding: 2px 8px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-server-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0 14px;
}

.hero-server-col {
    min-width: 0;
}

.hero-server-list-head,
.hero-server-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.hero-server-list-head {
    padding: 0 4px 6px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.hero-server-list-head__host,
.hero-server-list-head__status {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #475569;
}

.hero-server-list-head__status {
    text-align: right;
    min-width: 68px;
}

.hero-server-row {
    padding: 6px 4px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    transition: background 0.2s ease;
}

.hero-server-row:hover {
    background: rgba(0, 229, 255, 0.04);
}

.hero-server-name {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: #cbd5e1;
}

.hero-server-flag {
    flex-shrink: 0;
    width: 22px;
    height: 15px;
    object-fit: contain;
    object-position: center;
    border-radius: 2px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #fff;
    image-rendering: auto;
}

.hero-server-host {
    font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
    font-size: clamp(0.5625rem, 2.4vw, 0.6875rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.hero-server-status {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-shrink: 0;
    min-width: 68px;
    white-space: nowrap;
    color: #22c55e;
    font-weight: 600;
    font-size: clamp(0.5625rem, 2.2vw, 0.625rem);
}

.hero-server-status .status-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.9);
    animation: hero-status-blink 1.6s ease-in-out infinite;
}

.hero-server-status .status-label {
    flex-shrink: 0;
    animation: hero-status-text-blink 1.6s ease-in-out infinite;
}

@keyframes hero-status-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.9); }
    50% { opacity: 0.35; box-shadow: 0 0 2px rgba(34, 197, 94, 0.35); }
}

@keyframes hero-status-text-blink {
    0%, 100% {
        opacity: 1;
        color: #22c55e;
        text-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    }
    50% {
        opacity: 0.35;
        color: #16a34a;
        text-shadow: none;
    }
}

/* Hero visual — veri merkezi/ vitrin */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dc-showcase {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.dc-showcase-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(14, 154, 184, 0.12));
}

.dc-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    animation: dc-float 4s ease-in-out infinite;
}

.dc-float i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    color: #fff;
}

.dc-float--1 {
    top: 8%;
    right: -8px;
    animation-delay: 0s;
}

.dc-float--1 i { background: linear-gradient(135deg, #22c55e, #16a34a); }

.dc-float--2 {
    bottom: 38%;
    left: -16px;
    animation-delay: 1.2s;
}

.dc-float--2 i { background: linear-gradient(135deg, var(--gradient1), var(--gradient2)); }

.dc-float--3 {
    bottom: 6%;
    right: 10%;
    animation-delay: 2.4s;
}

.dc-float--3 i { background: linear-gradient(135deg, #6366f1, #4f46e5); }

@keyframes dc-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.holo-core {
    position: relative;
    width: 300px;
    height: 300px;
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid var(--border);
    transform: translate(-50%, -50%);
}

.core-ring-1 { width: 280px; height: 280px; opacity: 0.6; }
.core-ring-2 { width: 220px; height: 220px; border-color: rgba(14, 154, 184, 0.2); }
.core-ring-3 { width: 160px; height: 160px; border-color: var(--primary); border-width: 2px; opacity: 0.4; }

.core-hex {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--surface);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hex-inner {
    font-size: 2.5rem;
    color: var(--primary);
}

.core-orbit { display: none; }

.holo-frame {
    position: relative;
    padding: 16px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.holo-corner,
.holo-scan { display: none; }

.hero-image-wrap img {
    border-radius: var(--radius);
    max-height: 380px;
    object-fit: contain;
}

.hero-glow { display: none; }

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.8125rem;
    font-weight: 500;
}

.scroll-indicator i { color: #00e5ff; animation: bounce 2s infinite; text-shadow: 0 0 8px rgba(0,229,255,0.5); }

.hero-title-main {
    background: linear-gradient(135deg, #f8fafc 30%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat { display: flex; flex-direction: column; gap: 2px; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ─── Sections — glass panels on cyber bg ─── */
.section {
    padding: 88px 0;
    position: relative;
}

.section-header { text-align: center; margin-bottom: 48px; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #00e5ff;
    margin-bottom: 14px;
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.1);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: #f1f5f9;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.12);
}

.section-desc {
    color: #94a3b8;
    font-size: 1.0625rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-divider {
    height: 1px;
    max-width: 1140px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.35), rgba(124, 58, 237, 0.35), transparent);
}

.divider-line, .divider-node { display: none; }

.section-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-bg-deco--packages {
    background:
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(0, 229, 255, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 65%);
}

.section-bg-deco--companies {
    background:
        radial-gradient(ellipse 55% 45% at 15% 70%, rgba(124, 58, 237, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 45% 35% at 90% 30%, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
}

.section-bg-deco--features {
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
}

.section-bg-deco--software {
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(124, 58, 237, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(0, 229, 255, 0.06) 0%, transparent 65%);
}

.packages-section,
.companies-section,
.features-section,
.software-section,
.cta-section {
    background: rgba(2, 6, 23, 0.45);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    border-bottom: 1px solid rgba(0, 229, 255, 0.05);
}

.section-bg-glow { display: none; }

/* ─── Cards ─── */
.holo-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: var(--transition);
}

.holo-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 229, 255, 0.08);
}

.card-border-glow,
.card-corner { display: none; }

/* ─── Packages ─── */
.packages-section { }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.package-card { padding: 32px 28px; }

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 154, 184, 0.25);
}

.package-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient1), var(--gradient2));
    color: #fff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

/* Mini sunucu animasyonu — paket başlığı */
.package-server-anim {
    flex-shrink: 0;
    width: 36px;
    height: 44px;
}

.psrv-rack {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    height: 100%;
    padding: 4px 5px;
    background: linear-gradient(180deg, #e8f4fc, #dbeafe);
    border: 1.5px solid #b8d4e8;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(14, 154, 184, 0.12);
}

.psrv-slot {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 7px;
    padding: 0 3px;
    background: #fff;
    border-radius: 2px;
    border: 1px solid #e2e8f0;
}

.psrv-slot i {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #94a3b8;
    animation: psrv-blink 2s ease-in-out infinite;
}

.psrv-slot i:nth-child(1) { animation-delay: 0s; }
.psrv-slot i:nth-child(2) { animation-delay: 0.4s; }
.psrv-slot i:nth-child(3) { animation-delay: 0.8s; }

.psrv-slot:nth-child(1) i:nth-child(1) { background: #22c55e; }
.psrv-slot:nth-child(1) i:nth-child(2) { background: #0e9ab8; }
.psrv-slot:nth-child(2) i:nth-child(1) { background: #0e9ab8; }
.psrv-slot:nth-child(2) i:nth-child(3) { background: #22c55e; }
.psrv-slot:nth-child(3) i:nth-child(2) { background: #6366f1; }
.psrv-slot:nth-child(4) i:nth-child(1) { background: #22c55e; }
.psrv-slot:nth-child(4) i:nth-child(3) { background: #0e9ab8; }

@keyframes psrv-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px currentColor; }
    50% { opacity: 0.35; box-shadow: none; }
}

.package-card.featured .psrv-rack {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(14, 154, 184, 0.2);
}

.package-card:hover .package-server-anim .psrv-rack {
    animation: psrv-pulse 1.5s ease infinite;
}

@keyframes psrv-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.package-price {
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.price-currency { font-size: 1.125rem; font-weight: 600; color: var(--primary); }

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period { color: var(--text-muted); font-size: 0.875rem; width: 100%; }

.package-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6;
}

.package-features { margin-bottom: 24px; }

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.feat-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--online-bg);
    border-radius: 6px;
    font-size: 0.65rem;
    color: var(--online);
}

/* ─── Software ─── */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
}

.software-card {
    position: relative;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.software-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 32px rgba(0, 229, 255, 0.1);
}

.software-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient1), var(--gradient2));
    color: #fff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.software-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 14px;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.software-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.software-tagline {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(14, 154, 184, 0.08);
    padding: 3px 10px;
    border-radius: 50px;
}

.software-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 14px 0 18px;
}

.software-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px;
    padding: 14px 16px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: var(--radius);
}

.software-price-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    width: 100%;
}

.software-price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.software-price-note {
    font-size: 0.8125rem;
    color: var(--primary);
    font-weight: 500;
}

.software-features {
    margin-bottom: 24px;
    flex: 1;
}

.software-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.software-features li i {
    color: var(--online);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ─── Companies list ─── */
.companies-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.company-row:hover {
    border-color: rgba(14, 154, 184, 0.3);
    box-shadow: var(--shadow-sm);
}

.company-info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.company-logo-wrap {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.company-logo-wrap img {
    max-width: 36px;
    max-height: 32px;
    object-fit: contain;
}

.company-initial {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.company-meta { min-width: 0; }

.company-meta .company-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    display: block;
}

.company-meta .company-name:hover { color: var(--primary); }

.company-tag {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

.company-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 6px 12px;
    background: var(--online-bg);
    border-radius: 50px;
}

.status-online {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.status-dot {
    position: absolute;
    inset: 1px;
    background: var(--online);
    border-radius: 50%;
    animation: status-blink 2s ease-in-out infinite;
}

.status-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    animation: status-ring-pulse 2s ease-in-out infinite;
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes status-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.4); opacity: 0; }
}

.status-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #15803d;
    white-space: nowrap;
}

/* ─── Features ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 32px 24px;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--primary);
    background: rgba(14, 154, 184, 0.08);
    border-radius: 14px;
}

.icon-ring { display: none; }

.feature-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.feature-line { display: none; }

/* ─── CTA ─── */
.cta-section { padding: 72px 0; }

.cta-box {
    text-align: center;
    padding: 56px 32px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(124, 58, 237, 0.06));
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.06);
}

.cta-glow,
.cta-grid { display: none; }

.cta-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.0625rem;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 229, 255, 0.15);
    padding: 56px 0 0;
}

.footer-grid-bg { display: none; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.85fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo { height: 36px; margin-bottom: 14px; }

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #00e5ff;
    display: block;
    margin-bottom: 14px;
    text-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.9375rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    color: #94a3b8;
    transition: var(--transition);
}

.footer-social a:hover {
    color: #00e5ff;
    border-color: #00e5ff;
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.2);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f1f5f9;
}

.footer-h4-line { display: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #94a3b8;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a i { font-size: 0.65rem; color: #00e5ff; }
.footer-links a:hover { color: #00e5ff; }

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9375rem;
    margin-bottom: 10px;
}

.footer-contact i { color: #00e5ff; width: 18px; flex-shrink: 0; }
.footer-contact a:hover { color: #00e5ff; }

.footer-addresses {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #94a3b8;
}

.footer-address:last-child {
    margin-bottom: 0;
}

.footer-address i {
    margin-top: 3px;
}

.footer-address strong {
    display: block;
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.footer-address span {
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

/* ─── AOS ─── */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; }
    .hero-server-panel { margin-left: auto; margin-right: auto; width: 100%; }
    .hero-text { text-align: left; }
    .hero-visual { order: -1; }
    .dc-showcase { max-width: 380px; margin: 0 auto; }
    .dc-float--1 { right: 0; }
    .dc-float--2 { left: 0; }
    .page-bg-cyber-dc { opacity: 0.55; }
    .page-bg-perspective { height: 40%; }
    .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--surface);
        padding: 80px 24px 24px;
        transition: var(--transition);
        border-left: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav.open { right: 0; }
    .nav-list { flex-direction: column; gap: 4px; }
    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }

    .header-actions { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .cta-box { padding: 40px 20px; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }

    .company-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .company-status { align-self: flex-start; }

    .hero-server-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-server-col + .hero-server-col .hero-server-list-head {
        display: none;
    }

    .hero-server-panel {
        padding: 12px 12px 10px;
    }

    .hero-server-list-head,
    .hero-server-row {
        gap: 8px;
    }

    .hero-server-list-head__status,
    .hero-server-status {
        min-width: 62px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .stat-val { font-size: 1.125rem; }
    .hero-server-panel { padding: 10px 10px 8px; }
    .hero-server-row { padding: 5px 2px; }
    .hero-server-list-head,
    .hero-server-row { gap: 6px; }
    .hero-server-list-head__status,
    .hero-server-status { min-width: 58px; }
    .dc-float { font-size: 0.6875rem; padding: 6px 10px; }
    .dc-float i { width: 24px; height: 24px; font-size: 0.65rem; }
    .dc-float--3 { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .dc-float { animation: none; }
    .page-bg-perspective,
    .page-bg-hex,
    .page-bg-streams span,
    .page-bg-neon,
    .page-bg-scan::after { animation: none !important; }
    .package-card:hover .package-server-anim .psrv-rack { animation: none; }
}

/* ─── AI Asistan ─── */
.ai-assistant {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    font-family: var(--font);
}

.ai-assistant-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(124, 58, 237, 0.2));
    backdrop-filter: blur(12px);
    color: #e2e8f0;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0, 229, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}

.ai-assistant-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.55);
    color: #fff;
}

.ai-toggle-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00e5ff, #6366f1);
    border-radius: 50%;
    font-size: 1.125rem;
    color: #fff;
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
}

.ai-assistant-panel {
    position: absolute;
    bottom: calc(100% + 16px);
    right: 0;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: min(520px, calc(100vh - 100px));
    max-height: min(520px, calc(100vh - 100px));
    background: #0a0f1a;
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: var(--radius-lg);
    box-shadow:
        0 0 0 1px rgba(0, 229, 255, 0.08) inset,
        0 20px 60px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(0, 229, 255, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.ai-assistant-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ai-panel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

.ai-panel-bg-grid {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 23px, rgba(0, 229, 255, 0.04) 23px, rgba(0, 229, 255, 0.04) 24px),
        repeating-linear-gradient(90deg, transparent, transparent 23px, rgba(0, 229, 255, 0.04) 23px, rgba(0, 229, 255, 0.04) 24px);
    mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}

.ai-panel-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.ai-panel-bg-glow--cyan {
    width: 200px;
    height: 120px;
    top: -30px;
    right: -20px;
    background: rgba(0, 229, 255, 0.15);
}

.ai-panel-bg-glow--purple {
    width: 160px;
    height: 100px;
    bottom: 80px;
    left: -30px;
    background: rgba(124, 58, 237, 0.12);
}

.ai-panel-bg-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.06) 2px, rgba(0, 0, 0, 0.06) 4px);
    opacity: 0.5;
}

.ai-panel-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.ai-assistant-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    flex-shrink: 0;
    position: relative;
}

.ai-assistant-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.6), transparent);
}

.ai-assistant-agent {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ai-agent-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00e5ff, #6366f1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.125rem;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-agent-online {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #0a0f1a;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

.ai-agent-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

.ai-agent-role {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ai-assistant-close {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 229, 255, 0.2);
    background: rgba(15, 23, 42, 0.6);
    color: #94a3b8;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.ai-assistant-close:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.4);
    color: #00e5ff;
}

.ai-assistant-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
    background: transparent;
}

.ai-assistant-messages::-webkit-scrollbar { width: 5px; }
.ai-assistant-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.25);
    border-radius: 4px;
}

.ai-msg-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 88%;
}

.ai-msg-group--user {
    align-self: flex-end;
    align-items: flex-end;
}

.ai-msg-group--user .ai-msg-sender { display: none; }

.ai-agent-info { min-width: 0; }

.ai-msg {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.875rem;
    line-height: 1.55;
    word-wrap: break-word;
}

.ai-msg-sender {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #00e5ff;
    padding: 0 4px;
    letter-spacing: 0.02em;
}

.ai-msg-bot {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: #e2e8f0;
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ai-msg-user {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.85), rgba(99, 102, 241, 0.9));
    color: #fff;
    border-bottom-right-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.2);
}

.ai-msg-typing {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
}

.ai-msg-typing span {
    width: 7px;
    height: 7px;
    background: #00e5ff;
    border-radius: 50%;
    animation: ai-typing 1.2s ease infinite;
    box-shadow: 0 0 6px rgba(0, 229, 255, 0.6);
}

.ai-msg-typing span:nth-child(2) { animation-delay: 0.15s; }
.ai-msg-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes ai-typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.ai-msg-actions {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-msg-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: var(--transition);
}

.ai-msg-wa-btn:hover {
    background: #1fb855;
    color: #fff;
    transform: translateY(-1px);
}

.ai-assistant-quick-wrap {
    flex-shrink: 0;
    border-top: 1px solid rgba(0, 229, 255, 0.12);
    background: rgba(10, 15, 26, 0.92);
}

.ai-assistant-quick-wrap.collapsed .ai-assistant-quick {
    display: none;
}

.ai-assistant-quick-wrap.collapsed .ai-quick-chevron {
    transform: rotate(180deg);
}

.ai-quick-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 16px;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: var(--transition);
}

.ai-quick-toggle:hover { color: #00e5ff; }

.ai-quick-toggle .fa-lightbulb { color: #00e5ff; font-size: 0.8125rem; }

.ai-quick-chevron {
    margin-left: auto;
    font-size: 0.625rem;
    transition: transform 0.2s ease;
}

.ai-assistant-quick {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0 16px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.ai-assistant-quick::-webkit-scrollbar { height: 4px; }
.ai-assistant-quick::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.25);
    border-radius: 4px;
}

.ai-quick-btn {
    flex-shrink: 0;
    padding: 6px 12px;
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.06);
    color: #cbd5e1;
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.ai-quick-btn:hover {
    border-color: #00e5ff;
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.12);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.15);
}

.ai-assistant-form {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    border-top: 1px solid rgba(0, 229, 255, 0.15);
    background: rgba(10, 15, 26, 0.95);
    flex-shrink: 0;
}

.ai-assistant-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition);
    background: rgba(15, 23, 42, 0.8);
    color: #f1f5f9;
}

.ai-assistant-form input::placeholder { color: #64748b; }

.ai-assistant-form input:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15), 0 0 16px rgba(0, 229, 255, 0.1);
}

.ai-assistant-form button {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e5ff, #6366f1);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}

.ai-assistant-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.5);
}

.ai-assistant-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: rgba(34, 197, 94, 0.08);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
}

.ai-assistant-whatsapp:hover {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
}

.ai-assistant-whatsapp i { font-size: 1.125rem; }

.ai-assistant.panel-open .ai-assistant-toggle {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
}

@media (max-width: 480px) {
    .ai-assistant {
        bottom: 16px;
        right: 16px;
        left: auto;
    }

    .ai-assistant-panel {
        right: 0;
        left: auto;
        width: calc(100vw - 32px);
        max-width: none;
    }

    .ai-toggle-label { display: none; }

    .ai-assistant-toggle {
        padding: 14px;
        border-radius: 50%;
    }
}
