
:root {
  /* === Logo exact colors === */
  --navy:        #1B2A7B;   /* logo deep indigo-blue */
  --navy-700:    #2738A0;
  --navy-900:    #0E1840;
  --red:         #D02027;   /* logo bright red */
  --red-soft:    #E5363D;
  --green:       #2A8040;   /* logo forest green */
  --green-soft:  #3CAA57;

  --ink-900:     #0E1422;
  --ink-700:     #303749;
  --ink-500:     #5C6478;
  --ink-300:     #8C93A6;

  --line:        #E2E5EC;
  --line-soft:   #EEF0F4;
  --bg:          #FFFFFF;
  --bg-alt:      #F4F5F8;
  --bg-deep:     #0E1840;   /* dark navy for dark sections */

  --container:   1280px;
  --header-h:    74px;
  --topbar-h:    36px;

  --r-sm:        6px;
  --r:           10px;
  --r-lg:        14px;

  --ease:        cubic-bezier(.22,.61,.36,1);

  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --font-display:'Fraunces', Georgia, serif;
  --font-mono:   'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: transparent; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p { margin: 0; }

::selection { background: var(--navy); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 600px) {
  .container { padding-left: 18px; padding-right: 18px; }
}

.section { padding: 20px 0; position: relative; }
.section.tight { padding: 16px 0; }
.section.alt { background: var(--bg-alt); }
@media (max-width: 720px) {
  .section { padding: 20px 0; }
  .section.tight { padding: 16px 0; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(36px, 5.6vw, 64px); letter-spacing: -0.025em; line-height: 1.04; }
h2 { font-size: clamp(28px, 3.2vw, 42px); }
h3 { font-size: 20px; line-height: 1.3; }
h4 { font-size: 16px; }

h1 b, h2 b { font-weight: 600; color: var(--navy); }
.lead { font-size: 16.5px; line-height: 1.65; color: var(--ink-700); }
@media (min-width: 800px) { .lead { font-size: 17.5px; } }

/* ===== EYEBROW (mono, restrained) ===== */
.eye {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.eye::before {
  content: ""; width: 24px; height: 1px; background: var(--ink-900); flex-shrink: 0;
}
.eye-num { color: var(--navy); font-weight: 600; }

/* ===== BUTTONS — flat, no bounce ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), gap .2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { gap: 14px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-700); }
.btn-accent { background: var(--red); color: #fff; }
.btn-accent:hover { background: var(--red-soft); }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn-ghost:hover { background: var(--ink-900); color: #fff; }
.btn-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-light:hover { background: rgba(255,255,255,0.16); border-color: #fff; }
.btn .arr { width: 14px; height: 14px; }
.btn-sm { padding: 10px 16px; font-size: 11px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.78);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: var(--topbar-h);
}
.topbar-left { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; min-width: 0; }
.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: rgba(255,255,255,0.82);
  transition: color .2s;
}
.topbar-contact i { color: rgba(255,255,255,0.48); font-size: 11px; }
.topbar-contact:hover { color: #fff; }
.topbar-address span { max-width: 360px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar-left svg { opacity: 0.5; }
.topbar-right { display: flex; gap: 18px; align-items: center; flex-shrink: 0; }
.topbar-socials { display: inline-flex; align-items: center; gap: 6px; }
.topbar-socials a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.08);
  transition: background .2s, color .2s;
}
.topbar-right .topbar-socials a:hover { background: #fff; color: var(--navy); }
.topbar-socials a i { color: currentColor; }
.topbar-right a { color: rgba(255,255,255,0.85); transition: color .2s; }
.topbar-right a:hover { color: #fff; }
.tb-status { display: inline-flex; align-items: center; gap: 7px; }
.tb-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #5DD680; box-shadow: 0 0 0 3px rgba(93,214,128,0.18); }
@media (max-width: 1120px) {
  .topbar-address { display: none; }
}
@media (max-width: 720px) {
  .topbar { display: none; }
}

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(13,28,64,0.06);
  height: var(--header-h);
  transition: box-shadow .3s var(--ease), height .3s var(--ease), background .3s var(--ease);
}
.header::before {
  /* thin top accent line */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--red) 50%, var(--navy) 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 30px -8px rgba(15,27,61,0.12);
  height: calc(var(--header-h) - 14px);
}
.header.scrolled::before { opacity: 1; }
.header .container {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.brand:hover { transform: translateY(-1px); }
.brand img {
  height: 68px;
  width: auto;
  transition: height .3s var(--ease), filter .25s var(--ease);
}
.header.scrolled .brand img { height: 52px; }
.brand-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  display: flex; flex-direction: column;
  line-height: 1;
}
.brand-text small {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-500);
  margin-top: 4px;
}

.menu { display: flex; justify-content: center; gap: 2px; }
.menu > li { position: relative; }
.menu > li > a, .menu > li > button {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: -0.005em;
  transition: color .25s var(--ease);
  position: relative;
  border-radius: 6px;
}
.menu > li > a::before,
.menu > li > button::before {
  /* sliding bottom underline */
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .3s cubic-bezier(.65,.05,.25,1);
}
.menu > li > a:hover,
.menu > li > button:hover {
  color: var(--navy);
}
.menu > li > a:hover::before,
.menu > li > button:hover::before {
  width: calc(100% - 26px);
}
.menu > li > a.active,
.menu > li > .drop-toggle.active {
  color: var(--navy);
}
.menu > li > a.active::before,
.menu > li > .drop-toggle.active::before {
  width: calc(100% - 26px);
  background: var(--red);
  box-shadow: 0 4px 12px -4px rgba(200,16,46,.6);
}
/* ── Dropdown nav ─────────────────────────────────────── */
.has-drop > .drop-toggle { display: inline-flex; align-items: center; gap: 5px; }
.has-drop > .drop-toggle::after {
  content: ""; display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.has-drop:hover > .drop-toggle::after,
.has-drop:focus-within > .drop-toggle::after { transform: rotate(225deg); margin-top: 2px; }

.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px) scale(.97);
  min-width: 220px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(13,28,64,0.08);
  border-top: 3px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 20px 50px -10px rgba(15,27,61,0.18), 0 4px 12px rgba(15,27,61,0.06);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s cubic-bezier(.34,1.18,.64,1);
  list-style: none; padding: 8px 0; padding-top: 10px; z-index: 200;
  overflow: hidden;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown {
  transform: translateX(-50%) translateY(0) scale(1);
}
/* Invisible bridge fills the gap so hover doesn't break mid-move */
.dropdown::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 10px;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0) scale(1); }
.dropdown li a {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 18px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-700);
  transition: color .15s, background .15s, padding-left .15s;
  white-space: nowrap;
}
.dropdown li a::before {
  content: ""; display: block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--ink-300); flex-shrink: 0;
  transition: background .15s, transform .15s;
}
.dropdown li a:hover { color: var(--navy); background: var(--bg-alt); padding-left: 22px; }
.dropdown li a:hover::before { background: var(--red); transform: scale(1.4); }
.dropdown li + li { border-top: 1px solid var(--line); }

.actions { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }

/* ---- Language switcher (segmented pill) ---- */
.lang {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: rgba(13,28,64,0.04);
  border: 1px solid rgba(13,28,64,0.08);
  border-radius: 999px;
  font-family: var(--font-mono);
  gap: 0;
  position: relative;
}
.lang form { display: inline-flex; }
.lang button {
  position: relative;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease), transform .15s var(--ease);
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 1;
}
.lang button:hover { color: var(--navy); }
.lang button.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(13,28,64,0.35);
}

/* ---- CTA button in header ---- */
.actions .btn.btn-accent {
  position: relative;
  overflow: hidden;
  padding: 11px 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease);
  box-shadow: 0 8px 20px -8px rgba(200,16,46,.55);
}
.actions .btn.btn-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform .65s var(--ease);
  pointer-events: none;
}
.actions .btn.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(200,16,46,.7);
}
.actions .btn.btn-accent:hover::before { transform: translateX(110%); }
.actions .btn.btn-accent:hover .arr { transform: translateX(3px); }
.actions .btn.btn-accent .arr { transition: transform .25s var(--ease); }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(13,28,64,0.1);
  border-radius: 10px;
  position: relative;
  background: #fff;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.burger:hover { background: var(--bg-alt, #f7f8fb); border-color: rgba(13,28,64,0.18); }
.burger:active { transform: scale(.96); }
.burger::before, .burger::after, .burger span {
  content: ""; position: absolute; left: 12px; width: 18px; height: 2px;
  background: var(--ink-900); transition: .25s var(--ease);
  border-radius: 2px;
}
.burger::before { top: 14px; }
.burger span { top: 20px; }
.burger::after { top: 26px; }
body.menu-open .burger { background: var(--navy); border-color: var(--navy); }
body.menu-open .burger::before,
body.menu-open .burger::after,
body.menu-open .burger span { background: #fff; }
body.menu-open .burger::before { top: 20px; transform: rotate(45deg); }
body.menu-open .burger::after { top: 20px; transform: rotate(-45deg); }
body.menu-open .burger span { opacity: 0; transform: scaleX(0); }

.mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, calc(100vw - 28px));
  background: #fff;
  z-index: 70;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  padding: 0 24px 32px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
  touch-action: pan-y;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 60px rgba(14,24,64,.14);
}
.mobile-panel-head {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  margin-bottom: 8px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-panel-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.mobile-panel-brand img {
  width: auto;
  height: 50px;
}
.mobile-panel-close {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  font-size: 18px;
  transition: transform .15s var(--ease), background .2s var(--ease);
}
.mobile-panel-close:active { transform: scale(.94); }
.mobile-panel-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(11,19,43,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  z-index: 65;
  backdrop-filter: blur(2px);
}
body.menu-open .mobile-panel { transform: translateX(0); }
body.menu-open .mobile-overlay { opacity: 1; pointer-events: auto; }
.mobile-panel-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-900);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.mobile-panel-nav a:last-of-type { border-bottom: 0; }
.mobile-panel .lang { margin-top: 24px; align-self: flex-start; }
.mobile-panel .btn { width: 100%; margin-top: 16px; }

@media (max-width: 420px) {
  .mobile-panel {
    width: min(360px, calc(100vw - 16px));
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1080px) {
  .header nav, .menu, .actions .lang, .actions .btn { display: none; }
  .burger { display: flex; align-items: center; justify-content: center; }
  .header .container {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }
  .actions {
    justify-content: flex-end;
  }
}

/* ===== HERO ===== */
.hero {
  padding: 64px 0 88px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
}
@media (min-width: 1024px) { .hero { padding: 96px 0 120px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: end; }
}

.hero-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.hero-meta strong { color: var(--navy); font-weight: 600; }
.hero-meta .sep { color: var(--line); }
.hero-meta .tag {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green);
}
.hero-meta .tag .d {
  width: 5px; height: 5px; border-radius: 50%; background: var(--green);
}
@media (max-width: 600px) {
  .hero-meta .tag { display: none; }
  .hero-meta { gap: 10px; flex-wrap: wrap; }
}

.hero h1 { margin-bottom: 28px; }
.hero .lead { max-width: 580px; margin-bottom: 40px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* hero spec sheet (right column) */
.spec {
  border-top: 1px solid var(--ink-900);
  padding-top: 24px;
}
.spec-head {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.spec-head span:last-child { color: var(--ink-700); }
.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.spec-row-key {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.spec-row-val {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.015em;
  text-align: right;
  line-height: 1;
}
.spec-row-val small {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10.5px;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-left: 4px;
  letter-spacing: 0.04em;
}

/* ===== FACTS strip ===== */
.facts { background: var(--bg-deep); color: #fff; }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (min-width: 800px) { .facts-grid { grid-template-columns: repeat(4, 1fr); } }
.fact {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 800px) { .fact { padding: 48px 32px; border-bottom: 0; } }
.fact:last-child { border-right: 0; }
@media (max-width: 799px) {
  .fact:nth-child(2n) { border-right: 0; }
  .fact:nth-last-child(-n+2) { border-bottom: 0; }
}
.fact-mark {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.fact-mark::before { content: ""; width: 16px; height: 1px; background: rgba(255,255,255,0.3); }
.fact-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin-bottom: 14px;
}
@media (min-width: 1024px) { .fact-num { font-size: 54px; } }
.fact-num sup {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  vertical-align: super;
  line-height: 0;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0;
}
.fact-label { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; max-width: 220px; }

/* ===== SECTION HEADER ===== */
.s-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 56px;
}
@media (min-width: 900px) { .s-head { grid-template-columns: 7fr 5fr; gap: 64px; } }
.s-head h2 { letter-spacing: -0.025em; }
.s-head .desc-link {
  display: inline-flex;
  align-items: center; gap: 8px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-900);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink-900);
  transition: gap .2s var(--ease), color .2s;
}
.s-head .desc-link:hover { gap: 12px; color: var(--navy); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 0.95fr 1.05fr; gap: 80px; }
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-900);
  overflow: hidden;
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(15,27,61,0.4), rgba(11,19,43,0.85)),
    url('https://images.unsplash.com/photo-1581093458791-9d15482442f6?auto=format&fit=crop&w=1200&q=80') center/cover;
}
.about-visual::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.about-mark {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 2;
}
.about-quote {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: #fff;
  padding: 24px;
  z-index: 2;
  border-left: 3px solid var(--red);
}
.about-quote-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.about-quote-num sup { font-family: var(--font-mono); font-size: 14px; vertical-align: super; line-height: 0; color: var(--red); }
.about-quote-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}

.about-list { display: flex; flex-direction: column; gap: 0; margin: 32px 0; }
.about-li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.about-li:first-child { border-top: 1px solid var(--line); }
.about-li-mark {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.about-li h4 { font-size: 16px; margin-bottom: 4px; }
.about-li p { font-size: 14px; color: var(--ink-700); line-height: 1.55; }

/* ===== SERVICES ===== */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink-900);
  border-left: 1px solid var(--line);
}
@media (min-width: 700px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background .2s;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.svc:hover { background: var(--bg-alt); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.svc-num span:last-child { color: var(--ink-900); }
.svc-icon {
  color: var(--navy);
  margin-bottom: 18px;
  width: 26px; height: 26px;
  stroke-width: 1.5;
}
.svc h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.018em;
}
.svc p { font-size: 14px; color: var(--ink-700); line-height: 1.6; margin-bottom: 22px; }
.svc-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-900);
  transition: gap .2s var(--ease);
}
.svc-link:hover { gap: 10px; }
.svc-link svg { width: 14px; height: 14px; }

/* ===== PROCESS ===== */
.process-section { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) { .process { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1080px) {
  .process { grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink-900); padding-top: 40px; }
}
.pr {
  position: relative;
}
@media (max-width: 1079px) {
  .pr { padding-top: 28px; border-top: 1px solid var(--ink-900); }
}
@media (min-width: 1080px) {
  .pr { padding: 0 28px; border-right: 1px solid var(--line); }
  .pr:first-child { padding-left: 0; }
  .pr:last-child { border-right: 0; padding-right: 0; }
}
.pr-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 16px;
}
.pr-num strong { color: var(--navy); font-weight: 600; }
.pr h4 { font-size: 20px; margin-bottom: 10px; line-height: 1.2; }
.pr p { font-size: 13.5px; color: var(--ink-700); line-height: 1.6; }

/* ===== PROJECTS ===== */
.proj-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.fbtn {
  padding: 9px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  border: 1px solid var(--line);
  background: #fff;
  transition: all .2s;
}
.fbtn:hover { border-color: var(--ink-900); color: var(--ink-900); }
.fbtn.active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.search-wrap {
  flex: 1;
  min-width: 220px;
  position: relative;
  margin-left: auto;
}
.search-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-500); }
.search {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  color: var(--ink-900);
  transition: border-color .15s;
}
.search:focus { border-color: var(--navy); }
.search::placeholder { color: var(--ink-500); }

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .projects-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (min-width: 1080px) { .projects-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.project {
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: opacity .25s;
}
.project.hidden { display: none; }
.project-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-900);
}
.project-img-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform .6s var(--ease), filter .4s;
}
.project:hover .project-img-bg { transform: scale(1.04); filter: grayscale(0); }
.project-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.15);
}
.project-body {
  padding: 20px 0 0;
  display: flex; flex-direction: column;
  flex: 1;
}
.project-cat {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 8px;
}
.project h3 {
  font-size: 21px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.project-desc { font-size: 13.5px; color: var(--ink-700); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.project-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.project-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-900);
  transition: all .25s;
}
.project:hover .project-arrow {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
  transform: rotate(-45deg);
}

/* ===== TECHNOLOGY (PDF topics) ===== */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-900);
  border-left: 1px solid var(--line);
}
@media (min-width: 700px) { .tech-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }
.tech {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background .2s;
}
.tech:hover { background: var(--bg-alt); }
.tech-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.tech h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.tech p { font-size: 13.5px; color: var(--ink-700); line-height: 1.6; }

/* ===== GALLERY ===== */
.gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) {
  .gal-grid { grid-template-columns: 1.2fr 1fr 1fr; grid-auto-rows: 220px; }
}
.gi {
  position: relative; overflow: hidden;
  background: var(--ink-900);
  cursor: pointer;
}
@media (min-width: 700px) {
  .gi:nth-child(1), .gi:nth-child(4) { grid-row: span 2; }
  .gi:nth-child(1) { grid-column: 1; }
}
.gi-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(0.15);
  transition: transform .6s var(--ease), filter .4s;
}
.gi:hover .gi-bg { transform: scale(1.04); filter: grayscale(0); }
.gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,19,43,0.7) 100%);
  display: flex; align-items: flex-end;
  padding: 18px;
}
.gi-cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.gi.hidden { display: none; }
@media (max-width: 699px) {
  .gi { aspect-ratio: 4/3; }
}

/* ===== PARTNERS marquee ===== */
.partners-strip {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.partners-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 28px;
}
.ps-label {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: flex; align-items: center; gap: 12px;
}
.ps-label::before { content: ""; width: 24px; height: 1px; background: var(--ink-900); }

.marquee-wrap {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex; width: max-content;
  animation: scroll-x 70s linear infinite;
  gap: 60px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
.marquee-track span { white-space: nowrap; display: inline-flex; align-items: center; gap: 60px; }
.marquee-track span::after {
  content: "—"; color: var(--ink-300); margin-left: 60px;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== CAREER band ===== */
.career-section { background: var(--bg-deep); color: #fff; position: relative; overflow: hidden; }
.career-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}
.career-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 900px) { .career-grid { grid-template-columns: 1.4fr 1fr; gap: 64px; } }
.career-section .eye { color: rgba(255,255,255,0.5); }
.career-section .eye::before { background: rgba(255,255,255,0.5); }
.career-section .eye-num { color: #fff; }
.career-section h2 { color: #fff; }
.career-section h2 b { color: #fff; }
.career-grid > div > p { color: rgba(255,255,255,0.7); font-size: 15.5px; line-height: 1.65; max-width: 460px; margin-top: 16px; }
.career-cta { display: flex; flex-direction: column; gap: 14px; }

/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 1024px) { .contacts-grid { grid-template-columns: 0.95fr 1.05fr; gap: 48px; } }

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
}
@media (min-width: 600px) { .contact-card { padding: 40px; } }
.contact-card h3 { margin-bottom: 12px; font-size: 24px; }
.contact-card > p { color: var(--ink-700); margin-bottom: 24px; font-size: 14.5px; }

.contact-list { display: flex; flex-direction: column; }
.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: 0; }
.ci-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--bg-alt);
  color: var(--navy);
  flex-shrink: 0;
}
.ci-text strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: 4px;
}
.ci-text p, .ci-text a {
  font-size: 14.5px;
  color: var(--ink-900);
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
.ci-text a:hover { color: var(--red); }

.map-frame {
  margin-top: 28px;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }
.map-tabs {
  display: inline-flex;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
}
.map-tab {
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  background: #fff;
  transition: all .15s;
  border: 0;
}
.map-tab.active { background: var(--ink-900); color: #fff; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
}
@media (min-width: 600px) { .form-card { padding: 40px; } }
.form-card h3 { margin-bottom: 8px; font-size: 24px; }
.form-card > p { color: var(--ink-700); margin-bottom: 28px; font-size: 14.5px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-900);
  outline: none;
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--navy); }
.field textarea { min-height: 110px; resize: vertical; }
.form-note {
  margin-top: 16px;
  padding: 14px;
  background: rgba(31,122,55,0.08);
  border-left: 2px solid var(--green);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  display: none;
}
.form-note.show { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.65);
  padding: 20px 0 20px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; } }
.f-brand img { height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.9; }
.f-brand p { color: rgba(255,255,255,0.65); font-size: 13.5px; line-height: 1.6; max-width: 320px; }
.f-socials { display: flex; gap: 8px; margin-top: 20px; }
.f-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all .2s;
}
.f-socials a:hover { background: #fff; color: var(--navy); border-color: #fff; }
.footer h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer ul li a {
  display: block;
  padding: 7px 0;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  transition: color .2s, padding-left .2s;
}
.footer ul li a:hover { color: #fff; padding-left: 4px; }
.f-contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 8px 0;
  font-size: 13.5px;
}
.f-contact-item svg { color: rgba(255,255,255,0.4); margin-top: 2px; flex-shrink: 0; }
.f-contact-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-bottom: 2px;
}
.f-contact-item span, .f-contact-item a { color: rgba(255,255,255,0.85); line-height: 1.5; }
.f-contact-item a:hover { color: #fff; }
.copyright {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
}

/* ===== MODAL (gallery lightbox) ===== */
.modal {
  position: fixed; inset: 0;
  background: rgba(11,19,43,0.92);
  z-index: 90;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .25s;
}
.modal.active { display: flex; opacity: 1; }
.modal-card {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  position: relative;
}
.modal-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: center/cover;
}
.modal-foot {
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
}
.modal-foot strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
}
.modal-foot small {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.modal-close {
  position: absolute;
  top: -12px; right: -12px;
  width: 36px; height: 36px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 22px;
  color: var(--ink-900);
  display: grid; place-items: center;
  line-height: 1;
}
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }


/* =====================================================
   YÜKSƏL BETON — Design improvements 2026-05
   Logo palette: navy #1B2A7B · red #D02027 · green #2A8040
   ===================================================== */

/* ── Tri-color accent bar (logo leaf colors) ── */
.tribar {
  display: flex;
  height: 4px;
  width: 48px;
  gap: 2px;
  margin-bottom: 20px;
}
.tribar span { flex: 1; display: block; }
.tribar span:nth-child(1) { background: var(--navy); }
.tribar span:nth-child(2) { background: var(--red); }
.tribar span:nth-child(3) { background: var(--green); }

/* ── Beton classification cards ── */
.beton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.beton-card {
  background: var(--bg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background .2s var(--ease);
}
.beton-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.beton-card.c-navy::before  { background: var(--navy); }
.beton-card.c-red::before   { background: var(--red); }
.beton-card.c-green::before { background: var(--green); }
.beton-card.c-dark::before  { background: var(--ink-900); }
.beton-card:hover { background: var(--bg-alt); }
.beton-card .bc-range {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 10px;
}
.beton-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.beton-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0;
}
.beton-card .bc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.beton-card .bc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  background: var(--bg-alt);
  color: var(--ink-700);
  border: 1px solid var(--line);
}

/* ── PDCA quality cycle ── */
.pdca-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .pdca-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pdca-grid { grid-template-columns: 1fr; }
}
.pdca-step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--bg);
  transition: background .2s var(--ease);
}
.pdca-step:hover { background: var(--bg-alt); }
.pdca-step:last-child { border-right: none; }
@media (max-width: 900px) {
  .pdca-step:nth-child(2) { border-right: none; }
}
.pdca-num {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.pdca-num.c-navy  { color: var(--navy); }
.pdca-num.c-red   { color: var(--red); }
.pdca-num.c-green { color: var(--green); }
.pdca-num.c-dark  { color: var(--ink-300); }
.pdca-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 10px;
}
.pdca-step p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0;
}
.pdca-arrow {
  position: absolute;
  top: 50%; right: -14px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  color: var(--ink-500);
}
@media (max-width: 900px) {
  .pdca-arrow { display: none; }
}

/* ── Standard specs strip ── */
.specs-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
@media (max-width: 600px) {
  .specs-strip { grid-template-columns: 1fr; }
}
.spec-item {
  background: var(--bg);
  padding: 28px 24px;
}
.spec-item .si-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 8px;
}
.spec-item .si-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.spec-item .si-desc {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
}

/* ── Composition components ── */
.comp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.comp-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  transition: border-color .2s, background .2s;
}
.comp-item:hover { border-color: var(--navy); background: var(--bg-alt); }
.comp-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.comp-dot.c-navy  { background: var(--navy); }
.comp-dot.c-red   { background: var(--red); }
.comp-dot.c-green { background: var(--green); }
.comp-dot.c-ink   { background: var(--ink-500); }

/* ── Partner list grid (from PDF page 16) ── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.partner-item {
  background: var(--bg);
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  transition: background .18s, color .18s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
  transition: background .18s;
}
.partner-item:hover { background: var(--navy); color: #fff; }
.partner-item:hover::before { background: rgba(255,255,255,0.4); }

/* ── Hero accent strip (tri-color) ── */
.hero-accent-bar {
  display: flex;
  gap: 0;
  height: 3px;
  width: 100%;
  margin-bottom: 0;
}
.hero-accent-bar span { flex: 1; }
.hero-accent-bar span:nth-child(1) { background: var(--navy); }
.hero-accent-bar span:nth-child(2) { background: var(--red); }
.hero-accent-bar span:nth-child(3) { background: var(--green); }

/* ── Logo color strip at top of sections ── */
.logo-strip {
  height: 3px;
  display: flex;
  margin-bottom: 48px;
}
.logo-strip span { flex: 1; }
.logo-strip span:nth-child(1) { background: var(--navy); }
.logo-strip span:nth-child(2) { background: var(--red); }
.logo-strip span:nth-child(3) { background: var(--green); }

/* ── Improved section heading border ── */
.s-head { border-bottom: 1px solid var(--line); padding-bottom: 40px; margin-bottom: 48px; }

/* ── Facts section improved ── */
.facts.tight .fact-num { color: var(--navy); }

/* ── Header scrolled state improved ── */
.header.scrolled { box-shadow: 0 4px 24px rgba(27,42,123,0.08); }

/* ── About section improvements ── */
.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
}

/* ── Service cards border improvement ── */
.svc { border-bottom: 2px solid transparent; transition: border-color .2s; }
.svc:hover { border-bottom-color: var(--red); }

/* ── Active nav updated color ── */
.menu > li > a.active::after { background: var(--red); }

/* ── Green dot on topbar ── */
.tb-status .dot { background: var(--green-soft); box-shadow: 0 0 0 3px rgba(42,128,64,0.2); }

/* ── btn-accent (red, logo color) ── */
.btn-accent { background: var(--red); }
.btn-accent:hover { background: var(--red-soft); }

/* ── Tech cards improved number color ── */
.tech-num { color: var(--navy); }
.tech:hover .tech-num { color: var(--red); }

/* ── Section accent line ── */
.section-line {
  width: 48px;
  height: 3px;
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.section-line span { flex:1; }
.section-line span:nth-child(1) { background: var(--navy); }
.section-line span:nth-child(2) { background: var(--red); }
.section-line span:nth-child(3) { background: var(--green); }

/* =====================================================
   TECHNOLOGY PAGE — from technology.html
   ===================================================== */

/* CSS vars referenced in tech page */
:root {
  --navy-900:    #0E1840;
  --red-500:     #D02027;
  --red-600:     #B01A20;
  --green-500:   #2A8040;
  --green-600:   #1F6630;
  --bg-soft:     #F4F5F8;
  --bg-alt:      #F4F5F8;
  --radius:      10px;
  --radius-lg:   14px;
}

/* Page hero */
.page-hero {
  background: var(--navy-900);
  color: #fff;
  padding: 20px 0 20px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(208,32,39,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(42,128,64,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  display: flex;
}
.page-hero-accent::before,
.page-hero-accent::after,
.page-hero-accent span { flex: 1; }
.page-hero-accent { background: linear-gradient(to right, var(--navy) 33%, var(--red) 33% 66%, var(--green) 66%); }

.page-hero h1 {
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  margin-top: 20px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.page-hero h1 strong { color: #fff; font-weight: 700; }
.page-hero .lead {
  color: rgba(255,255,255,0.72);
  margin-top: 16px;
  max-width: 640px;
}

/* Breadcrumbs */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.crumbs a { color: rgba(255,255,255,0.6); transition: color .2s; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: rgba(255,255,255,0.3); }
.crumbs .current { color: rgba(255,255,255,0.9); }

/* Container narrow */
.container-narrow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 600px) {
  .container-narrow { padding-left: 18px; padding-right: 18px; }
}

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 12px;
}

/* Tech page layout */
.tech-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .tech-layout {
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
  }
}

/* TOC */
.toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: none;
}
@media (min-width: 1024px) { .toc { display: block; } }
.toc h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 16px;
}
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc li { counter-increment: toc; position: relative; }
.toc li + li { margin-top: 4px; }
.toc a {
  display: block;
  padding: 10px 12px 10px 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: 8px;
  transition: background .2s, color .2s;
  position: relative;
  line-height: 1.4;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 12px; top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--red-500);
  letter-spacing: 0.05em;
}
.toc a:hover { background: var(--bg-soft); color: var(--navy-900); }
.toc a.active { background: var(--bg-soft); color: var(--navy); font-weight: 600; }

/* Tech content */
.tech-content { max-width: 800px; }
.tech-block { padding-top: 16px; }
.tech-block + .tech-block {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
.tech-block h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 24px;
  scroll-margin-top: 100px;
  color: var(--navy-900);
}
.tech-block h3 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--navy-900);
}
.tech-block h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-top: 20px;
  margin-bottom: 8px;
}
.tech-block p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
  color: var(--ink-700);
}
.tech-block ul, .tech-block ol {
  padding-left: 0;
  margin: 16px 0;
  list-style: none;
}
.tech-block ul li, .tech-block ol li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-700);
}
.tech-block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 18px; height: 2px;
  background: var(--red-500);
}
.tech-block ol { counter-reset: ol; }
.tech-block ol li { counter-increment: ol; }
.tech-block ol li::before {
  content: counter(ol);
  position: absolute;
  left: 0; top: 8px;
  width: 22px; height: 22px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.tech-block ol li strong { color: var(--navy-900); }

/* Composition cards */
.compo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 32px;
}
@media (min-width: 700px) { .compo-grid { grid-template-columns: repeat(3, 1fr); } }
.compo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.compo:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.compo .compo-ico {
  width: 40px; height: 40px;
  margin: 0 auto 10px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
}
.compo strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy-900);
  font-weight: 600;
}

/* Density categories */
.density-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}
@media (min-width: 700px) { .density-grid { grid-template-columns: 1fr 1fr; } }
.density {
  background: var(--bg-soft);
  border-left: 3px solid var(--navy-900);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
}
.density:nth-child(1) { border-left-color: var(--green-500); }
.density:nth-child(2) { border-left-color: var(--red-500); }
.density:nth-child(3) { border-left-color: var(--navy); }
.density:nth-child(4) { border-left-color: var(--ink-700); }
.density-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.density-desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* Callout */
.callout {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--red-500);
}
.callout-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 8px;
}
.callout p {
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  margin: 0 !important;
}

/* Crack accordion */
.cracks { display: grid; gap: 12px; margin: 24px 0; }
.crack-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.crack-item:hover { border-color: var(--navy-900); }
.crack-head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.crack-tag {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-900);
}
.crack-head h4 {
  flex: 1;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0;
  text-transform: none;
  letter-spacing: -0.01em;
}
.crack-head .chev {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--ink-300);
  transition: transform .3s, color .3s;
}
.crack-item.open .chev { transform: rotate(180deg); color: var(--red-500); }
.crack-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.crack-item.open .crack-body { max-height: 800px; }
.crack-body-inner {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line);
}
.crack-body p { font-size: 15px; line-height: 1.65; }
.crack-body p strong { color: var(--navy-900); }
.crack-body .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--ink-700);
  margin-top: 10px;
  margin-bottom: 6px;
}
.crack-body .label.prevent { background: rgba(42,128,64,0.12); color: var(--green-600); }
.crack-body .label.repair  { background: rgba(208,32,39,0.10); color: var(--red-600); }

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 32px 0;
}
@media (min-width: 800px) { .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.step-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--red-500);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 16px;
}
.step-card h3 { margin-top: 12px; font-size: 19px; }
.step-card ul { margin-top: 12px; }
.step-card ul li { font-size: 14.5px; padding: 6px 0 6px 28px; }
.step-card ul li::before { width: 14px; top: 14px; }

/* Highlight box */
.highlight {
  background: linear-gradient(135deg, rgba(208,32,39,0.06) 0%, rgba(42,128,64,0.04) 100%);
  border: 1px solid rgba(208,32,39,0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.highlight svg { flex-shrink: 0; color: var(--red-500); margin-top: 2px; }
.highlight strong { color: var(--navy-900); display: block; margin-bottom: 4px; }
.highlight p { font-size: 14.5px; color: var(--ink-700); margin: 0; line-height: 1.55; }

/* Weather cards */
.weather-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}
@media (min-width: 700px) { .weather-grid { grid-template-columns: 1fr 1fr; } }
.weather-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.weather-card.cold { border-top: 4px solid #4FA3D8; }
.weather-card.hot  { border-top: 4px solid var(--red-500); }
.weather-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.weather-card.cold .weather-icon { background: rgba(79,163,216,0.12); color: #4FA3D8; }
.weather-card.hot  .weather-icon { background: rgba(208,32,39,0.10); color: var(--red-500); }
.weather-card h3 { font-size: 20px; margin-bottom: 8px; }
.weather-card .temp {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-500);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.weather-card ul li { font-size: 14px; padding: 5px 0 5px 24px; }
.weather-card ul li::before { width: 12px; top: 12px; }

/* =====================================================
   HOMEPAGE REDESIGN — Compact modern industrial look
   May 2026 · Yüksəl Beton QSC
   ===================================================== */

/* ── Hero: tighter, split-panel spec card ── */
.hero { padding: 36px 0 44px; }
@media (min-width: 1024px) { .hero { padding: 52px 0 64px; } }
.hero-grid { gap: 36px; }
@media (min-width: 1024px) { .hero-grid { gap: 56px; align-items: center; } }
.hero h1 { font-size: clamp(30px, 4.8vw, 54px); margin-bottom: 18px; line-height: 1.05; }
.hero .lead { font-size: 15.5px; margin-bottom: 28px; }
.hero-meta { margin-bottom: 20px; padding-bottom: 14px; }

/* Spec card panel treatment */
@media (min-width: 1024px) {
  .hero-grid > div:last-child {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    padding: 28px;
    border-top: 3px solid var(--navy);
  }
  .hero-grid > div:last-child .spec {
    border-top: none;
    padding-top: 0;
  }
}

/* ── Facts: more compact ── */
.fact { padding: 22px 18px; }
@media (min-width: 800px) { .fact { padding: 30px 24px; } }
.fact-num { font-size: 36px; margin-bottom: 8px; }
@media (min-width: 1024px) { .fact-num { font-size: 46px; } }
.fact-mark { margin-bottom: 12px; }

/* ── Section header: tighter ── */
.s-head { padding-bottom: 22px; margin-bottom: 32px; }

/* ── About: tighter grid gap ── */
.about-grid { gap: 32px; }
@media (min-width: 1024px) { .about-grid { gap: 52px; } }
.about-visual { aspect-ratio: 4/4; }
@media (min-width: 1024px) { .about-visual { aspect-ratio: 4/5; } }
.about-list { margin: 20px 0; }
.about-li { padding: 14px 0; }

/* ── Services: tighter cards ── */
.svc { padding: 24px 22px; min-height: 190px; }
.svc-num { margin-bottom: 16px; }
.svc-icon { margin-bottom: 12px; }
.svc h3 { font-size: 19px; margin-bottom: 8px; }
.svc p { margin-bottom: 16px; }

/* ── PDCA grid: tighter ── */
.pdca-grid { margin-top: 28px; }
.pdca-step { padding: 24px 20px; }
.pdca-num { font-size: 32px; margin-bottom: 8px; }
.pdca-step h4 { font-size: 16px; margin-bottom: 6px; }

/* ── Beton cards: tighter ── */
.beton-grid { margin-top: 22px; }
.beton-card { padding: 22px 18px; }
.beton-card h4 { font-size: 16px; }
.beton-card .bc-tags { margin-top: 12px; }

/* ── Specs strip: tighter ── */
.specs-strip { margin-top: 18px; }
.spec-item { padding: 20px 18px; }
.spec-item .si-val { font-size: 22px; }

/* ── Logo strip margin ── */
.logo-strip { margin-bottom: 32px; }

/* ── Composition section ── */
.comp-grid { margin-top: 14px; gap: 8px; }
.comp-item { padding: 8px 12px; font-size: 11px; }

/* ── Partner grid ── */
.partner-grid { margin-top: 22px; }
.partner-item { padding: 13px 16px; }

/* ── Contact & form cards ── */
.contact-card { padding: 24px; }
.form-card { padding: 24px; }
@media (min-width: 600px) {
  .contact-card { padding: 30px; }
  .form-card { padding: 30px; }
}
.contact-card h3 { font-size: 20px; }
.form-card h3 { font-size: 20px; }
.contact-item { padding: 14px 0; }

/* ── Utility: tighten inline margins in sections ── */
.process-section .reveal[style*="margin-top:56px"],
.process-section .reveal[style*="margin-top: 56px"] { margin-top: 24px !important; }

/* =====================================================
   VARIANT B — Dark hero · Image panel · Bold accents
   May 2026 · Yüksəl Beton QSC
   ===================================================== */

/* ── Dark hero ── */
.hero {
  background: var(--bg-deep) !important;
  color: #fff;
  border-bottom: none !important;
  position: relative;
  overflow: hidden;
}
/* Industrial dot-grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
/* Tri-color bottom stripe */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--navy) 0% 33.33%,
    var(--red)  33.33% 66.66%,
    var(--green) 66.66% 100%);
  z-index: 2;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,0.68); max-width: 560px; }
.hero-meta {
  color: rgba(255,255,255,0.45);
  border-color: rgba(255,255,255,0.1) !important;
}
.hero-meta strong { color: #fff; }
.hero-meta .sep { color: rgba(255,255,255,0.18); }
.hero-meta .tag { color: var(--green); }
.hero-cta .btn-ghost {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.28);
}
.hero-cta .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* Hero right column: image panel with spec overlay */
@media (min-width: 1024px) {
  .hero-grid { align-items: stretch !important; }
  .hero-grid > div:last-child {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    position: relative;
    min-height: 380px;
  }
  /* Concrete image background */
  .hero-grid > div:last-child::before {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(11,19,43,0.55) 0%, rgba(11,19,43,0.75) 100%),
      url('https://images.unsplash.com/photo-1581093458791-9d15482442f6?auto=format&fit=crop&w=1200&q=80')
      center/cover;
    z-index: 0;
  }
  .hero-grid > div:last-child .spec {
    position: relative; z-index: 1;
    border-top-color: rgba(255,255,255,0.18) !important;
    padding: 28px !important;
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
  }
}
/* Spec on dark */
.spec-head { color: rgba(255,255,255,0.42); }
.spec-head span:last-child { color: rgba(255,255,255,0.6); }
.spec-row { border-color: rgba(255,255,255,0.08); }
.spec-row-key { color: rgba(255,255,255,0.42); }
.spec-row-val { color: #fff; }
.spec-row-val small { color: rgba(255,255,255,0.38); }

/* Hero badges on dark */
.hero .hero-badges span { color: rgba(255,255,255,0.5) !important; }

/* ── Facts: per-stat color accent ── */
.fact:nth-child(1) { border-top: 3px solid var(--navy); }
.fact:nth-child(2) { border-top: 3px solid var(--red); }
.fact:nth-child(3) { border-top: 3px solid var(--green); }
.fact:nth-child(4) { border-top: 3px solid rgba(255,255,255,0.25); }

/* ── Services: left accent on hover ── */
.svc {
  position: relative;
  border-left: 3px solid transparent !important;
  transition: border-color .25s, background .2s !important;
}
.svc:hover { border-left-color: var(--red) !important; }
.svc:nth-child(1):hover { border-left-color: var(--navy) !important; }
.svc:nth-child(3):hover { border-left-color: var(--green) !important; }
.svc:nth-child(4):hover { border-left-color: var(--red) !important; }
.svc:nth-child(5):hover { border-left-color: var(--green) !important; }
.svc:nth-child(6):hover { border-left-color: var(--navy) !important; }
/* Remove old bottom border hover */
.svc:hover { border-bottom-color: transparent !important; }

/* ── About visual: stronger image ── */
.about-visual::before {
  background:
    linear-gradient(135deg, rgba(11,19,43,0.3), rgba(11,19,43,0.7)),
    url('https://images.unsplash.com/photo-1581093458791-9d15482442f6?auto=format&fit=crop&w=1200&q=80')
    center/cover !important;
}

/* ── Process section: stronger heading number ── */
.pdca-num { opacity: 0.85; }
.pdca-step:hover .pdca-num { opacity: 1; }

/* ── Career section: larger text ── */
.career-grid > div > h2 { font-size: clamp(26px, 4vw, 44px); }

/* ── Section alt: subtle left border on all cards ── */
.section.alt .svc-grid { border-top-color: var(--navy); }

/* ── Partner items: tighter, show count ── */
.partner-grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

/* ───────────────────────────────────────────────────────────
   GLOBAL SPACING TIGHTENING (compact pass)
   Reduces section paddings introduced by per-page styles.
   Add new -sec classes here as needed.
   ─────────────────────────────────────────────────────────── */

/* Generic section paddings: cut roughly in half */
.ab-intro-sec, .ab-timeline-sec, .ab-values-sec, .ab-quality-sec,
.qp-statement-sec, .qp-principles-sec, .qp-commit-sec,
.op-vision-sec, .op-list-sec, .op-commit-sec,
.uv-manifesto-sec, .uv-list-sec, .uv-team-sec,
.om-statement-sec, .om-list-sec, .om-future-sec,
.cs-statement-sec, .cs-journey-sec, .cs-process-sec,
.cs-principles-sec, .cs-team-sec,
.cc-ratio-sec, .cc-ingredients-sec, .cc-class-sec,
.cc-props-sec, .cc-quote-sec,
.pj-list-sec, .pj-cta-sec,
.pjd-intro-sec, .pjd-desc-sec, .pjd-gallery-sec {
    padding-top: 44px;
    padding-bottom: 44px;
}

/* Heroes also get a touch tighter */
.page-hero {
    padding-top: 14px;
    padding-bottom: 22px;
}

/* Section header bottom margin: was 48px, now 28px */
.ab-values-head, .pj-head, .cs-process-head,
.qp-head, .op-head, .uv-head, .om-head, .cc-head, .pjd-gal-head,
.cs-light-head, .pjd-desc-head {
    margin-bottom: 28px !important;
}

/* Tighten reveal/section-head inner gaps */
.s-head { margin-bottom: 28px; }

/* CTA-like footer sections */
.ab-quality-sec, .qp-commit-sec, .op-commit-sec, .uv-team-sec,
.om-future-sec, .cs-team-sec, .cc-quote-sec, .pj-cta-sec {
    padding-top: 56px;
    padding-bottom: 56px;
}

/* Manifesto / statement blocks: less vertical air */
.qp-statement, .op-vision, .uv-manifesto, .om-statement, .cs-statement {
    padding-top: 0;
}
.qp-statement-mark, .op-vision-mark, .uv-manifesto-mark,
.om-statement-mark, .cs-statement-mark {
    margin-bottom: 18px;
}
.qp-statement h2, .op-vision h2, .uv-manifesto h2,
.om-statement h2, .cs-statement h2 { margin-bottom: 14px; }

/* Card paddings: shave a bit */
.ab-stat-card { padding: 16px 16px; min-height: 90px; }
.ab-val-card { padding: 22px 18px 18px; }
.qp-card, .op-card, .uv-card, .om-card { padding: 22px 20px 20px; }
.cc-ing-card { padding: 20px 14px 16px; }

/* Project listing tighter */
.pj-grid { gap: 18px; }
.pj-card-body { padding: 16px 18px 18px; }

/* Inner gaps between successive sections */
.section + .section,
section + section { margin-top: 0; }

/* Mobile compression */
@media (max-width: 700px) {
    .ab-intro-sec, .ab-timeline-sec, .ab-values-sec, .ab-quality-sec,
    .qp-statement-sec, .qp-principles-sec, .qp-commit-sec,
    .op-vision-sec, .op-list-sec, .op-commit-sec,
    .uv-manifesto-sec, .uv-list-sec, .uv-team-sec,
    .om-statement-sec, .om-list-sec, .om-future-sec,
    .cs-statement-sec, .cs-journey-sec, .cs-process-sec,
    .cs-principles-sec, .cs-team-sec,
    .cc-ratio-sec, .cc-ingredients-sec, .cc-class-sec,
    .cc-props-sec, .cc-quote-sec,
    .pj-list-sec, .pj-cta-sec,
    .pjd-intro-sec, .pjd-desc-sec, .pjd-gallery-sec {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .ab-quality-sec, .qp-commit-sec, .op-commit-sec, .uv-team-sec,
    .om-future-sec, .cs-team-sec, .cc-quote-sec, .pj-cta-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
