/* ============================================
   Home Page (softa.test) - Scoped Styles
   All rules prefixed with .page-home to avoid
   conflicts with filter.softa.test existing pages
   ============================================ */
.page-home {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --accent-1: #06b6d4;
  --accent-2: #3b82f6;
  --accent-3: #8b5cf6;
  --accent-glow: rgba(6, 182, 212, 0.15);
  --border-color: rgba(15, 23, 42, 0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-cn: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: 'Outfit', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

.page-home {
  font-family: var(--font-cn);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   Background Effects
   ============================================ */
.page-home #bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.page-home .bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.page-home .bg-glow--1 { width: 600px; height: 600px; top: -200px; right: -100px; background: var(--accent-2); opacity: 0.25; }
.page-home .bg-glow--2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: var(--accent-3); opacity: 0.22; }
.page-home .bg-glow--3 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--accent-1); opacity: 0.1; }

/* ============================================
   Navigation
   ============================================ */
.page-home .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s, box-shadow 0.3s;
}
.page-home .nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.page-home .nav-inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-home .nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.page-home .nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}
.page-home .nav-logo-text {
  font-family: var(--font-cn);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}
.page-home .nav-logo-text small {
  font-weight: 300;
  font-size: 11px;
  color: var(--text-secondary);
  display: block;
  letter-spacing: 0;
}

.page-home .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.page-home .nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.page-home .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transition: width 0.3s;
  border-radius: 2px;
}
.page-home .nav-links a:hover { color: var(--text-primary); }
.page-home .nav-links a:hover::after { width: 100%; }

.page-home .nav-cta {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.page-home .nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}
.page-home .nav-cta::after { display: none !important; }

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

/* ============================================
   Sections Common
   ============================================ */
.page-home .section {
  position: relative;
  z-index: 1;
  padding: 120px 24px;
}
.page-home .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-home .section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 16px;
  padding: 4px 16px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 50px;
  background: rgba(6, 182, 212, 0.05);
}

.page-home .section-title {
  font-family: var(--font-cn);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.page-home .section-title .highlight {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-home .section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

.page-home .mobile-only { display: none; }

/* reveal animation */
.page-home .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.page-home .reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Hero
   ============================================ */
.page-home .hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: none;
}
.page-home .hero-inner {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-home .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent-1);
  font-weight: 500;
  margin-bottom: 24px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
}
.page-home .hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent-1);
  border-radius: 50%;
  animation: home-pulse-dot 2s ease-in-out infinite;
}
@keyframes home-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.page-home .hero-title {
  font-family: var(--font-cn);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}
.page-home .hero-title .gradient {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-home .hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.page-home .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-home .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff;
  font-family: var(--font-cn);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.page-home .btn-primary::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s;
}
.page-home .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.3);
  color: #fff;
}
.page-home .btn-primary:hover::after {
  transform: translateX(3px);
}

.page-home .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-cn);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.page-home .btn-secondary:hover {
  border-color: var(--accent-1);
  background: rgba(6, 182, 212, 0.05);
}

/* Hero Visual */
.page-home .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-home .hero-card {
  width: 100%;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}
.page-home .hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3));
}

.page-home .hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.page-home .hero-card-header .dots { display: flex; gap: 6px; }
.page-home .hero-card-header .dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.page-home .hero-card-header .dots span:nth-child(1) { background: #ef4444; }
.page-home .hero-card-header .dots span:nth-child(2) { background: #f59e0b; }
.page-home .hero-card-header .dots span:nth-child(3) { background: #22c55e; }
.page-home .hero-card-header .card-title {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 500;
}

.page-home .hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.page-home .hero-card-stat {
  background: rgba(148, 163, 184, 0.05);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.page-home .hero-card-stat .num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.page-home .hero-card-stat .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.page-home .hero-card-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}
.page-home .hero-card-bar:last-child { border-bottom: none; }
.page-home .hero-card-bar .bar-track {
  flex: 1;
  height: 8px;
  background: rgba(148, 163, 184, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.page-home .hero-card-bar .bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  width: 0;
  transition: width 1.5s ease;
}
.page-home .hero-card-bar .bar-label {
  font-size: 13px;
  color: var(--text-secondary);
  min-width: 80px;
}
.page-home .hero-card-bar .bar-pct {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-1);
  min-width: 40px;
  text-align: right;
}

/* floating elements */
.page-home .float-el {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-en);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  animation: home-float 6s ease-in-out infinite;
  color: var(--accent-1);
}
.page-home .float-el--1 { top: -20px; right: -20px; animation-delay: 0s; width: 52px; background: rgba(6, 182, 212, 0.12); border-color: rgba(6, 182, 212, 0.2); }
.page-home .float-el--2 { bottom: -10px; left: -30px; animation-delay: 2s; color: var(--accent-2); background: rgba(59, 130, 246, 0.12); border-color: rgba(59, 130, 246, 0.2); }
.page-home .float-el--3 { top: 40%; right: -40px; animation-delay: 4s; width: 36px; height: 36px; font-size: 16px; color: var(--accent-3); background: rgba(139, 92, 246, 0.12); border-color: rgba(139, 92, 246, 0.2); }

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

/* ============================================
   About
   ============================================ */
.page-home .about { background: #f1f5f9; }
.page-home .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-home .about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.page-home .about-value {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.page-home .about-value:hover {
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}
.page-home .about-value .icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.page-home .about-value h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.page-home .about-value p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.page-home .about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.page-home .about-stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: border-color 0.3s;
}
.page-home .about-stat:hover { border-color: rgba(6, 182, 212, 0.3); }
.page-home .about-stat .num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-home .about-stat .label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ============================================
   Product
   ============================================ */
.page-home .product-header {
  text-align: center;
  margin-bottom: 60px;
}
.page-home .product-header .section-desc {
  margin: 0 auto;
}

.page-home .product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.page-home #product .product-showcase {
  grid-template-columns: 1fr 1.25fr;
}
.page-home #filter .product-showcase {
  grid-template-columns: 1.25fr 1fr;
}

.page-home .product-info .product-name {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-1);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.page-home .product-info h3 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--text-primary);
}
.page-home .product-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.page-home .product-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-home .product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  list-style: none;
  font-size: 14px;
  color: var(--text-secondary);
}
.page-home .product-features-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--accent-1);
  font-weight: 700;
}

.page-home .product-image {
  position: relative;
}
.page-home .product-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  width: 100%;
}
.page-home .product-mockup-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(148, 163, 184, 0.05);
  border-bottom: 1px solid var(--border-color);
}
.page-home .product-mockup--code {
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
}
.page-home .product-mockup--code .product-mockup-top {
  background: #1e293b;
  border-bottom: 1px solid #334155;
}
.page-home .product-mockup-top span:nth-child(-n+3) {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.page-home .product-mockup-top span:nth-child(1) { background: #ef4444; }
.page-home .product-mockup-top span:nth-child(2) { background: #f59e0b; }
.page-home .product-mockup-top span:nth-child(3) { background: #22c55e; }

.page-home .product-mockup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-home .product-mockup-body .row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.page-home .product-mockup-body .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  flex-shrink: 0;
}
.page-home .product-mockup-body .line {
  flex: 1;
  height: 10px;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.1);
}
.page-home .product-mockup-body .line.wide { width: 70%; }
.page-home .product-mockup-body .line.medium { width: 50%; }
.page-home .product-mockup-body .line.narrow { width: 30%; }

.page-home .product-mockup-body .chart-area {
  height: 120px;
  background: rgba(148, 163, 184, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-end;
  padding: 0 20px 12px;
  gap: 8px;
}
.page-home .product-mockup-body .chart-area .bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--accent-1), rgba(6, 182, 212, 0.2));
  height: 0;
  transition: height 1.5s ease;
}
.page-home .product-mockup-body .chart-area .bar:nth-child(2) { background: linear-gradient(180deg, var(--accent-2), rgba(59, 130, 246, 0.2)); }
.page-home .product-mockup-body .chart-area .bar:nth-child(3) { background: linear-gradient(180deg, var(--accent-3), rgba(139, 92, 246, 0.2)); }

/* ============================================
   Features Grid
   ============================================ */
.page-home .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.page-home .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.page-home .feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s;
}
.page-home .feature-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
}
.page-home .feature-card:hover::before { opacity: 1; }

.page-home .feature-card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  background: rgba(6, 182, 212, 0.1);
  position: relative;
  color: var(--accent-1);
}
.page-home .feature-card:nth-child(2n) .icon-wrap { color: var(--accent-2); }
.page-home .feature-card:nth-child(3n) .icon-wrap { color: var(--accent-3); }
.page-home .feature-card .icon-wrap {
  font-size: 22px;
  line-height: 1;
}
.page-home .feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.page-home .feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.page-home .cta {
  text-align: center;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
}
.page-home .cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06), transparent 70%);
  pointer-events: none;
}
.page-home .cta .section-title {
  font-size: clamp(28px, 4vw, 44px);
}
.page-home .cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.page-home .cta-hint {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.page-home .cta-hint a {
  color: var(--accent-1);
  text-decoration: none;
}
.page-home .cta-hint a:hover { text-decoration: underline; }

/* ============================================
   Footer
   ============================================ */
.page-home .footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-color);
  padding: 48px 24px 32px;
  background: transparent;
}
.page-home .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.page-home .footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 300px;
  line-height: 1.7;
}
.page-home .footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-en);
}
.page-home .footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.page-home .footer-col a:hover { color: var(--accent-1); }

.page-home .footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}
.page-home .footer-bottom-links { display: flex; gap: 24px; }
.page-home .footer-bottom-links a { color: var(--text-muted); text-decoration: none; }
.page-home .footer-bottom-links a:hover { color: var(--accent-1); }

/* ============================================
   Mobile
   ============================================ */
@media (max-width: 900px) {
  .page-home .hero-inner,
  .page-home .about-grid,
  .page-home .product-showcase { grid-template-columns: 1fr; gap: 40px; }

  .page-home .features-grid { grid-template-columns: 1fr 1fr; }
  .page-home .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-home .footer-brand { grid-column: 1 / -1; }

  .page-home .hero-visual { order: -1; }

  .page-home .mobile-only { display: inline; }

  .page-home .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  .page-home .nav-links.open { display: flex; }
  .page-home .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .page-home .features-grid { grid-template-columns: 1fr; }
  .page-home .about-values { grid-template-columns: 1fr; }
  .page-home .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .page-home .footer-inner { grid-template-columns: 1fr; }
  .page-home .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-home .hero-card { padding: 20px; }
  .page-home .hero-card-stats { gap: 10px; }
  .page-home .hero-card-stat { padding: 12px; }
  .page-home .hero-card-stat .num { font-size: 22px; }
}
