* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #FFFAF5; color: #1E293B; overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #FFF7ED; }
::-webkit-scrollbar-thumb { background: #FDBA74; border-radius: 3px; }

.glass-warm {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(249,115,22,0.12);
  box-shadow: 0 4px 30px rgba(249,115,22,0.06);
}
.glass-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(249,115,22,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.glass-dark {
  background: rgba(30,41,59,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.25); }

.type-card { position: relative; overflow: hidden; }
.type-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--accent-c), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.type-card:hover::before { opacity: 1; }

.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2px;
  background: #F97316; transition: all 0.3s; transform: translateX(-50%); border-radius: 1px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.dot-pattern {
  position: absolute; pointer-events: none;
}
.blue-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #3B82F6; opacity: 0.3;
  position: absolute;
}
.blue-dot.lg { width: 14px; height: 14px; }
.blue-dot.sm { width: 6px; height: 6px; }

.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); border: 1px solid rgba(249,115,22,0.25);
  padding: 16px 32px; border-radius: 12px; z-index: 100; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #EA580C; font-size: 14px; font-weight: 500; box-shadow: 0 8px 30px rgba(249,115,22,0.15);
}
.toast.show { transform: translateX(-50%) translateY(0); }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: rgba(255,250,245,0.98); backdrop-filter: blur(20px);
  border-left: 1px solid rgba(249,115,22,0.1); z-index: 60;
  transition: right 0.3s ease; padding: 80px 32px 32px;
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 55;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.synergy-item { position: relative; padding-left: 24px; }
.synergy-item::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #F97316; box-shadow: 0 0 10px rgba(249,115,22,0.4);
}

.step-connector { position: relative; }
.step-connector::after {
  content: ''; position: absolute; top: 50%; right: -32px; width: 64px; height: 2px;
  background: linear-gradient(to right, rgba(249,115,22,0.4), rgba(249,115,22,0.08));
}
.step-connector:last-child::after { display: none; }

.orange-blob {
  border-radius: 50%; position: absolute; pointer-events: none; filter: blur(80px);
}

/* ====== Hero Image (Full-bleed) ====== */
.hero-image {
  height: 78vh;
  min-height: 520px;
  max-height: 820px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
