:root {
    --bg-body: #000000;
    --bg-surface: #0A0C10; /* Ra Black */
    --bg-surface-light: #161920;
    --primary: #F1544D; /* Ra Red */
    --primary-dark: #C9342E;
    --accent-blue: #0057FF; /* Turka Blue */
    --accent-amber: #FFB800; /* Signal Amber */
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --border: rgba(255, 255, 255, 0.1);
    --font-main: 'Schibsted Grotesk', sans-serif;
    --radius: 6px;
    --nav-height: 80px;
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-body); color: var(--text-main); font-family: var(--font-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.text-red { color: var(--primary); }
.text-white { color: white; }

/* --- BUTTONS --- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; font-weight: 600; border-radius: var(--radius); transition: all 0.3s; cursor: pointer; font-size: 0.95rem; }
.btn-primary { background: var(--primary); color: #fff; border: 1px solid var(--primary); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(241, 84, 77, 0.2); }
.btn-outline { border: 1px solid var(--border); background: transparent; color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.icon-btn { gap: 10px; }

/* --- HEADER --- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height); background: rgba(10, 12, 16, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); z-index: 1000; display: flex; align-items: center; }
.navbar-container { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 24px; }
.logo-img { height: 36px; }
.nav-links ul { display: flex; gap: 40px; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Lang Switcher */
.lang-switch { display: flex; align-items: center; font-size: 0.85rem; font-weight: 700; }
.lang-switch a { opacity: 0.5; }
.lang-switch a.active { opacity: 1; color: var(--primary); }
.divider { margin: 0 6px; opacity: 0.3; }

/* --- HERO SECTION --- */
.hero-section { position: relative; padding: 180px 0 100px; overflow: hidden; }
.hero-bg-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(var(--border) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.1; z-index: -1; pointer-events: none; }
.hero-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; animation: fadeInUp 0.8s ease-out; }

.badge-pill { display: inline-block; background: rgba(241, 84, 77, 0.1); border: 1px solid rgba(241, 84, 77, 0.2); color: var(--primary); padding: 6px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; margin-bottom: 24px; letter-spacing: 1px; animation: slideInLeft 0.6s ease-out 0.1s backwards; }
.dot { display: inline-block; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; margin-right: 6px; animation: pulse 2s infinite; }

.hero-title { font-size: 4rem; margin-bottom: 24px; animation: slideInLeft 0.6s ease-out 0.2s backwards; }
.hero-desc { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 550px; line-height: 1.7; animation: slideInLeft 0.6s ease-out 0.3s backwards; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 60px; animation: slideInLeft 0.6s ease-out 0.4s backwards; }
.hero-buttons .btn { transition: all 0.3s; }
.hero-buttons .btn:hover { transform: translateY(-3px); }

.hero-stats { display: flex; gap: 40px; align-items: center; animation: slideInLeft 0.6s ease-out 0.5s backwards; }
.stat-value { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual (Terminal) */
.code-window { background: #0F1115; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 30px 60px rgba(0,0,0,0.6); overflow: hidden; position: relative; z-index: 2; font-family: 'Courier New', Courier, monospace; animation: slideInRight 0.8s ease-out, float 3s ease-in-out infinite; }
.window-bar { background: #1A1D24; padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.win-btn { width: 12px; height: 12px; border-radius: 50%; }
.win-btn.close { background: #FF5F56; }
.win-btn.min { background: #FFBD2E; }
.win-btn.max { background: #27C93F; }
.win-title { margin-left: auto; margin-right: auto; font-size: 0.8rem; color: var(--text-muted); opacity: 0.7; }
.window-body { padding: 24px; color: #D1D5DB; font-size: 0.9rem; line-height: 1.6; }
.prompt { color: var(--primary); margin-right: 8px; }
.cmd { color: var(--accent-amber); font-weight: bold; }
.status-green { color: #10B981; }
.status-yellow { color: var(--accent-amber); }
.indent { padding-left: 20px; color: #6B7280; }
.blink { animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.glow-effect { position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; background: var(--primary); filter: blur(150px); opacity: 0.15; z-index: 1; transform: translate(-50%, -50%); animation: pulse 3s ease-in-out infinite; }

/* --- TRUST --- */
.trust-section { padding: 40px 0; border-bottom: 1px solid var(--border); background: var(--bg-surface); }
.trust-label { text-align: center; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; opacity: 0.8; animation: fadeInUp 0.6s ease-out; }
.logo-grid { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.logo-grid.neutral-grid .logo-item { 
    font-weight: 700; font-size: 0.95rem; color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    letter-spacing: 0.5px; transition: 0.3s;
    animation: fadeInUp 0.6s ease-out forwards; opacity: 0;
}
.logo-grid.neutral-grid .logo-item:hover { color: #fff; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 0.2s; }
.logo-item:nth-child(3) { animation-delay: 0.3s; }
.logo-item:nth-child(4) { animation-delay: 0.4s; }
.logo-item:nth-child(5) { animation-delay: 0.5s; }
.trust-disclaimer { text-align: center; font-size: 0.8rem; color: var(--text-muted); opacity: 0.6; margin-top: 10px; }

/* --- SECTIONS GENERAL --- */
.section { padding: 100px 0; }
.section-header { margin-bottom: 80px; }
.pre-title { color: var(--primary); font-weight: 700; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; display: block; }
.section-header h2 { font-size: 3rem; margin-bottom: 24px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

/* --- MANIFESTO GRID --- */
.manifesto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.manifesto-card { padding: 40px; background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); border: 1px solid var(--border); border-radius: 16px; transition: 0.3s; position: relative; overflow: hidden; animation: fadeInUp 0.8s ease-out forwards; opacity: 0; box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.manifesto-card:nth-child(1) { animation-delay: 0.1s; }
.manifesto-card:nth-child(2) { animation-delay: 0.2s; }
.manifesto-card:nth-child(3) { animation-delay: 0.3s; }
.manifesto-card:hover { transform: translateY(-12px); border-color: rgba(255,255,255,0.2); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.manifesto-card::before { content: ''; position: absolute; inset: -40px; background: radial-gradient(600px 200px at 10% 10%, rgba(241,84,77,0.15), transparent), radial-gradient(600px 200px at 90% 90%, rgba(0,87,255,0.12), transparent); filter: blur(40px); opacity: 0.6; pointer-events: none; }
.card-icon { margin-bottom: 24px; display: inline-block; padding: 12px; background: rgba(255,255,255,0.03); border-radius: 10px; transition: 0.3s; box-shadow: 0 0 0 1px var(--border) inset; }
.manifesto-card:hover .card-icon { transform: scale(1.1) rotate(5deg); }
.manifesto-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.red-glow { box-shadow: 0 0 24px rgba(241,84,77,0.35); }
.blue-glow { box-shadow: 0 0 24px rgba(0,87,255,0.35); }
.amber-glow { box-shadow: 0 0 24px rgba(255,184,0,0.35); }

/* --- FEATURES BENTO GRID --- */
.features-grid-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 24px; position: relative; }
.bento-item { background: var(--bg-surface-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all 0.3s; display: flex; flex-direction: column; justify-content: space-between; animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.bento-item:nth-child(1) { animation-delay: 0.1s; }
.bento-item:nth-child(2) { animation-delay: 0.2s; }
.bento-item:nth-child(3) { animation-delay: 0.3s; }
.bento-item:nth-child(4) { animation-delay: 0.4s; }
.bento-item:nth-child(5) { animation-delay: 0.5s; }
.bento-item:nth-child(6) { animation-delay: 0.6s; }
.bento-item { position: relative; overflow: hidden; border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 20px 50px rgba(0,0,0,0.45); padding: 32px; }
.bento-item::before { content: ''; position: absolute; inset: -30% -10%; background: radial-gradient(200px 200px at 20% 20%, rgba(255,255,255,0.09), transparent), radial-gradient(240px 240px at 80% 80%, rgba(255,255,255,0.05), transparent); opacity: 0.9; pointer-events: none; }
.bento-item:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.18); box-shadow: 0 30px 70px rgba(0,0,0,0.55); }
.large-item { grid-column: span 2; grid-row: span 1; min-height: 320px; }
.bento-item:not(.large-item) { min-height: 260px; }
.bento-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.bento-icon { font-size: 2.6rem; margin-bottom: 8px; transition: 0.3s; }
.bento-item:hover .bento-icon { transform: scale(1.08) translateY(-2px); }
.bento-item h3 { font-size: 1.35rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.bento-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }
.tech-tags { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.tech-tags span { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 4px 10px; font-size: 0.75rem; border-radius: 6px; color: var(--primary); font-family: monospace; transition: 0.3s; }
.bento-item:hover .tech-tags span { border-color: var(--primary); background: rgba(241,84,77,0.12); }

/* Feature tone variants for creative gradients */
.tone-blue { background: linear-gradient(160deg, rgba(0,87,255,0.16), rgba(0,0,0,0.6)); }
.tone-blue::before { background: radial-gradient(260px 260px at 30% 30%, rgba(0,180,255,0.2), transparent), radial-gradient(300px 300px at 80% 80%, rgba(0,87,255,0.18), transparent); }
.tone-amber { background: linear-gradient(160deg, rgba(255,184,0,0.15), rgba(0,0,0,0.65)); }
.tone-amber::before { background: radial-gradient(220px 220px at 25% 20%, rgba(255,184,0,0.2), transparent), radial-gradient(280px 280px at 80% 80%, rgba(255,124,76,0.14), transparent); }
.tone-purple { background: linear-gradient(160deg, rgba(144,97,255,0.18), rgba(0,0,0,0.6)); }
.tone-purple::before { background: radial-gradient(220px 220px at 25% 20%, rgba(171,92,255,0.22), transparent), radial-gradient(280px 280px at 75% 80%, rgba(104,0,204,0.16), transparent); }
.tone-green { background: linear-gradient(160deg, rgba(12,178,119,0.16), rgba(0,0,0,0.62)); }
.tone-green::before { background: radial-gradient(220px 220px at 25% 20%, rgba(16,185,129,0.2), transparent), radial-gradient(260px 260px at 80% 80%, rgba(64,224,208,0.12), transparent); }
.tone-orange { background: linear-gradient(160deg, rgba(255,115,69,0.16), rgba(0,0,0,0.65)); }
.tone-orange::before { background: radial-gradient(220px 220px at 25% 20%, rgba(255,115,69,0.2), transparent), radial-gradient(260px 260px at 80% 80%, rgba(255,184,0,0.14), transparent); }
.tone-cyan { background: linear-gradient(160deg, rgba(0,199,255,0.16), rgba(0,0,0,0.62)); }
.tone-cyan::before { background: radial-gradient(220px 220px at 25% 20%, rgba(0,199,255,0.2), transparent), radial-gradient(260px 260px at 80% 80%, rgba(0,255,170,0.14), transparent); }

/* --- SPECS SECTION --- */
.specs-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 60px; background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); padding: 60px; border-radius: 18px; border: 1px solid rgba(255,255,255,0.08); animation: fadeInUp 0.8s ease-out; position: relative; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,0.55); }
.specs-wrapper::before { content: ''; position: absolute; inset: -20% -10%; background: radial-gradient(380px 260px at 15% 20%, rgba(241,84,77,0.15), transparent), radial-gradient(420px 280px at 85% 80%, rgba(0,87,255,0.12), transparent); filter: blur(40px); opacity: 0.9; pointer-events: none; }
.specs-list { margin-top: 30px; }
.specs-list li { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; gap: 18px; transition: 0.3s; position: relative; }
.specs-list li:last-child { border-bottom: none; }
.specs-list li::before { content: ''; width: 8px; height: 8px; background: linear-gradient(135deg, var(--primary), var(--accent-blue)); border-radius: 50%; position: absolute; left: -18px; top: 22px; box-shadow: 0 0 12px rgba(241,84,77,0.4); }
.specs-list li:hover { transform: translateX(8px); }
.specs-list strong { color: #fff; letter-spacing: 0.3px; }
.specs-list span { color: var(--text-muted); text-align: right; }
.server-rack { display: flex; flex-direction: column; gap: 4px; width: 300px; background: #000; padding: 10px; border: 2px solid #333; border-radius: 4px; animation: slideInRight 0.8s ease-out; }
.rack-unit { height: 40px; background: #222; border-bottom: 1px solid #111; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; font-family: monospace; font-size: 0.8rem; color: #555; transition: 0.3s; }
.rack-unit:hover { background: #2a2a2a; }
.rack-unit.active { color: #fff; background: #1a1d24; border-color: #333; }
.lights { display: flex; gap: 4px; }
.lights i { width: 6px; height: 6px; background: #10B981; border-radius: 50%; animation: blink 2s infinite alternate; }
.lights.red i { background: var(--primary); animation-duration: 0.5s; }

/* --- CTA --- */
.cta-section { padding: 160px 0; text-align: center; position: relative; overflow: hidden; }
.cta-backdrop { position: absolute; inset: 0; z-index: 0; }
.cta-glow-1 { position: absolute; width: 800px; height: 800px; background: radial-gradient(800px 200px at 20% 20%, rgba(241,84,77,0.2), transparent); filter: blur(80px); top: -200px; left: -100px; animation: float 8s ease-in-out infinite; }
.cta-glow-2 { position: absolute; width: 900px; height: 600px; background: radial-gradient(800px 300px at 80% 60%, rgba(0,87,255,0.18), transparent); filter: blur(90px); bottom: -100px; right: -200px; animation: float 10s ease-in-out 1s infinite reverse; }
.cta-glow-3 { position: absolute; width: 700px; height: 700px; background: radial-gradient(600px 200px at 50% 80%, rgba(255,184,0,0.12), transparent); filter: blur(85px); bottom: -150px; left: 50%; transform: translateX(-50%); animation: float 9s ease-in-out 2s infinite; }
.cta-shell { max-width: 960px; margin: 0 auto; padding: 64px 48px; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.16); border-radius: 28px; box-shadow: 0 40px 100px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.2); backdrop-filter: blur(16px); animation: fadeInUp 0.8s ease-out; position: relative; z-index: 1; overflow: hidden; }
.cta-shell::before { content: ''; position: absolute; inset: -40% -20%; background: radial-gradient(500px 300px at 30% 30%, rgba(255,255,255,0.1), transparent), radial-gradient(600px 400px at 70% 70%, rgba(255,255,255,0.06), transparent); opacity: 0.85; pointer-events: none; }
.cta-header { position: relative; z-index: 2; margin-bottom: 36px; }
.cta-pill { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; background: rgba(255,255,255,0.08); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.9px; color: #fff; animation: slideInDown 0.6s ease-out; }
.cta-pill .dot { background: var(--primary); width: 8px; height: 8px; border-radius: 50%; display: inline-block; animation: pulse 2.5s infinite; box-shadow: 0 0 8px rgba(241,84,77,0.6); }
.cta-title { font-size: 3.4rem; margin: 16px 0 14px; letter-spacing: -0.025em; animation: slideInUp 0.6s ease-out 0.1s backwards; background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin: 0 auto; max-width: 680px; line-height: 1.7; animation: slideInUp 0.6s ease-out 0.2s backwards; position: relative; z-index: 2; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 32px 0; position: relative; z-index: 2; }
.btn-xl { padding: 18px 42px; font-size: 1.12rem; border-radius: 14px; font-weight: 600; }
.cta-primary-btn { position: relative; overflow: hidden; display: flex; align-items: center; gap: 8px; animation: slideInUp 0.6s ease-out 0.3s backwards; }
.cta-primary-btn::before { content: ''; position: absolute; inset: -2px; background: linear-gradient(135deg, rgba(241,84,77,0.5), rgba(255,255,255,0.1)); border-radius: 14px; z-index: -1; opacity: 0; transition: opacity 0.3s; }
.cta-primary-btn:hover::before { opacity: 1; }
.cta-primary-btn:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(241,84,77,0.3); }
.btn-inner { display: inline-block; }
.btn-arrow { display: inline-block; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.cta-primary-btn:hover .btn-arrow { transform: translateX(4px); }
.cta-secondary-btn { display: flex; align-items: center; gap: 8px; border-color: rgba(255,255,255,0.3); color: #fff; background: rgba(255,255,255,0.08); animation: slideInUp 0.6s ease-out 0.4s backwards; transition: all 0.3s; }
.cta-secondary-btn:hover { border-color: #fff; background: rgba(255,255,255,0.15); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.cta-note { margin-top: 24px; font-size: 0.92rem; color: rgba(255,255,255,0.65); position: relative; z-index: 2; animation: slideInUp 0.6s ease-out 0.5s backwards; }
.cta-floaters { position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.floater { position: absolute; width: 80px; height: 80px; background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.floater-1 { top: 20px; left: 30px; animation: float 6s ease-in-out infinite; }
.floater-2 { bottom: 30px; right: 40px; animation: float 7s ease-in-out 1s infinite reverse; }
.floater-3 { top: 50%; right: 20px; animation: float 8s ease-in-out 2s infinite; transform: translateY(-50%); }
@keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 25% { transform: translateY(-15px) rotate(2deg); } 50% { transform: translateY(0px) rotate(0deg); } 75% { transform: translateY(15px) rotate(-2deg); } }

/* --- FOOTER --- */
.site-footer { background: var(--bg-surface); border-top: 1px solid var(--border); padding: 60px 0 30px; font-size: 0.9rem; }
.footer-top-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }

.footer-brand-col { }
.logo-footer img { height: 32px; margin-bottom: 16px; }
.footer-brand-col p { opacity: 0.6; margin: 12px 0; max-width: 250px; font-size: 0.85rem; line-height: 1.5; }

.footer-socials { display: flex; gap: 16px; margin-top: 16px; }
.footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 6px; color: var(--text-muted); transition: 0.3s; font-size: 1rem; }
.footer-socials a:hover { background: rgba(241,84,77,0.1); border-color: var(--primary); color: var(--primary); }

.footer-links-col h4, .footer-contact-col h4 { color: #fff; margin-bottom: 16px; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.5px; }
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 10px; }
.footer-links-col a { color: var(--text-muted); font-size: 0.9rem; transition: 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-links-col a:hover { color: var(--primary); transform: translateX(2px); }
.status-dot { display: inline-block; width: 6px; height: 6px; background: #10B981; border-radius: 50%; }

.footer-address { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 12px; }
.contact-link { display: inline-block; color: #fff; font-weight: 600; font-size: 0.95rem; margin-top: 8px; transition: 0.3s; }
.contact-link:hover { color: var(--primary); }

.footer-divider { height: 1px; background: var(--border); margin: 30px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copyright { color: var(--text-muted); font-size: 0.85rem; }
.footer-slogan { color: var(--primary); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; }

/* --- MOBILE RESPONSIVE --- */
.hamburger, .mobile-menu-overlay, .mobile-only { display: none; }

@media (max-width: 1024px) {
    .features-grid-bento { grid-template-columns: repeat(2, 1fr); }
    .specs-wrapper { flex-direction: column; }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .navbar-container { padding: 0 20px; }
    .nav-links, .nav-actions .btn, .nav-actions .divider, .lang-switch { display: none; }
    .nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: linear-gradient(135deg, rgba(10,10,20,0.98) 0%, rgba(20,15,35,0.98) 100%); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.1); padding: 20px; gap: 0; z-index: 1001; }
    .nav-links.mobile-open ul { display: flex; flex-direction: column; gap: 0; width: 100%; }
    .nav-links.mobile-open li { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 12px 0; }
    .nav-links.mobile-open a { display: block; width: 100%; }
    
    .hamburger { display: block; background: none; border: none; cursor: pointer; width: 30px; height: 20px; position: relative; z-index: 1002; padding: 0; }
    .hamburger span { display: block; width: 100%; height: 2px; background: #fff; position: absolute; left: 0; transition: 0.3s; }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { top: 18px; }
    
    .hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

    .mobile-menu-overlay { display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-surface); z-index: 1001; flex-direction: column; align-items: center; justify-content: center; transform: translateY(-100%); transition: 0.4s; }
    .mobile-menu-overlay.active { transform: translateY(0); }
    .mobile-menu-content a { display: block; font-size: 1.5rem; color: #fff; margin: 20px 0; font-weight: 700; }
    
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; } /* Mobilde terminali gizle, sadelik için */
    
    .manifesto-grid { grid-template-columns: 1fr; }
    .features-grid-bento { grid-template-columns: 1fr; }
    .large-item { grid-column: span 1; grid-row: auto; }
    
    .footer-top-grid { grid-template-columns: 1fr; text-align: center; }
    .logo-desktop { display: none; } .logo-mobile { display: block; margin: 0 auto; height: 40px; }
}

/* ===== PANEL SAYFA STİLLERİ ===== */

/* Panel Hero Section */
.panel-hero-section { position: relative; padding: 180px 0 100px; overflow: hidden; }
.panel-hero-section .hero-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.panel-mockup-container { position: relative; }
.panel-window { background: #0F1115; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 40px 80px rgba(0,0,0,0.8); overflow: hidden; position: relative; z-index: 2; }
.panel-body { padding: 20px; background: linear-gradient(135deg, #1a1d24 0%, #0f1115 100%); min-height: 300px; }

.panel-header-mockup { display: flex; align-items: center; gap: 12px; padding: 16px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border); margin-bottom: 16px; border-radius: 4px; }
.ph-user-circle { width: 32px; height: 32px; background: var(--primary); border-radius: 50%; }
.ph-text { font-size: 0.85rem; color: var(--text-muted); }

.panel-grid-mockup { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ph-card { height: 80px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 4px; animation: pulse 2s infinite; }
.ph-card.active { background: rgba(241,84,77,0.1); border-color: var(--primary); }
.ph-graph { grid-column: span 3; height: 120px; background: rgba(0,87,255,0.05); border: 1px dashed var(--border); border-radius: 4px; }
.ph-list { grid-column: span 3; height: 80px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 4px; }

@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.8; } }

/* Panel Stats Section */
.panel-stats-section { padding: 60px 0; background: var(--bg-surface); }
.stats-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card-large { background: var(--bg-surface-light); border: 1px solid var(--border); border-radius: 8px; padding: 32px; text-align: center; transition: 0.3s; }
.stat-card-large:hover { transform: translateY(-8px); border-color: var(--primary); background: #1E2229; }
.stat-card-large .stat-icon { font-size: 3rem; margin-bottom: 16px; }
.stat-card-large h3 { font-size: 1.1rem; margin-bottom: 8px; color: #fff; }
.stat-card-large .stat-number { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin: 12px 0; }
.stat-card-large .stat-desc { font-size: 0.85rem; color: var(--text-muted); }

/* Panel Features Section */
.panel-features-section { padding: 100px 0; background: var(--bg-body); }
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; padding: 40px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; }
.feature-block-right { grid-template-columns: 1fr 1fr; }

.feature-content h3 { font-size: 2rem; margin-bottom: 24px; color: #fff; }
.feature-content p { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }

.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; flex-direction: column; gap: 6px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li strong { color: #fff; font-size: 0.95rem; }
.feature-list li span { color: var(--text-muted); font-size: 0.9rem; }

/* Visual Elements */
.chart-mockup { display: flex; align-items: flex-end; gap: 8px; height: 150px; }
.chart-bar { flex: 1; background: linear-gradient(180deg, var(--primary), var(--primary-dark)); border-radius: 4px 4px 0 0; opacity: 0.8; transition: 0.3s; }
.chart-bar:hover { opacity: 1; }

.domain-table-mockup { background: var(--bg-body); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.table-header { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; background: rgba(0,0,0,0.3); padding: 16px; border-bottom: 1px solid var(--border); font-weight: 700; font-size: 0.9rem; }
.table-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 0.9rem; align-items: center; }
.table-row:last-child { border-bottom: none; }
.td.green { color: #10B981; }
.td.yellow { color: var(--accent-amber); }

.security-shield-mockup { text-align: center; padding: 40px; background: linear-gradient(135deg, rgba(241,84,77,0.1), rgba(0,87,255,0.1)); border: 1px solid var(--border); border-radius: 8px; }
.shield-icon { font-size: 4rem; margin-bottom: 16px; }
.shield-text { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.shield-status { display: flex; flex-direction: column; gap: 8px; }
.status-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; background: rgba(0,0,0,0.3); border-radius: 4px; font-size: 0.9rem; }
.badge { padding: 4px 8px; border-radius: 3px; font-size: 0.75rem; font-weight: 700; }
.badge.green { background: rgba(16,185,129,0.2); color: #10B981; }

.file-manager-mockup { background: #000; border: 1px solid var(--border); border-radius: 6px; font-family: monospace; font-size: 0.85rem; }
.fm-header { padding: 12px 16px; background: #1a1d24; border-bottom: 1px solid var(--border); color: #fff; font-weight: 700; }
.fm-breadcrumb { padding: 8px 16px; color: var(--text-muted); font-size: 0.8rem; }
.fm-tree { padding: 12px 16px; }
.fm-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; color: var(--text-muted); }
.fm-icon { margin-right: 8px; }
.fm-meta { font-size: 0.75rem; color: #666; }

.db-mockup { background: var(--bg-body); border: 1px solid var(--border); border-radius: 6px; padding: 16px; }
.db-header { padding: 12px; background: rgba(0,0,0,0.3); border-bottom: 1px solid var(--border); font-weight: 700; margin-bottom: 12px; border-radius: 4px; }
.db-item { display: flex; justify-content: space-between; align-items: center; padding: 12px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); margin-bottom: 8px; border-radius: 4px; font-size: 0.9rem; }
.db-name { font-family: monospace; color: #fff; }
.db-size { color: var(--text-muted); font-size: 0.85rem; }
.db-status { font-weight: 700; }

.email-mockup { background: var(--bg-body); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.email-header { padding: 16px; background: rgba(0,0,0,0.3); border-bottom: 1px solid var(--border); font-weight: 700; }
.email-item { display: flex; align-items: center; gap: 16px; padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.email-icon { font-size: 1.5rem; }
.email-info { flex: 1; }
.email-addr { color: #fff; font-weight: 600; font-size: 0.95rem; }
.email-meta { color: var(--text-muted); font-size: 0.8rem; }
.email-quota { color: var(--text-muted); font-size: 0.85rem; min-width: 100px; text-align: right; }

.backup-timeline { display: flex; flex-direction: column; gap: 12px; }
.backup-item { display: flex; flex-direction: column; gap: 6px; padding: 16px; background: rgba(0,0,0,0.3); border-left: 3px solid var(--border); border-radius: 4px; transition: 0.3s; }
.backup-item-success { border-left-color: #10B981; }
.backup-time { font-size: 0.8rem; color: var(--text-muted); }
.backup-name { font-weight: 700; color: #fff; }
.backup-size { font-size: 0.85rem; color: var(--text-muted); }
.backup-status { font-size: 0.8rem; font-weight: 700; color: #10B981; }

.analytics-mockup { display: flex; flex-direction: column; gap: 16px; }
.analytics-card { background: rgba(0,0,0,0.3); padding: 16px; border-radius: 6px; }
.analytics-label { font-size: 0.9rem; margin-bottom: 8px; color: #fff; font-weight: 600; }
.progress-bar { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent-blue), var(--primary)); }
.progress-text { text-align: right; font-size: 0.8rem; color: var(--text-muted); }

.ssl-mockup { display: flex; gap: 16px; }
.ssl-card { flex: 1; background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 8px; padding: 20px; text-align: center; }
.ssl-icon { font-size: 2.5rem; margin-bottom: 12px; }
.ssl-domain { font-weight: 700; color: #fff; margin-bottom: 6px; }
.ssl-issuer { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.ssl-dates { font-size: 0.8rem; color: var(--text-muted); }
.ssl-status { margin-top: 12px; font-weight: 700; padding: 8px; border-radius: 4px; font-size: 0.9rem; }
.ssl-status.green { color: #10B981; background: rgba(16,185,129,0.1); }

.users-mockup { background: var(--bg-body); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.users-header { padding: 16px; background: rgba(0,0,0,0.3); border-bottom: 1px solid var(--border); font-weight: 700; }
.user-row { display: flex; align-items: center; gap: 16px; padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.user-avatar { font-size: 1.5rem; }
.user-info { flex: 1; }
.user-name { font-weight: 700; color: #fff; }
.user-role { font-size: 0.8rem; color: var(--text-muted); }
.user-perms { }
.perm-badge { background: rgba(0,87,255,0.2); color: var(--accent-blue); padding: 4px 8px; border-radius: 3px; font-size: 0.75rem; font-weight: 700; }

.api-mockup { display: flex; flex-direction: column; gap: 8px; background: #000; border: 1px solid var(--border); border-radius: 6px; padding: 16px; font-family: monospace; }
.api-endpoint { display: flex; align-items: center; gap: 12px; padding: 8px; background: rgba(255,255,255,0.02); border-radius: 4px; }
.api-method { padding: 3px 8px; border-radius: 2px; font-size: 0.75rem; font-weight: 700; }
.api-method.get { background: rgba(0,87,255,0.2); color: var(--accent-blue); }
.api-method.post { background: rgba(16,185,129,0.2); color: #10B981; }
.api-method.put { background: rgba(255,184,0,0.2); color: var(--accent-amber); }
.api-method.delete { background: rgba(241,84,77,0.2); color: var(--primary); }
.api-path { color: var(--text-muted); font-size: 0.85rem; }

.settings-mockup { display: flex; flex-direction: column; gap: 12px; }
.settings-item { display: flex; justify-content: space-between; align-items: center; padding: 16px; background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 6px; }
.settings-label { font-weight: 600; }
.toggle-switch { width: 40px; height: 24px; background: rgba(255,255,255,0.1); border-radius: 12px; cursor: pointer; position: relative; transition: 0.3s; }
.toggle-switch.on { background: #10B981; }
.toggle-switch::after { content: ''; position: absolute; width: 20px; height: 20px; background: #fff; border-radius: 50%; top: 2px; left: 2px; transition: 0.3s; }
.toggle-switch.on::after { left: 18px; }

/* Panel Comparison Table */
.panel-comparison-section { padding: 80px 0; background: var(--bg-surface); }
.comparison-table-wrapper { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table thead { background: var(--bg-body); }
.comparison-table th { padding: 20px; text-align: left; font-weight: 700; border-bottom: 2px solid var(--border); }
.comparison-table th:nth-child(2), 
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4),
.comparison-table th:nth-child(5) { text-align: center; }
.comparison-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.comparison-table td.text-center { text-align: center; }
.comparison-table td.highlight { color: var(--primary); font-weight: 700; }
.badge.gold { background: rgba(255,184,0,0.2); color: var(--accent-amber); padding: 4px 8px; border-radius: 3px; font-size: 0.75rem; font-weight: 700; }

/* Panel FAQ Section */
.panel-faq-section { padding: 80px 0; background: var(--bg-body); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.faq-item { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: 0.3s; }
.faq-item.open { border-color: var(--primary); background: var(--bg-surface-light); }
.faq-question { padding: 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-question h3 { font-size: 1rem; margin: 0; }
.faq-toggle { font-size: 1.5rem; transition: 0.3s; color: var(--primary); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 24px; color: var(--text-muted); max-height: 0; overflow: hidden; transition: 0.3s; }
.faq-item.open .faq-answer { max-height: 500px; padding: 24px; }

/* Panel Pricing Section */
.panel-pricing-section { padding: 100px 0; background: var(--bg-surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pricing-card { background: var(--bg-body); border: 1px solid var(--border); border-radius: 12px; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; position: relative; }
.pricing-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.pricing-card.featured { border: 2px solid var(--primary); background: linear-gradient(145deg, var(--bg-surface-light) 0%, var(--bg-body) 100%); box-shadow: 0 20px 40px rgba(241,84,77,0.1); }
.pricing-badge { position: absolute; top: -12px; left: 24px; background: var(--primary); color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.pricing-badge.featured-badge { background: linear-gradient(135deg, var(--primary), var(--accent-amber)); }
.pricing-card h3 { font-size: 1.5rem; margin: 24px 0 16px; }
.pricing-price { font-size: 3rem; margin: 20px 0; font-weight: 800; }
.currency { font-size: 1.5rem; color: var(--text-muted); }
.amount { color: var(--primary); }
.period { color: var(--text-muted); font-size: 1rem; }
.pricing-desc { color: var(--text-muted); margin-bottom: 32px; min-height: 60px; }
.pricing-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.pricing-features li { padding: 12px 0; color: var(--text-muted); font-size: 0.95rem; }
.pricing-features li:before { content: '✓ '; color: #10B981; font-weight: 700; margin-right: 8px; }
.btn-block { width: 100%; }

/* Panel Testimonials */
.panel-testimonials-section { padding: 80px 0; background: var(--bg-body); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 8px; padding: 32px; display: flex; flex-direction: column; transition: 0.3s; }
.testimonial-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.testimonial-stars { font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 4px; }
.testimonial-text { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.author-avatar { font-size: 2rem; }
.author-info { }
.author-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.author-title { font-size: 0.8rem; color: var(--text-muted); }

/* Panel Demo Section */
.panel-demo-section { padding: 80px 0; background: var(--bg-surface); }
.demo-container { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; background: var(--bg-body); border: 1px solid var(--border); border-radius: 12px; padding: 40px; }
.demo-browser-window { background: #0F1115; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.demo-content { min-height: 300px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a1d24 0%, #0f1115 100%); }
.demo-placeholder { text-align: center; }
.demo-loader { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 20px; }
@keyframes spin { to { transform: rotate(360deg); } }
.demo-placeholder p { color: var(--text-muted); margin-top: 20px; }

.demo-info { }
.demo-info h3 { font-size: 1.3rem; margin-bottom: 24px; }
.demo-cred { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 6px; margin-bottom: 12px; font-family: monospace; font-size: 0.9rem; }
.demo-label { font-weight: 700; color: var(--primary); }
.demo-value { color: #fff; }
.demo-note { font-size: 0.85rem; color: var(--text-muted); margin: 16px 0; }

/* Final CTA */
.panel-final-cta-section { padding: 120px 0; background: var(--bg-surface); text-align: center; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Animations */
.feature-block { opacity: 0; }
.feature-block.animated,
.pricing-card.animated,
.testimonial-card.animated { animation: slideInUp 0.6s ease-out forwards; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Panel */
@media (max-width: 1024px) {
    .nav-links ul { gap: 24px; }
    .stats-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-container { grid-template-columns: 1fr; }
    .feature-block { padding: 24px; }
    .footer-top-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 768px) {
    .nav-actions { gap: 12px; }
    .btn-sm { padding: 8px 16px; font-size: 0.85rem; }
    .lang-switch { font-size: 0.75rem; display: flex; align-items: center; gap: 6px; }
    .stats-grid-4 { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .feature-block { grid-template-columns: 1fr; gap: 40px; }
    .feature-block.feature-block-right { grid-template-columns: 1fr; }
    .footer-top-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-socials { gap: 12px; }
    .footer-socials a { width: 32px; height: 32px; font-size: 0.9rem; }
    .hero-buttons-panel { flex-direction: column; gap: 12px; }
    .btn-lg-panel { width: 100%; }
    .panel-content-mockup { font-size: 0.8rem; }
    .demo-credentials { grid-template-columns: 1fr 1fr; }
}

/* ===== PANEL PAGE CUSTOM STYLES ===== */

/* Panel Hero Buttons */
.hero-buttons-panel { display: flex; gap: 16px; margin-bottom: 60px; }
.btn-lg-panel { padding: 16px 36px; font-size: 1rem; transition: all 0.3s; }
.btn-lg-panel:hover { transform: translateY(-5px); }

/* Panel Mock-up Content */
.panel-header-mockup { display: flex; align-items: center; gap: 12px; padding: 16px; background: rgba(255,255,255,0.05); border-bottom: 1px solid var(--border); margin-bottom: 16px; border-radius: 6px; }
.ph-user-circle { width: 40px; height: 40px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.ph-text-header { }
.ph-user { font-weight: 600; color: #fff; font-size: 0.95rem; }
.ph-status { font-size: 0.8rem; color: #10B981; }

.panel-nav-mockup { display: flex; gap: 0; padding: 0 12px; border-bottom: 1px solid var(--border); }
.ph-nav-item { padding: 12px 16px; font-size: 0.85rem; color: var(--text-muted); border-bottom: 2px solid transparent; transition: 0.3s; cursor: pointer; }
.ph-nav-item.active { color: #fff; border-bottom-color: var(--primary); background: rgba(241,84,77,0.05); }

.panel-content-mockup { }
.ph-section-title { font-weight: 600; color: #fff; margin-bottom: 16px; font-size: 0.9rem; }

/* ===== CORPORATE PAGE STYLES ===== */

/* Corporate Visual Box */
.corporate-visual-box { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 500px; }
.visual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; width: 100%; height: 100%; }
.grid-item { background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.grid-1 { animation-delay: 0.1s; background: linear-gradient(135deg, rgba(0,87,255,0.15), rgba(0,0,0,0.5)); }
.grid-2 { animation-delay: 0.2s; background: linear-gradient(135deg, rgba(241,84,77,0.15), rgba(0,0,0,0.5)); }
.grid-3 { animation-delay: 0.3s; background: linear-gradient(135deg, rgba(255,184,0,0.15), rgba(0,0,0,0.5)); }
.grid-4 { animation-delay: 0.4s; background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(0,0,0,0.5)); }
.visual-accent { position: absolute; border-radius: 50%; filter: blur(60px); }
.accent-1 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(0,87,255,0.2), transparent); top: -50px; left: -50px; animation: float 8s ease-in-out infinite; }
.accent-2 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(241,84,77,0.18), transparent); bottom: -80px; right: -80px; animation: float 10s ease-in-out 2s infinite reverse; }

/* About Cards */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.about-card { padding: 36px; border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 20px 50px rgba(0,0,0,0.45); position: relative; overflow: hidden; animation: fadeInUp 0.8s ease-out forwards; opacity: 0; transition: 0.3s; }
.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }
.about-card::before { content: ''; position: absolute; inset: -30% -10%; background: radial-gradient(200px 200px at 20% 20%, rgba(255,255,255,0.09), transparent), radial-gradient(240px 240px at 80% 80%, rgba(255,255,255,0.05), transparent); opacity: 0.9; pointer-events: none; }
.about-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.18); }
.card-content { position: relative; z-index: 1; }
.about-icon { font-size: 3rem; margin-bottom: 16px; }
.about-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.about-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 60px; }
.value-item { padding: 40px; border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 20px 50px rgba(0,0,0,0.45); position: relative; overflow: hidden; animation: fadeInUp 0.8s ease-out forwards; opacity: 0; transition: 0.3s; }
.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }
.value-item::before { content: ''; position: absolute; inset: -30% -10%; background: radial-gradient(200px 200px at 20% 20%, rgba(255,255,255,0.09), transparent), radial-gradient(240px 240px at 80% 80%, rgba(255,255,255,0.05), transparent); opacity: 0.9; pointer-events: none; }
.value-item:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.18); }
.value-number { position: relative; z-index: 1; font-size: 2.5rem; font-weight: 800; color: rgba(255,255,255,0.15); margin-bottom: 12px; }
.value-item h3 { font-size: 1.4rem; margin-bottom: 14px; position: relative; z-index: 1; }
.value-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
.value-icon { font-size: 2.8rem; position: absolute; bottom: 20px; right: 20px; opacity: 0.5; }

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.team-card { padding: 24px; background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.45); position: relative; overflow: hidden; animation: fadeInUp 0.8s ease-out forwards; opacity: 0; transition: 0.3s; }
.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.16); }
.team-image { margin-bottom: 20px; }
.image-placeholder { width: 100%; aspect-ratio: 1 / 1; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: #fff; }
.blue-tone { background: linear-gradient(135deg, rgba(0,87,255,0.3), rgba(0,87,255,0.15)); }
.purple-tone { background: linear-gradient(135deg, rgba(171,92,255,0.3), rgba(171,92,255,0.15)); }
.green-tone { background: linear-gradient(135deg, rgba(16,185,129,0.3), rgba(16,185,129,0.15)); }
.team-info h3 { font-size: 1.1rem; margin-bottom: 6px; }
.team-role { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Timeline */
.timeline { position: relative; padding: 40px 0; margin-top: 60px; max-width: 900px; margin-left: auto; margin-right: auto; }
.timeline::before { content: ''; position: absolute; left: 60px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--primary) 0%, var(--primary) 50%, transparent 100%); z-index: 1; }
.timeline-item { display: flex; margin-bottom: 80px; gap: 60px; align-items: flex-start; animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-dot { width: 24px; height: 24px; background: var(--primary); border: 4px solid var(--bg-body); border-radius: 50%; box-shadow: 0 0 24px rgba(241,84,77,0.5); flex-shrink: 0; z-index: 2; margin-top: 8px; }
.timeline-content { flex: 1; padding-top: 4px; }
.timeline-year { font-size: 0.95rem; color: var(--primary); font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.timeline-content h3 { font-size: 1.3rem; margin: 0 0 12px; color: #fff; }
.timeline-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin: 0; }


/* Partners Grid */
.partners-wrapper { display: flex; gap: 60px; align-items: center; }
.partners-text { flex: 1; }
.partners-text h2 { font-size: 2.4rem; margin-bottom: 16px; }
.partners-text p { font-size: 1rem; color: var(--text-muted); max-width: 500px; }
.partners-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-item { padding: 24px; background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px dashed rgba(255,255,255,0.08); border-radius: 12px; text-align: center; font-weight: 600; color: var(--text-muted); transition: 0.3s; animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.partner-item:nth-child(1) { animation-delay: 0.1s; }
.partner-item:nth-child(2) { animation-delay: 0.2s; }
.partner-item:nth-child(3) { animation-delay: 0.3s; }
.partner-item:nth-child(4) { animation-delay: 0.4s; }
.partner-item:nth-child(5) { animation-delay: 0.5s; }
.partner-item:nth-child(6) { animation-delay: 0.6s; }
.partner-item:hover { background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); border-color: rgba(255,255,255,0.16); color: #fff; transform: translateY(-4px); }

/* Corporate Mobile Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-wrapper { flex-direction: column; gap: 40px; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { padding: 20px 0; }
    .timeline::before { left: 12px; }
    .timeline-item { gap: 30px; margin-bottom: 60px; }
    .timeline-dot { margin-top: 6px; }
    .timeline-content { padding-left: 24px; }
}

.ph-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.ph-metric { }
.ph-label { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 6px; }
.ph-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.ph-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent-blue)); border-radius: 3px; }
.ph-value { font-size: 0.9rem; font-weight: 600; color: #fff; display: block; margin-top: 6px; }

.ph-chart { height: 100px; background: linear-gradient(180deg, rgba(0,87,255,0.1), transparent); border: 1px solid var(--border); border-radius: 6px; margin-top: 16px; }

/* File Manager Demo */
.file-manager-demo { }
.file-item { }
.file-name { flex: 1; text-align: left; }
.file-size { text-align: right; font-size: 0.7rem; color: #666; min-width: 70px; }

/* FAQ Styles */
.faq-item { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { background: transparent; border: none; cursor: pointer; width: 100%; padding: 16px; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question h3 { margin: 0; font-size: 1rem; }
.faq-icon { font-size: 1.5rem; transition: 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer-container { max-height: 0; overflow: hidden; transition: max-height 0.3s; background: rgba(0,0,0,0.2); }
.faq-item.open .faq-answer-container { max-height: 500px; }
.faq-answer { padding: 16px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* Live Demo Section */
.panel-live-demo-section { padding: 100px 0; background: linear-gradient(135deg, rgba(241,84,77,0.05) 0%, rgba(0,87,255,0.05) 100%); }
.live-demo-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; padding: 60px; animation: fadeInUp 0.8s ease-out; }
.demo-header { text-align: center; margin-bottom: 40px; }
.demo-header h2 { font-size: 2.5rem; margin-bottom: 12px; }
.demo-header p { font-size: 1.1rem; color: var(--text-muted); }

.demo-credentials { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.demo-cred-box { background: var(--bg-body); border: 1px solid var(--border); border-radius: 8px; padding: 16px; }
.demo-label { font-weight: 600; color: var(--primary); font-size: 0.8rem; display: block; margin-bottom: 6px; }
.demo-value { color: #fff; font-family: monospace; font-size: 0.9rem; display: block; word-break: break-all; }
.demo-valid { color: #10B981; }

.demo-actions { display: flex; gap: 16px; justify-content: center; margin-top: 40px; }
.demo-btn { }
.demo-btn:hover { transform: translateY(-3px); }

/* Responsive Panel Styles */
@media (max-width: 1024px) {
    .demo-credentials { grid-template-columns: repeat(2, 1fr); }
    .live-demo-card { padding: 40px; }
}

@media (max-width: 768px) {
    .hero-buttons-panel { flex-direction: column; }
    .btn-lg-panel { width: 100%; }
    .demo-credentials { grid-template-columns: 1fr; }
    .ph-metrics { grid-template-columns: 1fr; }
    .demo-actions { flex-direction: column; }
    .demo-btn { width: 100%; }
}
