/* ─── Variables ─────────────────────────────────────────── */
:root {
  --orange:      #FF6B00;
  --orange-lt:   #FF8C42;
  --bg-dark:     #1a1a22;
  --bg-alt:      #222230;
  --bg-card:     #2a2a38;
  --text:        #F5F5F5;
  --muted:       rgba(255,255,255,0.72);
  --border:      rgba(255,255,255,0.13);
  --border-o:    rgba(255,107,0,0.28);
}

/* ─── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ─── Layout ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 110px 0; }
.bg-dark { background: var(--bg-dark); }
.bg-alt  { background: var(--bg-alt); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-header { margin-bottom: 60px; }
.section-header h2 { margin-top: 0; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
h2 { font-size: clamp(1.9rem, 3.2vw, 2.85rem); margin-bottom: 22px; }
h3 { font-size: 1.5rem; }
p  { color: var(--muted); line-height: 1.78; font-size: 0.94rem; margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
strong { color: rgba(255,255,255,0.88); font-weight: 600; }

.s-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.s-label::before {
  content: '';
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── Divider ───────────────────────────────────────────── */
.hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.3), transparent);
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 11px 24px;
  font-size: 0.88rem;
}
.btn-primary:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255,107,0,0.35);
}
.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.82);
  padding: 11px 24px;
  font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-secondary:hover { border-color: var(--border-o); color: #fff; }
.btn-secondary:disabled { opacity: 0.45; cursor: default; pointer-events: none; }
.btn-sm  { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg  { padding: 14px 36px; font-size: 0.94rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Badge ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,150,60,0.9);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.badge-live .badge-dot { background: #22c55e; box-shadow: 0 0 6px #22c55e; }

/* ─── Card ──────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-o);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 30px rgba(255,107,0,0.07);
}

/* ─── Features ──────────────────────────────────────────── */
.feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feat-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(255,107,0,0.12);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.feat-icon.blue {
  background: rgba(120,130,255,0.12);
  color: rgba(160,170,255,0.9);
}
.feat-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 3px; color: var(--text); }
.feat-detail { font-size: 0.78rem; color: rgba(255,255,255,0.52); line-height: 1.5; }

/* ─── Banister ──────────────────────────────────────────── */
.banister {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
.banister-head {
  position: relative;
  width: 88px;
  height: 96px;
  flex-shrink: 0;
}
.banister-triangle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.banister-icon-link {
  pointer-events: all;
  position: absolute;
  top: 16px;
  left: 13px;
  display: block;
  opacity: 0.90;
  transition: opacity 0.2s;
}
.banister-icon-link:hover { opacity: 1; }
.banister-icon {
  width: 34px;
  height: auto;
  display: block;
}
.banister-line {
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, rgba(255,107,0,0.35), transparent);
  margin-left: 0;
}

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 15px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(26,26,34,0.90);
  border-bottom: 1px solid rgba(255,107,0,0.08);
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: rgba(255,107,0,0.20); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--orange); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em; }
.logo-img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; margin-right: 32px; }
.nav-links a,
.nav-dropdown-trigger {
  color: rgba(255,255,255,1.0);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-trigger.active { color: #fff; }
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-dropdown-caret {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.7;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  min-width: 150px;
  padding: 8px;
  background: rgba(26,26,34,0.98);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255,255,255,0.74);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(255,107,0,0.10);
  color: #fff;
}

/* ─── Hamburger / Mobile Menu ───────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 7px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.80);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 61px; left: 0; right: 0;
  background: rgba(15,15,18,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,0,0.12);
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.open { max-height: 420px; }
.mobile-menu-inner { padding: 12px 0 24px; }
.mobile-menu-inner a {
  display: block;
  padding: 13px 28px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-inner a:last-child { border-bottom: none; }
.mobile-menu-inner a:hover { color: #fff; background: rgba(255,107,0,0.05); }
.mobile-menu-inner .mobile-sub-link {
  padding-left: 44px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.58);
}
.mobile-menu-inner .mobile-cta {
  margin: 16px 28px 0;
  display: block;
  text-align: center;
  border-bottom: none !important;
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
}
.mobile-menu-inner .mobile-cta:hover { background: var(--orange-lt) !important; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: var(--bg-dark);
  background-image: url('../images/port-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,26,34,0.82) 0%, rgba(26,26,34,0.72) 50%, rgba(26,26,34,0.93) 100%),
    linear-gradient(rgba(255,107,0,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.018) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { width: 100%; padding-top: 60px; padding-bottom: 80px; position: relative; z-index: 1; }
.hero-content { max-width: 760px; }
.hero-headline {
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 24px 0 26px;
  animation: fadeUp 0.75s 0.1s ease both;
}
.hero-headline .g-text {
  background: linear-gradient(135deg, #FF6B00 0%, #FFB347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 38px;
  animation: fadeUp 0.75s 0.2s ease both;
}
.hero-ctas {
  display: flex; gap: 13px; flex-wrap: wrap;
  animation: fadeUp 0.75s 0.3s ease both;
}
.stats-row {
  margin-top: 76px;
  padding-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 36px;
}
.stat-num {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.50);
  margin-top: 8px;
  line-height: 1.55;
}

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

/* ─── Problem / Comparison ──────────────────────────────── */
.problem-text h2 { margin-top: 0; }
.problem-text p { margin-bottom: 16px; }
.comparison-card { padding: 34px; }
.cmp-group { margin-bottom: 26px; }
.cmp-group:last-child { margin-bottom: 0; }
.cmp-group-title {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 10px;
}
.cmp-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; border-radius: 8px;
  font-size: 0.83rem; margin-bottom: 7px;
}
.cmp-row:last-child { margin-bottom: 0; }
.cmp-row.bad  { background: rgba(239,68,68,0.06);  border: 1px solid rgba(239,68,68,0.12); }
.cmp-row.good { background: rgba(255,107,0,0.06); border: 1px solid rgba(255,107,0,0.14); }
.cmp-label { color: rgba(255,255,255,0.52); }
.cmp-row.bad  .cmp-val { color: #f87171; }
.cmp-row.good .cmp-val { color: #FF8C42; }

/* ─── Solutions grid ────────────────────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.solution-card { }
.solution-visual {
  height: 188px;
  position: relative;
  overflow: hidden;
}
.solution-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  display: block;
}
.solution-visual-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26,26,34,0.34), rgba(26,26,34,0.02)),
    linear-gradient(0deg, rgba(26,26,34,0.64), rgba(26,26,34,0.00) 58%);
}
.solution-visual.live {
  background: linear-gradient(135deg, #1c0a00, #301500, #1c0a00);
}
.solution-visual.coming-soon {
  background: linear-gradient(135deg, #090915, #111130, #090915);
}
.solution-visual-glow {
  position: absolute; inset: 0;
}
.live .solution-visual-glow {
  background: radial-gradient(ellipse at 65% 50%, rgba(255,107,0,0.25) 0%, transparent 55%);
}
.coming-soon .solution-visual-glow {
  background: radial-gradient(ellipse at 65% 50%, rgba(100,110,255,0.14) 0%, transparent 55%);
}

/* Sensor diagram */
.sensor-diagram {
  position: absolute;
  right: 44px; top: 50%; transform: translateY(-50%);
  width: 80px; height: 80px;
}
.sensor-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
}
.sensor-ring.outer {
  width: 80px; height: 80px;
  border-width: 1.5px;
  border-color: rgba(255,107,0,0.50);
}
.sensor-ring.mid {
  width: 52px; height: 52px;
  border-width: 1.5px;
  border-color: rgba(255,107,0,0.28);
}
.sensor-core {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
}
.sensor-pulse {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}
.sensor-pulse.p1 {
  width: 108px; height: 108px;
  border-color: rgba(255,107,0,0.14);
}
.sensor-pulse.p2 {
  width: 140px; height: 140px;
  border-color: rgba(255,107,0,0.07);
}

/* ISCA diagram */
.isca-diagram {
  position: absolute;
  right: 44px; top: 50%; transform: translateY(-50%);
  opacity: 0.65;
}

/* Status block */
.solution-status-block {
  position: absolute; left: 28px; top: 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.solution-card.live .solution-status-block {
  left: auto;
  right: 28px;
  align-items: flex-end;
  text-align: right;
  background: rgba(12,12,16,0.72);
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: 10px;
  padding: 10px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.solution-status-label {
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.solution-status-label.live { color: #ff8c42; }
.solution-status-label.coming-soon { color: rgba(130,140,255,0.8); }
.live-indicator {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; color: rgba(255,255,255,0.82); font-weight: 600;
}
.live-dot {
  width: 7px; height: 7px;
  background: #22c55e; border-radius: 50%;
  box-shadow: 0 0 7px #22c55e;
}
.coming-soon-badge {
  background: rgba(120,130,255,0.12);
  border: 1px solid rgba(120,130,255,0.30);
  color: rgba(160,170,255,0.9);
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
  display: inline-block;
}

.solution-body { padding: 32px; }
.solution-name { font-size: 1.5rem; letter-spacing: -0.03em; margin-bottom: 4px; }
.solution-subtitle {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0;
}
.solution-desc { margin: 18px 0 26px; font-size: 0.91rem; }
.solution-features { display: flex; flex-direction: column; gap: 17px; margin-bottom: 30px; }

/* ─── Solution Detail Sections ──────────────────────────── */
.solutions-detail { padding: 80px 0 20px; }
.solution-detail {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.detail-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
}
.detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-text .s-label { margin-bottom: 10px; }
.detail-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}
.detail-text p { font-size: 0.94rem; margin-bottom: 18px; }
.use-case-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.use-case-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.use-case-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── Product Page ──────────────────────────────────────── */
.product-page { background: var(--bg-dark); }
.product-hero {
  min-height: 92vh;
  padding-top: 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.product-hero-media,
.product-hero-overlay {
  position: absolute;
  inset: 0;
}
.product-hero-media {
  overflow: hidden;
  background: var(--bg-dark);
}
.product-hero-media::before {
  content: '';
  position: absolute;
  inset: -36px;
  background-image: var(--product-hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.64) saturate(1.05);
  transform: scale(1.08);
}
.product-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg-dark) 0%, rgba(26,26,34,0.00) 8%, rgba(26,26,34,0.00) 92%, var(--bg-dark) 100%),
    linear-gradient(0deg, var(--bg-dark) 0%, rgba(26,26,34,0.00) 10%, rgba(26,26,34,0.00) 90%, rgba(26,26,34,0.72) 100%);
  pointer-events: none;
}
.product-hero-media img {
  position: relative;
  width: 114%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(1.16) contrast(1.04);
  transform: translate(0, -6%);
}
.product-hero-overlay {
  background:
    linear-gradient(90deg, rgba(26,26,34,0.86) 0%, rgba(26,26,34,0.54) 42%, rgba(26,26,34,0.10) 100%),
    linear-gradient(0deg, rgba(26,26,34,0.92) 0%, rgba(26,26,34,0.10) 48%, rgba(26,26,34,0.34) 100%);
}
.product-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 0;
}
.product-hero-copy {
  max-width: 520px;
}
.product-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  margin: 24px 0 8px;
  letter-spacing: -0.04em;
}
.product-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.product-lede {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.90);
  max-width: 500px;
}
.product-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.product-intro .two-col {
  align-items: start;
}
.product-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.product-feature h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}
.product-feature p {
  font-size: 0.83rem;
  line-height: 1.6;
}
.product-baseplate {
  border-top: 1px solid var(--border);
}
.product-baseplate-img {
  background: #c6c6c6;
}
.product-baseplate-img img {
  width: 118%;
  height: 118%;
  object-position: 62% 34%;
}
.product-accessory {
  border-top: 1px solid var(--border);
}
.product-accessory-img img {
  object-position: 18% 24%;
}
.product-accessory + .product-use-cases {
  border-top: 1px solid var(--border);
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.use-case-item {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: rgba(255,255,255,0.74);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ─── About ─────────────────────────────────────────────── */
.about-text h2 { margin-top: 0; }
.checklist {
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
  margin-top: 30px;
}
.checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
}
.check-icon {
  width: 21px; height: 21px; flex-shrink: 0;
  background: rgba(255,107,0,0.13);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.about-card { padding: 46px; position: relative; overflow: hidden; }
.about-card-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.quote-mark {
  font-size: 3rem; color: rgba(255,107,0,0.20);
  font-weight: 900; line-height: 1;
  margin-bottom: 18px;
  font-family: serif;
}
blockquote {
  font-size: 1.08rem; font-weight: 400;
  line-height: 1.78; color: rgba(255,255,255,0.82);
  font-style: italic;
  margin-bottom: 30px;
}
.about-card-footer {
  display: flex; align-items: center; gap: 13px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
}
.about-company { font-weight: 600; font-size: 0.87rem; }
.about-url { font-size: 0.76rem; color: rgba(255,255,255,0.42); margin-top: 2px; }
.hiring-banner {
  margin-top: 26px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.18);
  border-radius: 11px;
  padding: 17px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.hiring-title { font-weight: 600; font-size: 0.87rem; margin-bottom: 3px; }
.hiring-sub { font-size: 0.76rem; color: rgba(255,255,255,0.45); }
.hiring-link {
  color: var(--orange); font-size: 0.82rem; font-weight: 600;
  text-decoration: none;
  display: flex; align-items: center; gap: 5px;
  transition: opacity 0.2s;
}
.hiring-link:hover { opacity: 0.8; }

/* ─── Team ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: var(--border-o); }
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #1c0900, #2e1200);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.team-photo-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 800;
  color: var(--orange);
}
.team-body { padding: 24px 28px 28px; }
.team-name { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 5px; color: var(--text); }
.team-role {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.team-bio { font-size: 0.81rem; color: var(--muted); line-height: 1.65; margin: 0; }
.team-linkedin {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px;
  font-size: 0.77rem; font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.team-linkedin:hover { color: rgba(255,255,255,0.75); }

/* ─── CTA ───────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, #1c0b00, #311200, #1c0b00);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,107,0,0.18);
  border-radius: 20px;
  padding: 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-box-image {
  background-size: cover;
  background-position: 42% center;
}
.cta-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.5), transparent);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.11) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner .badge { margin-bottom: 22px; }
.cta-headline {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.08; margin-bottom: 16px;
}
.cta-sub {
  font-size: 0.97rem; color: var(--muted);
  max-width: 420px; margin: 0 auto 38px;
  line-height: 1.75;
}
.cta-buttons { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact Page ──────────────────────────────────────── */
.contact-section {
  padding: 120px 0 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-section h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}
.contact-section > .container > .contact-grid > .contact-form-wrapper > p {
  margin-bottom: 38px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.22);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,107,0,0.50);
}
.form-group textarea { min-height: 140px; }

/* Contact info sidebar */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: sticky;
  top: 100px;
}
.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.contact-info-card > p {
  margin-bottom: 34px;
  font-size: 0.9rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(255,107,0,0.10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 5px;
}
.contact-detail-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}
.contact-detail-value a {
  color: var(--orange);
  text-decoration: none;
}
.contact-detail-value a:hover { text-decoration: underline; }
.contact-linkedin {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem; color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-linkedin:hover { color: rgba(255,255,255,0.8); }

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 56px 0 34px;
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 46px;
  flex-wrap: wrap; gap: 34px;
}
.footer-brand { max-width: 250px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-tagline { font-size: 0.81rem; color: rgba(255,255,255,0.42); line-height: 1.7; margin: 0; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col-title {
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 5px;
}
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem; text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.soon { font-size: 0.67rem; color: rgba(255,107,0,0.60); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom span { font-size: 0.77rem; color: rgba(255,255,255,0.30); }
.footer-url { color: rgba(255,255,255,0.20) !important; font-size: 0.7rem !important; }

/* ─── News ──────────────────────────────────────────────── */
.news-section {
  padding: 120px 0 100px;
}
.news-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.news-header h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 16px;
}
.news-intro {
  font-size: 1rem;
  margin-bottom: 24px;
}
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 780px;
}
.news-post {
  padding: 0;
  overflow: hidden;
}
.news-post-img {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
}
.news-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-post-body {
  padding: 28px 32px 32px;
}
.news-post-date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.news-post-text {
  font-size: 0.97rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.75);
  white-space: pre-line;
  margin-bottom: 20px;
}
.news-post-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s;
}
.news-post-link:hover { opacity: 0.75; }

/* ─── Careers ───────────────────────────────────────────── */
.careers-section {
  padding: 120px 0 100px;
}
.careers-header {
  max-width: 680px;
  margin-bottom: 64px;
}
.careers-header h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 16px;
}
.careers-intro {
  font-size: 1.02rem;
  line-height: 1.8;
}
.vacancies {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.vacancy {
  padding: 0;
  overflow: hidden;
}
.vacancy-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.vacancy-dept {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.vacancy-title {
  font-size: 1.55rem;
  margin: 0;
}
.vacancy-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.vtag {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.vacancy-body {
  padding: 32px 40px 40px;
}
.vacancy-body > p:first-child {
  font-size: 0.97rem;
  margin-bottom: 28px;
}
.vacancy-block {
  margin-bottom: 24px;
}
.vacancy-block-title {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 12px;
}
.vacancy-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
}
.vacancy-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}
.vacancy-body ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.vacancy-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  font-style: italic;
  margin: 24px 0 28px !important;
}
.careers-footer-note {
  margin-top: 56px;
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.careers-footer-note p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.55);
}
.careers-footer-note a {
  color: var(--orange);
  text-decoration: none;
}
.careers-footer-note a:hover { text-decoration: underline; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta-btn { display: none; }
  .banister { display: none; }
  .nav-burger { display: flex; }
  .container { padding: 0 20px; }
  .two-col,
  .solutions-grid,
  .team-grid,
  .contact-grid,
  .detail-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-photo { aspect-ratio: 1 / 1; height: unset; }
  .team-photo img { object-position: top; }
  .two-col { gap: 48px; }
  .detail-grid { gap: 32px; }
  .cta-box { padding: 48px 28px; }
  .hero-headline { font-size: clamp(2.4rem, 8vw, 3.8rem); }
  .section { padding: 72px 0; }
  .contact-section { padding: 100px 0 60px; }
  .careers-section { padding: 100px 0 60px; }
  .vacancy-header, .vacancy-body { padding-left: 24px; padding-right: 24px; }
  .careers-footer-note { padding: 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .solutions-detail { padding: 48px 0 0; }
  .solution-detail { padding: 48px 0; }
  .product-hero {
    min-height: 88vh;
    align-items: flex-end;
  }
  .product-hero-overlay {
    background:
      linear-gradient(0deg, rgba(26,26,34,0.94) 0%, rgba(26,26,34,0.58) 55%, rgba(26,26,34,0.18) 100%);
  }
  .product-hero-media img {
    width: 100%;
    height: 100%;
    object-position: 78% center;
    transform: none;
  }
  .product-hero-inner { padding-bottom: 56px; }
  .product-actions .btn { width: 100%; justify-content: center; }
  .use-case-grid { grid-template-columns: 1fr; }
  .use-case-item { min-height: auto; }
}
