/* IKT Components Design System — Premium B2B Industrial */

/* ==========================================================================
   01. Utility Bar
   ========================================================================== */
.utility-bar {
  background: var(--dark);
  color: var(--muted-light);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-mono);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  z-index: 60;
}

.utility-inner {
  min-height: var(--utility-h);
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--font-mono);
}

.utility-inner a {
  color: var(--paper);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.utility-inner a:hover {
  color: var(--teal-on-dark);
  text-decoration: underline;
}

.utility-meta {
  margin-right: auto;
  color: var(--muted-light);
  display: flex;
  gap: 16px;
  align-items: center;
}

.utility-meta span::after {
  content: "·";
  margin-left: 16px;
  opacity: 0.5;
}
.utility-meta span:last-child::after {
  content: "";
}

/* ==========================================================================
   02. Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 241, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-right: auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: var(--tracking-mono);
}

.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  padding: 8px 0;
  transition: color var(--dur) var(--ease);
}

.desktop-nav a:hover {
  color: var(--accent);
}

.lang-toggle {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--steel) !important;
  border: 1px solid var(--line-strong);
  padding: 4px 10px !important;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}

.lang-toggle:hover {
  background: var(--paper-2);
  border-color: var(--steel);
}

.nav-dot {
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 14px;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-toggle {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 16px 0 28px;
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.08);
}

.mobile-nav .container {
  display: grid;
  gap: 2px;
}

.mobile-nav a {
  padding: 14px 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:hover {
  color: var(--accent);
  background: var(--paper-2);
}

.mobile-nav .button {
  margin-top: 16px;
}

/* ==========================================================================
   03. Buttons & Action Links
   ========================================================================== */
.button {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.button:active {
  transform: translateY(1px);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 12.5px;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-dark {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

.button-dark:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
}

.button-outline {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--dark);
  background: var(--paper-2);
  color: var(--dark);
}

.button-whatsapp {
  background: #128c7e;
  color: #ffffff;
  border-color: #128c7e;
}

.button-whatsapp:hover {
  background: #075e54;
  border-color: #075e54;
}

.button-full {
  width: 100%;
}

.section-dark .button-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.section-dark .button-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-small);
  text-decoration: none;
  border-bottom: 1.5px solid var(--steel);
  color: var(--steel);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.text-link-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.text-link-light:hover {
  color: var(--teal-on-dark);
  border-color: var(--teal-on-dark);
}

/* ==========================================================================
   04. Eyebrows & Section Headers
   ========================================================================== */
.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-light {
  color: var(--teal-on-dark);
}

.section-no {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 20px;
  padding: 0 6px;
  background: var(--paper-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--steel-dark);
}

.section-dark .section-no {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--teal-on-dark);
}

.section-head {
  max-width: 860px;
  margin-bottom: 52px;
}

.section-head-nomargin {
  margin-bottom: 0;
}

.section-head h2 {
  font-size: var(--text-h2);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
}

.section-head-split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: end;
}

.section-head-split h2 {
  font-size: clamp(26px, 2.8vw, 40px);
}

.section-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.7;
  max-width: 65ch;
}

.section-head-light h2 {
  color: #ffffff;
}

.section-head-light .section-lead {
  color: var(--muted-light);
}

/* ==========================================================================
   05. Section Containers
   ========================================================================== */
.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section-soft {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-paper-3 {
  background: var(--paper-3);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.section-dark {
  background: var(--dark);
  color: #ffffff;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

/* ==========================================================================
   06. Figures & Imagery
   ========================================================================== */
.hero-figure, .cap-media, .workshop-media, .portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
}

.hero-figure img, .cap-media img, .workshop-media img, .portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(13, 27, 42, 0.94);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.figure-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--teal-on-dark);
  background: rgba(78, 205, 196, 0.12);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(78, 205, 196, 0.25);
  white-space: nowrap;
}

.figure-tag-catalog {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
}

.figure-tag-schematic {
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.35);
}

.figure-tag-illustrative {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.35);
}

.figure-caption {
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.cap-icon {
  width: 26px;
  height: 26px;
  opacity: 0.85;
  flex-shrink: 0;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.cap-row:hover .cap-icon {
  opacity: 1;
  transform: scale(1.08);
}

.hero-title-with-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}

.leaf-icon {
  width: 36px;
  height: 36px;
  opacity: 0.9;
  flex-shrink: 0;
}

.leaf-featured-figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  margin-bottom: 28px;
  background: var(--dark-2);
}

.leaf-featured-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hero-figure-wide::after, .workshop-media::after {
  content: "+";
  position: absolute;
  top: 10px;
  right: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
}

/* ==========================================================================
   07. Need Chips (Section 02 Entry Point)
   ========================================================================== */
.need-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  background: var(--paper);
}

.need-chip {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 30px 28px;
  min-height: 160px;
  text-decoration: none;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
  transition: all var(--dur) var(--ease);
}

.need-chip:hover {
  background: #ffffff;
  box-shadow: inset 0 -3px 0 var(--accent);
}

.need-chip strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.need-chip strong::after {
  content: "→";
  font-size: 16px;
  color: var(--steel);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}

.need-chip:hover strong::after {
  transform: translateX(4px);
  color: var(--accent);
}

.need-chip span {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.5;
}

.need-chip-alt {
  background: var(--paper-2);
}
.need-chip-alt:hover {
  background: #ffffff;
}

/* ==========================================================================
   08. Capability Rows (Section 03)
   ========================================================================== */
.cap-rows {
  border-top: 1px solid var(--line-strong);
}

.cap-row {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr 1.1fr auto;
  gap: 32px;
  padding: 36px 8px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background var(--dur) var(--ease);
}

.cap-row:hover {
  background: rgba(255, 255, 255, 0.7);
}

.cap-row-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.cap-no {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: var(--tracking-mono);
  padding: 2px 6px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.cap-row-head h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cap-row-head a {
  text-decoration: none;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}

.cap-row-head a:hover {
  color: var(--accent);
}

.cap-summary {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.6;
}

.cap-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
}

.cap-items li {
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--steel-dark);
  background: #ffffff;
  white-space: nowrap;
}

.cap-row-cta {
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
}

.cap-row-page {
  grid-template-columns: 340px 1fr;
  padding: 40px 0;
  gap: 40px;
}

.cap-row-page .cap-body {
  display: grid;
  gap: 16px;
  align-content: start;
}

.cap-row-page .cap-media {
  min-height: 250px;
}

.cap-row-page h2 {
  font-size: 22px;
  font-weight: 800;
}

/* ==========================================================================
   09. Drawing / Sample Differentiator (Section 04)
   ========================================================================== */
.draw-strip {
  background: var(--dark);
}

.draw-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  margin-top: 24px;
}

.draw-point {
  padding: 34px 30px;
  min-height: 210px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.draw-no {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--teal-on-dark);
  border-radius: var(--radius-sm);
  color: var(--teal-on-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.draw-point h3 {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
}

.draw-point p {
  color: var(--muted-light);
  font-size: var(--text-small);
  line-height: 1.6;
}

.draw-foot {
  margin-top: 32px;
  color: var(--muted-light);
  font-size: var(--text-body);
  max-width: 74ch;
  border-left: 2px solid var(--teal-on-dark);
  padding-left: 18px;
}

/* ==========================================================================
   10. Product Families & Cards (Section 05)
   ========================================================================== */
.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.family-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 30px;
  min-height: 260px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: #ffffff;
  transition: all var(--dur) var(--ease);
}

.family-card:hover {
  background: var(--paper-2);
}

.family-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.family-card h3 a {
  text-decoration: none;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}

.family-card h3 a:hover {
  color: var(--accent);
}

.family-card p {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.6;
}

.family-card .text-link {
  margin-top: auto;
}

.family-card-accent {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

.family-card-accent:hover {
  background: var(--dark-2);
}

.family-card-accent h3 {
  color: #ffffff;
}

.family-card-accent p {
  color: var(--muted-light);
}

.family-grid-single {
  grid-template-columns: 1fr;
}

.family-card-page {
  grid-template-columns: 1fr 1.6fr;
  display: grid;
  gap: 40px;
  align-items: start;
  padding: 36px 32px;
}

.family-card-page h2 {
  font-size: 26px;
  font-weight: 800;
}

.family-card-page .family-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--text-body);
}

.product-list {
  display: grid;
}

.product-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-small);
}

.product-list li:last-child {
  border-bottom: 0;
}

.product-list a {
  text-decoration: none;
  font-weight: 700;
  color: var(--steel-dark);
  transition: color var(--dur) var(--ease);
}

.product-list a:hover {
  color: var(--accent);
}

.product-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 2px 7px;
  white-space: nowrap;
  background: var(--paper-2);
}

/* ==========================================================================
   11. Real Manufacturing Evidence (Section 06)
   ========================================================================== */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.evidence-cell {
  min-height: 150px;
  padding: 28px 26px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  background: #ffffff;
  transition: background var(--dur) var(--ease);
}

.evidence-cell:hover {
  background: var(--paper-2);
}

.evidence-cell strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.evidence-cell span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 600;
}

.evidence-grid-single {
  grid-template-columns: 1fr;
}

.evidence-note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  color: var(--muted);
}

/* ==========================================================================
   12. Industries (Section 07)
   ========================================================================== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.industry-cell {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: #ffffff;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.industry-cell::after {
  content: "→";
  color: var(--steel);
  font-size: 15px;
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}

.industry-cell:hover {
  background: var(--dark);
  color: #ffffff;
}

.industry-cell:hover::after {
  color: var(--teal-on-dark);
  transform: translateX(4px);
}

.industry-cell-static {
  cursor: default;
}
.industry-cell-static::after {
  display: none;
}
.industry-cell-static:hover {
  background: #ffffff;
  color: var(--ink);
}

.industry-grid-page {
  grid-template-columns: repeat(2, 1fr);
}

.industry-cell-page {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 32px 30px;
}

.industry-cell-page::after {
  display: none;
}

.industry-cell-page h2 {
  font-size: 24px;
  font-weight: 800;
}

.industry-cell-page p {
  color: var(--muted);
  font-size: var(--text-small);
  font-weight: 400;
  line-height: 1.6;
}

.industry-cell-page .text-link {
  margin-top: auto;
}

/* ==========================================================================
   13. Why IKT & Fact Strip (Section 08)
   ========================================================================== */
.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.why-points article {
  padding: 28px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  gap: 8px;
  align-content: start;
  background: #ffffff;
}

.why-points strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.why-points span {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.6;
}

.fact-strip {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: #ffffff;
}

.fact-strip span {
  flex: 1 1 220px;
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  color: var(--muted);
  border-right: 1px solid var(--line-strong);
}

.fact-strip span:last-child {
  border-right: 0;
}

.fact-strip strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  margin-top: 4px;
}

/* ==========================================================================
   14. Process Steps (Section 09)
   ========================================================================== */
.steps {
  border-top: 1px solid var(--line-strong);
  max-width: 900px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-strong);
}

.step-no {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: var(--tracking-mono);
  padding-top: 2px;
}

.step h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}

.step p {
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.6;
}

.steps-foot {
  margin-top: 28px;
}

/* ==========================================================================
   15. Portfolio & Spec Displays
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}

.portfolio-card {
  min-height: 380px;
  border-radius: var(--radius-sm);
}

.portfolio-card:first-child {
  grid-row: span 2;
  min-height: 776px;
}

.portfolio-card img {
  transition: transform 0.4s var(--ease);
}

.portfolio-card:hover img {
  transform: scale(1.02);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgba(13, 27, 42, 0.88));
  pointer-events: none;
}

.portfolio-card figcaption {
  z-index: 2;
  display: grid;
  gap: 3px;
  background: none;
  border: 0;
  padding: 16px 20px;
}

.portfolio-card figcaption::before {
  content: "DOKUMENTASI IKT";
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: var(--tracking-wide);
  color: var(--teal-on-dark);
  margin-bottom: 2px;
}

.portfolio-card strong {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
}

.portfolio-card span {
  color: #d1d9e0;
  font-size: var(--text-micro);
}

.catalog-gallery {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.catalog-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--dark-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
}

.portfolio-action {
  margin-top: 32px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.spec-card {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  padding: 34px;
  border-radius: var(--radius-sm);
}

.spec-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--teal);
}

.spec-card h2 {
  margin: 14px 0 24px;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.spec-card dl {
  display: grid;
}

.spec-card dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.spec-card dt {
  color: var(--muted);
  font-size: var(--text-micro);
  font-family: var(--font-mono);
}

.spec-card dd {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

/* ==========================================================================
   16. Breadcrumbs & Utilities
   ========================================================================== */
.breadcrumb {
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  color: var(--muted);
  align-items: center;
}

.breadcrumb a {
  color: var(--steel);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: var(--accent);
}

.breadcrumb span[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  font-size: var(--text-body);
  color: var(--ink);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border: 2px solid var(--teal);
  border-radius: 1px;
}

.aside-list {
  display: grid;
  margin-top: 14px;
}

.aside-list li {
  border-bottom: 1px solid var(--line);
}

.aside-list a {
  display: block;
  padding: 11px 0;
  text-decoration: none;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--steel-dark);
  transition: color var(--dur) var(--ease);
}

.aside-list a:hover {
  color: var(--accent);
}

.aside-list a[aria-current="page"] {
  color: var(--teal);
  font-weight: 800;
}

.page-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: var(--text-small);
  border-left: 3px solid var(--steel);
  padding-left: 16px;
  max-width: 68ch;
  line-height: 1.6;
}

.page-cta-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ==========================================================================
   17. Direct Contact Card
   ========================================================================== */
.contact-card {
  margin-top: 32px;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  padding: 28px;
  display: grid;
  gap: 6px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-subtle);
}

.contact-card > span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--teal);
  font-weight: 700;
}

.contact-card strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  margin: 4px 0 8px;
  color: var(--ink);
}

.contact-card a {
  color: var(--steel);
  text-decoration: none;
  width: max-content;
  font-size: var(--text-small);
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-card small {
  color: var(--muted);
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
}

/* ==========================================================================
   18. RFQ Form UX
   ========================================================================== */
.rfq-form {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  padding: 38px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-subtle);
}

.rfq-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.rfq-form label > span {
  color: var(--steel-dark);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.rfq-form label > span .req {
  color: var(--accent);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.rfq-form input, .rfq-form select, .rfq-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--ink);
  border-radius: var(--radius-sm);
  outline: none;
  padding: 13px 14px;
  font-size: 14.5px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.rfq-form input, .rfq-form select {
  min-height: 48px;
}

.rfq-form textarea {
  min-height: 140px;
  resize: vertical;
}

.rfq-form input:focus, .rfq-form select:focus, .rfq-form textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(44, 66, 85, 0.12);
}

.rfq-form .is-invalid {
  border-color: var(--err) !important;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12) !important;
}

.field-msg {
  display: block;
  margin-top: 6px;
  color: var(--err);
  font-size: var(--text-micro);
  font-weight: 700;
}

.file-hint {
  font-weight: 400 !important;
  color: var(--muted) !important;
  font-size: var(--text-micro);
  margin-top: 4px;
  line-height: 1.4;
}

.optional-group {
  border: 0;
  margin: 0 0 20px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-strong);
}

.optional-group legend {
  padding: 0 12px 0 0;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--muted);
}

.optional-group legend span {
  text-transform: none;
  font-weight: 400;
}

.consent {
  grid-template-columns: 22px 1fr !important;
  align-items: start !important;
  gap: 12px !important;
  margin-top: 6px;
}

.consent input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.consent span {
  font-weight: 500 !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.5;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: var(--text-micro);
  line-height: 1.5;
}

.form-note a {
  color: var(--steel);
  font-weight: 800;
}

.form-note.error {
  color: var(--err);
  font-weight: 700;
}

.form-note.success {
  color: var(--ok);
  font-weight: 700;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ==========================================================================
   19. Site Footer
   ========================================================================== */
.site-footer {
  background: var(--dark);
  color: #ffffff;
  padding: 72px 0 24px;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr;
  gap: 48px;
}

.footer-brand .brand-mark-light {
  background: #ffffff;
  color: var(--dark);
  margin-bottom: 18px;
  border: 1px solid #ffffff;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand p {
  margin-top: 10px;
  color: var(--muted-light);
  font-size: var(--text-small);
  line-height: 1.6;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col > span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--teal-on-dark);
  margin-bottom: 8px;
}

.footer-col a {
  text-decoration: none;
  font-size: var(--text-small);
  font-weight: 600;
  color: #cbd5e1;
  width: max-content;
  transition: color var(--dur) var(--ease);
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-col p {
  color: var(--muted-light);
  font-size: var(--text-small);
  margin: 0;
  line-height: 1.6;
}

.footer-contact a {
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.mobile-cta {
  display: none;
}

/* ==========================================================================
   20. Responsive Media Queries
   ========================================================================== */
@media (max-width: 1050px) {
  .desktop-nav, .site-header > .nav-wrap > .button {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .cap-row {
    grid-template-columns: 1fr 1.3fr 1fr;
  }
  .cap-row-cta {
    grid-column: 2;
  }
  .family-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .need-chips {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .evidence-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 480px;
  }
  .catalog-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .family-card-page {
    grid-template-columns: 1fr;
  }
  .cap-row-page {
    grid-template-columns: 1fr;
  }
  .cap-row-page .cap-media {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }
  .utility-bar {
    display: none;
  }
  .nav-wrap {
    min-height: 64px;
  }
  .brand-copy small {
    display: none;
  }
  .section {
    padding: var(--space-section-mobile) 0;
  }
  .section-head-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cap-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .cap-row-cta {
    grid-column: auto;
  }
  .need-chips {
    grid-template-columns: 1fr;
  }
  .draw-points {
    grid-template-columns: 1fr;
  }
  .family-grid {
    grid-template-columns: 1fr;
  }
  .industry-grid, .industry-grid-page {
    grid-template-columns: 1fr;
  }
  .evidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-points {
    grid-template-columns: 1fr;
  }
  .fact-strip span {
    flex-basis: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card, .portfolio-card:first-child {
    min-height: 380px;
    grid-column: auto;
  }
  .catalog-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .spec-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .rfq-form {
    padding: 26px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    padding-bottom: 64px;
  }
  .mobile-cta {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.16);
  }
  .mobile-cta a {
    min-height: 52px;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
  }
  .mobile-cta a:first-child {
    background: #ffffff;
    color: var(--ink);
    border-top: 1px solid var(--line);
  }
  .mobile-cta a:last-child {
    background: var(--accent);
    color: #ffffff;
  }
}
