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

:root {
  --color-bg: #fafaf8;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-secondary: #6b6b6b;
  --color-accent: #2563eb;
  --color-accent-light: #dbeafe;
  --color-crm: #7c3aed;
  --color-erp: #0891b2;
  --color-booking: #059669;
  --color-mall: #e11d48;
  --color-wp: #0073aa;
  --color-ai: #8b5cf6;
  --color-agent: #f97316;
  --color-border: #e8e8e4;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-sans: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-weight: 700; font-size: 18px;
  color: var(--color-text); text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; color: var(--color-text-secondary);
  text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-text); }
.nav-cta.nav-cta {
  background: var(--color-text); color: #fff;
  padding: 8px 20px; border-radius: 100px;
  font-size: 13px;
}
.nav-cta.nav-cta:hover { background: #333; color: #fff; }
.lang-toggle {
  background: none; border: 1.5px solid var(--color-border);
  padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--color-text);
  cursor: pointer; font-family: var(--font-sans);
  transition: all 0.2s;
  line-height: 1.4;
}
.lang-toggle:hover {
  border-color: var(--color-accent); color: var(--color-accent);
}

/* Hero */
.hero {
  min-height: 100vh; padding: 140px 48px 80px;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
}
.hero-label {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--color-accent); margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero-line { display: block; }
.hero-line--accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-crm));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px; color: var(--color-text-secondary);
  line-height: 1.7; margin-bottom: 48px;
}
.hero-stats { display: flex; gap: 48px; }
.stat-num {
  display: block; font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px; color: var(--color-text-secondary);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual { position: relative; height: 420px; }
.hero-card {
  position: absolute; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  transition: transform var(--duration) var(--ease-out);
}
.hero-card:hover { transform: translateY(-8px); }
.hero-card--1 {
  width: 360px; height: 240px; top: 0; left: 0;
  background: var(--color-surface);
}
.hero-card--2 {
  width: 240px; height: 200px; bottom: 40px; right: 0;
  background: #1e1e2e;
}
.hero-card--3 {
  width: 140px; height: 240px; bottom: 0; left: 60px;
  background: var(--color-surface);
  border-radius: 20px; border: 4px solid #1a1a1a;
}

/* Mini UI - shared */
.mini-ui { width: 100%; height: 100%; display: flex; flex-direction: column; position: relative; }
.mini-ui-bar {
  height: 28px; background: rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; padding: 0 10px; gap: 4px;
  flex-shrink: 0;
}
.mini-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.12); }
.mini-dot--dark { background: rgba(255,255,255,0.15); }
.mini-ui--dark .mini-ui-bar { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.06); }

/* Card 1 - Dashboard */
.mini-ui-sidebar {
  position: absolute; left: 0; top: 28px; bottom: 0; width: 48px;
  background: rgba(0,0,0,0.025); border-right: 1px solid rgba(0,0,0,0.06);
  padding: 8px 6px; display: flex; flex-direction: column; gap: 4px;
}
.mini-sidebar-logo {
  width: 24px; height: 24px; border-radius: 6px; margin: 0 auto 6px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-crm));
}
.mini-sidebar-item {
  height: 6px; border-radius: 3px; background: rgba(0,0,0,0.06);
  margin: 0 2px;
}
.mini-sidebar-item.active { background: var(--color-accent); }
.mini-ui-content {
  flex: 1; padding: 10px 12px 10px 58px;
  display: flex; flex-direction: column; gap: 8px;
}
.mini-ui-topbar {
  display: flex; align-items: center; justify-content: space-between;
}
.mini-ui-breadcrumb { width: 60px; height: 6px; border-radius: 3px; background: rgba(0,0,0,0.06); }
.mini-ui-avatar {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, #c4b5fd, #a78bfa);
}
.mini-ui-kpis { display: flex; gap: 6px; }
.mini-kpi {
  flex: 1; padding: 6px; border-radius: 6px;
  background: rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.04);
  display: flex; flex-direction: column; gap: 3px;
}
.mini-kpi-num { width: 50%; height: 8px; border-radius: 3px; background: var(--color-accent); opacity: 0.7; }
.mini-kpi-label { width: 70%; height: 4px; border-radius: 2px; background: rgba(0,0,0,0.06); }
.mini-ui-chart {
  flex: 1; border-radius: 8px;
  background: rgba(0,0,0,0.015); padding: 8px 6px 4px;
  display: flex; align-items: flex-end; gap: 4px;
}
.mini-chart-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--color-accent), rgba(37,99,235,0.3));
  height: var(--h, 50%);
}
.mini-chart-bar:nth-child(even) {
  background: linear-gradient(to top, var(--color-crm), rgba(124,58,237,0.3));
}

/* Card 2 - Dark product grid */
.mini-ui-grid {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 8px;
}
.mini-ui-product {
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  overflow: hidden; display: flex; flex-direction: column;
}
.mini-product-img {
  flex: 1;
  background: linear-gradient(135deg, rgba(225,29,72,0.15), rgba(251,191,36,0.08));
}
.mini-product-img--2 { background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.08)); }
.mini-product-img--3 { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(6,182,212,0.08)); }
.mini-product-img--4 { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(239,68,68,0.08)); }
.mini-product-line {
  height: 4px; width: 65%; margin: 5px 5px 2px; border-radius: 2px;
  background: rgba(255,255,255,0.12);
}
.mini-product-price {
  height: 4px; width: 35%; margin: 0 5px 5px; border-radius: 2px;
  background: rgba(225,29,72,0.4);
}

/* Card 3 - Phone */
.mini-ui--phone { background: #fff; border-radius: 16px; }
.mini-phone-status {
  height: 16px; background: #1a1a1a;
  border-radius: 0 0 10px 10px; width: 50%; margin: 0 auto;
}
.mini-phone-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px 6px;
}
.mini-phone-back { font-size: 14px; color: var(--color-booking); line-height: 1; }
.mini-phone-title { width: 40px; height: 6px; border-radius: 3px; background: rgba(0,0,0,0.08); }
.mini-phone-avatar {
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-booking), #34d399);
}
.mini-phone-body { padding: 0 8px 8px; display: flex; flex-direction: column; gap: 6px; }
.mini-phone-card {
  height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(5,150,105,0.08), rgba(52,211,153,0.04));
  border: 1px solid rgba(5,150,105,0.1);
}
.mini-phone-list { display: flex; flex-direction: column; gap: 4px; }
.mini-phone-row { display: flex; align-items: center; gap: 5px; padding: 4px 6px; border-radius: 6px; background: rgba(0,0,0,0.02); }
.mini-phone-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }
.mini-phone-dot--green { background: var(--color-booking); }
.mini-phone-text { flex: 1; height: 4px; border-radius: 2px; background: rgba(0,0,0,0.06); }
.mini-phone-btn {
  height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, var(--color-booking), #34d399);
}

/* Floating decorations */
.hero-floating {
  position: absolute; border-radius: 50%;
  opacity: 0.5; pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.hero-floating--1 {
  width: 60px; height: 60px; top: -10px; right: 80px;
  background: linear-gradient(135deg, var(--color-accent-light), rgba(124,58,237,0.1));
}
.hero-floating--2 {
  width: 40px; height: 40px; bottom: 60px; left: 240px;
  background: linear-gradient(135deg, rgba(225,29,72,0.1), rgba(251,191,36,0.08));
  animation-delay: -3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Section common */
.section-header {
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px; margin-bottom: 56px;
}
.section-label {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--color-accent); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800; letter-spacing: -0.03em;
}

/* Projects */
.projects { padding: 120px 0; }
.project-bento {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
  display: flex; flex-direction: column;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.06);
}
.project-card--large { grid-column: span 2; display: grid; grid-template-columns: 1.2fr 1fr; }
.project-card--medium { grid-column: span 1; }

/* Card visual */
.project-card-visual {
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px; position: relative; overflow: hidden;
}
.project-card--crm .project-card-visual {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
}
.project-card--erp .project-card-visual {
  background: linear-gradient(135deg, #ecfeff, #cffafe);
}
.project-card--booking .project-card-visual {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}
.project-card--mall .project-card-visual {
  background: linear-gradient(135deg, #fff1f2, #fce7f3);
}
.project-card--wp .project-card-visual {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}
.project-card--ai .project-card-visual {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
}
.project-card--agent .project-card-visual {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

/* Card info */
.project-card-info { padding: 32px 40px 40px; }
.project-card--large .project-card-info { padding: 48px 48px 48px 48px; display: flex; flex-direction: column; justify-content: center; }
.project-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.project-card--crm .project-tag { color: var(--color-crm); }
.project-card--erp .project-tag { color: var(--color-erp); }
.project-card--booking .project-tag { color: var(--color-booking); }
.project-card--mall .project-tag { color: var(--color-mall); }
.project-card--wp .project-tag { color: var(--color-wp); }
.project-card--ai .project-tag { color: var(--color-ai); }
.project-card--agent .project-tag { color: var(--color-agent); }
.project-name {
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.project-desc {
  font-size: 15px; color: var(--color-text-secondary);
  line-height: 1.7; margin-bottom: 20px;
}
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.project-tags span {
  font-size: 12px; font-weight: 500;
  padding: 4px 12px; border-radius: 100px;
  background: var(--color-bg); color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

/* Mockup browser */
.mockup-browser {
  width: 100%; border-radius: 12px; overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
}
.mockup-dots {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: #f4f4f3;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mockup-dots span {
  width: 8px; height: 8px; border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-url {
  margin-left: 12px; font-size: 9px; color: #999;
  background: rgba(0,0,0,0.04); padding: 2px 10px;
  border-radius: 4px; font-family: 'Inter', monospace;
}
.mockup-screen { aspect-ratio: 16/10; position: relative; overflow: hidden; font-size: 9px; }

/* CRM mockup */
.crm-layout { display: flex; height: 100%; }
.crm-sidebar {
  width: 72px; background: #f8f7ff;
  border-right: 1px solid rgba(124,58,237,0.08);
  padding: 8px 6px; display: flex; flex-direction: column; gap: 2px;
}
.crm-sidebar-logo {
  font-size: 10px; font-weight: 800; color: var(--color-crm);
  text-align: center; padding: 6px 0 8px;
  border-bottom: 1px solid rgba(124,58,237,0.08);
  margin-bottom: 4px; letter-spacing: 0.05em;
}
.crm-nav-item {
  padding: 5px 6px; border-radius: 6px; font-size: 8px;
  color: #888; display: flex; align-items: center; gap: 4px;
  cursor: default; transition: background 0.15s;
  line-height: 1.2; white-space: nowrap;
}
.crm-icon { font-size: 10px; width: 14px; text-align: center; line-height: 1; }
.crm-nav-item.active {
  background: var(--color-crm); color: #fff;
}
.crm-main { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.crm-header-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 8px; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.crm-page-title { font-size: 11px; font-weight: 700; color: #1a1a1a; }
.crm-header-actions { display: flex; gap: 4px; }
.crm-filter-btn {
  font-size: 7px; padding: 3px 8px; border-radius: 4px;
  background: rgba(0,0,0,0.04); color: #666;
}
.crm-add-btn {
  font-size: 7px; padding: 3px 8px; border-radius: 4px;
  background: var(--color-crm); color: #fff;
}
.crm-pipeline { flex: 1; display: flex; gap: 6px; overflow: hidden; }
.crm-stage {
  flex: 1; display: flex; flex-direction: column; gap: 5px;
  background: rgba(0,0,0,0.015); border-radius: 8px; padding: 6px;
}
.crm-stage-title {
  font-size: 8px; font-weight: 600; color: #555;
  display: flex; align-items: center; gap: 4px;
  padding-bottom: 4px; margin-bottom: 2px;
  line-height: 1; white-space: nowrap;
}
.crm-stage-title em {
  font-style: normal; font-size: 7px;
  background: rgba(0,0,0,0.06); padding: 1px 5px;
  border-radius: 10px; color: #888;
  font-variant-numeric: tabular-nums;
  margin-left: auto;
}
.crm-stage-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-crm); display: inline-block; flex-shrink: 0;
}
.crm-stage-dot--hot { background: #f59e0b; }
.crm-stage-dot--proposal { background: #3b82f6; }
.crm-stage-dot--won { background: #10b981; }
.crm-deal {
  padding: 6px 7px; border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; gap: 3px;
  transition: box-shadow 0.2s;
}
.crm-deal:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.crm-deal-name {
  font-size: 8px; font-weight: 600; color: #333;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3;
}
.crm-deal-meta {
  display: flex; align-items: center; justify-content: space-between;
  line-height: 1;
}
.crm-deal-amount {
  font-size: 8px; font-weight: 700; color: var(--color-crm);
  font-variant-numeric: tabular-nums;
}
.crm-deal-avatar {
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, #c4b5fd, #a78bfa);
}
.crm-deal-check {
  font-size: 9px; color: #10b981; font-weight: 700;
}
.crm-deal-tag {
  font-size: 6px; padding: 1px 5px; border-radius: 3px;
  width: fit-content; font-weight: 600;
}
.crm-deal-tag--hot { background: #fef3c7; color: #b45309; }
.crm-deal--hot { border-left: 2px solid #f59e0b; }
.crm-deal--proposal { border-left: 2px solid #3b82f6; }
.crm-deal--won { border-left: 2px solid #10b981; background: #f0fdf4; }
.crm-deal-progress {
  height: 3px; background: rgba(0,0,0,0.06); border-radius: 2px; overflow: hidden;
}
.crm-deal-progress-bar {
  height: 100%; background: #3b82f6; border-radius: 2px;
}

/* ERP mockup */
.erp-layout { height: 100%; display: flex; flex-direction: column; font-size: 8px; }
.erp-top-bar {
  height: 28px; background: linear-gradient(135deg, #0e7490, #0891b2);
  display: flex; align-items: center; gap: 10px; padding: 0 10px;
}
.erp-logo {
  font-size: 9px; font-weight: 800; color: #fff;
  letter-spacing: 0.08em; margin-right: 6px;
}
.erp-top-nav {
  font-size: 7px; color: rgba(255,255,255,0.6); cursor: default;
  padding: 2px 6px; border-radius: 3px;
}
.erp-top-nav.active { color: #fff; background: rgba(255,255,255,0.15); }
.erp-body { flex: 1; padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.erp-kpi-row { display: flex; gap: 6px; }
.erp-kpi {
  flex: 1; padding: 6px 8px; border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(8,145,178,0.1);
  display: flex; flex-direction: column; gap: 2px;
}
.erp-kpi-label { font-size: 6px; color: #888; }
.erp-kpi-value { font-size: 9px; font-weight: 700; color: #1a1a1a; }
.erp-kpi-trend { font-size: 6px; font-weight: 600; }
.erp-kpi-trend--up { color: #10b981; }
.erp-kpi-trend--down { color: #ef4444; }
.erp-chart-area { flex: 1; background: #fff; border-radius: 8px; padding: 6px 8px; border: 1px solid rgba(0,0,0,0.04); }
.erp-chart-title { font-size: 7px; font-weight: 600; color: #555; margin-bottom: 4px; }
.erp-chart {
  height: calc(100% - 16px); display: flex; align-items: flex-end; gap: 4px;
}
.erp-bar-group {
  flex: 1; display: flex; align-items: flex-end; gap: 2px;
  position: relative; padding-bottom: 12px;
}
.erp-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--color-erp), rgba(8,145,178,0.5));
  height: var(--h, 50%);
  transition: opacity 0.2s;
}
.erp-bar--secondary {
  background: linear-gradient(to top, rgba(8,145,178,0.25), rgba(8,145,178,0.1));
}
.erp-bar-label {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  font-size: 6px; color: #aaa;
}
.erp-table-area {
  background: #fff; border-radius: 8px; padding: 6px 8px;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
}
.erp-table-header {
  display: flex; gap: 4px; padding-bottom: 4px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 3px;
}
.erp-table-header span {
  flex: 1; font-size: 6px; font-weight: 600; color: #999;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.erp-row {
  display: flex; gap: 4px; padding: 3px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.erp-row span { flex: 1; font-size: 7px; color: #555; }
.erp-status { font-weight: 600; }
.erp-status--done { color: #10b981; }
.erp-status--progress { color: #3b82f6; }
.erp-status--pending { color: #f59e0b; }

/* Booking mockup (phone) */
.mockup-phone {
  width: 220px; height: 440px;
  background: var(--color-surface);
  border-radius: 32px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 6px solid #1a1a1a;
  position: relative;
}
.mockup-phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 72px; height: 20px; background: #1a1a1a;
  border-radius: 0 0 14px 14px; z-index: 2;
}
.mockup-phone-screen { height: 100%; overflow: hidden; overflow-y: auto; }
.mockup-phone-screen::-webkit-scrollbar { display: none; }
.booking-layout { padding: 28px 12px 14px; display: flex; flex-direction: column; gap: 8px; font-size: 8px; }
.booking-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2px;
}
.booking-back { font-size: 16px; color: var(--color-booking); font-weight: 300; line-height: 1; cursor: default; }
.booking-header-text { font-size: 10px; font-weight: 700; color: #1a1a1a; }
.booking-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-booking), #34d399);
}
.booking-service-card {
  display: flex; align-items: center; gap: 8px;
  background: rgba(5,150,105,0.06); border-radius: 10px;
  padding: 8px 10px; border: 1px solid rgba(5,150,105,0.12);
}
.booking-service-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--color-booking), #34d399);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.booking-service-info { display: flex; flex-direction: column; gap: 1px; }
.booking-service-name { font-size: 9px; font-weight: 600; color: #1a1a1a; }
.booking-service-detail { font-size: 7px; color: #888; }
.booking-section-title {
  font-size: 8px; font-weight: 600; color: #555;
  padding: 2px 2px 0;
}
.booking-calendar {
  background: #fff; border-radius: 10px; padding: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.booking-month {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px; font-size: 8px; font-weight: 600; color: #333;
}
.booking-month-arrow { color: var(--color-booking); font-size: 12px; cursor: default; }
.booking-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  margin-bottom: 4px;
}
.booking-weekdays span {
  text-align: center; font-size: 6px; color: #aaa; font-weight: 500;
  padding: 2px 0;
}
.booking-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
}
.booking-days span {
  aspect-ratio: 1; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px; color: #444; cursor: default;
  transition: background 0.15s;
}
.booking-days span:hover { background: rgba(5,150,105,0.06); }
.booking-days span.disabled { color: #ccc; pointer-events: none; }
.booking-days span.active {
  background: var(--color-booking); color: #fff; font-weight: 600;
}
.booking-days span.today {
  border: 1.5px solid var(--color-booking); font-weight: 600;
  color: var(--color-booking);
}
.booking-slots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.booking-slot {
  padding: 6px 4px; border-radius: 6px; text-align: center;
  font-size: 8px; font-weight: 500; color: #555;
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  cursor: default; transition: all 0.15s;
}
.booking-slot:hover { border-color: var(--color-booking); }
.booking-slot.active {
  background: var(--color-booking); color: #fff;
  border-color: var(--color-booking); font-weight: 600;
}
.booking-slot.disabled {
  color: #ccc; background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.04); pointer-events: none;
  text-decoration: line-through;
}
.booking-btn {
  padding: 10px; border-radius: 10px; text-align: center;
  background: linear-gradient(135deg, var(--color-booking), #34d399);
  color: #fff; font-size: 10px; font-weight: 600;
  margin-top: 4px; cursor: default;
  box-shadow: 0 4px 12px rgba(5,150,105,0.25);
}

/* Mall mockup (phone) */
.mockup-phone--mall {
  width: 240px; height: 480px;
}
.mall-layout {
  height: 100%; display: flex; flex-direction: column; font-size: 8px;
}
.mall-nav {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 10px; border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1; flex-shrink: 0; background: #fff;
  position: sticky; top: 0; z-index: 2;
}
.mall-logo-bar {
  font-size: 10px; font-weight: 800; color: var(--color-mall);
  letter-spacing: 0.06em; flex-shrink: 0; line-height: 1;
}
.mall-search {
  flex: 1; height: 22px; border-radius: 100px;
  background: rgba(0,0,0,0.04); display: flex;
  align-items: center; gap: 4px; padding: 0 8px;
}
.mall-search-icon { font-size: 9px; color: #bbb; }
.mall-search-text { font-size: 7px; color: #bbb; }
.mall-nav-icons { display: flex; gap: 6px; flex-shrink: 0; }
.mall-icon-btn {
  font-size: 11px; color: #666; cursor: default; position: relative;
  line-height: 1; display: flex; align-items: center;
}
.mall-cart-btn em {
  font-style: normal; font-size: 5px; font-weight: 700;
  position: absolute; top: -3px; right: -5px;
  background: var(--color-mall); color: #fff;
  width: 10px; height: 10px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mall-scroll-content {
  flex: 1; overflow-y: auto; padding-bottom: 6px;
}
.mall-scroll-content::-webkit-scrollbar { display: none; }
.mall-banner {
  margin: 8px 8px 6px; border-radius: 10px;
  background: linear-gradient(135deg, #fce7f3, #fecdd3, #fed7aa);
  padding: 12px 14px; display: flex; align-items: center;
  justify-content: space-between; position: relative; overflow: hidden;
  min-height: 60px;
}
.mall-banner-content { position: relative; z-index: 1; }
.mall-banner-tag {
  font-size: 5px; font-weight: 700; color: #fff;
  background: var(--color-mall); padding: 1px 5px;
  border-radius: 3px; display: inline-block; margin-bottom: 3px;
  line-height: 1.4;
}
.mall-banner-title { font-size: 11px; font-weight: 800; color: #1a1a1a; line-height: 1.3; }
.mall-banner-sub { font-size: 7px; color: #666; margin-bottom: 5px; line-height: 1.3; }
.mall-banner-btn {
  font-size: 6px; font-weight: 600; color: #fff;
  background: var(--color-mall); padding: 3px 10px;
  border-radius: 4px; display: inline-block; cursor: default;
}
.mall-banner-deco {
  position: absolute; right: -10px; top: -10px;
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(225,29,72,0.08);
}

/* Categories row */
.mall-categories {
  display: flex; gap: 6px; padding: 8px 10px;
  justify-content: space-between;
}
.mall-cat {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 6px; color: #555; font-weight: 500;
}
.mall-cat-icon {
  width: 28px; height: 28px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.mall-cat-icon--1 { background: #fef3c7; color: #f59e0b; }
.mall-cat-icon--2 { background: #fce7f3; color: var(--color-mall); }
.mall-cat-icon--3 { background: #dbeafe; color: #3b82f6; }
.mall-cat-icon--4 { background: #ede9fe; color: #7c3aed; }

.mall-section-title {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 10px 4px; font-size: 9px; font-weight: 700; color: #333;
  line-height: 1;
}
.mall-more { font-size: 6px; color: var(--color-mall); font-weight: 500; cursor: default; line-height: 1; }
.mall-more--countdown {
  font-variant-numeric: tabular-nums;
  background: var(--color-mall); color: #fff;
  padding: 2px 6px; border-radius: 4px; font-size: 7px; font-weight: 700;
}
.mall-products {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  padding: 4px 8px 8px;
}
.mall-product {
  border-radius: 8px; background: #fff;
  border: 1px solid rgba(0,0,0,0.05); overflow: hidden;
  transition: box-shadow 0.2s;
}
.mall-product:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.mall-product-img {
  aspect-ratio: 1; position: relative;
  background: linear-gradient(135deg, rgba(225,29,72,0.06), rgba(251,191,36,0.04));
}
.mall-product-img--2 { background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.04)); }
.mall-product-img--3 { background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(6,182,212,0.04)); }
.mall-product-img--4 { background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(239,68,68,0.04)); }
.mall-product-badge {
  position: absolute; top: 4px; left: 4px;
  font-size: 5px; font-weight: 700; color: #fff;
  background: var(--color-mall); padding: 1px 5px;
  border-radius: 3px;
}
.mall-product-badge--hot { background: #f59e0b; }
.mall-product-heart {
  position: absolute; top: 4px; right: 4px;
  font-size: 10px; color: rgba(0,0,0,0.15);
  cursor: default; transition: color 0.15s;
}
.mall-product:hover .mall-product-heart { color: var(--color-mall); }
.mall-product-body { padding: 5px 6px 6px; display: flex; flex-direction: column; gap: 2px; }
.mall-product-name {
  font-size: 7px; font-weight: 600; color: #333;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3;
}
.mall-product-rating {
  font-size: 6px; color: #f59e0b;
  line-height: 1; display: flex; align-items: center; gap: 1px;
}
.mall-product-rating em { font-style: normal; color: #bbb; margin-left: 2px; font-variant-numeric: tabular-nums; }
.mall-product-price {
  font-size: 8px; font-weight: 700; color: var(--color-mall);
  line-height: 1.2; display: flex; align-items: baseline; gap: 3px;
  font-variant-numeric: tabular-nums;
}
.mall-product-price del {
  font-size: 6px; color: #bbb; font-weight: 400;
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

/* Flash sale row */
.mall-flash-row {
  display: flex; gap: 6px; padding: 4px 8px 8px;
  overflow-x: auto;
}
.mall-flash-row::-webkit-scrollbar { display: none; }
.mall-flash-item {
  flex: 0 0 28%; background: #fff; border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.05); padding: 6px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.mall-flash-img {
  width: 100%; aspect-ratio: 1; border-radius: 6px;
  background: linear-gradient(135deg, rgba(225,29,72,0.06), rgba(251,191,36,0.04));
}
.mall-flash-img--2 { background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.04)); }
.mall-flash-img--3 { background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(6,182,212,0.04)); }
.mall-flash-price { font-size: 9px; font-weight: 700; color: var(--color-mall); font-variant-numeric: tabular-nums; }
.mall-flash-original { font-size: 6px; color: #bbb; text-decoration: line-through; }
.mall-flash-bar {
  width: 100%; height: 3px; background: rgba(225,29,72,0.1);
  border-radius: 2px; overflow: hidden;
}
.mall-flash-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--color-mall), #fb7185);
  border-radius: 2px;
}
.mall-flash-sold { font-size: 5px; color: #999; }

/* Bottom tab bar */
.mall-tab-bar {
  display: flex; border-top: 1px solid rgba(0,0,0,0.06);
  background: #fff; flex-shrink: 0; padding: 4px 0 6px;
}
.mall-tab {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 1px;
  font-size: 5px; color: #999; cursor: default;
}
.mall-tab.active { color: var(--color-mall); }
.mall-tab-icon { font-size: 11px; line-height: 1; }

/* WordPress mockup */
.wp-layout {
  height: 100%; display: flex; flex-direction: column; font-size: 10px;
  overflow-y: auto; background: #fff;
}
.wp-layout::-webkit-scrollbar { display: none; }
.wp-nav {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky; top: 0; background: #fff; z-index: 2;
}
.wp-logo {
  font-size: 13px; font-weight: 800; color: var(--color-wp);
  letter-spacing: 0.06em; flex-shrink: 0;
}
.wp-nav-links { display: flex; gap: 12px; flex: 1; justify-content: center; }
.wp-nav-links span {
  font-size: 9px; color: #888; cursor: default; white-space: nowrap;
}
.wp-nav-links span.active { color: var(--color-wp); font-weight: 600; }
.wp-nav-cta {
  font-size: 8px; font-weight: 600; color: #fff;
  background: var(--color-wp); padding: 4px 12px;
  border-radius: 5px; white-space: nowrap; cursor: default;
}

/* WP Hero */
.wp-hero {
  padding: 28px 18px 22px;
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  position: relative; overflow: hidden;
}
.wp-hero-content { flex: 1; position: relative; z-index: 1; }
.wp-hero-badge {
  font-size: 7px; font-weight: 600; color: var(--color-wp);
  background: rgba(0,115,170,0.1); padding: 2px 8px;
  border-radius: 4px; display: inline-block; margin-bottom: 6px;
}
.wp-hero-title {
  font-size: 18px; font-weight: 800; color: #1a1a1a;
  line-height: 1.2; margin-bottom: 6px;
}
.wp-hero-sub { font-size: 9px; color: #666; margin-bottom: 10px; line-height: 1.3; }
.wp-hero-btns { display: flex; gap: 6px; }
.wp-btn-primary {
  font-size: 8px; font-weight: 600; color: #fff;
  background: var(--color-wp); padding: 4px 14px;
  border-radius: 5px; cursor: default;
}
.wp-btn-ghost {
  font-size: 8px; font-weight: 600; color: var(--color-wp);
  border: 1px solid var(--color-wp); padding: 4px 14px;
  border-radius: 5px; cursor: default;
}
.wp-hero-visual { position: relative; width: 110px; height: 80px; flex-shrink: 0; }
.wp-hero-shape {
  position: absolute; width: 70px; height: 70px;
  border-radius: 18px; background: rgba(0,115,170,0.12);
  top: 0; right: 0; transform: rotate(12deg);
}
.wp-hero-shape--2 {
  width: 48px; height: 48px; background: rgba(0,115,170,0.08);
  top: 24px; right: 32px; transform: rotate(-8deg);
  border-radius: 12px;
}

/* WP Features */
.wp-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 14px 14px;
}
.wp-feature {
  background: #fff; border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px; padding: 10px 8px;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; text-align: center;
}
.wp-feature-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.wp-feature-icon--1 { background: #dbeafe; color: #2563eb; }
.wp-feature-icon--2 { background: #fef3c7; color: #f59e0b; }
.wp-feature-icon--3 { background: #d1fae5; color: #059669; }
.wp-feature-icon--4 { background: #ede9fe; color: #7c3aed; }
.wp-feature-title { font-size: 9px; font-weight: 600; color: #333; }
.wp-feature-desc { font-size: 7px; color: #999; }

/* WP Cases */
.wp-cases-section { padding: 8px 14px 14px; }
.wp-cases-title {
  font-size: 11px; font-weight: 700; color: #333;
  margin-bottom: 8px;
}
.wp-cases { display: flex; gap: 8px; }
.wp-case { flex: 1; border-radius: 10px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.wp-case-img {
  aspect-ratio: 16/10; background: linear-gradient(135deg, rgba(0,115,170,0.08), rgba(37,99,235,0.04));
}
.wp-case-img--2 { background: linear-gradient(135deg, rgba(5,150,105,0.08), rgba(52,211,153,0.04)); }
.wp-case-img--3 { background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(167,139,250,0.04)); }
.wp-case-name {
  font-size: 8px; font-weight: 600; color: #555;
  padding: 5px 8px; text-align: center;
}

/* WP Footer */
.wp-footer {
  background: #1a1a2e; padding: 12px 18px 8px;
  margin-top: auto;
}
.wp-footer-cols { display: flex; gap: 14px; margin-bottom: 8px; }
.wp-footer-col { flex: 1; }
.wp-footer-logo {
  font-size: 10px; font-weight: 800; color: #fff;
  letter-spacing: 0.06em; margin-bottom: 4px;
}
.wp-footer-text { font-size: 7px; color: rgba(255,255,255,0.4); }
.wp-footer-heading {
  font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.7);
  margin-bottom: 5px;
}
.wp-footer-link {
  height: 5px; width: 70%; border-radius: 2px;
  background: rgba(255,255,255,0.08); margin-bottom: 4px;
}
.wp-footer-bottom {
  height: 1px; background: rgba(255,255,255,0.06);
  margin-top: 4px;
}

/* AI Try-On mockup (kiosk / smart mirror) */
.mockup-kiosk {
  display: flex; flex-direction: column; align-items: center;
}
.kiosk-bezel {
  width: 240px; background: #111;
  border-radius: 12px; padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
}
.kiosk-camera {
  position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, #444, #222);
  border: 1px solid #333; z-index: 2;
}
.kiosk-screen {
  border-radius: 8px; overflow: hidden; background: #fff;
}
.kiosk-stand {
  width: 40px; height: 16px;
  background: linear-gradient(180deg, #222, #111);
  border-radius: 0 0 6px 6px;
  margin-top: -2px;
}
.ai-layout {
  display: flex; flex-direction: column; font-size: 8px;
}
.ai-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px; background: #1a1a2e; color: #fff;
}
.ai-topbar-logo { font-size: 8px; font-weight: 700; }
.ai-topbar-status {
  display: flex; align-items: center; gap: 3px;
  font-size: 6px; color: #34d399;
}
.ai-topbar-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #34d399; animation: agentPulse 1.5s ease-in-out infinite;
}
.ai-main {
  display: flex; gap: 0;
}
.ai-viewfinder {
  flex: 1; min-height: 160px;
  background: linear-gradient(180deg, #1a1a2e, #2d2b55);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ai-body-silhouette { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.ai-body-head {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(139,92,246,0.3); border: 1.5px solid rgba(139,92,246,0.5);
  margin-bottom: 2px;
}
.ai-body-torso {
  width: 36px; height: 42px; border-radius: 6px 6px 4px 4px;
  background: linear-gradient(180deg, rgba(139,92,246,0.25), rgba(139,92,246,0.15));
  border: 1.5px solid rgba(139,92,246,0.4);
}
.ai-body-legs {
  width: 30px; height: 32px; border-radius: 0 0 4px 4px;
  background: rgba(139,92,246,0.12); border: 1.5px solid rgba(139,92,246,0.25);
  border-top: none; margin-top: -1px;
}
.ai-scan-line {
  position: absolute; left: 10%; right: 10%; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--color-ai), transparent);
  top: 30%; animation: scanMove 2.5s ease-in-out infinite;
}
@keyframes scanMove {
  0%, 100% { top: 20%; opacity: 0.6; }
  50% { top: 75%; opacity: 1; }
}
.ai-corner {
  position: absolute; width: 16px; height: 16px;
  border-color: var(--color-ai); border-style: solid; border-width: 0;
}
.ai-corner--tl { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; border-radius: 4px 0 0 0; }
.ai-corner--tr { top: 8px; right: 8px; border-top-width: 2px; border-right-width: 2px; border-radius: 0 4px 0 0; }
.ai-corner--bl { bottom: 8px; left: 8px; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 4px; }
.ai-corner--br { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 4px 0; }
.ai-badge {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  font-size: 6px; font-weight: 600; color: #fff;
  background: rgba(139,92,246,0.7); padding: 2px 8px;
  border-radius: 10px; backdrop-filter: blur(4px);
  white-space: nowrap;
}
.ai-sidebar-panel {
  width: 80px; background: #f8f7ff;
  border-left: 1px solid rgba(139,92,246,0.08);
  padding: 6px; display: flex; flex-direction: column; gap: 5px;
}
.ai-toggle {
  display: flex; gap: 0; background: rgba(0,0,0,0.04);
  border-radius: 5px; overflow: hidden;
}
.ai-toggle-btn {
  flex: 1; text-align: center; padding: 3px 0;
  font-size: 6px; font-weight: 500; color: #888; cursor: default;
}
.ai-toggle-btn.active {
  background: var(--color-ai); color: #fff; font-weight: 600;
  border-radius: 5px;
}
.ai-clothes-label { font-size: 6px; font-weight: 600; color: #555; }
.ai-clothes-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.ai-cloth {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 5px; color: #666; cursor: default;
}
.ai-cloth.active { color: var(--color-ai); font-weight: 600; }
.ai-cloth-img {
  width: 100%; aspect-ratio: 1; border-radius: 5px;
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(139,92,246,0.03));
  border: 1.5px solid rgba(0,0,0,0.06);
}
.ai-cloth.active .ai-cloth-img { border-color: var(--color-ai); }
.ai-cloth-img--2 { background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(59,130,246,0.03)); }
.ai-cloth-img--3 { background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.03)); }
.ai-cloth-img--4 { background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.03)); }
.ai-btn-try {
  text-align: center; padding: 5px 0; border-radius: 5px;
  font-size: 7px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--color-ai), #a78bfa);
  cursor: default; box-shadow: 0 2px 8px rgba(139,92,246,0.25);
  margin-top: auto;
}

/* Agent Smart Selection mockup */
.agent-layout {
  height: 100%; display: flex; flex-direction: column; font-size: 8px;
}
.agent-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px; background: #1a1a2e; color: #fff;
}
.agent-logo { font-size: 9px; font-weight: 700; letter-spacing: 0.03em; }
.agent-status {
  display: flex; align-items: center; gap: 4px;
  font-size: 6px; color: #34d399;
}
.agent-status-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #34d399; animation: agentPulse 1.5s ease-in-out infinite;
}
@keyframes agentPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.agent-body {
  flex: 1; padding: 8px; display: flex; flex-direction: column; gap: 6px;
}
.agent-flow {
  background: #fff; border-radius: 8px; padding: 8px;
  border: 1px solid rgba(0,0,0,0.05);
}
.agent-flow-title {
  font-size: 8px; font-weight: 700; color: #333; margin-bottom: 6px;
}
.agent-steps { display: flex; flex-direction: column; gap: 0; }
.agent-step {
  display: flex; align-items: center; gap: 6px; padding: 4px 0;
}
.agent-step-icon {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; flex-shrink: 0;
}
.agent-step.done .agent-step-icon { background: #d1fae5; color: #059669; }
.agent-step.active .agent-step-icon { background: #ffedd5; color: var(--color-agent); }
.agent-step-icon--pulse { animation: agentPulse 1.2s ease-in-out infinite; }
.agent-step-icon--pending { background: rgba(0,0,0,0.04); color: #bbb; font-size: 7px; }
.agent-step.pending .agent-step-icon { background: rgba(0,0,0,0.04); color: #bbb; }
.agent-step-info { display: flex; flex-direction: column; gap: 1px; }
.agent-step-name { font-size: 7px; font-weight: 600; color: #333; }
.agent-step-desc { font-size: 6px; color: #999; }
.agent-step.active .agent-step-desc { color: var(--color-agent); font-weight: 500; }
.agent-step-line { width: 1.5px; height: 8px; background: #d1fae5; margin-left: 9px; }
.agent-step-line--pending { background: rgba(0,0,0,0.06); }

/* Agent results */
.agent-results {
  background: #fff; border-radius: 8px; padding: 8px;
  border: 1px solid rgba(0,0,0,0.05); flex: 1;
}
.agent-results-title { font-size: 8px; font-weight: 700; color: #333; margin-bottom: 6px; }
.agent-product-list { display: flex; flex-direction: column; gap: 5px; }
.agent-product {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 6px; border-radius: 6px;
  background: rgba(0,0,0,0.015); border: 1px solid rgba(0,0,0,0.04);
}
.agent-product-rank {
  font-size: 9px; font-weight: 800; color: var(--color-agent);
  width: 18px; text-align: center; flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.agent-product-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.agent-product-name { font-size: 7px; font-weight: 600; color: #333; }
.agent-product-score { display: flex; align-items: center; gap: 4px; }
.agent-score-bar {
  flex: 1; height: 4px; background: rgba(0,0,0,0.06);
  border-radius: 2px; overflow: hidden;
}
.agent-score-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--color-agent), #fb923c);
}
.agent-product-score span {
  font-size: 7px; font-weight: 700; color: var(--color-agent);
  font-variant-numeric: tabular-nums; min-width: 14px;
}

/* About */
.about { padding: 120px 0; background: var(--color-surface); border-top: 1px solid var(--color-border); }
.about-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-desc {
  font-size: 17px; color: var(--color-text-secondary);
  line-height: 1.8; margin-bottom: 40px;
}
.about-skills { display: flex; flex-direction: column; gap: 24px; }
.skill-group h4 {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--color-text-secondary); margin-bottom: 12px;
}
.skill-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-pills span {
  font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 100px;
  background: var(--color-bg); border: 1px solid var(--color-border);
  color: var(--color-text);
}

/* About visual grid */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-grid-item {
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  padding: 28px 20px;
  font-size: 14px; font-weight: 600;
  transition: transform var(--duration) var(--ease-out);
  text-align: center; position: relative; overflow: hidden;
}
.about-grid-item:hover { transform: scale(1.04); }
.about-icon {
  font-size: 28px; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.about-grid-title { font-size: 15px; font-weight: 700; margin: 0; }
.about-grid-desc {
  font-size: 12px; font-weight: 400; line-height: 1.5;
  opacity: 0.65; max-width: 160px;
}
.about-grid-item--1 { background: linear-gradient(135deg, #f5f3ff, #ede9fe); color: var(--color-crm); }
.about-grid-item--2 { background: linear-gradient(135deg, #ecfeff, #cffafe); color: var(--color-erp); }
.about-grid-item--3 { background: linear-gradient(135deg, #ecfdf5, #d1fae5); color: var(--color-booking); }
.about-grid-item--4 { background: linear-gradient(135deg, #fff1f2, #fce7f3); color: var(--color-mall); }

/* About grid decorations */
.about-grid-deco { margin-top: 4px; display: flex; gap: 4px; align-items: center; }
.about-mini-line {
  width: 28px; height: 4px; border-radius: 2px;
  background: currentColor; opacity: 0.15;
}
.about-mini-line.short { width: 16px; }
.about-mini-block {
  width: 18px; height: 18px; border-radius: 5px;
  background: currentColor; opacity: 0.1;
}
.about-mini-screen {
  width: 40px; height: 28px; border-radius: 4px;
  border: 1.5px solid currentColor; opacity: 0.2;
  overflow: hidden;
}
.about-mini-screen-bar {
  height: 6px; background: currentColor; opacity: 0.3;
}
.about-mini-screen-body {
  height: 100%; background: currentColor; opacity: 0.05;
}
.about-mini-code {
  font-size: 14px; font-weight: 800; font-family: 'Inter', monospace;
  opacity: 0.2; letter-spacing: -0.02em;
}

/* About process line */
.about-process-line {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 20px; padding: 0 16px;
}
.about-process-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-accent); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.about-process-bar {
  flex: 1; height: 2px;
  background: linear-gradient(90deg, var(--color-accent), rgba(37,99,235,0.2));
}

/* Contact */
.contact {
  padding: 120px 0; text-align: center;
}
.contact-inner { max-width: 600px; margin: 0 auto; padding: 0 48px; }
.contact-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.contact-desc {
  font-size: 17px; color: var(--color-text-secondary);
  margin-bottom: 40px;
}
.contact-btn {
  display: inline-block; padding: 16px 40px;
  background: var(--color-text); color: #fff;
  border-radius: 100px; text-decoration: none;
  font-size: 15px; font-weight: 600;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  text-align: center;
}
.footer p { font-size: 13px; color: var(--color-text-secondary); }

/* Scroll animations */
.project-card,
.about-grid-item {
  opacity: 0; transform: translateY(32px);
}
.project-card.visible,
.about-grid-item.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

/* Stagger */
.project-card:nth-child(1).visible { transition-delay: 0s; }
.project-card:nth-child(2).visible { transition-delay: 0.1s; }
.project-card:nth-child(3).visible { transition-delay: 0.2s; }
.project-card:nth-child(4).visible { transition-delay: 0.3s; }
.project-card:nth-child(5).visible { transition-delay: 0.15s; }
.project-card:nth-child(6).visible { transition-delay: 0s; }
.project-card:nth-child(7).visible { transition-delay: 0.1s; }
.about-grid-item:nth-child(1).visible { transition-delay: 0s; }
.about-grid-item:nth-child(2).visible { transition-delay: 0.1s; }
.about-grid-item:nth-child(3).visible { transition-delay: 0.2s; }
.about-grid-item:nth-child(4).visible { transition-delay: 0.3s; }

/* ========== Responsive ========== */

/* Tablet: 768-1024 */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 24px; }
  .hero { padding: 120px 24px 60px; gap: 40px; }
  .hero-visual { height: 360px; }
  .hero-card--1 { width: 300px; height: 200px; }
  .hero-card--2 { width: 200px; height: 170px; }
  .hero-card--3 { width: 120px; height: 200px; }
  .section-header { padding: 0 24px; }
  .project-bento { padding: 0 24px; gap: 20px; }
  .project-card-visual { padding: 24px; min-height: 260px; }
  .project-card--large { grid-template-columns: 1fr 1fr; }
  .project-card--large .project-card-info { padding: 32px 32px 32px 0; }
  .project-card-info { padding: 24px; }
  .about-inner { padding: 0 24px; gap: 40px; }
  .contact-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  /* Nav */
  .nav-inner { padding: 0 20px; height: 56px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto; padding: 100px 20px 40px;
    gap: 40px;
  }
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .hero-desc { font-size: 15px; margin-bottom: 32px; }
  .hero-desc br { display: none; }
  .hero-stats { gap: 32px; }
  .stat-num { font-size: 24px; }
  .hero-visual {
    height: 280px; width: 100%;
    max-width: 400px; margin: 0 auto;
  }
  .hero-card--1 { width: 260px; height: 180px; top: 0; left: 0; }
  .hero-card--2 { width: 180px; height: 150px; bottom: 20px; right: 0; }
  .hero-card--3 { width: 110px; height: 180px; bottom: 0; left: 40px; }
  .hero-floating { display: none; }

  /* Sections */
  .section-header { padding: 0 20px; margin-bottom: 32px; }
  .projects { padding: 80px 0; }

  /* Project cards */
  .project-bento {
    grid-template-columns: 1fr;
    padding: 0 20px; gap: 16px;
  }
  .project-card--large {
    grid-column: span 1;
    display: flex; flex-direction: column;
  }
  .project-card--large .project-card-info {
    padding: 24px 24px 28px;
  }
  .project-card--medium { grid-column: span 1; }
  .project-card-visual { padding: 24px; min-height: 240px; }
  .project-card-info { padding: 24px 24px 28px; }
  .project-name { font-size: 20px; }
  .project-desc { font-size: 14px; }

  /* Mockup scaling */
  .mockup-phone { width: 200px; height: 400px; }
  .mockup-phone--mall { width: 220px; height: 440px; }

  /* About */
  .about { padding: 80px 0; }
  .about-inner {
    grid-template-columns: 1fr;
    padding: 0 20px; gap: 40px;
  }
  .about-desc { font-size: 15px; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-grid-item { padding: 24px 16px; }
  .about-grid-desc { font-size: 11px; }

  /* Contact */
  .contact { padding: 80px 0; }
  .contact-inner { padding: 0 20px; }
  .contact-desc { font-size: 15px; }
  .contact-btn { padding: 14px 32px; font-size: 14px; }

  /* Footer */
  .footer-inner { padding: 0 20px; }
}

/* Small mobile: < 420px */
@media (max-width: 420px) {
  .hero { padding: 90px 16px 32px; }
  .hero-title { font-size: 28px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-visual { height: 240px; max-width: 320px; }
  .hero-card--1 { width: 220px; height: 150px; }
  .hero-card--2 { width: 150px; height: 130px; }
  .hero-card--3 { width: 95px; height: 155px; left: 20px; }

  .project-bento { padding: 0 16px; }
  .project-card-visual { padding: 20px; min-height: 200px; }
  .project-card-info { padding: 20px 20px 24px; }
  .project-card--large .project-card-info { padding: 20px 20px 24px; }
  .project-name { font-size: 18px; }
  .project-tags { gap: 6px; }
  .project-tags span { font-size: 11px; padding: 3px 10px; }

  .mockup-phone { width: 170px; height: 340px; }
  .mockup-phone--mall { width: 190px; height: 380px; }

  .section-header { padding: 0 16px; }
  .about-inner { padding: 0 16px; }
  .contact-inner { padding: 0 16px; }
  .footer-inner { padding: 0 16px; }

  .about-grid-item { padding: 20px 12px; }
  .about-icon { font-size: 24px; width: 40px; height: 40px; border-radius: 10px; }
  .about-grid-title { font-size: 13px; }
  .about-grid-desc { font-size: 10px; }
}
