/*
  NOVA CNC METAL — industrial corporate website
  Demo project prepared for presentation. Edit brand/contact values in assets/js/site-config.js.
*/

:root {
  --bg: #070a0f;
  --bg-elevated: #0d121a;
  --bg-soft: #121923;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f7fa;
  --text-soft: #b8c0cc;
  --text-muted: #7f8a99;
  --brand: #ff7a18;
  --brand-2: #ffb36b;
  --brand-deep: #d95800;
  --steel: #94a3b8;
  --success: #43d18a;
  --warning: #f5c451;
  --danger: #ff6b6b;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1220px;
  --header-h: 82px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

html[data-theme="light"] {
  --bg: #edf1f5;
  --bg-elevated: #ffffff;
  --bg-soft: #e6ebf0;
  --surface: rgba(17, 24, 39, 0.05);
  --surface-strong: rgba(17, 24, 39, 0.08);
  --line: rgba(17, 24, 39, 0.12);
  --line-strong: rgba(17, 24, 39, 0.18);
  --text: #111827;
  --text-soft: #384354;
  --text-muted: #667085;
  --shadow-sm: 0 12px 30px rgba(17, 24, 39, 0.10);
  --shadow-lg: 0 30px 80px rgba(17, 24, 39, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 75% -10%, rgba(255, 122, 24, .12), transparent 32rem),
    linear-gradient(180deg, var(--bg), var(--bg));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
::selection { background: rgba(255, 122, 24, .35); color: var(--text); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: #111;
  background: #fff;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section--compact { padding: 76px 0; }
.section--soft { background: var(--bg-elevated); }
.section--grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}
.section > .container, .section > .container--narrow { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brand-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(255, 122, 24, .55);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .75fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}
.section-heading--center {
  display: block;
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
}
.section-heading h1,
.section-heading h2,
.section-heading--center h1,
.section-heading--center h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.section-heading p,
.section-heading--center p { margin: 20px 0 0; color: var(--text-soft); font-size: 1.03rem; }

.text-gradient {
  color: transparent;
  background: linear-gradient(135deg, #fff 10%, var(--brand-2) 46%, var(--brand) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
html[data-theme="light"] .text-gradient { background-image: linear-gradient(135deg, #111827 15%, var(--brand-deep) 100%); }

.muted { color: var(--text-soft); }
.small { font-size: .88rem; }
.kicker { color: var(--brand-2); font-weight: 700; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .93rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-18deg);
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: transform .7s ease;
}
.btn:hover::after { transform: translateX(280%) skewX(-18deg); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  color: #120b05;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  box-shadow: 0 12px 34px rgba(255, 122, 24, .26);
}
.btn--primary:hover { box-shadow: 0 16px 42px rgba(255, 122, 24, .36); }
.btn--outline { border-color: var(--line-strong); background: var(--surface); color: var(--text); }
.btn--outline:hover { border-color: rgba(255, 122, 24, .6); background: rgba(255, 122, 24, .08); }
.btn--ghost { color: var(--text-soft); background: transparent; }
.btn--small { min-height: 42px; padding: 0 16px; font-size: .85rem; }
.btn--block { width: 100%; }
.btn svg { width: 19px; height: 19px; flex: none; }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: var(--surface);
  transition: .25s ease;
}
.icon-btn:hover { border-color: rgba(255,122,24,.65); color: var(--brand-2); }
.icon-btn svg { width: 19px; height: 19px; }

.topbar {
  position: relative;
  z-index: 101;
  border-bottom: 1px solid var(--line);
  background: #06080c;
  color: #c8d0da;
  font-size: .78rem;
}
html[data-theme="light"] .topbar { background: #111827; color: #dbe4ef; }
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 24px;
}
.topbar__group { display: flex; align-items: center; gap: 22px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s ease; }
.topbar a:hover { color: var(--brand-2); }
.topbar svg { width: 14px; height: 14px; color: var(--brand); }
.topbar__status { display: inline-flex; align-items: center; gap: 8px; }
.topbar__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(67, 209, 138, .75);
}

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(7, 10, 15, .72);
  backdrop-filter: blur(18px) saturate(130%);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
html[data-theme="light"] .header { background: rgba(237, 241, 245, .82); }
.header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 40px rgba(0,0,0,.18); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; min-width: 218px; }
.logo__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #17100b;
  background: linear-gradient(145deg, var(--brand-2), var(--brand));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.45), 0 10px 28px rgba(255,122,24,.22);
}
.logo__mark::before, .logo__mark::after { content: ""; position: absolute; border: 2px solid rgba(12,8,4,.84); border-radius: 50%; }
.logo__mark::before { width: 19px; height: 19px; }
.logo__mark::after { width: 6px; height: 6px; background: rgba(12,8,4,.84); }
.logo__mark span { position: absolute; width: 4px; height: 34px; background: rgba(12,8,4,.84); border-radius: 2px; }
.logo__mark span:nth-child(1) { transform: rotate(0deg); }
.logo__mark span:nth-child(2) { transform: rotate(45deg); }
.logo__mark span:nth-child(3) { transform: rotate(90deg); }
.logo__mark span:nth-child(4) { transform: rotate(135deg); }
.logo__text { display: grid; line-height: 1; }
.logo__text strong { font-family: "Arial Narrow", Impact, sans-serif; font-size: 1.13rem; letter-spacing: .065em; }
.logo__text small { margin-top: 6px; color: var(--text-muted); font-size: .62rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 13px;
  border-radius: 9px;
  color: var(--text-soft);
  font-size: .86rem;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--text); background: var(--surface); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 5px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.header__actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }

.mobile-panel {
  position: fixed;
  z-index: 120;
  inset: calc(var(--header-h) + 38px) 0 auto;
  max-height: calc(100dvh - var(--header-h) - 38px);
  padding: 24px 20px 32px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 15, .98);
  box-shadow: var(--shadow-lg);
  transition: .25s ease;
}
html[data-theme="light"] .mobile-panel { background: rgba(255,255,255,.98); }
.mobile-panel.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-nav { display: grid; gap: 8px; }
.mobile-nav .nav__link { justify-content: space-between; padding: 15px 16px; border: 1px solid var(--line); }
.mobile-panel__contact { display: grid; gap: 12px; margin-top: 22px; }

.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero__glow {
  position: absolute;
  right: -14%;
  top: -24%;
  width: 720px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(4px);
  background: radial-gradient(circle, rgba(255,122,24,.18), transparent 66%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); gap: 60px; align-items: center; }
.hero__content { max-width: 720px; }
.hero__title {
  margin: 0;
  max-width: 800px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(3.35rem, 7.25vw, 7.3rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.052em;
  text-transform: uppercase;
}
.hero__title span { display: block; }
.hero__title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.56);
  text-shadow: 0 0 24px rgba(255,255,255,.06);
}
html[data-theme="light"] .hero__title .outline { -webkit-text-stroke-color: rgba(17,24,39,.6); }
.hero__lead { max-width: 650px; margin: 26px 0 0; color: var(--text-soft); font-size: clamp(1rem, 1.5vw, 1.16rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 27px 0 0; padding: 0; list-style: none; color: var(--text-muted); font-size: .84rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 16px; height: 16px; color: var(--success); }

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 1% 2% 7%;
  border: 1px solid var(--line);
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,122,24,.04));
  box-shadow: var(--shadow-lg);
}
.hero-visual__image { position: relative; z-index: 2; width: 118%; max-width: 690px; transform: translateX(2%); filter: drop-shadow(0 35px 35px rgba(0,0,0,.48)); }
.hero-visual__badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(12,17,24,.84);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
html[data-theme="light"] .hero-visual__badge { background: rgba(255,255,255,.86); }
.hero-visual__badge svg { width: 25px; height: 25px; color: var(--brand); }
.hero-visual__badge strong { display: block; font-size: .86rem; }
.hero-visual__badge span { display: block; margin-top: 2px; color: var(--text-muted); font-size: .72rem; }
.hero-visual__badge--one { left: -1%; top: 16%; }
.hero-visual__badge--two { right: -3%; bottom: 15%; }
.hero-visual__axis {
  position: absolute;
  z-index: 3;
  right: 9%;
  top: 8%;
  display: grid;
  grid-template-columns: repeat(3, 30px);
  gap: 4px;
  color: var(--text-muted);
  font-size: .65rem;
  font-weight: 900;
  text-align: center;
}
.hero-visual__axis span { display: grid; place-items: center; height: 30px; border: 1px solid var(--line); background: var(--surface); }
.hero-visual__axis span:nth-child(1) { color: #ff6b6b; }
.hero-visual__axis span:nth-child(2) { color: #43d18a; }
.hero-visual__axis span:nth-child(3) { color: #5da9ff; }

.stats-bar { position: relative; z-index: 3; margin-top: 18px; }
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat { position: relative; padding: 27px 28px; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line); }
.stat strong { display: block; font-family: "Arial Narrow", Impact, sans-serif; font-size: 2rem; line-height: 1; letter-spacing: -.03em; }
.stat span { display: block; margin-top: 8px; color: var(--text-muted); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.stat em { color: var(--brand); font-style: normal; }

.industry-strip { border-block: 1px solid var(--line); background: var(--bg-elevated); overflow: hidden; }
.industry-strip__inner { display: flex; align-items: center; min-height: 86px; }
.industry-strip__label { flex: none; padding-right: 34px; color: var(--text-muted); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.industry-strip__items { display: flex; align-items: center; justify-content: space-around; flex: 1; gap: 30px; }
.industry-logo { display: inline-flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: .85rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.industry-logo svg { width: 24px; height: 24px; color: var(--steel); opacity: .72; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--surface), transparent);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,24,.17), transparent 68%);
  opacity: 0;
  transition: opacity .35s ease;
}
.card:hover { transform: translateY(-8px); border-color: rgba(255,122,24,.35); box-shadow: var(--shadow-sm); background: linear-gradient(145deg, rgba(255,122,24,.075), var(--surface)); }
.card:hover::before { opacity: 1; }
.card__icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 24px; border: 1px solid rgba(255,122,24,.28); border-radius: 14px; color: var(--brand); background: rgba(255,122,24,.08); }
.card__icon svg { width: 27px; height: 27px; }
.card__number { position: absolute; right: 24px; top: 20px; color: var(--line-strong); font-family: "Arial Narrow", Impact, sans-serif; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.card h3 { margin: 0; font-size: 1.18rem; line-height: 1.25; }
.card p { margin: 13px 0 0; color: var(--text-soft); font-size: .91rem; }
.card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--brand-2); font-size: .84rem; font-weight: 800; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card__link svg { transform: translateX(4px); }
.card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.tag { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--text-muted); background: var(--surface); font-size: .7rem; font-weight: 700; }

.capability {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}
.capability__visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 65% 28%, rgba(255,122,24,.14), transparent 35%),
    linear-gradient(150deg, #111924, #080c12);
}
.capability__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(140deg, #000, transparent 75%);
}
.capability__visual img { position: absolute; inset: auto -10% 3% -5%; width: 112%; filter: drop-shadow(0 32px 30px rgba(0,0,0,.6)); }
.capability__label { position: absolute; z-index: 2; left: 30px; top: 30px; max-width: 280px; }
.capability__label strong { display: block; font-family: "Arial Narrow", Impact, sans-serif; font-size: 2.4rem; line-height: 1; text-transform: uppercase; }
.capability__label span { display: block; margin-top: 10px; color: #9eabbc; font-size: .83rem; }
.capability__content { padding: 56px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elevated); }
.capability__content h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: .95; letter-spacing: -.04em; text-transform: uppercase; }
.capability__content > p { margin: 22px 0 0; color: var(--text-soft); }
.spec-list { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.spec-row__icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: var(--brand); background: rgba(255,122,24,.08); }
.spec-row__icon svg { width: 19px; height: 19px; }
.spec-row strong { font-size: .91rem; }
.spec-row small { display: block; margin-top: 3px; color: var(--text-muted); font-size: .75rem; }
.spec-row__value { color: var(--brand-2); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .8rem; font-weight: 800; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: steps; }
.process__item { position: relative; padding: 6px 28px 6px 0; counter-increment: steps; }
.process__item:not(:last-child)::after { content: ""; position: absolute; left: 58px; right: 20px; top: 25px; height: 1px; background: linear-gradient(90deg, var(--brand), var(--line)); }
.process__number { position: relative; z-index: 1; display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(255,122,24,.42); border-radius: 50%; color: var(--brand-2); background: var(--bg); font-family: ui-monospace, monospace; font-size: .8rem; font-weight: 900; }
.process__number::before { content: "0" counter(steps); }
.process__item h3 { margin: 22px 0 0; font-size: 1rem; }
.process__item p { margin: 9px 0 0; color: var(--text-muted); font-size: .84rem; }

.materials { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.material {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform .28s var(--ease), border-color .28s ease;
}
.material:hover { transform: translateY(-5px); border-color: rgba(255,122,24,.42); }
.material__sample { position: absolute; left: 50%; top: 16px; width: 82px; height: 82px; transform: translateX(-50%) rotate(-12deg); border: 1px solid rgba(255,255,255,.2); border-radius: 16px; box-shadow: inset 0 0 28px rgba(0,0,0,.24), 0 18px 30px rgba(0,0,0,.2); }
.material:nth-child(1) .material__sample { background: linear-gradient(135deg, #e8edf2, #7a8794 42%, #dfe5eb 64%, #6e7984); }
.material:nth-child(2) .material__sample { background: linear-gradient(135deg, #fafafa, #8d969f 42%, #eceff1 64%, #626b73); }
.material:nth-child(3) .material__sample { background: linear-gradient(135deg, #c6cad2, #343b44 42%, #9aa1ab 64%, #242a31); }
.material:nth-child(4) .material__sample { background: linear-gradient(135deg, #efc75e, #8f5d09 42%, #ffdc7d 64%, #714000); }
.material:nth-child(5) .material__sample { background: linear-gradient(135deg, #d88143, #65331b 42%, #f0a567 64%, #4a2515); }
.material:nth-child(6) .material__sample { background: linear-gradient(135deg, #f4f4f4, #8d94a0 42%, #252c38 64%, #dbdde2); }
.material strong { position: relative; z-index: 1; font-size: .9rem; }
.material span { position: relative; z-index: 1; margin-top: 2px; color: var(--text-muted); font-size: .72rem; }

.project-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.filter-btn { min-height: 40px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--text-soft); background: var(--surface); font-size: .78rem; font-weight: 800; transition: .2s ease; }
.filter-btn:hover, .filter-btn.is-active { border-color: var(--brand); color: #160d06; background: var(--brand); }
.projects { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.project {
  position: relative;
  grid-column: span 4;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0b1017;
  transition: opacity .25s ease, transform .35s var(--ease), border-color .35s ease;
}
.project:nth-child(1), .project:nth-child(5) { grid-column: span 8; }
.project.is-hidden { display: none; }
.project:hover { transform: translateY(-6px); border-color: rgba(255,122,24,.4); }
.project__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .35s ease; }
.project:hover .project__image { transform: scale(1.05); }
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,6,9,.97), rgba(4,6,9,.1) 68%); }
.project__content { position: absolute; z-index: 2; inset: auto 24px 24px; }
.project__meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.project__meta span { padding: 4px 8px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #b9c1ca; background: rgba(0,0,0,.22); font-size: .67rem; font-weight: 800; backdrop-filter: blur(8px); }
.project h3 { margin: 0; color: #fff; font-size: 1.15rem; }
.project p { margin: 7px 0 0; color: #aab3be; font-size: .8rem; }
.project__arrow { position: absolute; z-index: 3; right: 20px; top: 20px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: #fff; background: rgba(0,0,0,.24); backdrop-filter: blur(8px); transform: translateY(-6px); opacity: 0; transition: .3s ease; }
.project:hover .project__arrow { transform: translateY(0); opacity: 1; }
.project__arrow svg { width: 18px; height: 18px; }

.quality-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.quality-panel { padding: 48px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elevated); }
.quality-panel h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: .95; text-transform: uppercase; }
.quality-panel > p { margin: 20px 0 0; color: var(--text-soft); }
.check-list { display: grid; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; color: var(--text-soft); font-size: .91rem; }
.check-list svg { width: 20px; height: 20px; margin-top: 2px; color: var(--success); }
.quality-visual { position: relative; min-height: 590px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, #121923, #070a0f); }
.quality-visual::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,122,24,.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,122,24,.025), 0 0 0 140px rgba(255,122,24,.018); }
.quality-visual img { position: relative; z-index: 2; width: 92%; filter: drop-shadow(0 30px 30px rgba(0,0,0,.5)); }
.quality-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 12px; color: #dbe2ea; background: rgba(8,12,18,.78); font-size: .75rem; font-weight: 800; backdrop-filter: blur(12px); }
.quality-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px rgba(67,209,138,.6); }
.quality-chip--one { left: 7%; top: 17%; }
.quality-chip--two { right: 5%; bottom: 20%; }

.sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sector { position: relative; min-height: 270px; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); transition: transform .3s var(--ease), border-color .3s ease; }
.sector:hover { transform: translateY(-6px); border-color: rgba(255,122,24,.38); }
.sector__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; color: var(--brand); background: rgba(255,122,24,.08); }
.sector__icon svg { width: 25px; height: 25px; }
.sector h3 { margin: 52px 0 0; font-size: 1rem; }
.sector p { margin: 10px 0 0; color: var(--text-muted); font-size: .81rem; }
.sector__line { position: absolute; left: 26px; right: 26px; bottom: 25px; height: 2px; background: linear-gradient(90deg, var(--brand), transparent); transform-origin: left; transform: scaleX(.25); transition: transform .3s ease; }
.sector:hover .sector__line { transform: scaleX(1); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.why-card__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.why-card__top svg { width: 28px; height: 28px; color: var(--brand); }
.why-card__top span { color: var(--line-strong); font-family: ui-monospace, monospace; font-size: .8rem; }
.why-card h3 { margin: 34px 0 0; font-size: 1.03rem; }
.why-card p { margin: 11px 0 0; color: var(--text-muted); font-size: .83rem; }

.faq { display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); overflow: hidden; }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; color: var(--text); background: transparent; text-align: left; font-weight: 800; }
.faq__question svg { width: 20px; height: 20px; flex: none; color: var(--brand); transition: transform .25s ease; }
.faq__item.is-open .faq__question svg { transform: rotate(45deg); }
.faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq__item.is-open .faq__answer { grid-template-rows: 1fr; }
.faq__answer > div { overflow: hidden; }
.faq__answer p { margin: 0; padding: 0 22px 21px; color: var(--text-soft); font-size: .9rem; }

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
  padding: 58px;
  overflow: hidden;
  border: 1px solid rgba(255,122,24,.3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0, rgba(255,179,107,.17), transparent 25rem),
    linear-gradient(135deg, #1a1715, #0b0d12 64%);
  box-shadow: var(--shadow-lg);
}
.cta-panel::before { content: ""; position: absolute; right: 7%; top: 50%; width: 260px; height: 260px; transform: translateY(-50%) rotate(20deg); border: 1px solid rgba(255,255,255,.08); border-radius: 36px; box-shadow: 0 0 0 38px rgba(255,255,255,.025), 0 0 0 76px rgba(255,255,255,.015); }
.cta-panel__content { position: relative; z-index: 1; }
.cta-panel h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.35rem, 5vw, 4.4rem); line-height: .94; letter-spacing: -.03em; text-transform: uppercase; }
.cta-panel p { margin: 17px 0 0; max-width: 650px; color: #b8c0ca; }
.cta-panel__actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.page-hero { position: relative; padding: 100px 0 78px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, rgba(255,122,24,.07)), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 58px 58px, 58px 58px; mask-image: linear-gradient(to bottom, #000, transparent); }
.page-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; }
.page-hero h1 { margin: 0; max-width: 850px; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(3.2rem, 7vw, 6.8rem); line-height: .88; letter-spacing: -.045em; text-transform: uppercase; }
.page-hero p { margin: 0; color: var(--text-soft); font-size: 1rem; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--text-muted); font-size: .76rem; font-weight: 700; }
.breadcrumb a:hover { color: var(--brand-2); }
.breadcrumb svg { width: 13px; height: 13px; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.detail-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.detail-card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; color: var(--brand); background: rgba(255,122,24,.09); }
.detail-card__icon svg { width: 27px; height: 27px; }
.detail-card h2, .detail-card h3 { margin: 24px 0 0; }
.detail-card p { margin: 13px 0 0; color: var(--text-soft); }
.detail-card ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.detail-card li { display: grid; grid-template-columns: 17px 1fr; gap: 9px; color: var(--text-soft); font-size: .87rem; }
.detail-card li::before { content: ""; width: 7px; height: 7px; margin-top: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px rgba(255,122,24,.4); }

.timeline { position: relative; display: grid; gap: 22px; padding-left: 38px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.timeline__item { position: relative; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.timeline__item::before { content: ""; position: absolute; left: -36px; top: 33px; width: 13px; height: 13px; border: 3px solid var(--bg); border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 1px var(--brand); }
.timeline__item small { color: var(--brand-2); font-weight: 800; }
.timeline__item h3 { margin: 7px 0 0; }
.timeline__item p { margin: 10px 0 0; color: var(--text-soft); font-size: .89rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.team-card__avatar { width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid rgba(255,122,24,.25); border-radius: 20px; color: var(--brand); background: rgba(255,122,24,.08); font-family: "Arial Narrow", Impact, sans-serif; font-size: 1.65rem; }
.team-card h3 { margin: 20px 0 0; }
.team-card span { display: block; margin-top: 4px; color: var(--brand-2); font-size: .76rem; font-weight: 800; }
.team-card p { margin: 13px 0 0; color: var(--text-muted); font-size: .82rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); }
.spec-table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--bg-elevated); }
.spec-table th, .spec-table td { padding: 17px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.spec-table th { color: var(--text-muted); background: var(--surface); font-size: .71rem; letter-spacing: .08em; text-transform: uppercase; }
.spec-table td { color: var(--text-soft); font-size: .86rem; }
.spec-table td:first-child { color: var(--text); font-weight: 800; }
.spec-table tr:last-child td { border-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 24px; align-items: start; }
.contact-stack { display: grid; gap: 14px; }
.contact-card { display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.contact-card__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; color: var(--brand); background: rgba(255,122,24,.08); }
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card strong { display: block; font-size: .85rem; }
.contact-card a, .contact-card span { display: block; margin-top: 5px; color: var(--text-soft); font-size: .84rem; }
.contact-card a:hover { color: var(--brand-2); }
.map-placeholder { position: relative; min-height: 360px; margin-top: 16px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, #111722, #0a0e14); }
.map-placeholder::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(35deg, transparent 45%, rgba(255,255,255,.2) 46%, transparent 47%), linear-gradient(145deg, transparent 45%, rgba(255,255,255,.15) 46%, transparent 47%); background-size: 75px 75px; }
.map-placeholder__pin { position: relative; z-index: 1; text-align: center; }
.map-placeholder__pin svg { width: 44px; height: 44px; margin: auto; color: var(--brand); }
.map-placeholder__pin strong { display: block; margin-top: 12px; }
.map-placeholder__pin span { display: block; margin-top: 5px; color: var(--text-muted); font-size: .79rem; }

.form-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-elevated); box-shadow: var(--shadow-sm); }
.form-card__header { margin-bottom: 28px; }
.form-card__header h2 { margin: 0; font-size: 1.45rem; }
.form-card__header p { margin: 10px 0 0; color: var(--text-soft); font-size: .88rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--text-soft); font-size: .77rem; font-weight: 800; }
.field label span { color: var(--brand); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  color: var(--text);
  background: var(--surface);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 145px; padding-block: 13px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); opacity: .78; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(255,122,24,.7); background: rgba(255,122,24,.035); box-shadow: 0 0 0 4px rgba(255,122,24,.08); }
.field select option { color: #111; }
.field__hint { color: var(--text-muted); font-size: .69rem; }
.field.is-error input, .field.is-error select, .field.is-error textarea { border-color: var(--danger); }
.field__error { display: none; color: var(--danger); font-size: .7rem; }
.field.is-error .field__error { display: block; }
.checkbox { display: grid; grid-template-columns: 19px 1fr; gap: 10px; align-items: start; color: var(--text-soft); font-size: .76rem; }
.checkbox input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--brand); }
.checkbox a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 3px; }
.upload {
  position: relative;
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 13px;
  color: var(--text-soft);
  background: var(--surface);
  text-align: center;
  transition: border-color .2s ease, background .2s ease;
}
.upload:hover, .upload.is-dragging { border-color: var(--brand); background: rgba(255,122,24,.045); }
.upload input { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; opacity: 0; cursor: pointer; }
.upload svg { width: 28px; height: 28px; margin: 0 auto 8px; color: var(--brand); }
.upload strong { display: block; font-size: .84rem; }
.upload span { display: block; margin-top: 4px; color: var(--text-muted); font-size: .68rem; }
.file-list { display: grid; gap: 7px; margin-top: 9px; }
.file-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; color: var(--text-soft); background: var(--surface); font-size: .71rem; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: .78rem; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: #aff2cf; background: rgba(67,209,138,.1); border: 1px solid rgba(67,209,138,.25); }
.form-status.is-error { color: #ffc1c1; background: rgba(255,107,107,.1); border: 1px solid rgba(255,107,107,.25); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 22px; }
.form-note { color: var(--text-muted); font-size: .69rem; }

.legal { color: var(--text-soft); }
.legal h2 { margin: 40px 0 12px; color: var(--text); font-size: 1.35rem; }
.legal h3 { margin: 28px 0 10px; color: var(--text); font-size: 1rem; }
.legal p, .legal li { font-size: .91rem; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 3px; }
.legal__notice { margin-bottom: 30px; padding: 18px 20px; border: 1px solid rgba(245,196,81,.26); border-radius: 12px; color: #e9d49d; background: rgba(245,196,81,.07); font-size: .82rem; }

.footer { position: relative; padding: 72px 0 24px; border-top: 1px solid var(--line); background: #05070a; color: #e7ebf0; }
.footer::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, #000, transparent 72%); }
.footer__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 54px; }
.footer__grid > div { min-width: 0; }
.footer .logo__text small { color: #7f8a99; }
.footer__about { margin: 20px 0 0; max-width: 390px; color: #929ca9; font-size: .84rem; }
.footer__socials { display: flex; gap: 8px; margin-top: 22px; }
.footer__socials a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; color: #aab4bf; background: rgba(255,255,255,.04); transition: .2s ease; }
.footer__socials a:hover { border-color: var(--brand); color: var(--brand-2); }
.footer__socials svg { width: 17px; height: 17px; }
.footer h3 { margin: 2px 0 20px; color: #fff; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: #929ca9; font-size: .82rem; transition: color .2s ease, transform .2s ease; }
.footer__links a:hover { color: var(--brand-2); transform: translateX(3px); }
.footer__contact { display: grid; gap: 13px; min-width: 0; }
.footer__contact > a,
.footer__contact > span {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-width: 0;
  color: #929ca9;
  font-size: .82rem;
}
.footer__contact > a > span:last-child,
.footer__contact > span > span:last-child {
  display: block;
  min-width: 0;
}
.footer__contact [data-site="email"] { overflow-wrap: anywhere; }
.footer__contact [data-site="phoneDisplay"],
.footer__contact [data-site="workingHours"] { white-space: nowrap; }
.footer__contact svg { width: 16px; height: 16px; margin-top: 4px; color: var(--brand); }
.footer__bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #6f7885; font-size: .72rem; }
.footer__bottom-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer__bottom a:hover { color: var(--brand-2); }

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: #168c50;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  font-size: .78rem;
  font-weight: 800;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 22px 52px rgba(0,0,0,.45); }
.whatsapp-float svg { width: 21px; height: 21px; }

.cookie-banner {
  position: fixed;
  z-index: 140;
  left: 20px;
  bottom: 20px;
  width: min(calc(100% - 40px), 460px);
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(16px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(12,17,24,.96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  transition: .3s var(--ease);
}
html[data-theme="light"] .cookie-banner { background: rgba(255,255,255,.97); }
.cookie-banner.is-visible { visibility: visible; opacity: 1; transform: translateY(0); }
.cookie-banner h2 { margin: 0; font-size: .95rem; }
.cookie-banner p { margin: 8px 0 0; color: var(--text-soft); font-size: .76rem; }
.cookie-banner p a { color: var(--brand-2); text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }

.toast-container { position: fixed; z-index: 200; right: 20px; top: 20px; display: grid; gap: 10px; width: min(calc(100% - 40px), 360px); }
.toast { display: grid; grid-template-columns: 24px 1fr; gap: 10px; padding: 14px 15px; border: 1px solid var(--line-strong); border-radius: 12px; color: var(--text); background: rgba(12,17,24,.96); box-shadow: var(--shadow-lg); animation: toast-in .35s var(--ease) both; }
.toast svg { width: 20px; height: 20px; color: var(--success); }
.toast p { margin: 0; font-size: .79rem; }
@keyframes toast-in { from { opacity: 0; transform: translateX(18px); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

.not-found { min-height: 70svh; display: grid; place-items: center; text-align: center; }
.not-found__code { margin: 0; color: transparent; background: linear-gradient(135deg, var(--brand-2), var(--brand)); background-clip: text; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(7rem, 23vw, 16rem); line-height: .8; }
.not-found h1 { margin: 30px 0 0; font-size: 1.8rem; }
.not-found p { margin: 12px auto 0; max-width: 540px; color: var(--text-soft); }
.not-found .btn { margin-top: 26px; }

@media (max-width: 1140px) {
  .nav { display: none; }
  .header__actions .btn { display: none; }
  .menu-toggle { display: inline-grid; }
  .hero__inner { grid-template-columns: 1fr .88fr; gap: 30px; }
  .hero__title { font-size: clamp(3.2rem, 8.5vw, 6.5rem); }
  .hero-visual { min-height: 490px; }
  .materials { grid-template-columns: repeat(3, 1fr); }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.15fr .7fr .7fr; }
  .footer__grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .section { padding: 86px 0; }
  .section--compact { padding: 62px 0; }
  .topbar__group:first-child a:first-child { display: none; }
  .hero { min-height: auto; padding: 74px 0 50px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { max-width: 760px; }
  .hero-visual { min-height: 480px; width: min(100%, 700px); margin: 0 auto; }
  .hero-visual__image { width: 100%; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .industry-strip__inner { display: block; padding: 20px 0; }
  .industry-strip__label { margin-bottom: 16px; padding: 0; }
  .industry-strip__items { justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .section-heading, .page-hero__inner { grid-template-columns: 1fr; gap: 20px; }
  .section-heading { align-items: start; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .capability { grid-template-columns: 1fr; }
  .capability__visual { min-height: 500px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .process__item:nth-child(2)::after { display: none; }
  .project { grid-column: span 6 !important; }
  .project:nth-child(1) { grid-column: span 12 !important; }
  .quality-grid, .contact-grid { grid-template-columns: 1fr; }
  .quality-visual { min-height: 500px; order: -1; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel__actions { justify-content: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:last-child { grid-column: auto; }
  .detail-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container, .container--narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .topbar__inner { justify-content: center; }
  .topbar__group:first-child { display: none; }
  .logo { min-width: 0; }
  .logo__text strong { font-size: 1rem; }
  .logo__text small { display: none; }
  .header__actions { gap: 7px; }
  .header__actions .icon-btn:not(.menu-toggle) { display: none; }
  .mobile-panel { inset-block-start: calc(var(--header-h) + 38px); }
  .hero { padding-top: 56px; }
  .hero__title { font-size: clamp(3.05rem, 17vw, 5rem); }
  .hero__lead { font-size: .97rem; }
  .hero__actions .btn { width: 100%; }
  .hero-visual { min-height: 390px; margin-top: 4px; }
  .hero-visual__badge { min-width: 0; padding: 10px 12px; }
  .hero-visual__badge--one { left: 0; top: 12%; }
  .hero-visual__badge--two { right: 0; bottom: 9%; }
  .hero-visual__badge span { display: none; }
  .hero-visual__axis { display: none; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 18px; }
  .stat strong { font-size: 1.6rem; }
  .stat span { font-size: .66rem; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .section-heading--center h2 { font-size: clamp(2.2rem, 12vw, 3.3rem); }
  .cards, .detail-grid, .team-grid, .why-grid { grid-template-columns: 1fr; }
  .card { padding: 26px; }
  .capability__visual { min-height: 400px; }
  .capability__label { left: 22px; top: 22px; }
  .capability__content { padding: 30px 24px; }
  .spec-row { grid-template-columns: 40px 1fr; }
  .spec-row__value { grid-column: 2; }
  .process { grid-template-columns: 1fr; gap: 30px; }
  .process__item::after { display: none; }
  .materials { grid-template-columns: repeat(2, 1fr); }
  .project { grid-column: span 12 !important; min-height: 330px; }
  .quality-panel { padding: 30px 24px; }
  .quality-visual { min-height: 390px; }
  .sectors { grid-template-columns: 1fr; }
  .cta-panel { padding: 34px 24px; }
  .cta-panel__actions .btn { width: 100%; }
  .page-hero { padding: 72px 0 58px; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .form-card { padding: 26px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { width: 52px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .cookie-banner { left: 14px; bottom: 14px; width: calc(100% - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar, .header, .footer, .whatsapp-float, .cookie-banner, .btn, .project-filters { display: none !important; }
  body { color: #111; background: #fff; }
  .section, .page-hero { padding: 30px 0; }
  .card, .detail-card, .form-card, .quality-panel, .timeline__item { break-inside: avoid; border-color: #ccc; background: #fff; }
}

/* Long Turkish headline fit correction */
.hero__inner > *, .hero__content { min-width: 0; }
.hero__title .outline { font-size: .72em; letter-spacing: -.035em; }

@media (max-width: 640px) {
  .hero__title { font-size: clamp(2.85rem, 15.2vw, 4.45rem); }
  .hero__title .outline { font-size: .55em; letter-spacing: -.02em; }
  .hero__lead { max-width: 100%; overflow-wrap: anywhere; }
}

/* Prevent min-content overflow in narrow grid layouts */
.quality-grid, .contact-grid, .capability,
.quality-grid > *, .contact-grid > *, .capability > * { min-width: 0; }
.industry-strip__inner, .industry-strip__items { max-width: 100%; }
.mobile-panel { width: 100%; max-width: 100vw; }
@media (max-width: 640px) {
  .quality-panel h2, .capability__content h2 { overflow-wrap: anywhere; }
}
