/* ============================================================
   lowbed.org — Industrial heavy-haul landing
   Dark navy / anthracite / steel  + safety yellow & orange
   ============================================================ */

:root {
  /* Surfaces */
  --ink:      #111a24;   /* page bg */
  --ink-2:    #16212d;   /* alt section */
  --panel:    #1d2935;   /* cards */
  --panel-2:  #243240;   /* raised cards */
  --line:     rgba(255,255,255,.10);
  --line-2:   rgba(255,255,255,.16);

  /* Text */
  --white:    #f4f7fb;
  --mute:     #9aa9bb;
  --mute-2:   #6b7a8d;

  /* Accents */
  --yellow:   #F5B301;
  --yellow-d: #d99c00;
  --orange:   #FF6A1A;
  --orange-d: #e85800;
  --wa:       #25D366;
  --wa-d:     #1ebe5a;

  --radius:   6px;
  --radius-sm: 4px;
  --maxw:     1200px;

  --shadow:   0 22px 50px -20px rgba(0,0,0,.85);
  --shadow-y: 0 14px 36px -12px rgba(245,179,1,.35);
  --shadow-card: 0 10px 24px -18px rgba(0,0,0,.85), 0 2px 5px -3px rgba(0,0,0,.6);
  --shadow-lift: 0 26px 52px -22px rgba(0,0,0,.9), 0 5px 12px -6px rgba(0,0,0,.55);

  --ff-disp: "Oswald", "Arial Narrow", sans-serif;
  --ff-body: "Barlow", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  scroll-padding-top: 120px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Display headings */
h1, h2, h3, .disp {
  font-family: var(--ff-disp);
  font-weight: 700;
  line-height: .98;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--ff-disp);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--orange);
  display: inline-block;
}

/* hazard stripe motif */
.hazard {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 14px,
    #111a24 14px 28px
  );
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--ff-disp);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 24px;
  border-radius: 5px;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  min-height: 52px;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn-wa { background: var(--wa); color: #06371b; }
.btn-wa:hover { background: var(--wa-d); box-shadow: 0 12px 30px -12px rgba(37,211,102,.6); }

.btn-y { background: var(--yellow); color: #1a1304; }
.btn-y:hover { background: var(--yellow-d); box-shadow: var(--shadow-y); }

.btn-o { background: var(--orange); color: #1f0e02; }
.btn-o:hover { background: var(--orange-d); box-shadow: 0 14px 32px -12px rgba(255,106,26,.5); }

.btn-ghost {
  background: rgba(255,255,255,.04);
  border: 1.5px solid var(--line-2);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-block { width: 100%; }

/* ============================================================
   TOP MINI BAR
   ============================================================ */
.topbar {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  flex-wrap: wrap;
}
.topbar .pulse {
  color: var(--mute);
  display: flex; align-items: center; gap: 9px;
  font-weight: 500;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  animation: pulse 2s infinite;
  flex: none;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 9px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.topbar .spacer { flex: 1; }
.topbar .tb-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--mute); font-weight: 600;
  transition: color .15s;
}
.topbar .tb-link svg { width: 15px; height: 15px; color: var(--yellow); }
.topbar .tb-link:hover { color: var(--white); }
.topbar .tb-link.strong { color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17,26,36,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: 0 10px 30px -16px rgba(0,0,0,.8); }
.header .wrap {
  display: flex; align-items: center; gap: 20px;
  min-height: 74px;
}
.logo {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--ff-disp); font-weight: 700;
  font-size: 25px; letter-spacing: .5px; text-transform: lowercase;
}
.logo .mark {
  width: 42px; height: 42px; border-radius: 5px;
  display: grid; place-items: center;
  background: var(--yellow);
  position: relative; overflow: hidden;
  flex: none;
  font-family: var(--ff-disp); font-weight: 700; font-size: 19px;
  letter-spacing: .5px; color: #11151a; text-transform: uppercase;
}
.logo .mark svg { width: 100%; height: 100%; position: relative; z-index: 1; }
.logo .org { color: var(--yellow); }
.logo .logo-tx { display: flex; flex-direction: column; line-height: 1.04; text-transform: none; }
.logo .logo-tx b { font-family: var(--ff-disp); font-weight: 700; font-size: 21px; letter-spacing: .4px; color: var(--white); }
.logo .logo-tx small { font-family: var(--ff-disp); font-weight: 500; font-size: 10px; letter-spacing: 2.6px; color: var(--yellow); margin-top: 2px; }

.nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav a {
  font-family: var(--ff-disp);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--mute);
  padding: 9px 13px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav a.is-active { color: var(--yellow); }

.header-cta { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-disp); font-weight: 600;
  letter-spacing: .5px;
}
.header-phone .ico {
  width: 38px; height: 38px; border-radius: 4px; flex:none;
  display: grid; place-items: center;
  background: rgba(245,179,1,.12); border: 1px solid rgba(245,179,1,.3);
}
.header-phone .ico svg { width: 18px; height: 18px; color: var(--yellow); }
.header-phone small { display: block; font-family: var(--ff-body); font-weight: 500; font-size: 11px; letter-spacing: .5px; color: var(--mute-2); text-transform: uppercase; }
.header-phone b { font-size: 18px; }

.burger {
  display: none;
  width: 46px; height: 46px; border-radius: 5px;
  border: 1px solid var(--line-2);
  margin-left: auto;
  position: relative;
}
.burger span, .burger span::before, .burger span::after {
  content: ""; position: absolute; left: 12px; right: 12px; height: 2.5px;
  background: var(--white); border-radius: 2px; transition: .2s;
}
.burger span { top: 50%; transform: translateY(-50%); }
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after  { top: 0; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; top: 0; z-index: 60;
  background: var(--ink);
  flex-direction: column;
  padding: 22px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-menu .mm-close { width: 46px; height: 46px; border:1px solid var(--line-2); border-radius: 5px; font-size: 26px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--ff-disp); text-transform: uppercase; letter-spacing: .8px;
  font-size: 22px; padding: 15px 8px; border-bottom: 1px solid var(--line);
  color: var(--white);
}
.mobile-menu nav a:active { color: var(--yellow); }
.mobile-menu .mm-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% -5%, rgba(255,106,26,.14), transparent 60%),
    radial-gradient(700px 600px at 10% 110%, rgba(245,179,1,.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
  padding: 64px 0 72px;
}
.hero-copy { max-width: 620px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: 7px 13px; border-radius: 6px; font-size: 13px; font-weight: 600;
  color: var(--mute);
}
.badge svg { width: 14px; height: 14px; color: var(--yellow); }

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  margin-bottom: 20px;
}
.hero h1 .hl { color: var(--yellow); }
.hero h1 .ol { color: var(--orange); }
.hero .lede {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--mute);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; }

.hero-stats {
  display: flex; gap: 30px; margin-top: 38px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-stats .st b {
  font-family: var(--ff-disp); font-size: 34px; color: var(--white); display: block; line-height: 1;
}
.hero-stats .st .y { color: var(--yellow); }
.hero-stats .st span { font-size: 13px; color: var(--mute-2); text-transform: uppercase; letter-spacing: .8px; font-weight: 600; }

/* hero visual placeholder */
.hero-visual { position: relative; }
.ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, #2a3a4a, #1a2632);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
}
.ph::after {
  content: ""; position: absolute; left:0; right:0; bottom:0; height: 8px;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 12px, #11151a 12px 24px);
  opacity: .8;
}
.ph-inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--mute-2); text-align: center; padding: 24px;
}
.ph-inner svg { width: 48px; height: 48px; color: rgba(245,179,1,.45); }
.svc-img .ph-inner { gap: 6px; }
.svc-img .ph-inner svg { width: 40px; height: 40px; }
.ph-inner .pl-label { font-family: var(--ff-disp); text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; color: var(--mute); }
.ph-inner .pl-sub { font-size: 12px; color: var(--mute-2); }

/* Real photos dropped into .ph slots */
.ph.has-photo { display: block; background: none; }
.ph.has-photo::after { display: none; }
.ph > .ph-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual .ph.has-photo, .split-media .ph.has-photo, .docs-imgs .ph.has-photo { aspect-ratio: 16 / 10; }
.ph.has-photo .ph-tag {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  font-family: var(--ff-disp); font-weight: 600; font-size: 13px; letter-spacing: .3px;
  color: #fff; background: rgba(11,15,22,.82); padding: 5px 11px; border-radius: 6px;
  line-height: 1; pointer-events: none;
}
.svc-img.has-photo .ph-tag { font-size: 11px; padding: 3px 8px; right: 7px; bottom: 7px; border-radius: 5px; }

/* Conversion microcopy — trust / risk-reversal */
.final-trust { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin: 24px 0 0; padding: 0; }
.final-trust li { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--mute); }
.final-trust li svg { width: 16px; height: 16px; color: var(--yellow); flex: none; }
.hero-assure { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--mute); margin: 14px 0 0; }
.hero-assure svg { width: 16px; height: 16px; color: var(--yellow); flex: none; }

.hero-region {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--mute); font-size: 14.5px; font-weight: 500; max-width: 560px;
}
.hero-region svg { width: 18px; height: 18px; color: var(--yellow); flex: none; margin-top: 2px; }
.hero-region span { line-height: 1.5; }

.hero-visual .ph, .hero-visual .hero-photo { aspect-ratio: 4/3.4; box-shadow: var(--shadow); }
.hero-visual .floater {
  position: absolute; left: -18px; bottom: 46px;
  background: var(--panel-2); border: 1px solid var(--line-2);
  border-radius: 6px; padding: 14px 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.hero-visual .floater .fi { width: 40px; height: 40px; border-radius: 4px; background: rgba(37,211,102,.14); display:grid; place-items:center; flex:none; }
.hero-visual .floater .fi svg { width: 20px; height: 20px; color: var(--wa); }
.hero-visual .floater b { font-family: var(--ff-disp); font-size: 15px; display:block; }
.hero-visual .floater span { font-size: 12px; color: var(--mute-2); }

/* ============================================================
   QUICK QUOTE FORM
   ============================================================ */
.quote-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-card .qc-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
}
.quote-card .qc-top .tag {
  background: var(--yellow); color:#1a1304; font-family: var(--ff-disp); font-weight: 700;
  font-size: 11px; letter-spacing: 1px; padding: 4px 9px; border-radius: 6px; text-transform: uppercase;
}
.quote-card h3 { font-size: 23px; margin: 8px 0 3px; }
.quote-card .qc-sub { font-size: 13.5px; color: var(--mute); margin-bottom: 18px; }

.field { margin-bottom: 13px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; color: var(--mute); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink); border: 1.5px solid var(--line);
  border-radius: 5px; padding: 13px 14px; color: var(--white);
  font-family: var(--ff-body); font-size: 16px; transition: border .15s, box-shadow .15s;
  min-height: 50px;
}
.field textarea { min-height: 76px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--mute-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,179,1,.15);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239aa9bb' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

.filebtn {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px dashed var(--line-2); border-radius: 5px;
  padding: 12px 14px; color: var(--mute); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: border .15s, color .15s;
}
.filebtn:hover { border-color: var(--yellow); color: var(--white); }
.filebtn svg { width: 18px; height: 18px; color: var(--yellow); flex:none; }
.filebtn input { display: none; }
.filebtn .fname { color: var(--wa); font-weight: 600; }

.quote-card .qc-note {
  font-size: 12px; color: var(--mute-2); margin-top: 12px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.quote-card .qc-note svg { width: 14px; height: 14px; color: var(--wa); }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: 78px 0; }
.section.alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin: 16px 0 14px; }
.sec-head p { color: var(--mute); font-size: 18px; }

/* ---------- Trust strip ---------- */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.trust-grid.four { grid-template-columns: repeat(4, 1fr); }
.trust {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  display: flex; align-items: flex-start; gap: 15px;
  transition: border .18s, transform .18s;
}
.trust:hover { border-color: var(--line-2); transform: translateY(-3px); }
.trust .ic {
  width: 48px; height: 48px; border-radius: 5px; flex: none;
  display: grid; place-items: center;
  background: rgba(245,179,1,.1); border: 1px solid rgba(245,179,1,.22);
}
.trust .ic svg { width: 24px; height: 24px; color: var(--yellow); }
.trust b { font-family: var(--ff-disp); font-size: 18px; text-transform: uppercase; letter-spacing: .4px; display: block; margin-bottom: 3px; }
.trust span { font-size: 14px; color: var(--mute); }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border .18s, transform .18s, box-shadow .18s;
  display: flex; flex-direction: column;
}
.svc:hover { border-color: rgba(245,179,1,.4); transform: translateY(-4px); box-shadow: var(--shadow); }
.svc .svc-img { aspect-ratio: 16/10; }
.svc .svc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.svc h3 { font-size: 21px; margin-bottom: 8px; letter-spacing: .3px; }
.svc p { font-size: 14.5px; color: var(--mute); flex: 1; }
.svc .svc-link {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-disp); text-transform: uppercase; letter-spacing: 1px;
  font-size: 13px; font-weight: 600; color: var(--yellow);
}
.svc .svc-link svg { width: 15px; height: 15px; transition: transform .15s; }
.svc:hover .svc-link svg { transform: translateX(4px); }

/* ---------- Marmara map ---------- */
.map-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center; }
.map-stage {
  background: radial-gradient(120% 120% at 50% 0%, #1e2c3a, #131e29);
  border: 1px solid var(--line-2); border-radius: 8px; padding: 22px;
  position: relative; box-shadow: var(--shadow);
}
.map-stage svg { width: 100%; height: auto; display: block; }
.map-stage .city-dot { cursor: pointer; transition: r .15s; }
.map-legend { font-size: 12px; color: var(--mute-2); margin-top: 8px; display:flex; align-items:center; gap:8px; }
.map-legend .lg { width: 10px; height:10px; border-radius:50%; background: var(--yellow); display:inline-block; }

.city-list { display: flex; flex-direction: column; gap: 10px; }
.city-list h3 { font-size: 26px; margin-bottom: 6px; }
.city-list > p { color: var(--mute); font-size: 15px; margin-bottom: 8px; }
.city-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.city {
  display: flex; align-items: center; gap: 10px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 5px; padding: 12px 13px; text-align: left;
  transition: border .15s, background .15s, transform .12s;
  width: 100%;
}
.city:hover { border-color: var(--yellow); background: var(--panel-2); transform: translateX(3px); }
.city .pin { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex: none; }
.city b { font-family: var(--ff-disp); font-size: 16px; text-transform: uppercase; letter-spacing: .4px; }
.city small { display: block; font-size: 11px; color: var(--mute-2); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.step {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 18px; position: relative;
}
.step .num {
  font-family: var(--ff-disp); font-size: 46px; line-height: 1; color: var(--yellow);
  -webkit-text-stroke: 0; opacity: .9; margin-bottom: 14px;
}
.step .num span { color: var(--mute-2); font-size: 16px; }
.step h3 { font-size: 17px; margin-bottom: 7px; letter-spacing: .2px; }
.step p { font-size: 13.5px; color: var(--mute); }
.step .ic { width: 36px; height: 36px; color: var(--orange); margin-bottom: 12px; }
.step .ic svg { width: 36px; height: 36px; display: block; }

/* ---------- Technical info ---------- */
.tech-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.tech-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.tech-item {
  display: flex; gap: 13px; align-items: center;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 6px; padding: 18px;
}
.tech-item .ck { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center; background: rgba(245,179,1,.12); }
.tech-item .ck svg { width: 16px; height: 16px; color: var(--yellow); }
.tech-item b { font-family: var(--ff-disp); font-size: 16px; text-transform: uppercase; letter-spacing: .3px; display: block; }
.tech-item span { font-size: 13.5px; color: var(--mute); }
.tech-cta { margin-top: 24px; }

.tech-side {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2); border-radius: 8px; padding: 28px;
  box-shadow: var(--shadow);
}
.tech-side h3 { font-size: 24px; margin-bottom: 16px; }
.tech-side .ts-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.tech-side .ts-row:last-child { border-bottom: none; }
.tech-side .ts-row .ic { width: 40px; height: 40px; border-radius: 5px; background: rgba(255,106,26,.13); display: grid; place-items: center; flex: none; }
.tech-side .ts-row .ic svg { width: 20px; height: 20px; color: var(--orange); }
.tech-side .ts-row b { font-family: var(--ff-disp); font-size: 16px; text-transform: uppercase; display: block; }
.tech-side .ts-row span { font-size: 13.5px; color: var(--mute); }

/* ---------- Document / trust band ---------- */
.docs {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center;
}
.docs .docs-copy h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px; }
.docs .docs-copy p { color: var(--mute); font-size: 16px; margin-bottom: 14px; max-width: 560px; }
.docs .docs-copy .check { display: flex; gap: 10px; align-items: center; color: var(--white); font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.docs .docs-copy .check svg { width: 20px; height: 20px; color: var(--wa); flex:none; }
.docs-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.docs-imgs.single { grid-template-columns: 1fr; }
.docs-imgs.single .ph { aspect-ratio: 4/3; }
.docs-imgs .ph { aspect-ratio: 3/4; }
.docs-imgs .ph:first-child { aspect-ratio: 3/4; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: 6px; margin-bottom: 12px;
  background: var(--panel); overflow: hidden; transition: border .15s;
}
.faq-item.open { border-color: rgba(245,179,1,.4); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 16px; justify-content: space-between;
  padding: 20px 22px; text-align: left;
  font-family: var(--ff-disp); font-size: 19px; letter-spacing: .3px; text-transform: none;
}
.faq-q .qx {
  width: 30px; height: 30px; border-radius: 8px; flex: none; position: relative;
  background: rgba(245,179,1,.12); border: 1px solid rgba(245,179,1,.25);
  transition: background .15s, transform .2s;
}
.faq-q .qx::before, .faq-q .qx::after {
  content: ""; position: absolute; background: var(--yellow); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .qx::before { width: 13px; height: 2.5px; }
.faq-q .qx::after  { width: 2.5px; height: 13px; transition: transform .2s; }
.faq-item.open .qx::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item.open .qx { background: var(--yellow); }
.faq-item.open .qx::before { background: #1a1304; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a .inner { padding: 0 22px 22px; color: var(--mute); font-size: 15.5px; }

/* ---------- Customer reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column;
  transition: border .16s, transform .14s;
}
.review:hover { border-color: rgba(245,179,1,.35); transform: translateY(-3px); }
.review .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review .stars svg { width: 18px; height: 18px; color: var(--yellow); }
.review .rtext { color: var(--white); font-size: 15.5px; line-height: 1.6; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.review .av { width: 44px; height: 44px; border-radius: 5px; flex: none; display: grid; place-items: center; background: rgba(245,179,1,.12); border: 1px solid rgba(245,179,1,.24); font-family: var(--ff-disp); font-size: 19px; font-weight: 600; color: var(--yellow); }
.review .who b { font-family: var(--ff-disp); font-size: 15px; text-transform: uppercase; letter-spacing: .3px; display: block; line-height: 1.1; }
.review .who small { font-size: 12.5px; color: var(--mute-2); }

/* ---------- Final CTA ---------- */
.final {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #1b2733 0%, #131e29 100%);
  border-top: 1px solid var(--line);
}
.final::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(700px 420px at 80% 120%, rgba(255,106,26,.18), transparent 60%),
              radial-gradient(600px 400px at 5% -20%, rgba(245,179,1,.12), transparent 60%);
}
.final-inner { position: relative; z-index: 1; text-align: center; padding: 80px 0; }
.final h2 { font-size: clamp(32px, 5vw, 60px); max-width: 880px; margin: 14px auto 18px; }
.final p { color: var(--mute); font-size: 19px; max-width: 620px; margin: 0 auto 32px; }
.final .final-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 36px; }
.footer .logo { margin-bottom: 16px; }
.footer .f-about { color: var(--mute); font-size: 14.5px; max-width: 320px; margin-bottom: 18px; }
.footer h4 { font-family: var(--ff-disp); text-transform: uppercase; letter-spacing: 1px; font-size: 15px; color: var(--white); margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--mute); font-size: 14.5px; transition: color .15s; }
.footer ul li a:hover { color: var(--yellow); }
.f-contact .fc { display: flex; gap: 11px; align-items: center; margin-bottom: 14px; }
.f-contact .fc .ic { width: 38px; height: 38px; border-radius: 4px; background: rgba(255,255,255,.05); border: 1px solid var(--line); display: grid; place-items: center; flex:none; }
.f-contact .fc .ic svg { width: 17px; height: 17px; color: var(--yellow); }
.f-contact .fc small { display: block; font-size: 11px; color: var(--mute-2); text-transform: uppercase; letter-spacing: .5px; }
.f-contact .fc b { font-family: var(--ff-disp); font-size: 16px; }
.footer-bottom {
  margin-top: 48px; border-top: 1px solid var(--line); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--mute-2);
}
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .legal a:hover { color: var(--yellow); }

/* ---------- Region city cards ---------- */
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.region-card {
  display: flex; align-items: center; gap: 13px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 6px; padding: 18px 18px;
  transition: border .16s, transform .14s, background .16s;
}
.region-card:hover { border-color: var(--yellow); background: var(--panel-2); transform: translateY(-3px); }
.region-card .pin {
  width: 42px; height: 42px; border-radius: 5px; flex: none;
  display: grid; place-items: center;
  background: rgba(245,179,1,.1); border: 1px solid rgba(245,179,1,.22);
}
.region-card .pin svg { width: 21px; height: 21px; color: var(--yellow); }
.region-card b { font-family: var(--ff-disp); font-size: 18px; text-transform: uppercase; letter-spacing: .4px; display: block; line-height: 1.05; }
.region-card small { font-size: 12px; color: var(--mute-2); }

/* ---------- Sticky mobile dual bar (Ara + WhatsApp) ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  background: rgba(15,23,32,.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-2);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  gap: 9px;
}
.mobile-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-disp); text-transform: uppercase; letter-spacing: .8px; font-weight: 700; font-size: 16px;
  border-radius: 6px; min-height: 54px;
}
.mobile-bar a svg { width: 22px; height: 22px; flex: none; }
.mobile-bar .mb-call { background: var(--yellow); color: #1a1304; }
.mobile-bar .mb-wa { background: var(--wa); color: #06371b; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: block; }
  .header-cta { margin-left: auto; }
  .header-phone { display: none; }
  .topbar .hide-sm { display: none; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 520px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .step { padding: 18px 14px; }
  .step .num { font-size: 34px; }
  .map-wrap { grid-template-columns: 1fr; }
  .tech-wrap, .docs { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .header-cta { display: none; }
  .topbar .hide-sm { display: none; }
  .section { padding: 56px 0; }
  .hero-grid { padding: 40px 0 52px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .trust-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { display: flex; align-items: flex-start; gap: 16px; }
  .step .num { margin-bottom: 0; }
  .step .ic { display: none; }
  .step .step-txt { flex: 1; }
  .tech-list { grid-template-columns: 1fr 1fr; }
  .region-grid { grid-template-columns: 1fr 1fr; }
  .docs-imgs { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer .f-about-col { grid-column: 1 / -1; }
  .mobile-bar { display: flex; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { flex: none; width: 100%; min-width: 0; }
  .final .final-cta { flex-direction: column; align-items: stretch; }
  .final .final-cta .btn { width: 100%; }
  body { padding-bottom: 80px; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
}

/* ============================================================
   SUBPAGES
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--ink-2); border-bottom: 1px solid var(--line);
  padding: 52px 0 56px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(820px 380px at 82% -20%, rgba(255,106,26,.12), transparent 60%);
}
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 16px, #111a24 16px 32px);
  opacity: .85;
}
.page-hero .wrap { position: relative; z-index: 1; }
.crumb { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; font-size: 13px; color: var(--mute-2); margin-bottom: 18px; font-weight: 600; }
.crumb a, .crumb .here { white-space: nowrap; }
.crumb a { color: var(--mute); transition: color .15s; }
.crumb a:hover { color: var(--yellow); }
.crumb svg { width: 13px; height: 13px; opacity: .6; }
.crumb .here { color: var(--yellow); }
.page-hero h1 { font-size: clamp(34px, 5.2vw, 60px); max-width: 880px; margin-bottom: 16px; }
.page-hero .ph-lede { font-size: clamp(16px, 2vw, 19px); color: var(--mute); max-width: 680px; margin-bottom: 26px; }
.page-hero .ph-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Embedded region map (subpages) ---------- */
.map-embed {
  border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow); position: relative; background: var(--panel);
}
.map-embed iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(.25) contrast(1.05) brightness(.95); }
@media (max-width: 760px) { .map-embed iframe { height: 320px; } }

/* ---------- Industrial framed map ---------- */
.map-frame { position: relative; background: linear-gradient(180deg, #1c2937, #131e29); border: 1px solid var(--line-2); border-radius: 8px; padding: 0 8px 8px; box-shadow: var(--shadow); }
.map-frame .mf-bar { display: flex; align-items: center; gap: 9px; padding: 13px 4px 12px; }
.map-frame .mf-pin svg { width: 20px; height: 20px; color: var(--yellow); display: block; }
.map-frame .mf-label { font-family: var(--ff-disp); text-transform: uppercase; letter-spacing: .6px; font-size: 16px; color: var(--white); }
.map-frame .mf-tag { margin-left: auto; font-family: var(--ff-disp); font-size: 11px; letter-spacing: 1px; color: #1a1304; background: var(--yellow); padding: 4px 9px; border-radius: 4px; }
.map-frame .mf-hazard { height: 4px; margin: 0 -8px 8px; background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 10px, #11151a 10px 20px); opacity: .85; }
.map-frame .map-embed { border: 1px solid var(--line); border-radius: 5px; box-shadow: none; }
.map-frame::before, .map-frame::after { content: ""; position: absolute; width: 16px; height: 16px; border: 2px solid var(--yellow); z-index: 2; }
.map-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.map-frame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; border-bottom-right-radius: 8px; }

/* ---------- Region long-form article ---------- */
.region-article { max-width: 820px; margin: 0 auto; }
.region-article h2 { font-size: clamp(20px, 2.6vw, 26px); margin: 30px 0 12px; letter-spacing: .3px; }
.region-article h2:first-child { margin-top: 0; }
.region-article p { color: var(--mute); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }

/* ============================================================
   MOTION — entrance animation (progressive enhancement, no JS).
   Hero fades up on load; below-the-fold cards/sections reveal as they
   scroll into view via CSS scroll-driven animations. Browsers without
   support — and visitors who prefer reduced motion — simply see the
   content in place. Content is never hidden behind JS, so it can't get
   stuck invisible. Reveal uses `translate` so hover `transform` stays intact.
   ============================================================ */
@keyframes lb-reveal { from { opacity: 0; translate: 0 26px; } to { opacity: 1; translate: 0 0; } }
@keyframes lb-fade-up { from { opacity: 0; translate: 0 18px; } to { opacity: 1; translate: 0 0; } }

@media (prefers-reduced-motion: no-preference) {
  /* Hero entrance on load (above the fold — always completes) */
  .hero-copy { animation: lb-fade-up .8s cubic-bezier(.2,.6,.2,1) both; }
  .hero-visual { animation: lb-fade-up .8s cubic-bezier(.2,.6,.2,1) .1s both; }
  .page-hero > .wrap { animation: lb-fade-up .7s cubic-bezier(.2,.6,.2,1) both; }

  /* Scroll-driven reveal for content that enters from below */
  @supports (animation-timeline: view()) {
    .sec-head, .svc, .trust, .feat, .sector, .review, .region-card, .step,
    .contact-card, .tech-item, .final-inner, .faq-item,
    .numlist > li, .checklist > li, .chips {
      animation: lb-reveal both linear;
      animation-timeline: view();
      animation-range: entry 0% entry 85%;
    }
  }
}

/* ---------- Map beside text (compact, side layout) ---------- */
.map-aside { display: grid; grid-template-columns: .92fr 1.08fr; gap: 40px; align-items: center; }
.map-aside.rev { grid-template-columns: 1.08fr .92fr; }
.map-aside .map-embed iframe { height: 330px; }
.map-aside .ma-text h2 { font-size: clamp(24px, 3.4vw, 36px); margin: 12px 0 14px; }
.map-aside .ma-text p { color: var(--mute); font-size: 16px; margin-bottom: 18px; max-width: 520px; }
@media (max-width: 1024px) {
  .map-aside, .map-aside.rev { grid-template-columns: 1fr; gap: 26px; }
  .map-aside .map-embed iframe { height: 300px; }
}
@media (max-width: 760px) { .map-aside .map-embed iframe { height: 260px; } }


/* prose / content */
.prose { max-width: 760px; }
.prose p { color: var(--mute); font-size: 17px; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--white); font-weight: 600; }

/* split text + image */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.split.rev .split-media { order: -1; }
.split .ph { aspect-ratio: 4/3; }
.split h2 { font-size: clamp(26px, 3.6vw, 40px); margin: 14px 0 16px; }

/* feature grid (icon cards) */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  transition: border .16s, transform .14s;
}
.feat:hover { border-color: rgba(245,179,1,.4); transform: translateY(-3px); }
.feat .fic {
  width: 50px; height: 50px; border-radius: 6px; margin-bottom: 16px;
  display: grid; place-items: center;
  background: rgba(245,179,1,.1); border: 1px solid rgba(245,179,1,.22);
}
.feat .fic svg { width: 25px; height: 25px; color: var(--yellow); }
.feat h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: .3px; }
.feat p { font-size: 14.5px; color: var(--mute); }

/* checklist */
.checklist { display: grid; gap: 12px; }
.checklist.cols { grid-template-columns: 1fr 1fr; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: var(--white);
}
.checklist li svg { width: 22px; height: 22px; color: var(--wa); flex: none; margin-top: 2px; }
.checklist li span { color: var(--mute); }

/* numbered list (process) */
.numlist { display: grid; gap: 14px; counter-reset: nl; max-width: 760px; }
.numlist li {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 6px; padding: 18px 20px;
}
.numlist li::before {
  counter-increment: nl; content: counter(nl, decimal-leading-zero);
  font-family: var(--ff-disp); font-size: 24px; color: var(--yellow); line-height: 1; flex: none;
  min-width: 36px;
}
.numlist li b { font-family: var(--ff-disp); font-size: 18px; text-transform: uppercase; letter-spacing: .3px; display: block; margin-bottom: 3px; }
.numlist li p { font-size: 14.5px; color: var(--mute); margin: 0; }

/* contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; text-align: center;
  transition: border .16s, transform .14s;
}
.contact-card:hover { border-color: rgba(245,179,1,.4); transform: translateY(-3px); }
.contact-card .cic { width: 56px; height: 56px; border-radius: 7px; margin: 0 auto 16px; display: grid; place-items: center; }
.contact-card .cic.y { background: rgba(245,179,1,.12); border: 1px solid rgba(245,179,1,.25); }
.contact-card .cic.w { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.3); }
.contact-card .cic.o { background: rgba(255,106,26,.12); border: 1px solid rgba(255,106,26,.3); }
.contact-card .cic svg { width: 27px; height: 27px; }
.contact-card .cic.y svg { color: var(--yellow); }
.contact-card .cic.w svg { color: var(--wa); }
.contact-card .cic.o svg { color: var(--orange); }
.contact-card small { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--mute-2); font-weight: 700; }
.contact-card b { font-family: var(--ff-disp); font-size: 23px; display: block; margin: 6px 0 16px; }
.contact-card .btn { width: 100%; }

/* tag chips (e.g. what we carry) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 6px; padding: 10px 16px; font-size: 14.5px; font-weight: 600; color: var(--white);
}
.chip svg { width: 16px; height: 16px; color: var(--yellow); flex: none; }
a.chip { transition: border-color .15s, transform .12s, background .15s; }
a.chip:hover { border-color: var(--yellow); background: var(--panel-2); transform: translateY(-2px); }

@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.rev .split-media { order: 0; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .feat-grid { grid-template-columns: 1fr; }
  .checklist.cols { grid-template-columns: 1fr; }
  .page-hero .ph-cta { flex-direction: column; align-items: stretch; }
  .page-hero .ph-cta .btn { flex: none; width: 100%; min-width: 0; }
}


/* ============================================================
   CORPORATE REFINEMENT — crisp edges + defined elevation
   ============================================================ */
.trust, .svc, .feat, .review, .contact-card, .step,
.region-card, .tech-item, .numlist li, .faq-item {
  box-shadow: var(--shadow-card);
}
.trust:hover, .svc:hover, .feat:hover, .review:hover,
.contact-card:hover, .region-card:hover {
  box-shadow: var(--shadow-lift);
}
.header { box-shadow: 0 1px 0 var(--line), 0 16px 32px -24px rgba(0,0,0,.95); }
.header.scrolled { box-shadow: 0 1px 0 var(--line-2), 0 18px 36px -22px rgba(0,0,0,1); }
.quote-card, .tech-side, .map-stage, .map-embed { box-shadow: var(--shadow); }

/* ---------- Header services dropdown (desktop) ---------- */
.nav .has-dd { position: relative; }
.nav .dd-toggle { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-disp); text-transform: uppercase; letter-spacing: .6px; font-weight: 500; font-size: 14.5px; color: var(--mute); padding: 9px 13px; border-radius: 6px; cursor: pointer; background: none; transition: color .15s, background .15s; }
.nav .has-dd:hover .dd-toggle, .nav .has-dd:focus-within .dd-toggle { color: var(--white); background: rgba(255,255,255,.05); }
.nav .dd-toggle svg { width: 13px; height: 13px; transition: transform .18s; }
.nav .has-dd:hover .dd-toggle svg, .nav .has-dd:focus-within .dd-toggle svg { transform: rotate(180deg); }
.nav .has-dd::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav .dd-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 380px; background: var(--panel-2); border: 1px solid var(--line-2); border-radius: 6px; box-shadow: var(--shadow); padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .15s, transform .15s, visibility .15s; z-index: 60; }
.nav .has-dd:hover .dd-menu, .nav .has-dd:focus-within .dd-menu { opacity: 1; visibility: visible; transform: none; }
.nav .dd-menu a { padding: 10px 12px; border-radius: 4px; font-family: var(--ff-body); font-weight: 600; font-size: 14px; letter-spacing: .2px; text-transform: none; color: var(--mute); white-space: nowrap; }
.nav .dd-menu a:hover, .nav .dd-menu a.is-active { background: rgba(255,255,255,.05); color: var(--yellow); }
.nav .dd-divider { height: 1px; background: var(--line); margin: 6px 6px; }
/* Hizmet detay linkleri 2 sütun — uzun menü kaydırma gerektirmesin */
.nav .dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

/* mobile menu services group label */
.mobile-menu nav .mm-group { font-family: var(--ff-disp); text-transform: uppercase; letter-spacing: 1px; font-size: 13px; color: var(--mute-2); padding: 18px 8px 6px; border: 0; }


/* ============================================================
   VISUAL POLISH — sectors strip, hover accent, blueprint texture
   ============================================================ */
.sectors { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.sector { position: relative; display: flex; flex-direction: column; align-items: center; gap: 13px; padding: 26px 12px; background: var(--panel); border: 1px solid var(--line); border-radius: 6px; text-align: center; box-shadow: var(--shadow-card); transition: border .16s, transform .14s, box-shadow .16s; }
.sector:hover { border-color: rgba(245,179,1,.4); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.sector .si { width: 52px; height: 52px; border-radius: 6px; display: grid; place-items: center; background: rgba(245,179,1,.1); border: 1px solid rgba(245,179,1,.22); }
.sector .si svg { width: 26px; height: 26px; color: var(--yellow); }
.sector b { font-family: var(--ff-disp); text-transform: uppercase; letter-spacing: .5px; font-size: 14px; }
@media (max-width: 1024px) { .sectors { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .sectors { grid-template-columns: repeat(2, 1fr); } }

/* Hover accent line across the top of cards */
.svc, .feat, .review, .sector, .contact-card { position: relative; }
.svc::after, .feat::after, .review::after, .sector::after, .contact-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease; z-index: 3;
}
.svc:hover::after, .feat:hover::after, .review:hover::after, .sector:hover::after, .contact-card:hover::after { transform: scaleX(1); }

/* Subtle blueprint grid on dark alt sections */
.section.alt {
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 46px 46px;
}


/* ---------- Legal documents ---------- */
.legal-doc { max-width: 820px; }
.legal-doc .updated { font-size: 13px; color: var(--mute-2); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 28px; }
.legal-doc h3 { font-size: 20px; margin: 30px 0 10px; letter-spacing: .3px; }
.legal-doc h3:first-of-type { margin-top: 0; }
.legal-doc p { color: var(--mute); font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
.legal-doc .note { margin-top: 32px; padding: 16px 18px; border: 1px dashed var(--line-2); border-radius: 6px; font-size: 13.5px; color: var(--mute-2); }


/* ---------- Cookie consent ---------- */
.cookie-bar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80; max-width: 760px; margin: 0 auto; background: var(--panel-2); border: 1px solid var(--line-2); border-radius: 8px; box-shadow: var(--shadow); padding: 15px 18px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-bar p { font-size: 13.5px; color: var(--mute); flex: 1; min-width: 220px; margin: 0; line-height: 1.5; }
.cookie-bar p a { color: var(--yellow); }
.cookie-bar .cb-actions { display: flex; gap: 10px; }
.cookie-bar .btn { min-height: 42px; padding: 10px 18px; font-size: 14px; }
@media (max-width: 760px) { .cookie-bar { bottom: 92px; } }

/* ============================================================
   ROUTE-NETWORK BACKGROUND — faint Marmara "coverage" map on the
   hero / page-hero / footer frames (under the existing glows).
   ============================================================ */
.hero, .page-hero, .footer {
  background-image: url("/route.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
