@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

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

:root {
  --bg: #E0E5EC;
  --fg: #3D4852;
  --muted: #6B7280;
  --accent: #192841;
  --accent-light: #2a4a7f;
  --accent-secondary: #38B2AC;
  --shadow-dark: rgb(163,177,198,0.6);
  --shadow-light: rgba(255,255,255,0.5);
  --shadow-dark-h: rgb(163,177,198,0.7);
  --shadow-light-h: rgba(255,255,255,0.6);
  --radius-card: 32px;
  --radius-btn: 16px;
  --radius-inner: 12px;
  --shadow-extruded: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px rgba(255,255,255,0.5);
  --shadow-hover: 12px 12px 20px rgb(163,177,198,0.7), -12px -12px 20px rgba(255,255,255,0.6);
  --shadow-sm: 5px 5px 10px rgb(163,177,198,0.6), -5px -5px 10px rgba(255,255,255,0.5);
  --shadow-inset: inset 6px 6px 10px rgb(163,177,198,0.6), inset -6px -6px 10px rgba(255,255,255,0.5);
  --shadow-inset-deep: inset 10px 10px 20px rgb(163,177,198,0.7), inset -10px -10px 20px rgba(255,255,255,0.6);
  --shadow-inset-sm: inset 3px 3px 6px rgb(163,177,198,0.6), inset -3px -3px 6px rgba(255,255,255,0.5);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 100px; /* space for dock */
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ─── LOGO MARK (shared) ─── */
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 800;
  flex-shrink: 0;
}

/* ─── BRAND PILL ─── */
.brand-pill {
  position: fixed; top: 20px; left: 24px; z-index: 200;
}
.brand-pill-link {
  display: flex; align-items: center; gap: 10px;
  background: rgba(224,229,236,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  box-shadow: var(--shadow-extruded);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 16px; color: var(--fg);
  transition: all 0.3s ease-out;
  white-space: nowrap;
}
.brand-pill-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* ─── MAGNIFICATION DOCK ─── */
.dock-container {
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  pointer-events: none;
}
.dock-panel {
  display: flex; align-items: flex-end; gap: 8px;
  padding: 10px 16px 10px;
  border-radius: 28px;
  background: rgba(224,229,236,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 14px 14px 28px rgb(163,177,198,0.65), -14px -14px 28px rgba(255,255,255,0.7);
  pointer-events: all;
  transition: all 0.3s ease-out;
}
.dock-item {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border-radius: 16px;
  background: var(--bg);
  color: var(--fg);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  /* Spring-feel transition using cubic-bezier overshoot */
  transition:
    width 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-radius 0.22s ease-out,
    box-shadow 0.3s ease-out,
    transform 0.2s ease-out;
  transform-origin: bottom center;
  flex-shrink: 0;
}
.dock-item:hover {
  box-shadow: var(--shadow-hover);
  color: var(--accent);
}
.dock-item:active {
  transform: scale(0.93);
  box-shadow: var(--shadow-inset-sm);
}
.dock-item-accent {
  background: var(--accent);
  color: white !important;
  box-shadow: 5px 5px 12px rgb(25,40,65,0.35), -3px -3px 10px rgba(255,255,255,0.5);
}
.dock-item-accent:hover {
  box-shadow: 8px 8px 18px rgb(25,40,65,0.45), -5px -5px 14px rgba(255,255,255,0.6);
}
/* Active section indicator */
.dock-active:not(.dock-item-accent) {
  box-shadow: var(--shadow-inset-sm);
  color: var(--accent);
}
.dock-active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.dock-label {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  border-radius: 10px;
  padding: 5px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--fg);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
.dock-item:hover .dock-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.dock-divider {
  width: 1px; height: 36px; align-self: center;
  background: linear-gradient(180deg, transparent, rgb(163,177,198,0.5), transparent);
  margin: 0 4px; flex-shrink: 0;
}

/* Mobile dock adaptation */
@media (max-width: 600px) {
  .brand-pill-link span { display: none; }
  .brand-pill-link { padding: 8px; }
  .dock-panel { gap: 6px; padding: 8px 12px; }
  .dock-item { width: 44px; height: 44px; border-radius: 14px; }
  .dock-label { display: none; }
  .dock-divider { display: none; }
}

/* ─── HERO — DSO PANEL ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 80px;
}
/* Chassis */
.dso-chassis {
  width: 100%; max-width: 1100px;
  background: var(--bg);
  border-radius: 40px;
  border: 4px solid #cdd4de;
  box-shadow: var(--shadow-extruded);
  display: flex; flex-direction: column;
  overflow: hidden;
}
/* Brand strips */
.dso-strip {
  height: 48px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 28px;
  background: linear-gradient(90deg, var(--bg), #d3d9e3, var(--bg));
  border-color: rgba(163,177,198,0.3);
}
.dso-strip-top { border-bottom: 1px solid rgba(163,177,198,0.3); border-radius: 36px 36px 0 0; }
.dso-strip-bot { border-top: 1px solid rgba(163,177,198,0.3); border-radius: 0 0 36px 36px; }
.dso-strip-left, .dso-strip-right {
  display: flex; align-items: center; gap: 16px;
}
.dso-tech {
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600;
}
.dso-tech-wide { letter-spacing: 0.3em; opacity: 0.7; }
.dso-tech-amber { color: #d4a052; }
/* Screws */
.dso-screw {
  width: 12px; height: 12px; border-radius: 50%;
  background: #cdd4de;
  box-shadow: inset 2px 2px 4px rgba(163,177,198,0.7), inset -1px -1px 2px rgba(255,255,255,0.6);
  position: relative; flex-shrink: 0;
}
.dso-screw::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 8px; height: 1px;
  background: rgba(163,177,198,0.8);
}
.dso-screw-tl { position: absolute; top: 12px; left: 12px; }
.dso-screw-tr { position: absolute; top: 12px; right: 12px; }
/* Live dot */
.dso-live { display: flex; align-items: center; gap: 8px; }
.dso-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 8px var(--accent-secondary);
  animation: dso-pulse 2s infinite;
}
@keyframes dso-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
/* Main grid */
.dso-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 16px; padding: 20px;
  flex: 1;
}
/* Bezel panel */
.dso-panel {
  background: var(--bg);
  border-radius: 24px;
  box-shadow: var(--shadow-inset);
  padding: 32px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
/* Hero text inside panel */
.dso-hero-body { flex: 1; margin-top: 12px; }
.dso-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900; color: var(--fg);
  text-transform: uppercase; line-height: 1.05;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  letter-spacing: -0.02em;
}
.dso-accent { color: var(--accent-secondary); }
.dso-desc {
  margin-top: 16px; color: var(--muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500; font-size: 0.9rem;
  line-height: 1.7; max-width: 340px;
}
/* Vent grilles */
.dso-vents {
  margin-top: auto; display: flex;
  flex-direction: column; gap: 5px;
  padding-top: 20px; opacity: 0.35;
}
.dso-vent {
  width: 100%; height: 2px;
  box-shadow: var(--shadow-inset-sm);
}
/* LCD screen */
.dso-lcd {
  background: var(--accent);
  border-radius: 24px;
  border: 6px solid #cdd4de;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 220px;
}
.dso-lcd-grat {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(56,178,172,0.25) 1px, transparent 1px);
  background-size: 20px 20px;
}
.dso-lcd-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
  animation: dso-breath 3s ease-in-out infinite;
}
@keyframes dso-breath {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.1; }
}
.dso-scanline {
  position: absolute; height: 2px; width: 100%;
  background: linear-gradient(to right, transparent, rgba(56,178,172,0.45), transparent);
  animation: dso-scan 4s linear infinite;
  pointer-events: none; z-index: 10;
}
@keyframes dso-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(500%); }
}
.dso-lcd-grid {
  position: relative; z-index: 5; flex: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.dso-cell {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 16px;
  cursor: pointer;
  transition: background 0.3s ease-out;
}
.dso-cell:nth-child(1) { border-right: 1px solid rgba(56,178,172,0.12); border-bottom: 1px solid rgba(56,178,172,0.12); }
.dso-cell:nth-child(2) { border-bottom: 1px solid rgba(56,178,172,0.12); }
.dso-cell:nth-child(3) { border-right: 1px solid rgba(56,178,172,0.12); }
.dso-cell svg { color: rgba(255,255,255,0.2); transition: all 0.3s ease-out; }
.dso-cell .dso-tech { color: rgba(255,255,255,0.35); transition: all 0.3s ease-out; }
.dso-cell:hover { background: rgba(56,178,172,0.08); }
.dso-cell.dso-cell-active svg { color: var(--accent-secondary); opacity: 1; }
.dso-cell.dso-cell-active .dso-tech { color: #fff; opacity: 1; }
/* Controls */
.dso-controls {
  display: flex; flex-direction: column; gap: 20px;
  justify-content: center;
}
.dso-btn-row { display: flex; align-items: center; gap: 12px; }
.dso-btn-primary {
  flex: 1; height: 52px;
  background: linear-gradient(135deg, #3a9e98, #2d8a84);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: white; text-decoration: none; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.15em;
  box-shadow: 0 0 15px rgba(56,178,172,0.35);
  transition: all 0.15s ease-out;
}
.dso-btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.dso-btn-primary:active { transform: scale(0.97); box-shadow: inset 4px 4px 10px rgba(0,0,0,0.2); }
.dso-btn-sec {
  width: 52px; height: 52px;
  background: var(--bg); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-extruded);
  color: var(--muted); border: none; cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.dso-btn-sec:hover { color: var(--fg); box-shadow: var(--shadow-hover); }
.dso-btn-sec:active { box-shadow: var(--shadow-inset-sm); transform: scale(0.96); }
/* Stat readouts */
.dso-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.dso-stat {
  background: var(--bg); border-radius: 16px;
  box-shadow: var(--shadow-inset);
  padding: 14px 16px;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
}
.dso-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.3rem; color: var(--fg);
}
.dso-stat-teal { color: var(--accent-secondary); }
.dso-stat-amber { color: #d4a052; }
/* Rotary dial */
.dso-rotary-area {
  display: flex; align-items: center; justify-content: center;
}
.dso-rotary-wrap {
  position: relative;
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.dso-led-ring {
  position: absolute; inset: 0;
}
.dso-led-pos {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.dso-led-top { top: 0; left: 50%; transform: translateX(-50%); }
.dso-led-right { right: 0; top: 50%; transform: translateY(-50%); flex-direction: row; gap: 8px; }
.dso-led-bottom { bottom: 0; left: 50%; transform: translateX(-50%); flex-direction: column-reverse; }
.dso-led-left { left: 0; top: 50%; transform: translateY(-50%); flex-direction: row; gap: 8px; }
.dso-led {
  width: 8px; height: 8px; border-radius: 50%;
  background: #cdd4de;
  box-shadow: inset 2px 2px 4px rgba(163,177,198,0.6);
  transition: all 0.3s ease-out;
}
.dso-led.dso-led-on {
  background: var(--accent-secondary);
  box-shadow: 0 0 8px rgba(56,178,172,0.6), 0 0 20px rgba(56,178,172,0.25);
  transform: scale(1.2);
}
.dso-rotary {
  width: 130px; height: 130px;
  background: var(--bg);
  border-radius: 50%;
  box-shadow: var(--shadow-inset-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: grab;
}
.dso-rotary:active { cursor: grabbing; }
.dso-knob {
  width: 96px; height: 96px;
  background: linear-gradient(135deg, #d3d9e3, #c5ccda);
  border-radius: 50%;
  box-shadow: 10px 10px 20px rgba(163,177,198,0.7), -10px -10px 20px rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.2s ease-out;
}
.dso-knob-indent {
  position: absolute; width: 40px; height: 40px;
  top: 4px; left: 50%; transform: translateX(-50%);
  background: var(--bg);
  border-radius: 50%;
  box-shadow: var(--shadow-inset);
  display: flex; align-items: center; justify-content: center;
}
.dso-knob-line {
  width: 2px; height: 18px;
  background: var(--accent-secondary);
  border-radius: 2px; opacity: 0.8;
}
/* Haptic shake */
@keyframes dso-haptic {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(1.5px); }
  75% { transform: translateX(-1.5px); }
}
.dso-haptic { animation: dso-haptic 0.16s steps(4); }

/* DSO Responsive */
@media (max-width: 900px) {
  .dso-grid { grid-template-columns: 1fr; }
  .dso-rotary-area { padding: 20px 0; }
  .dso-title { font-size: clamp(1.4rem, 5vw, 2rem); }
}
@media (max-width: 600px) {
  .dso-chassis { border-radius: 28px; border-width: 3px; }
  .dso-strip { height: 40px; padding: 0 16px; }
  .dso-grid { padding: 12px; gap: 12px; }
  .dso-panel { padding: 24px 20px; border-radius: 18px; }
  .dso-lcd { border-radius: 18px; border-width: 4px; min-height: 180px; }
  .dso-tech-wide { display: none; }
  .dso-rotary-wrap { width: 160px; height: 160px; }
  .dso-rotary { width: 100px; height: 100px; }
  .dso-knob { width: 72px; height: 72px; }
  .dso-knob-indent { width: 30px; height: 30px; }
}

/* ─── SECTION BASE ─── */
section { padding: 100px 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px; max-width: 1280px; margin: 0 auto;
}
.service-card {
  background: var(--bg); border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-extruded);
  transition: all 0.3s ease-out;
  cursor: default;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.icon-well {
  width: 68px; height: 68px; border-radius: 20px;
  background: var(--bg);
  box-shadow: var(--shadow-inset-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.icon-well svg { color: var(--accent); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  font-size: 12px; font-weight: 600; color: var(--accent);
  background: var(--bg); padding: 5px 12px; border-radius: 999px;
  box-shadow: var(--shadow-inset-sm);
}

/* ─── SECTORS ─── */
.sectors-bg { background: var(--bg); }
.sectors-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px; max-width: 1280px; margin: 0 auto;
}
.sector-card {
  background: var(--bg); border-radius: var(--radius-card);
  padding: 48px 36px;
  box-shadow: var(--shadow-extruded);
  transition: all 0.3s ease-out;
  position: relative; overflow: hidden;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.sector-card:hover .sector-number { opacity: 0.12; transform: scale(1.1); }
.sector-number {
  position: absolute; right: 24px; top: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 5rem; color: var(--accent);
  opacity: 0.06; line-height: 1;
  transition: all 0.5s ease-out;
}
.sector-icon-well {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--bg); box-shadow: var(--shadow-inset-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.sector-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.sector-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.sector-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.sector-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: 0.9rem; font-weight: 500;
}
.sector-list li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-secondary); flex-shrink: 0;
}

/* ─── WHY US ─── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; max-width: 1280px; margin: 0 auto; align-items: center;
}
.why-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 20px; }
.why-text p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 32px; }
.why-features { display: flex; flex-direction: column; gap: 16px; }
.feature-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg); border-radius: 20px;
  padding: 18px 22px; box-shadow: var(--shadow-extruded);
  transition: all 0.3s ease-out;
}
.feature-row:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); }
.feature-dot {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--bg); box-shadow: var(--shadow-inset-deep);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-row h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.feature-row p { font-size: 0.85rem; color: var(--muted); }

/* Why visual */
.why-visual {
  display: flex; justify-content: center; align-items: center;
}
.why-orb-wrap {
  position: relative; width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.mini-cards {
  position: absolute; width: 100%; height: 100%;
}
.mini-card {
  position: absolute; background: var(--bg); border-radius: 20px;
  box-shadow: var(--shadow-extruded); padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--fg);
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
}
.mini-card:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
.mini-card:nth-child(2) { top: 0; right: 0; animation-delay: 0.8s; }
.mini-card:nth-child(3) { bottom: 30px; left: 0; animation-delay: 1.6s; }
.mini-card:nth-child(4) { bottom: 30px; right: 0; animation-delay: 0.4s; }
.mini-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-secondary); }
.center-badge {
  z-index: 2; background: var(--bg); border-radius: 50%;
  width: 120px; height: 120px;
  box-shadow: var(--shadow-extruded);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.center-badge .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 2rem; color: var(--accent);
}
.center-badge .lbl { font-size: 11px; color: var(--muted); font-weight: 500; }

/* ─── PROCESS ─── */
.process-grid {
  display: flex; gap: 0; max-width: 1100px; margin: 0 auto;
  position: relative; flex-wrap: wrap; justify-content: center;
}
.process-step {
  flex: 1; min-width: 160px; max-width: 200px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; padding: 0 12px;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 36px; left: calc(50% + 40px);
  width: calc(100% - 80px); height: 2px;
  background: linear-gradient(90deg, rgb(163,177,198,0.4), rgba(255,255,255,0.6));
  box-shadow: var(--shadow-inset-sm);
  border-radius: 2px;
}
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg); box-shadow: var(--shadow-extruded);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.4rem; color: var(--accent);
  margin-bottom: 20px; position: relative; z-index: 1;
  transition: all 0.3s ease-out;
}
.process-step:hover .step-num { box-shadow: var(--shadow-hover); transform: scale(1.05); }
.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── CONTACT ─── */
.contact-wrap {
  max-width: 760px; margin: 0 auto;
  background: var(--bg); border-radius: var(--radius-card);
  padding: 56px 64px; box-shadow: var(--shadow-extruded);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 700; color: var(--fg); letter-spacing: 0.03em; }
input, textarea, select {
  background: var(--bg); border: none; outline: none;
  border-radius: var(--radius-btn); padding: 14px 18px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--fg);
  box-shadow: var(--shadow-inset);
  transition: all 0.3s ease-out; width: 100%;
  resize: none;
}
input::placeholder, textarea::placeholder { color: #A0AEC0; }
input:focus, textarea:focus, select:focus {
  box-shadow: var(--shadow-inset-deep);
  outline: 2px solid var(--accent); outline-offset: 2px;
}
select { cursor: pointer; appearance: none; }
textarea { min-height: 130px; }
.submit-btn {
  width: 100%; margin-top: 8px;
  background: var(--accent); color: white;
  padding: 16px; border-radius: var(--radius-btn);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 16px;
  border: none; cursor: pointer;
  box-shadow: 6px 6px 14px rgb(25,40,65,0.35), -4px -4px 12px rgba(255,255,255,0.6);
  transition: all 0.3s ease-out; letter-spacing: 0.02em;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 8px 8px 20px rgb(25,40,65,0.45), -6px -6px 16px rgba(255,255,255,0.7); }
.submit-btn:active { transform: translateY(0.5px); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  box-shadow: 0 -4px 24px rgb(163,177,198,0.3);
  padding: 48px 24px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 14px; line-height: 1.7; max-width: 320px; }
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--fg); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
/* Logo images */
.logo-img {
  width: 36px; height: 36px; border-radius: 10px;
  object-fit: contain;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  background: white;
}
.footer-logo-img {
  width: 44px; height: 44px; border-radius: 12px;
  object-fit: contain;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  background: white;
}
/* Footer contact details */
.footer-contact {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-contact p {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.6; margin: 0;
  font-weight: 500;
}
.footer-contact p svg {
  color: var(--accent-secondary);
  flex-shrink: 0; margin-top: 2px;
}
.footer-contact a {
  color: var(--accent); text-decoration: none;
  font-weight: 600; transition: color 0.2s;
}
.footer-contact a:hover { color: var(--accent-secondary); }
.footer-reg {
  display: flex; flex-direction: column !important; gap: 2px !important;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 10px;
  box-shadow: var(--shadow-inset-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem !important;
  letter-spacing: 0.03em;
}
.footer-reg span {
  color: var(--muted); font-weight: 600;
}
.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  color: var(--fg); margin-bottom: 16px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: color 0.3s ease-out;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(163,177,198,0.4);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--bg); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  transition: all 0.3s ease-out;
}
.social-btn:hover { color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* ─── ANIMATIONS ─── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease-out forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-orb-wrap { width: 300px; height: 300px; }
  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 236px; height: 236px; }
  .orb-3 { width: 172px; height: 172px; }
  .orb-4 { width: 110px; height: 110px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 72px 24px; }
  .contact-wrap { padding: 36px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .process-grid { gap: 32px; }
  .process-step:not(:last-child)::after { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .why-orb-wrap { width: 280px; height: 280px; }
  .mini-card { font-size: 11px; padding: 10px 14px; }
}
@media (max-width: 480px) {
  .hero-orb-wrap { width: 240px; height: 240px; }
  .orb-1 { width: 240px; height: 240px; }
  .orb-2 { width: 188px; height: 188px; }
  .orb-3 { width: 136px; height: 136px; }
  .orb-4 { width: 84px; height: 84px; }
}

/* ─── HERO IMAGE CARD ─── */
.hero-img-card {
  position: relative;
  display: inline-block;
}
.hero-img-frame {
  width: 420px; height: 420px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-extruded);
  overflow: hidden;
  background: var(--bg);
  transition: all 0.4s ease-out;
}
.hero-img-frame:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  border-radius: var(--radius-card);
}
.hero-img-badge {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); border-radius: 14px;
  padding: 10px 16px;
  box-shadow: var(--shadow-extruded);
  font-size: 13px; font-weight: 700; color: var(--fg);
  animation: float 3s ease-in-out infinite;
}
.hero-img-badge.top-left { top: -18px; left: -20px; animation-delay: 0s; }
.hero-img-badge.bottom-right { bottom: -18px; right: -20px; animation-delay: 1.5s; }
.badge-dot { width: 10px; height: 10px; border-radius: 50%; background: #38B2AC; }

/* ─── SERVICE IMAGE THUMBS ─── */
.service-img-thumb {
  margin-top: 20px; border-radius: 16px; overflow: hidden;
  height: 130px;
  box-shadow: var(--shadow-inset);
}
.service-img-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.4s ease-out;
}
.service-card:hover .service-img-thumb img { transform: scale(1.05); }

/* ─── WHY-US IMAGE VISUAL ─── */
.why-img-wrap {
  position: relative; display: inline-block;
}
.why-img-card {
  width: 400px; height: 440px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-extruded);
  overflow: hidden; background: var(--bg);
  transition: all 0.4s ease-out;
}
.why-img-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-img-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.why-floating-badge {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); border-radius: 14px;
  padding: 10px 18px;
  box-shadow: var(--shadow-extruded);
  font-size: 13px; font-weight: 700; color: var(--fg);
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
}
.why-floating-badge.top { top: 24px; right: -24px; animation-delay: 0s; }
.why-floating-badge.bottom { bottom: 40px; left: -24px; animation-delay: 1.5s; }

@media (max-width: 1024px) {
  .hero-img-frame { width: 340px; height: 340px; }
  .why-img-card { width: 340px; height: 360px; }
  .why-floating-badge.top { right: -12px; }
  .why-floating-badge.bottom { left: -12px; }
}
@media (max-width: 768px) {
  .hero-img-frame { width: 280px; height: 280px; }
  .hero-img-badge.top-left { top: -12px; left: -8px; }
  .hero-img-badge.bottom-right { bottom: -12px; right: -8px; }
  .why-img-card { width: 100%; height: 280px; max-width: 400px; }
  .why-floating-badge { display: none; }
}

/* ─── ORBIT ANIMATION VISUAL ─── */
.orbit-wrap {
  position: relative;
  width: 480px; height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.orbit-svg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  overflow: visible;
}
.orbit-line {
  stroke: url(#lineGrad);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: none;
  filter: drop-shadow(0 0 3px rgba(25,40,65,0.25));
}

/* Center node */
.o-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  /* Size + shape animated by JS */
  width: 120px; height: 70px;
  border-radius: 20px;
  background: var(--bg);
  box-shadow: var(--shadow-extruded);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  overflow: hidden;
  cursor: default;
  will-change: width, height, border-radius;
}
.o-center-icon {
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s ease-out;
}
.o-center-text {
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  text-align: center;
}
.o-center-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 0.85rem;
  color: var(--fg); line-height: 1.2;
  letter-spacing: -0.02em;
}
.o-center-sub {
  font-size: 0.7rem; font-weight: 600;
  color: var(--accent); margin-top: 2px;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* Satellite nodes */
.o-node {
  position: absolute; top: 50%; left: 50%;
  /* transform set entirely by JS */
  z-index: 2;
  width: 120px; height: 64px;
  border-radius: 16px;
  background: var(--bg);
  box-shadow: var(--shadow-extruded);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; padding: 8px;
  color: var(--fg);
  will-change: transform;
  cursor: default;
  transition: box-shadow 0.3s ease-out;
}
.o-node:hover { box-shadow: var(--shadow-hover); }
.o-node svg { color: var(--accent); flex-shrink: 0; }
.o-node span {
  font-size: 11px; font-weight: 700;
  color: var(--fg); text-align: center;
  line-height: 1.3; letter-spacing: -0.01em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Orbit ring decoration (shows when expanded) */
.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(25,40,65,0.08);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none; z-index: 0;
  transition: none;
}

@media (max-width: 1024px) {
  .orbit-wrap { width: 380px; height: 380px; }
}
@media (max-width: 768px) {
  .orbit-wrap { width: 320px; height: 320px; }
  .o-node { width: 100px; height: 56px; font-size: 10px; }
  .o-center-title { font-size: 0.72rem; }
}
