/* ===== Variables ===== */
:root {
  --bg-dark: #0a0a0f;
  --bg-card: rgba(18, 18, 28, 0.85);
  --bg-card-hover: rgba(28, 28, 42, 0.95);
  --gold: #d4af37;
  --gold-light: #f0d78c;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --purple: #8b5cf6;
  --purple-dim: rgba(139, 92, 246, 0.2);
  --cyan: #22d3ee;
  --text: #e8e8ef;
  --text-muted: #9494a8;
  --border: rgba(212, 175, 55, 0.12);
  --gradient-gold: linear-gradient(135deg, #f0d78c 0%, #d4af37 50%, #b8860b 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #22d3ee 100%);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
  --radius: 16px;
  --nav-h: 72px;
  --font-sans: 'Noto Sans SC', system-ui, sans-serif;
  --font-serif: 'Noto Serif SC', serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

#app {
  position: relative;
  z-index: 2;
}

[v-cloak] {
  display: none !important;
}

/* ===== Side particle zones ===== */
.side-particle-zone {
  position: fixed;
  top: 0;
  bottom: 0;
  width: clamp(110px, 14vw, 240px);
  z-index: 8;
  pointer-events: none;
  overflow: hidden;
}

.side-particle-left {
  left: 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.04) 0%, transparent 100%);
}

.side-particle-right {
  right: 0;
  background: linear-gradient(-90deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.side-particle-zone canvas {
  display: block;
  width: 100%;
  height: 100%;
}

a { color: var(--gold-light); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #1a1a1a;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
  color: #1a1a1a;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold-dim); }

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand:hover { color: var(--gold-light); }

.brand-logo {
  height: 44px;
  width: 44px;
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}
.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--purple);
  top: -100px;
  right: -100px;
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -50px;
  left: -100px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.3;
  margin-bottom: 20px;
}

.gradient-text {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subline {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text);
  font-weight: 600;
  margin-top: 12px;
  -webkit-text-fill-color: var(--text);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-features {
  list-style: none;
  margin-bottom: 36px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.check-icon {
  color: var(--gold);
  font-size: 0.75rem;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold), 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.frame-glow {
  position: absolute;
  inset: -2px;
  background: var(--gradient-gold);
  opacity: 0.15;
  z-index: -1;
  border-radius: calc(var(--radius) + 2px);
}

.hero-screenshot {
  width: 100%;
  border-radius: var(--radius);
}

.floating-tag {
  position: absolute;
  padding: 6px 14px;
  background: rgba(10, 10, 15, 0.85);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  animation: tagFloat 4s ease-in-out infinite;
}
.tag-1 { top: 15%; left: -10%; animation-delay: 0s; }
.tag-2 { top: 45%; right: -8%; animation-delay: -1.5s; }
.tag-3 { bottom: 20%; left: 5%; animation-delay: -3s; }

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== About ===== */
.about { background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03)); }

.about-grid {
  display: grid;
  gap: 48px;
}

.about-intro p,
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.85;
}
.about-intro strong,
.about-text strong { color: var(--gold-light); }

.about-subtitle {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.contact-card {
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s;
}
.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-gold);
}

.contact-card-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-card-value {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}
a.contact-card-value:hover { color: var(--gold-light); }

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mv-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
.mv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-gold);
}

.mv-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.mv-card h4 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.mv-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s;
  backdrop-filter: blur(10px);
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-gold);
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}
.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== Products ===== */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-light);
}

.product-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  backdrop-filter: blur(12px);
}

.product-info h3 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.product-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}
.feature-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.feature-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}
.thumb {
  flex-shrink: 0;
  width: 80px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.6;
  transition: 0.3s;
}
.thumb.active, .thumb:hover {
  border-color: var(--gold);
  opacity: 1;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.service-card h3 {
  color: var(--gold-light);
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.service-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.service-card ul {
  list-style: none;
}
.service-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== Platform ===== */
.platform {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.05), transparent);
}

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

.platform-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s;
}
.platform-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: 0 0 40px var(--purple-dim);
}

.platform-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.platform-card h3 {
  color: var(--gold-light);
  margin-bottom: 12px;
}
.platform-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.platform-slogan {
  text-align: center;
  margin-top: 48px;
  font-size: 1.3rem;
  font-family: var(--font-serif);
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Founder ===== */
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}

.founder-ring {
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  animation: ringRotate 20s linear infinite;
}
.founder-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.founder-photo {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.founder-info h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 12px 0 20px;
  color: var(--gold-light);
}

.founder-tags, .job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  padding: 4px 14px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold-light);
}
.tag-sm { font-size: 0.75rem; padding: 3px 10px; }

.founder-info p {
  color: var(--text-muted);
  margin-bottom: 14px;
}
.founder-info strong { color: var(--gold-light); }

.founder-info blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--gold);
  background: var(--gold-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.1rem;
}

.founder-achievements {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.founder-achievements li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.founder-achievements li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ===== Process ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.process-step h3 {
  color: var(--gold-light);
  margin-bottom: 10px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ===== Careers ===== */
.careers { background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03)); }

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.job-card:hover { border-color: rgba(212, 175, 55, 0.3); }

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
}
.job-header h3 {
  color: var(--gold-light);
  margin-bottom: 8px;
}

.job-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
}
.job-toggle.open {
  transform: rotate(45deg);
  background: var(--gold-dim);
}

.job-body {
  padding: 0 28px 28px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin: 0 28px 28px;
}

.job-summary {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.job-section {
  margin-bottom: 20px;
}
.job-section h4 {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.job-section ul {
  list-style: none;
}
.job-section li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.job-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  transition: 0.3s;
}
.faq-question:hover, .faq-question.active {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.05);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.info-item {
  margin-bottom: 20px;
}
.info-label {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.contact-form-wrap {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form select option { background: #1a1a28; }

.contact-qrcode {
  text-align: center;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-qrcode img {
  width: 180px;
  margin: 0 auto 16px;
  border-radius: 12px;
}
.contact-qrcode p {
  color: var(--gold-light);
  margin-bottom: 4px;
}
.contact-qrcode span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 60px;
  background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 48px;
  width: 48px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-slogan {
  margin-top: 8px;
  color: var(--gold) !important;
}

.footer-links h4 {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer-links a,
.footer-links span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  position: relative;
  max-width: 320px;
  animation: slideUp 0.3s;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal img {
  width: 200px;
  margin: 0 auto 16px;
  border-radius: 12px;
}
.modal p { color: var(--gold-light); margin-bottom: 4px; }
.modal span { font-size: 0.82rem; color: var(--text-muted); }

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-close:hover { color: var(--gold); }

/* ===== Mobile ===== */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(10, 10, 15, 0.95);
  border-top: 1px solid var(--border);
  z-index: 999;
  backdrop-filter: blur(12px);
}

.hide-mobile { display: inline-flex; }

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 28px; }
  .hero-features { display: inline-block; text-align: left; }
  .hero-btns { justify-content: center; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .floating-tag { display: none; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .product-panel { grid-template-columns: 1fr; }
  .platform-cards { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-image-wrap { max-width: 400px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .nav-download { display: none; }
  .side-particle-zone { display: none !important; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    opacity: 0;
    transition: 0.4s;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .section { padding: 70px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .founder-achievements { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-main { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 70px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
