/* ==========================================================================
   Technology Section
   Monotics WordPress Theme
   ========================================================================== */

.tech {
  background: var(--navy);
}

/* --- Tech Layout --- */
.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

/* --- Tech List (Accordion) --- */
.tech-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tech-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 200, 255, 0.08);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tech-item:first-child {
  border-top: 1px solid rgba(0, 200, 255, 0.08);
}

.tech-item.active {
  background: rgba(0, 200, 255, 0.04);
  margin: 0 -20px;
  padding: 24px 20px;
  border-radius: 8px;
  border-color: transparent;
}

.tech-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tech-num {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--cyan);
  font-weight: 700;
  min-width: 28px;
}

.tech-item-title {
  font-size: 16px;
  font-weight: 600;
}

.tech-item-body {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 12px;
  padding-left: 44px;
  display: none;
}

.tech-item.active .tech-item-body {
  display: block;
}

/* --- Tech Visual Panel --- */
.tech-visual {
  position: sticky;
  top: 100px;
  background: var(--card-bg);
  border: var(--border-cyan-medium);
  border-radius: 20px;
  padding: 36px;
}

.tech-visual-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.tech-visual-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
  filter: brightness(0.8) saturate(0.8);
}

/* --- Process Steps --- */
.tech-process {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 16px;
  position: relative;
}

/* Connector line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: rgba(0, 200, 255, 0.12);
}

.process-dot {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.1);
  border: 2px solid rgba(0, 200, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--cyan);
}

.process-dot svg {
  width: 16px;
  height: 16px;
  stroke: var(--cyan);
  fill: none;
}

.process-content {
  padding: 8px 0 28px;
}

.process-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.process-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}
