/* ============================================================
   WEEX唯客 — weex官网注册 | 全球化注册风格
   配色：深色(#070e1a) + WEEX蓝(#1a6df5) + 注册金(#f59e0b) + 安全绿(#10b981) + 白
   ============================================================ */

:root {
  --bg-dark: #070e1a;
  --bg-card: #0d1525;
  --bg-card-hover: #111d33;
  --blue-primary: #1a6df5;
  --blue-light: #3b82f6;
  --blue-glow: rgba(26, 109, 245, 0.25);
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --green: #10b981;
  --green-light: #34d399;
  --white: #ffffff;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e293b;
  --border-light: #334155;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(245, 158, 11, 0); }
}

@keyframes pulseBlue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 109, 245, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(26, 109, 245, 0); }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowRotate {
  0% { filter: drop-shadow(0 0 8px var(--blue-glow)); }
  50% { filter: drop-shadow(0 0 20px rgba(26, 109, 245, 0.5)); }
  100% { filter: drop-shadow(0 0 8px var(--blue-glow)); }
}

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

@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.reveal { opacity: 0; }
.reveal.visible { animation: revealUp 0.7s ease forwards; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.brand .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.brand .gold-dot {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(26, 109, 245, 0.12);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: #070e1a !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 20px !important;
  animation: pulse 2s infinite;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding: 100px 24px 120px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 109, 245, 0.15), transparent 70%),
              radial-gradient(ellipse 50% 50% at 80% 80%, rgba(245, 158, 11, 0.08), transparent 70%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="gg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%231a6df5" stop-opacity="0.06"/><stop offset="100%" stop-color="%23f59e0b" stop-opacity="0.03"/></linearGradient></defs><rect fill="url(%23gg)" width="1200" height="800"/></svg>');
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(26, 109, 245, 0.15);
  border: 1px solid rgba(26, 109, 245, 0.3);
  border-radius: 20px;
  font-size: 0.88rem;
  color: var(--blue-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero h1 .blue { color: var(--blue-primary); }
.hero h1 .gold { color: var(--gold); }
.hero h1 .green { color: var(--green); }

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.hero-img-wrap {
  margin-top: 48px;
  animation: floatUpDown 4s ease-in-out infinite;
}

.hero-img-wrap img {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(26, 109, 245, 0.2);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 28px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #070e1a;
  animation: pulse 2s infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--blue-primary);
  color: var(--blue-light);
}

.btn-secondary:hover {
  background: rgba(26, 109, 245, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 109, 245, 0.2);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  animation: pulseBlue 2s infinite;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 109, 245, 0.35);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #070e1a;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.btn-sm { padding: 8px 20px; font-size: 0.88rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 80px 24px; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(26, 109, 245, 0.1);
  border: 1px solid rgba(26, 109, 245, 0.2);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   FEATURES GRID (6 advantages)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  text-align: center;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--blue-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 109, 245, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.icon-blue { background: rgba(26, 109, 245, 0.15); color: var(--blue-light); }
.icon-gold { background: rgba(245, 158, 11, 0.15); color: var(--gold); }
.icon-green { background: rgba(16, 185, 129, 0.15); color: var(--green-light); }

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-banner {
  background: linear-gradient(135deg, rgba(26, 109, 245, 0.08), rgba(245, 158, 11, 0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   GLOBAL MAP
   ============================================================ */
.global-map-section {
  text-align: center;
}

.global-map-section img {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
}

.global-tagline {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.global-tagline strong {
  color: var(--gold);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(26, 109, 245, 0.12), transparent),
              radial-gradient(ellipse 60% 60% at 20% 80%, rgba(245, 158, 11, 0.08), transparent);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.cta-section p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 64px 24px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 109, 245, 0.1), transparent 70%);
}

.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero h1 .blue { color: var(--blue-primary); }
.page-hero h1 .gold { color: var(--gold); }

.page-hero .page-hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT — TIMELINE
   ============================================================ */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-primary), var(--gold), var(--green));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-primary);
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 0 2px var(--blue-primary);
}

.timeline-item:nth-child(odd)::before { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.timeline-item:nth-child(3)::before { background: var(--green); box-shadow: 0 0 0 2px var(--green); }

.timeline-year {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ============================================================
   ABOUT — SECURITY CARDS
   ============================================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.security-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.12);
  transform: translateY(-2px);
}

.security-card .sec-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.security-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.security-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--blue-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 109, 245, 0.15);
}

.service-card .svc-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.service-card .svc-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

.service-card .svc-cta {
  display: block;
  margin-top: 12px;
  color: var(--blue-light);
  font-weight: 500;
  font-size: 0.9rem;
}

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

.faq-search {
  margin-bottom: 32px;
}

.faq-search input {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.faq-search input:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26, 109, 245, 0.15);
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h3 {
  font-size: 1.2rem;
  color: var(--blue-light);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: all var(--transition);
}

details:hover {
  border-color: var(--blue-primary);
}

details summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

details summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--blue-light);
  transition: transform var(--transition);
}

details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

details .faq-answer {
  padding: 0 20px 16px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26, 109, 245, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.info-card .info-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.info-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--blue-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(7, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 4px;
    transition: right var(--transition);
    z-index: 1000;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .hero-stat .number { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.8rem; }
  section { padding: 56px 20px; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 16px 80px; }
  .hero h1 { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-primary); }

/* ============================================================
   SERVICE TABLE
   ============================================================ */
.svc-table-wrap {
  overflow-x: auto;
  max-width: 1100px;
  margin: 48px auto 0;
}

.svc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.svc-table thead th {
  background: var(--bg-card);
  padding: 14px 16px;
  text-align: left;
  color: var(--white);
  font-weight: 600;
  border-bottom: 2px solid var(--blue-primary);
}

.svc-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.svc-table tbody tr:hover td {
  background: rgba(26, 109, 245, 0.04);
  color: var(--text-primary);
}

.svc-table .tag-yes {
  color: var(--green-light);
  font-weight: 600;
}

.svc-table .tag-gold {
  color: var(--gold);
  font-weight: 600;
}
