/* ===== LIQUID INTELLIGENCE DESIGN SYSTEM ===== */

:root {
  --vexia: #2E7D32;
  --vantis: #C5A028;
  --kora: #7C4DFF;
  --relth: #E91E63;
  --vexiacomms: #00F0FF;
  --olios: #44D7A8;
  --night: #0A0A0A;
  --bone: #F5F5F0;
  --surface: #FAFAF5;
  --surface-container: #EEEEE9;
  --surface-low: #F4F4EF;
  --on-surface: #1A1C19;
  --on-surface-variant: #464840;
  --outline-variant: #C6C7BD;
  --font: 'Manrope', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  --easing: cubic-bezier(0.2, 0, 0, 1);
  --shadow-glass: 0 4px 28px rgba(0,0,0,0.05);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-soft: 0 2px 12px rgba(0,0,0,0.03);
  --transition: all 0.25s var(--easing);
  --transition-slow: all 0.4s var(--easing);
  --glass-bg: rgba(255,255,255,0.65);
  --glass-border: rgba(255,255,255,0.85);
  --glass-blur: 24px;
  header-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--surface); color: var(--on-surface); font-family: var(--font); -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden; position:relative; }
body::after { content:''; position:fixed; inset:0; background:radial-gradient(ellipse at 50% 0%, transparent 60%, rgba(0,0,0,0.02) 100%); pointer-events:none; z-index:9999; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; font-size: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }
::selection { background: rgba(46,125,50,0.2); color: var(--on-surface); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--vexia); border-radius: 10px; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ===== BACKGROUND LAYERS ===== */
.bg-gradient-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-gradient-orbs::before { content: ''; position: absolute; top: -20%; right: -10%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(46,125,50,0.08) 0%, transparent 70%); border-radius: 50%; }
.bg-gradient-orbs::after { content: ''; position: absolute; bottom: -10%; left: -10%; width: 900px; height: 900px; background: radial-gradient(circle, rgba(124,77,255,0.06) 0%, transparent 70%); border-radius: 50%; }
.bg-gradient-orbs .orb-third { position: absolute; top: 40%; left: 60%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,160,40,0.05) 0%, transparent 70%); border-radius: 50%; }
.bg-gradient-orbs .orb-fourth { position: absolute; top: 60%; left: 30%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(233,30,99,0.04) 0%, transparent 70%); border-radius: 50%; }

.dot-grid { position: fixed; inset: 0; z-index: 0; pointer-events: none; background-image: radial-gradient(rgba(46,125,50,0.07) 1px, transparent 1px); background-size: 28px 28px; }

.noise-overlay { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.3; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"); background-repeat: repeat; background-size: 300px 300px; }

/* ===== LAYOUT ===== */
.layout { position: relative; z-index: 10; display: flex; flex-direction: column; min-height: 100vh; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding-top: 16px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; padding: 0 20px; background: rgba(255,255,255,0.72); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.88); box-shadow: var(--shadow-glass), inset 0 1px 1px rgba(255,255,255,0.9); }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 32px; height: 32px; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(46,125,50,0.2), rgba(46,125,50,0.05)); display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(46,125,50,0.1); }
.logo-icon img { width: 24px; height: 24px; object-fit: contain; }
.logo-fallback { font-size: 13px; font-weight: 700; color: var(--vexia); }
.logo-icon.sm { width: 28px; height: 28px; }
.logo-icon.sm img { width: 20px; height: 20px; }
.logo-text { display: flex; align-items: baseline; gap: 6px; }
.logo-portal { font-size: 14px; font-weight: 700; color: var(--vexia); letter-spacing: -0.02em; }
.logo-sub { font-size: 10px; color: rgba(70,72,64,0.4); letter-spacing: 0.15em; text-transform: uppercase; display: none; }
@media (min-width: 640px) { .logo-sub { display: inline; } }

.nav { display: none; align-items: center; gap: 24px; }
@media (min-width: 768px) { .nav { display: flex; } }
.nav-link { font-size: 14px; color: rgba(70,72,64,0.7); transition: color 0.2s; letter-spacing: 0.01em; }
.nav-link:hover { color: var(--vexia); }

.lang-switcher { display: none; align-items: center; gap: 4px; }
@media (min-width: 768px) { .lang-switcher { display: flex; } }
.lang-btn { padding: 4px 10px; font-size: 11px; font-weight: 500; border-radius: var(--radius-sm); color: rgba(70,72,64,0.5); transition: all 0.2s; letter-spacing: 0.05em; }
.lang-btn.active, .lang-btn:hover { color: var(--vexia); background: rgba(46,125,50,0.1); }

.menu-toggle { display: flex; align-items: center; justify-content: center; color: rgba(70,72,64,0.7); padding: 8px; }
@media (min-width: 768px) { .menu-toggle { display: none; } }

.mobile-menu { display: none; position: fixed; top: 80px; left: 24px; right: 24px; z-index: 99; background: rgba(255,255,255,0.85); backdrop-filter: blur(32px); border-radius: var(--radius-xl); padding: 20px; border: 1px solid rgba(255,255,255,0.9); box-shadow: var(--shadow-hover); flex-direction: column; gap: 12px; }
.mobile-menu.open { display: flex; }
.mobile-link { font-size: 15px; color: rgba(70,72,64,0.7); padding: 10px 0; border-bottom: 1px solid rgba(198,199,189,0.15); }
.mobile-link:hover { color: var(--vexia); }
.mobile-lang { display: flex; gap: 8px; padding-top: 8px; }
.mobile-lang .lang-btn { padding: 8px 16px; font-size: 13px; }

/* ===== MAIN ===== */
.main { flex: 1; padding-top: 104px; padding-bottom: 64px; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid rgba(198,199,189,0.1); position: relative; margin-top: 80px; }
.footer::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, transparent, rgba(46,125,50,0.02)); pointer-events: none; }
.footer-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 32px 24px; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-brand { font-size: 13px; font-weight: 700; color: var(--vexia); line-height: 1.2; }
.footer-sub { font-size: 9px; color: rgba(70,72,64,0.4); letter-spacing: 0.15em; text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; font-size: 12px; color: rgba(70,72,64,0.5); }
.footer-links a:hover { color: var(--vexia); }
.footer-copy { font-size: 10px; color: rgba(70,72,64,0.3); }

/* ===== SECTION HEADINGS ===== */
.section-heading { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(70,72,64,0.5); margin-bottom: 12px; }
.card-title { font-size: 15px; font-weight: 600; color: var(--on-surface); margin-bottom: 8px; }
.card-desc { font-size: 13px; color: rgba(70,72,64,0.6); line-height: 1.7; }

/* ===== GLASS COMPONENTS ===== */
.glass { background: rgba(255,255,255,0.72); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.88); box-shadow: var(--shadow-glass), inset 0 1px 1px rgba(255,255,255,0.9); }
.glass-strong { background: rgba(255,255,255,0.85); backdrop-filter: blur(40px); border: 1px solid rgba(255,255,255,0.92); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.glass-hover { transition: var(--transition); }
.glass-hover:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: rgba(255,255,255,0.95); }

/* ===== BADGE ===== */
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; background: rgba(46,125,50,0.1); color: var(--vexia); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vexia); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; transition: all 0.2s; }
.btn-primary { background: var(--vexia); color: white; box-shadow: 0 2px 8px rgba(46,125,50,0.2); }
.btn-primary:hover { background: rgba(46,125,50,0.9); box-shadow: 0 4px 16px rgba(46,125,50,0.3); }
.btn-outline { border: 1px solid rgba(198,199,189,0.3); color: rgba(70,72,64,0.7); }
.btn-outline:hover { border-color: rgba(46,125,50,0.3); color: var(--vexia); }

/* ===== SITE LOGIN ===== */
.login-page { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 104px); position:relative; }
.login-page::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 40%, rgba(46,125,50,0.04) 0%, transparent 70%); pointer-events:none; }
.login-overlay { display: flex; align-items: center; justify-content: center; padding: 24px; width: 100%; position:relative; z-index:1; }
.login-card { max-width: 400px; width: 100%; padding: 48px 36px; border-radius: var(--radius-2xl); text-align: center; animation: fadeIn 0.6s var(--easing); box-shadow: var(--shadow-glass); }
.login-card h2 { font-size: 24px; font-weight: 700; color: var(--on-surface); margin-bottom: 4px; }
.login-card .sub { font-size: 14px; color: var(--on-surface-variant); margin-bottom: 32px; }
.login-input { width: 100%; padding: 14px 18px; border-radius: var(--radius-md); border: 1px solid rgba(198,199,189,0.3); background: rgba(255,255,255,0.5); font-size: 14px; color: var(--on-surface); outline: none; transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 16px; }
.login-input:focus { border-color: var(--vexia); box-shadow: 0 0 0 3px rgba(46,125,50,0.1); }
.login-card .login-error { display: none; margin-bottom: 8px; }
.login-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 36px; }
.login-logo { width: 48px; height: 48px; object-fit: contain; }
.login-title { display: flex; flex-direction: column; align-items: flex-start; }
.login-portal { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-surface); line-height: 1; }
.login-sub { font-size: 15px; font-weight: 600; color: var(--on-surface-variant); line-height: 1.3; }

/* ===== PARTNERS PAGE ===== */
.partners-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 64px; }
@media (min-width: 640px) { .partners-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .partners-grid { grid-template-columns: 1fr 1fr 1fr; } }
.partner-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; border-radius: var(--radius-card); transition: var(--transition); }
.partner-card:hover { transform: translateY(-4px); }
.partner-badge { width: 64px; height: 64px; border-radius: var(--radius-pill); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-weight: 800; }

/* ===== PAGE HEADER ===== */
.page-hero { margin-bottom: 64px; padding-top: 128px; }
.page-hero h1 { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; color: var(--on-surface); line-height: 1.1; margin-bottom: 16px; }
@media (min-width: 768px) { .page-hero h1 { font-size: 48px; } }
.page-hero p { font-size: 16px; color: rgba(70,72,64,0.6); max-width: 560px; line-height: 1.7; }
@media (min-width: 768px) { .page-hero p { font-size: 18px; } }

/* ===== TAB NAV ===== */
.tab-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; padding: 12px 16px 16px; border-bottom: 1px solid rgba(198,199,189,0.1); position: sticky; top: 120px; z-index: 20; background: rgba(255,255,255,0.72); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: var(--radius-full); box-shadow: var(--shadow-glass), inset 0 1px 1px rgba(255,255,255,0.9); }
.tab-bar::-webkit-scrollbar { height: 0; }
.tab-btn { padding: 10px 20px; font-size: 13px; font-weight: 500; border-radius: var(--radius-md); transition: all 0.2s; color: rgba(70,72,64,0.6); background: rgba(255,255,255,0.6); border: 1px solid rgba(198,199,189,0.2); white-space: nowrap; }
.tab-btn:hover { background: white; color: var(--vexia); }
.tab-btn.active { background: var(--vexia); color: white; box-shadow: 0 4px 16px rgba(46,125,50,0.25); }

/* ===== IDENTITY SECTION ===== */
.section-identity { position: relative; overflow: hidden; }
.section-identity .orb-bg { position: absolute; top: -80px; right: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(46,125,50,0.05), transparent 70%); border-radius: 50%; pointer-events: none; }
.section-identity .orb-bg2 { position: absolute; bottom: -40px; left: -40px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(124,77,255,0.03), transparent 70%); border-radius: 50%; pointer-events: none; }
.identity-grid { display: flex; flex-direction: column; gap: 32px; position: relative; }
@media (min-width: 768px) { .identity-grid { flex-direction: row; gap: 56px; } }
.identity-brand { flex: 0 0 auto; width: 100%; display: flex; flex-direction: column; align-items: center; padding: 32px; border-radius: var(--radius-xl); background: rgba(46,125,50,0.04); border: 1px solid rgba(46,125,50,0.1); }
@media (min-width: 768px) { .identity-brand { width: 33.333%; } }
.identity-logo { width: 100px; height: 100px; border-radius: var(--radius-lg); background: var(--vexia); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 12px 32px rgba(46,125,50,0.25); }
.identity-logo span { color: white; font-size: 36px; font-weight: 700; }
.identity-brand h2 { font-size: 20px; font-weight: 700; color: var(--on-surface); text-align: center; }
.identity-brand p { font-size: 14px; color: rgba(70,72,64,0.6); text-align: center; margin-top: 8px; line-height: 1.6; }
.identity-brand .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--vexia); margin-top: 24px; }
.identity-specs { flex: 1; }
.identity-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.identity-specs-grid .spec { padding: 16px; border-radius: var(--radius-md); border: 1px solid rgba(198,199,189,0.1); }
.identity-specs-grid .spec span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(70,72,64,0.5); display: block; margin-bottom: 4px; }
.identity-specs-grid .spec p { font-size: 15px; font-weight: 600; color: var(--on-surface); }

/* ===== COLORS SECTION ===== */
.color-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
@media (min-width: 540px) { .color-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .color-grid { grid-template-columns: 1fr 1fr 1fr; } }
.color-card { border-radius: var(--radius-xl); overflow: hidden; transition: all 0.3s; }
.color-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.color-swatch { height: 128px; display: flex; align-items: flex-end; padding: 20px; }
.color-swatch span { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: white; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.color-info { padding: 24px; }
.color-info h3 { font-size: 18px; font-weight: 700; color: var(--on-surface); margin-bottom: 8px; }
.color-info p.desc { font-size: 13px; color: rgba(70,72,64,0.6); line-height: 1.6; margin-bottom: 16px; }
.color-info .meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-top: 16px; border-top: 1px solid rgba(198,199,189,0.1); }
.color-info .meta span { font-size: 12px; color: rgba(70,72,64,0.5); }
.color-info .meta span.full { grid-column: 1 / -1; }

.neutral-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
@media (min-width: 540px) { .neutral-grid { grid-template-columns: 1fr 1fr 1fr; } }
.neutral-card { border-radius: var(--radius-lg); overflow: hidden; }
.neutral-swatch { height: 96px; display: flex; align-items: flex-end; padding: 16px; }
.neutral-info { padding: 16px; }
.neutral-info h4 { font-size: 14px; font-weight: 600; color: var(--on-surface); }

/* ===== TYPOGRAPHY SECTION ===== */
.typo-block { margin-bottom: 40px; }
.typo-block:not(:last-child) { border-bottom: 1px solid rgba(198,199,189,0.1); padding-bottom: 40px; }
.typo-display { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; color: var(--on-surface); margin-bottom: 8px; }
@media (min-width: 768px) { .typo-display { font-size: 64px; } }
.typo-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
@media (min-width: 540px) { .typo-grid { grid-template-columns: 1fr 1fr 1fr; } }
.typo-card { padding: 20px; border-radius: var(--radius-md); }
.typo-card span.label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(70,72,64,0.5); display: block; margin-bottom: 8px; }
.typo-card p.value { font-size: 15px; font-weight: 600; color: var(--on-surface); }
.typo-demo { padding: 24px; border-radius: var(--radius-lg); margin-top: 12px; }
.typo-demo .text { font-size: 18px; line-height: 1.7; color: var(--on-surface); }
@media (min-width: 768px) { .typo-demo .text { font-size: 20px; } }
.typo-demo .meta { font-size: 12px; color: rgba(70,72,64,0.4); margin-top: 8px; }
.typo-mono { padding: 24px; border-radius: var(--radius-lg); border: 1px solid rgba(198,199,189,0.1); margin-top: 12px; letter-spacing: 0.1em; font-weight: 500; }
.typo-mono .text { font-size: 15px; color: rgba(70,72,64,0.7); }
@media (min-width: 768px) { .typo-mono .text { font-size: 18px; } }

/* ===== DOWNLOADS SECTION ===== */
.download-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
@media (min-width: 540px) { .download-grid { grid-template-columns: 1fr 1fr; } }
.download-group { padding: 24px; border-radius: var(--radius-xl); border: 1px solid rgba(198,199,189,0.1); }
.download-group h3 { font-size: 14px; font-weight: 600; color: var(--on-surface); margin-bottom: 16px; }
.download-item { display: flex; align-items: center; gap: 16px; padding: 12px; border-radius: var(--radius-md); transition: all 0.2s; cursor: pointer; border: 1px solid transparent; }
.download-item:hover { background: rgba(46,125,50,0.05); border-color: rgba(46,125,50,0.1); }
.download-icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: rgba(46,125,50,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.download-icon svg { width: 20px; height: 20px; color: var(--vexia); }
.download-item .info { flex: 1; min-width: 0; }
.download-item .info .name { font-size: 13px; font-weight: 500; color: var(--on-surface); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.download-item .info .sub { font-size: 11px; color: rgba(70,72,64,0.5); }
.download-item .dl-label { font-size: 11px; font-weight: 600; color: var(--vexia); opacity: 0; transition: opacity 0.2s; }
.download-item:hover .dl-label { opacity: 1; }

/* ===== VISUAL LOGO DOWNLOADS ===== */
.vis-logo-grid { display: flex; flex-direction: column; gap: 32px; margin-top: 32px; }
.vis-logo-group { padding: 24px; border-radius: var(--radius-xl); }
.vis-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 540px) { .vis-logos { grid-template-columns: 1fr 1fr 1fr; } }
.vis-logo-card { padding: 20px; border-radius: var(--radius-lg); text-align: center; cursor: pointer; transition: all 0.2s; display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; color: inherit; text-decoration: none; }
.vis-logo-card:hover { border-color: rgba(46,125,50,0.2); background: rgba(46,125,50,0.04); box-shadow: var(--shadow-hover); }
.vis-logo-card::after { content: '⬇'; position: absolute; top: 8px; right: 8px; font-size: 12px; opacity: 0; transition: opacity 0.2s; color: var(--vexia); }
.vis-logo-card:hover::after { opacity: 1; }
.vis-logo-img { width: 100%; height: 120px; display: flex; align-items: center; justify-content: center; padding: 12px; }
.vis-logo-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.2s; }
.vis-logo-card:hover .vis-logo-img img { transform: scale(1.05); }
.vis-logo-name { font-size: 12px; font-weight: 600; color: var(--on-surface); }

/* ===== LOGO USAGE SECTION ===== */
.section-logo-usage { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .section-logo-usage { grid-template-columns: 1fr 1fr; } }
.usage-card { padding: 32px 40px; border-radius: var(--radius-2xl); transition: box-shadow 0.2s; border: 1px solid rgba(198,199,189,0.15); }
@media (min-width: 768px) { .usage-card { padding: 40px; } }
.usage-card:hover { box-shadow: var(--shadow-hover); }
.usage-card.do { border-color: rgba(46,125,50,0.2); background: rgba(46,125,50,0.03); }
.usage-card.dont { border-color: rgba(233,30,99,0.2); background: rgba(233,30,99,0.03); }
.usage-header { width: 48px; height: 48px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.usage-header.do { background: rgba(46,125,50,0.1); }
.usage-header.dont { background: rgba(233,30,99,0.1); }
.usage-header svg { width: 24px; height: 24px; }
.usage-header.do svg { color: var(--vexia); }
.usage-header.dont svg { color: var(--relth); }
.usage-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.usage-card.do h3 { color: var(--vexia); }
.usage-card.dont h3 { color: var(--relth); }
.usage-list { display: flex; flex-direction: column; gap: 16px; }
.usage-item { display: flex; align-items: flex-start; gap: 16px; }
.usage-bullet { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.usage-bullet.do { background: rgba(46,125,50,0.1); }
.usage-bullet.dont { background: rgba(233,30,99,0.1); }
.usage-bullet svg { width: 14px; height: 14px; }
.usage-bullet.do svg { color: var(--vexia); }
.usage-bullet.dont svg { color: var(--relth); }
.usage-item .text { font-size: 15px; color: rgba(70,72,64,0.7); line-height: 1.6; }

/* DO/DONT Visual Examples */
.logo-examples { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(198,199,189,0.15); }
.logo-examples h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(70,72,64,0.5); margin-bottom: 16px; }
.logo-example-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 540px) { .logo-example-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .logo-example-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.logo-example { padding: 20px; border-radius: var(--radius-md); text-align: center; min-height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(198,199,189,0.15); }
.logo-example img { width: 80px; height: 60px; object-fit: contain; }
.logo-example .label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.logo-example.do-example { background: rgba(46,125,50,0.04); border-color: rgba(46,125,50,0.15); }
.logo-example.do-example .label { color: var(--vexia); }
.logo-example.dont-example { background: rgba(233,30,99,0.04); border-color: rgba(233,30,99,0.15); }
.logo-example.dont-example .label { color: var(--relth); }
.logo-example.distorted img { transform: scale(1.4, 0.65) skewX(-8deg); }
.logo-example.wrong-color img { filter: hue-rotate(200deg) saturate(0.6) brightness(0.8); }
.logo-example.low-contrast { background: #1a3d1c; }
.logo-example.low-contrast img { opacity: 0.3; }
.logo-example.low-contrast .label { color: rgba(255,255,255,0.3); }

/* ===== ECOSYSTEM SECTION ===== */
.eco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 540px) { .eco-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 768px) { .eco-grid { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; } }
.eco-card { padding: 24px; border-radius: var(--radius-xl); text-align: center; transition: all 0.3s; }
.eco-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.eco-badge { width: 80px; height: 80px; border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.eco-badge span { color: white; font-size: 24px; font-weight: 700; }
.eco-badge img { max-height: 42px; max-width: 52px; width: auto; height: auto; object-fit: contain; opacity: 0.85; transition: opacity 0.2s, transform 0.2s; }
.eco-card:hover .eco-badge img { opacity: 1; transform: scale(1.05); }
.eco-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.eco-card p { font-size: 12px; color: rgba(70,72,64,0.6); line-height: 1.6; }

/* ===== TOKENS SECTION ===== */
.token-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
@media (min-width: 540px) { .token-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.token-card { padding: 20px; border-radius: var(--radius-md); }
.token-card .label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(70,72,64,0.5); display: block; margin-bottom: 8px; }
.token-card .value { font-size: 14px; font-weight: 600; color: var(--on-surface); word-break: break-all; }

/* ===== TONE SECTION ===== */
.tone-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 540px) { .tone-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .tone-grid { grid-template-columns: 1fr 1fr 1fr; } }
.tone-card { padding: 24px; border-radius: var(--radius-xl); transition: all 0.3s; }
.tone-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.tone-dot-box { width: 32px; height: 32px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: linear-gradient(135deg, rgba(46,125,50,0.2), transparent); }
.tone-dot { width: 10px; height: 10px; border-radius: 50%; }
.tone-card h3 { font-size: 15px; font-weight: 700; color: var(--on-surface); text-transform: capitalize; margin-bottom: 8px; }
.tone-card p { font-size: 13px; color: rgba(70,72,64,0.6); line-height: 1.7; }

/* ===== SPEC GRID (product detail) ===== */
.spec-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 640px) { .spec-grid { grid-template-columns: 1fr 1fr; } }
.spec-item { display: flex; flex-direction: column; gap: 2px; padding: 10px 14px; background: rgba(255,255,255,0.5); border-radius: var(--radius-md); border: 1px solid rgba(198,199,189,0.08); }
.spec-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(70,72,64,0.4); }
.spec-value { font-size: 14px; font-weight: 500; color: var(--on-surface); word-break: break-word; }

/* ===== CONTACT PAGE ===== */
.contact-card { padding: 40px 32px; border-radius: var(--radius-2xl); }
@media (min-width: 768px) { .contact-card { padding: 56px; } }
.contact-grid { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 640px) { .contact-grid { flex-direction: row; } }
.contact-items { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; align-items: center; gap: 16px; }
.contact-icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: rgba(46,125,50,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; color: var(--vexia); }
.contact-row .label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(70,72,64,0.5); }
.contact-row .value { font-size: 14px; font-weight: 500; color: var(--on-surface); }
.contact-qr { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; padding: 16px; border-radius: var(--radius-md); background: rgba(46,125,50,0.05); border: 1px solid rgba(46,125,50,0.1); }
.contact-qr img { width: 112px; height: 112px; object-fit: contain; margin-bottom: 8px; }
.contact-qr span { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(70,72,64,0.4); }

/* ===== ACCESS MANAGER ===== */
.access-card { max-width: 420px; margin: 0 auto; padding: 48px 36px; border-radius: var(--radius-2xl); text-align: center; box-shadow: var(--shadow-glass); animation: fadeIn 0.5s var(--easing); }
.access-card h2 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.access-card .sub { font-size: 14px; color: rgba(70,72,64,0.6); margin-bottom: 32px; }
.access-lock { width: 48px; height: 48px; border-radius: var(--radius-lg); background: rgba(46,125,50,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.access-input { width: 100%; padding: 14px 18px; border-radius: var(--radius-md); border: 1px solid rgba(198,199,189,0.3); background: rgba(255,255,255,0.5); font-size: 14px; color: var(--on-surface); outline: none; transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 16px; }
.access-input:focus { border-color: var(--vexia); box-shadow: 0 0 0 3px rgba(46,125,50,0.1); }
.access-error { font-size: 12px; color: var(--relth); margin-top: 8px; display: none; }
.access-success { font-size: 12px; color: var(--vexia); margin-top: 8px; }

.access-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; padding-top: 128px; }
.access-header h2 { font-size: 24px; font-weight: 700; }
.access-header .sub { font-size: 14px; color: rgba(70,72,64,0.6); }
.btn-logout { padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--on-surface-variant); border: 1px solid rgba(198,199,189,0.3); border-radius: var(--radius-sm); transition: all 0.2s; background: transparent; cursor: pointer; }
.btn-logout:hover { color: var(--relth); border-color: var(--relth); }

.access-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
@media (min-width: 640px) { .access-stats { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.access-stat { padding: 20px; border-radius: var(--radius-lg); text-align: center; }
.access-stat .num { font-size: 28px; font-weight: 700; color: var(--vexia); }
.access-stat .label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(70,72,64,0.5); margin-top: 4px; }

.access-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.access-panel { animation: fadeIn 0.3s ease-out; }

/* Token Generator */
.token-generator { padding: 32px; border-radius: var(--radius-xl); margin-bottom: 24px; }
.token-gen-header { margin-bottom: 20px; }
.token-gen-body { display: flex; flex-direction: column; gap: 16px; }
.token-output-wrap { position: relative; display: flex; }
.token-output { width: 100%; border: none; background: rgba(0,0,0,0.03); padding: 18px 52px 18px 18px; border-radius: 12px; font-family: 'Courier New', monospace; font-size: 15px; font-weight: 600; letter-spacing: 0.08em; color: var(--on-surface); outline: none; cursor: pointer; }
.token-output:focus { box-shadow: 0 0 0 2px rgba(46,125,50,0.2); }
.token-regen { position: absolute; right: 4px; top: 4px; bottom: 4px; width: 44px; border: none; background: rgba(46,125,50,0.08); border-radius: 10px; color: var(--vexia); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.token-regen:hover { background: rgba(46,125,50,0.16); }
.token-actions { display: flex; gap: 12px; }
.token-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(70,72,64,0.4); justify-content: center; }
.token-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(70,72,64,0.3); }

.token-list { padding: 24px; border-radius: var(--radius-xl); }
.token-list-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.token-empty { text-align: center; padding: 32px; color: rgba(70,72,64,0.4); font-size: 14px; }
.token-items { display: flex; flex-direction: column; gap: 8px; }
.token-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: var(--radius-md); font-size: 13px; border: 1px solid rgba(198,199,189,0.1); transition: background 0.15s; }
.token-item:hover { background: rgba(46,125,50,0.03); }
.token-item code { font-family: 'Courier New', monospace; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; color: var(--on-surface); flex: 1; word-break: break-all; }
.token-item .token-date { font-size: 11px; color: rgba(70,72,64,0.4); white-space: nowrap; }
.token-item .token-status { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 2px 8px; border-radius: var(--radius-full); }
.token-item.token-active .token-status { background: rgba(46,125,50,0.1); color: var(--vexia); }
.token-item.token-expired .token-status { background: rgba(233,30,99,0.1); color: var(--relth); }
.token-revoke { width: 28px; height: 28px; border-radius: var(--radius-sm); background: rgba(233,30,99,0.08); color: var(--relth); border: none; font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.15s; flex-shrink: 0; }
.token-revoke:hover { background: rgba(233,30,99,0.2); }

/* Audit Panel */
.audit-card { padding: 24px; border-radius: var(--radius-xl); }
.audit-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.audit-items { display: flex; flex-direction: column; gap: 6px; }
.audit-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 12px; border: 1px solid rgba(198,199,189,0.06); }
.audit-event { display: flex; align-items: center; gap: 6px; font-weight: 500; min-width: 140px; }
.audit-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--vexia); flex-shrink: 0; }
.audit-ts { color: rgba(70,72,64,0.4); font-size: 11px; font-family: monospace; min-width: 140px; }
.audit-detail { color: rgba(70,72,64,0.5); font-size: 11px; flex: 1; }
@media (max-width: 640px) { .audit-item { flex-wrap: wrap; gap: 4px; } .audit-event { min-width: auto; } .audit-ts { min-width: auto; } }

/* Settings Panel */
.settings-card { padding: 32px; border-radius: var(--radius-xl); display: flex; flex-direction: column; gap: 32px; }
.settings-section h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.settings-form { display: flex; flex-direction: column; gap: 12px; max-width: 400px; }
.settings-policies h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.policy-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 13px; color: rgba(70,72,64,0.6); }

/* ===== PARTNER PORTAL ===== */
.partner-portal-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; padding: 12px 16px 16px; border-bottom: 1px solid rgba(198,199,189,0.1); position: sticky; top: 120px; z-index: 20; }
.partner-portal-tabs .tab-btn { padding: 10px 20px; font-size: 13px; font-weight: 500; border-radius: var(--radius-md); transition: all 0.2s; color: rgba(70,72,64,0.6); background: transparent; border: 1px solid rgba(198,199,189,0.2); white-space: nowrap; cursor: pointer; }
.partner-portal-tabs .tab-btn:hover { background: rgba(255,255,255,0.5); color: var(--vexia); }
.partner-portal-tabs .tab-btn.active { background: var(--vexia); color: white; box-shadow: 0 4px 16px rgba(46,125,50,0.25); }
.portal-section { display: none; animation: fadeIn 0.3s ease-out; }
.portal-section.active { display: block; }
.empty-catalog { text-align:center; padding:80px 20px; color:rgba(70,72,64,0.5); }
.empty-catalog h2 { font-size:20px; font-weight:600; margin:16px 0 8px; color:rgba(70,72,64,0.7); }
.empty-catalog p { font-size:14px; margin:0; }

/* Product Catalog */
.catalog-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .catalog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .catalog-grid { grid-template-columns: 1fr 1fr 1fr; } }
.prod-card { padding: 24px; border-radius: var(--radius-xl); border: 1px solid rgba(198,199,189,0.1); transition: all 0.25s; }
.prod-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.prod-brand { display: inline-block; padding: 2px 10px; border-radius: var(--radius-full); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.prod-name { font-size: 18px; font-weight: 700; color: var(--on-surface); margin-bottom: 4px; }
.prod-category { font-size: 11px; color: rgba(70,72,64,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.prod-desc { font-size: 13px; color: rgba(70,72,64,0.6); line-height: 1.6; margin-bottom: 16px; }
.prod-specs { display: flex; flex-direction: column; gap: 4px; }
.prod-spec { font-size: 12px; color: rgba(70,72,64,0.5); display: flex; align-items: center; gap: 6px; }
.prod-spec::before { content: "✓"; color: var(--vexia); font-weight: 700; }

.catalog-filters { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.catalog-filters select { padding: 10px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(198,199,189,0.3); background: rgba(255,255,255,0.5); font-size: 13px; outline: none; min-width: 140px; }
.catalog-filters select:focus { border-color: var(--vexia); }

/* Marketing Assets */
.marketing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 640px) { .marketing-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1024px) { .marketing-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.ma-card { padding: 20px; border-radius: var(--radius-lg); border: 1px solid rgba(198,199,189,0.1); transition: all 0.2s; }
.ma-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.ma-type { display: inline-block; padding: 2px 8px; border-radius: var(--radius-full); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.ma-type.banner { background: rgba(46,125,50,0.1); color: var(--vexia); }
.ma-type.copy { background: rgba(124,77,255,0.1); color: var(--kora); }
.ma-type.flyer { background: rgba(197,160,40,0.1); color: var(--vantis); }
.ma-type.social { background: rgba(0,240,255,0.1); color: #00b8c7; }
.ma-type.video { background: rgba(233,30,99,0.1); color: var(--relth); }
.ma-title { font-size: 14px; font-weight: 600; color: var(--on-surface); margin-bottom: 4px; }
.ma-desc { font-size: 12px; color: rgba(70,72,64,0.5); margin-bottom: 16px; }
.ma-dl { font-size: 12px; font-weight: 600; color: var(--vexia); display: flex; align-items: center; gap: 6px; }

.marketing-filters { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.marketing-filters select { padding: 10px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(198,199,189,0.3); background: rgba(255,255,255,0.5); font-size: 13px; outline: none; min-width: 140px; }
.marketing-filters select:focus { border-color: var(--vexia); }

/* Partner Portal Cards (login grid) */
.portal-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .portal-grid { grid-template-columns: 1fr 1fr 1fr; } }
.portal-card { padding: 32px 24px; border-radius: var(--radius-xl); text-align: center; transition: all 0.25s; cursor: pointer; border: 1px solid rgba(198,199,189,0.1); background: rgba(255,255,255,0.6); }
.portal-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: rgba(46,125,50,0.2); }
.portal-icon { width: 48px; height: 48px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.portal-icon svg { width: 24px; height: 24px; color: white; }
.portal-card h3 { font-size: 16px; font-weight: 700; color: var(--on-surface); margin-bottom: 8px; }
.portal-card p { font-size: 13px; color: rgba(70,72,64,0.5); line-height: 1.6; }

/* Partner Login */
.partner-login-card { max-width: 400px; margin: 0 auto; padding: 40px 32px; border-radius: var(--radius-2xl); text-align: center; box-shadow: var(--shadow-glass); }
.partner-login-card .back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(70,72,64,0.4); margin-bottom: 24px; cursor: pointer; }
.partner-login-card .back-link:hover { color: var(--vexia); }

/* Partner Dashboard */
.partner-dash { animation: fadeIn 0.3s ease-out; }
.partner-dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; padding: 45px 24px 24px; margin-top: 100px; border-radius: var(--radius-xl); }
.partner-dash-header h2 { font-size: 22px; font-weight: 700; }
.partner-dash-header .sub { font-size: 13px; color: rgba(70,72,64,0.5); }
.partner-dash-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
.partner-activity { margin-top: 8px; }
@media (min-width: 640px) { .partner-dash-grid { grid-template-columns: 1fr 1fr; } }
.partner-module { padding: 32px 24px; border-radius: var(--radius-xl); text-align: center; border: 1px solid rgba(198,199,189,0.1); transition: all 0.2s; cursor: pointer; }
.partner-module:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.partner-module .pm-icon { width: 40px; height: 40px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.partner-module .pm-icon svg { width: 20px; height: 20px; }
.partner-module h3 { font-size: 15px; font-weight: 600; color: var(--on-surface); margin-bottom: 8px; }
.partner-module p { font-size: 12px; color: rgba(70,72,64,0.5); line-height: 1.6; }

/* Partner Admin (inside Access Manager) */
.partner-admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.partner-admin-table th { text-align: left; padding: 12px 16px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(70,72,64,0.5); border-bottom: 1px solid rgba(198,199,189,0.1); }
.partner-admin-table td { padding: 12px 16px; border-bottom: 1px solid rgba(198,199,189,0.06); }
.partner-admin-table tr:hover td { background: rgba(46,125,50,0.03); }
.partner-admin-table .badge-type { display: inline-block; padding: 2px 8px; border-radius: var(--radius-full); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.partner-admin-table .badge-type.proveedores { background: rgba(46,125,50,0.1); color: var(--vexia); }
.partner-admin-table .badge-type.reventa { background: rgba(124,77,255,0.1); color: var(--kora); }
.partner-admin-table .badge-type.acompanamiento { background: rgba(197,160,40,0.1); color: var(--vantis); }
.partner-admin-table .btn-delete { padding: 4px 12px; font-size: 11px; font-weight: 600; color: var(--relth); border: 1px solid rgba(233,30,99,0.2); border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; background: transparent; }
.partner-admin-table .btn-delete:hover { background: rgba(233,30,99,0.08); }

.partner-form-wrap { max-width: 400px; margin: 0 auto; padding: 32px; border-radius: var(--radius-xl); }
.partner-form-wrap h3 { font-size: 18px; font-weight: 700; margin-bottom: 24px; text-align: center; }
.partner-form { display: flex; flex-direction: column; gap: 16px; }
.partner-form label { font-size: 12px; font-weight: 500; color: rgba(70,72,64,0.6); }
.partner-form select, .partner-form input { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(198,199,189,0.3); background: rgba(255,255,255,0.5); font-size: 13px; outline: none; }
.partner-form select:focus, .partner-form input:focus { border-color: var(--vexia); }
.partner-form .form-actions { display: flex; gap: 12px; justify-content: center; }

/* ===== SPACING ===== */
.mb-16 { margin-bottom: 64px; }
.mb-12 { margin-bottom: 48px; }
.mb-10 { margin-bottom: 40px; }
.mb-8 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 12px; }
.mt-8 { margin-top: 32px; }
.mt-6 { margin-top: 24px; }

/* ===== PASSWORD GENERATOR ===== */
.pwgen-display { display:flex; gap:8px; margin-bottom:28px; }
.pwgen-output-wrap { flex:1; display:flex; position:relative; }
.pwgen-output-wrap input { width:100%; border:none; background:rgba(0,0,0,0.03); padding:16px 52px 16px 16px; border-radius:12px; font-family:Manrope,sans-serif; font-size:18px; font-weight:600; letter-spacing:0.05em; color:var(--on-surface); outline:none; cursor:pointer; }
.pwgen-output-wrap input:focus { box-shadow:0 0 0 2px rgba(46,125,50,0.2); }
.pwgen-regen { position:absolute; right:4px; top:4px; bottom:4px; width:44px; border:none; background:rgba(46,125,50,0.08); border-radius:10px; color:var(--vexia); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background 0.2s; }
.pwgen-regen:hover { background:rgba(46,125,50,0.16); }
.pwgen-options { display:flex; flex-direction:column; gap:16px; }
.pwgen-row { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px; }
.pwgen-row label { font-size:14px; font-weight:500; color:var(--on-surface); }
.pwgen-row input[type="range"] { accent-color:var(--vexia); cursor:pointer; }
.pwgen-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.pwgen-check { display:flex; align-items:center; gap:10px; font-size:14px; font-weight:500; color:var(--on-surface); cursor:pointer; padding:10px 14px; border-radius:12px; background:rgba(0,0,0,0.02); border:1px solid rgba(0,0,0,0.04); transition:background 0.15s, border-color 0.15s; }
.pwgen-check:hover { background:rgba(46,125,50,0.04); border-color:rgba(46,125,50,0.12); }
.pwgen-check input[type="checkbox"] { width:18px; height:18px; accent-color:var(--vexia); cursor:pointer; flex-shrink:0; }
.pwgen-strength { display:flex; align-items:center; gap:12px; padding-top:4px; }
.pwgen-bar { flex:1; height:6px; background:rgba(0,0,0,0.06); border-radius:999px; overflow:hidden; }
.pwgen-fill { height:100%; border-radius:999px; transition:width 0.3s ease, background 0.3s ease; }
.pwgen-label { font-size:13px; font-weight:600; min-width:48px; text-align:right; }
.pwgen-history-wrap { animation:fadeIn 0.3s ease-out; }
.pwgen-history-item { display:flex; align-items:center; gap:12px; padding:10px 0; border-bottom:1px solid rgba(0,0,0,0.04); }
.pwgen-history-item:last-child { border-bottom:none; }
.pwgen-h-num { font-size:12px; font-weight:600; color:var(--on-surface-variant); min-width:24px; }
.pwgen-history-item code { font-family:Manrope,sans-serif; font-size:14px; font-weight:500; letter-spacing:0.03em; color:var(--on-surface); word-break:break-all; }

/* ===== FADE IN ANIMATIONS ===== */
.fade-in { animation: fadeIn 0.5s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTION CONTAINER ===== */
.section-container { margin-bottom: 24px; scroll-margin-top: 140px; background: rgba(255,255,255,0.72); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.88); border-radius: var(--radius-2xl); padding: 24px; box-shadow: var(--shadow-glass), inset 0 1px 1px rgba(255,255,255,0.9); }
@media (min-width: 768px) { .section-container { margin-bottom: 32px; padding: 32px; } }

/* ===== PRODUCT/SERVICE DETAIL ===== */
.detail-topbar { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; margin-bottom:24px; padding-top:128px; }
.detail-back { color:var(--vexia); font-size:13px; font-weight:600; display:inline-flex; align-items:center; gap:4px; text-decoration:none; transition:opacity 0.2s; }
.detail-back:hover { opacity:0.7; }
.detail-actions { display:flex; gap:8px; }
.detail-hero { margin-bottom:24px; background:rgba(255,255,255,0.72); backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px); border:1px solid rgba(255,255,255,0.88); border-radius:var(--radius-2xl); padding:24px; box-shadow:var(--shadow-glass), inset 0 1px 1px rgba(255,255,255,0.9); display:flex; flex-wrap:wrap; gap:24px; align-items:flex-start; }
@media (min-width:768px) { .detail-hero { padding:32px; } }
.detail-hero-info { flex:1; min-width:240px; }
.detail-hero-img { flex:0 0 200px; border-radius:var(--radius-lg); overflow:hidden; }
.detail-hero-img img { max-width:100%; height:auto; display:block; border-radius:var(--radius-lg); }
.detail-badges { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px; }
.detail-badge { padding:4px 12px; border-radius:var(--radius-full); font-size:11px; font-weight:700; display:inline-block; }
.detail-badge-light { background:rgba(70,72,64,0.05); color:rgba(70,72,64,0.6); }
.detail-title { font-size:28px; font-weight:700; margin-bottom:12px; color:var(--on-surface); line-height:1.2; }
.detail-tags { display:flex; flex-wrap:wrap; gap:4px; margin-bottom:8px; }
.detail-tag { display:inline-block; padding:2px 8px; background:rgba(46,125,50,0.06); border-radius:var(--radius-sm); font-size:11px; color:rgba(70,72,64,0.6); }
.detail-card { margin-bottom:20px; background:rgba(255,255,255,0.72); backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px); border:1px solid rgba(255,255,255,0.88); border-radius:var(--radius-2xl); padding:20px 24px; box-shadow:var(--shadow-glass), inset 0 1px 1px rgba(255,255,255,0.9); }
@media (min-width:768px) { .detail-card { padding:24px 32px; } }
.detail-card-header { font-size:15px; font-weight:700; color:var(--vexia); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.detail-desc { font-size:14px; color:rgba(70,72,64,0.7); line-height:1.7; }
.detail-subhead { font-size:14px; font-weight:600; margin:16px 0 12px; color:#3880AA; }
.detail-specs-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:6px; }
.detail-specs-list li { padding:10px 14px; background:rgba(46,125,50,0.04); border-radius:var(--radius-md); font-size:13px; color:rgba(70,72,64,0.7); display:flex; align-items:center; gap:10px; }
.check-mark { color:var(--vexia); font-weight:700; flex-shrink:0; }
