/* ═══════════════════════════════════════════════════════
   QNEXAPLUS /trades/ — Shared Design System v3
   Self-contained. No dependency on main site CSS.
   Navy #0D1B2A · Coral #E8603C
   Fonts: Space Grotesk · Inter · Barlow Condensed
════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #0D1B2A;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
:root {
  --navy:   #0D1B2A;
  --coral:  #E8603C;
  --coral2: #c94f2c;
  --off:    #F7F6F4;
  --mid:    #6B7280;
  --border: #E4E3E1;
  --dark:   #070d14;
  --FH: 'Space Grotesk', sans-serif;
  --FB: 'Inter', sans-serif;
  --FC: 'Barlow Condensed', sans-serif;
}

/* ── HEADER ─────────────────────────────────────────── */
.t-hdr {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 2px solid var(--coral);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
}
.t-logo { text-decoration: none; display: flex; flex-direction: column; gap: 3px; }
.t-logo-name {
  font-family: var(--FC);
  font-size: 22px; font-weight: 900;
  color: #fff; letter-spacing: .1em; text-transform: uppercase; line-height: 1;
}
.t-logo-name b { color: var(--coral); }
.t-logo-sub {
  font-size: 7px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.t-nav { display: flex; align-items: center; gap: 10px; }
.t-nav-link {
  font-family: var(--FC);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 6px 14px;
  transition: color .18s;
}
.t-nav-link:hover { color: #fff; }
.t-nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.28);
  color: #fff;
  padding: 8px 18px;
  font-family: var(--FC); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: background .18s;
}
.t-nav-wa:hover { background: rgba(37,211,102,.2); }
.t-nav-cta {
  background: var(--coral); color: #fff;
  padding: 9px 22px;
  font-family: var(--FC); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  transition: background .18s;
}
.t-nav-cta:hover { background: var(--coral2); }
.t-nav-ico { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── HERO ────────────────────────────────────────────── */
.t-hero {
  position: relative;
  background: var(--navy);
  min-height: 86vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.t-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1520 0%, #0d1b2a 60%, #0a1520 100%);
}
.t-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,13,20,.96) 45%, rgba(7,13,20,.6) 100%);
}
.t-hero-pattern {
  position: absolute; inset: 0; opacity: .03;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,1) 60px, rgba(255,255,255,1) 61px),
                    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,1) 60px, rgba(255,255,255,1) 61px);
}
.t-hero-accent {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,96,60,.12) 0%, transparent 65%);
  pointer-events: none;
}
.t-hero-inner {
  position: relative; z-index: 2;
  padding: 80px 52px;
  max-width: 920px;
}
.t-hero-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--FC); font-size: 10px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 28px;
}
.t-hero-label::before {
  content: ''; width: 36px; height: 2px; background: var(--coral); flex-shrink: 0;
}
.t-hero-h1 {
  font-family: var(--FH);
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 700; color: #fff;
  line-height: .96; letter-spacing: -.025em;
  margin-bottom: 28px;
}
.t-hero-h1 em { color: var(--coral); font-style: normal; }
.t-hero-p {
  font-size: 17px; color: rgba(255,255,255,.55);
  line-height: 1.75; font-weight: 300;
  max-width: 560px; margin-bottom: 14px;
}
.t-hero-trust {
  font-family: var(--FC); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 40px;
}
.t-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────────── */
.t-btn-p {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--coral); color: #fff;
  padding: 15px 34px;
  font-family: var(--FC); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background .2s, transform .2s;
}
.t-btn-p:hover { background: var(--coral2); transform: translateY(-1px); }
.t-btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(37,211,102,.1); color: #fff;
  padding: 14px 28px;
  font-family: var(--FC); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  border: 1.5px solid rgba(37,211,102,.32);
  transition: background .2s;
}
.t-btn-wa:hover { background: rgba(37,211,102,.2); }
.t-btn-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: #fff;
  padding: 14px 28px;
  font-family: var(--FC); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: border-color .2s;
}
.t-btn-call:hover { border-color: rgba(255,255,255,.7); }
.t-btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--coral);
  padding: 15px 34px;
  font-family: var(--FC); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background .2s;
}
.t-btn-white:hover { background: var(--off); }
.t-btn-outline-w {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: #fff;
  padding: 14px 28px;
  font-family: var(--FC); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: border-color .2s;
}
.t-btn-outline-w:hover { border-color: #fff; }
.t-btn-ico {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

/* ── TICKER ──────────────────────────────────────────── */
.t-ticker {
  background: #060d18;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden; height: 40px;
  display: flex; align-items: center;
}
.t-ticker-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: t-slide 36s linear infinite;
  will-change: transform;
}
.t-ticker:hover .t-ticker-track { animation-play-state: paused; }
@keyframes t-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.t-tick-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 26px;
  font-family: var(--FC); font-size: 10.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.t-tick-check {
  width: 14px; height: 14px; flex-shrink: 0;
  border: 1.5px solid var(--coral); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.t-tick-check::after {
  content: ''; width: 5px; height: 3px;
  border-left: 1.5px solid var(--coral);
  border-bottom: 1.5px solid var(--coral);
  transform: rotate(-45deg) translateY(-1px);
}

/* ── SECTIONS ────────────────────────────────────────── */
.t-sec { padding: 88px 52px; }
.t-sec-off { background: var(--off); }
.t-sec-dark { background: var(--navy); }
.t-sec-darker { background: var(--dark); }
.t-wrap { max-width: 1140px; margin: 0 auto; }
.t-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--FC); font-size: 9px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 16px;
}
.t-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--coral); flex-shrink: 0; }
.t-eyebrow-w { color: rgba(255,255,255,.4); }
.t-eyebrow-w::before { background: rgba(255,255,255,.25); }
.t-h2 {
  font-family: var(--FH);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700; color: var(--navy);
  line-height: .97; letter-spacing: -.025em;
  margin-bottom: 14px;
}
.t-h2-w { color: #fff; }
.t-lead {
  font-size: 15px; color: var(--mid);
  line-height: 1.85; font-weight: 300;
  max-width: 640px;
}
.t-lead-w { color: rgba(255,255,255,.5); }

/* ── WHY CARDS ───────────────────────────────────────── */
.t-why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); margin-top: 56px;
}
.t-why-card {
  background: #fff; padding: 36px 28px;
  border-bottom: 3px solid transparent;
  transition: all .22s;
}
.t-why-card:hover { border-bottom-color: var(--coral); background: var(--off); }
.t-why-ico {
  width: 50px; height: 50px;
  background: rgba(232,96,60,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.t-why-ico svg { width: 22px; height: 22px; stroke: var(--coral); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.t-why-t {
  font-family: var(--FC); font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy); margin-bottom: 8px;
}
.t-why-d { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ── WORK CARDS ──────────────────────────────────────── */
.t-work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.07); margin-top: 56px;
}
.t-work-card {
  background: rgba(255,255,255,.04); padding: 32px 28px;
  border-left: 3px solid transparent; transition: all .22s;
}
.t-work-card:hover { background: rgba(255,255,255,.09); border-left-color: var(--coral); }
.t-work-t {
  font-family: var(--FC); font-size: 15px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: #fff; margin-bottom: 8px;
}
.t-work-d { font-size: 13px; color: rgba(255,255,255,.44); line-height: 1.65; }

/* ── PROCESS ─────────────────────────────────────────── */
.t-proc-wrap {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: 56px; position: relative;
}
.t-proc-step {
  flex: 1; padding: 36px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.t-proc-step + .t-proc-step { border-left: none; }
.t-proc-n {
  font-family: var(--FH); font-size: 56px; font-weight: 700;
  color: rgba(232,96,60,.15); line-height: 1; margin-bottom: 12px;
  letter-spacing: -.04em;
}
.t-proc-t {
  font-family: var(--FC); font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--coral); margin-bottom: 8px;
}
.t-proc-d { font-size: 13px; color: rgba(255,255,255,.44); line-height: 1.65; }
.t-proc-arr {
  width: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding-top: 56px; color: rgba(255,255,255,.2);
  font-size: 18px;
}

/* ── AREAS ───────────────────────────────────────────── */
.t-areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); margin-top: 56px;
}
.t-area-card {
  background: #fff; padding: 28px 24px; text-align: center;
  border-bottom: 3px solid transparent; transition: all .22s; cursor: default;
}
.t-area-card:hover { border-bottom-color: var(--coral); background: var(--off); }
.t-area-name {
  font-family: var(--FC); font-size: 16px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy); margin-bottom: 4px;
}
.t-area-region { font-size: 11px; color: var(--mid); font-weight: 500; }

/* ── REQUIREMENTS ────────────────────────────────────── */
.t-req-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 56px;
}
.t-req-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid var(--coral);
}
.t-req-ico { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.t-req-ico svg { width: 18px; height: 18px; stroke: var(--coral); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.t-req-txt { font-family: var(--FC); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); }

/* ── FORM ────────────────────────────────────────────── */
.t-form-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 56px; align-items: start; margin-top: 56px;
}
.t-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  padding: 44px 40px;
  box-shadow: 0 12px 48px rgba(13,27,42,.07);
}
.t-form-title {
  font-family: var(--FC); font-size: 17px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--navy); margin-bottom: 28px;
  padding-bottom: 18px; border-bottom: 2px solid var(--border);
}
.t-fl {
  display: block; font-size: 8.5px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: #9CA3AF; margin-bottom: 6px; margin-top: 18px;
}
.t-fl:first-of-type { margin-top: 0; }
.t-fi {
  width: 100%; border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 10px 0; font-size: 14px; color: var(--navy);
  background: transparent; outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color .18s;
}
.t-fi:focus { border-bottom-color: var(--coral); }
.t-fi::placeholder { color: #D1D5DB; }
.t-fsel {
  width: 100%; border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 10px 0; font-size: 14px; color: var(--navy);
  background: transparent; outline: none;
  font-family: 'Inter', sans-serif;
  appearance: none; cursor: pointer;
  transition: border-color .18s;
}
.t-fsel:focus { border-bottom-color: var(--coral); }
.t-fta {
  width: 100%; border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 10px 0; font-size: 14px; color: var(--navy);
  background: transparent; outline: none;
  font-family: 'Inter', sans-serif;
  resize: none; height: 80px;
  transition: border-color .18s;
}
.t-fta:focus { border-bottom-color: var(--coral); }
.t-fta::placeholder { color: #D1D5DB; }
.t-frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.t-frow3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.t-f-upload {
  width: 100%;
  border: 1.5px dashed var(--border);
  padding: 16px; font-size: 13px; color: var(--mid);
  background: var(--off); outline: none;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: border-color .18s;
}
.t-f-upload:focus { border-color: var(--coral); }
.t-fsub {
  width: 100%; background: var(--coral); color: #fff;
  padding: 16px;
  font-family: var(--FC); font-size: 12px; font-weight: 900;
  letter-spacing: .18em; text-transform: uppercase;
  border: none; cursor: pointer; margin-top: 24px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .18s;
}
.t-fsub:hover { background: var(--coral2); }
.t-fsub svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.t-f-note { font-size: 11px; color: #9CA3AF; text-align: center; margin-top: 10px; }
.t-form-success {
  display: none; text-align: center; padding: 56px 0;
}
.t-success-ico {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(34,197,94,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.t-success-ico svg { width: 28px; height: 28px; stroke: #22c55e; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.t-success-t {
  font-family: var(--FH); font-size: 26px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; letter-spacing: -.02em;
}
.t-success-p { font-size: 14px; color: var(--mid); line-height: 1.8; }

/* ── FORM SIDEBAR ────────────────────────────────────── */
.t-form-side {}
.t-side-block { margin-bottom: 36px; }
.t-side-label {
  font-family: var(--FC); font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 12px;
}
.t-side-h {
  font-family: var(--FH); font-size: 28px; font-weight: 700;
  color: var(--navy); line-height: .97;
  letter-spacing: -.02em; margin-bottom: 14px;
}
.t-side-p { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 24px; }
.t-contact-row {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--navy);
  margin-bottom: 16px; transition: color .18s;
}
.t-contact-row:hover { color: var(--coral); }
.t-cr-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(232,96,60,.08);
  display: flex; align-items: center; justify-content: center;
}
.t-cr-ico svg { width: 18px; height: 18px; stroke: var(--coral); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.t-cr-label { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); margin-bottom: 2px; }
.t-cr-val { font-family: var(--FC); font-size: 15px; font-weight: 700; letter-spacing: .04em; color: var(--navy); }
.t-side-wa {
  display: flex; align-items: center; gap: 12px;
  background: rgba(37,211,102,.06);
  border: 1.5px solid rgba(37,211,102,.22);
  padding: 16px 20px;
  text-decoration: none; color: var(--navy);
  transition: background .18s; margin-top: 24px;
}
.t-side-wa:hover { background: rgba(37,211,102,.12); }
.t-side-wa svg { width: 20px; height: 20px; stroke: #22c55e; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.t-side-wa-t { font-family: var(--FC); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: 2px; }
.t-side-wa-s { font-size: 12px; color: var(--mid); }
.t-hours-block {
  background: var(--off); padding: 20px 20px; margin-top: 24px;
  border-left: 3px solid var(--coral);
}
.t-hours-t { font-family: var(--FC); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.t-hours-d { font-size: 12px; color: var(--mid); line-height: 1.7; }

/* ── STATS ───────────────────────────────────────────── */
.t-stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.t-stat { padding: 32px; border-right: 1px solid rgba(255,255,255,.07); }
.t-stat:last-child { border-right: none; }
.t-stat-n {
  font-family: var(--FH); font-size: 44px; font-weight: 700;
  color: var(--coral); line-height: 1; letter-spacing: -.03em;
}
.t-stat-l {
  font-family: var(--FC); font-size: 9px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-top: 6px;
}

/* ── CTA BAND ────────────────────────────────────────── */
.t-cta { background: var(--coral); padding: 80px 52px; text-align: center; position: relative; overflow: hidden; }
.t-cta::before {
  content: ''; position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.t-cta-h2 {
  font-family: var(--FH); font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; color: #fff;
  line-height: .97; letter-spacing: -.025em;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.t-cta-p {
  font-size: 16px; color: rgba(255,255,255,.65);
  margin-bottom: 40px; max-width: 500px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1; line-height: 1.8;
}
.t-cta-btns {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}

/* ── FOOTER ──────────────────────────────────────────── */
.t-foot { background: var(--dark); padding: 64px 52px 28px; border-top: 1px solid rgba(255,255,255,.06); }
.t-foot-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.t-foot-brand-n {
  font-family: var(--FC); font-size: 20px; font-weight: 900;
  color: #fff; letter-spacing: .1em; text-transform: uppercase;
  line-height: 1; margin-bottom: 6px;
}
.t-foot-brand-n b { color: var(--coral); }
.t-foot-tag { font-size: 10px; color: rgba(255,255,255,.38); line-height: 1.8; margin-bottom: 16px; font-style: italic; }
.t-foot-contact { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.9; }
.t-foot-contact a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .18s; }
.t-foot-contact a:hover { color: var(--coral); }
.t-foot-col-h {
  font-family: var(--FC); font-size: 9px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 16px;
}
.t-foot-link {
  display: block; font-size: 12px; color: rgba(255,255,255,.55);
  text-decoration: none; margin-bottom: 9px; transition: color .18s;
}
.t-foot-link:hover { color: rgba(255,255,255,.9); }
.t-foot-bottom {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 24px;
}
.t-foot-copy { font-size: 10px; color: rgba(255,255,255,.2); }
.t-foot-reg { font-size: 10px; color: rgba(255,255,255,.18); }

/* ── BREADCRUMB ──────────────────────────────────────── */
.t-bread {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 12px 52px;
}
.t-bread-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--mid);
}
.t-bread a { color: var(--coral); text-decoration: none; transition: color .18s; }
.t-bread a:hover { color: var(--coral2); }
.t-bread-sep { color: var(--border); }

/* ── INDEX TRADE CARDS ───────────────────────────────── */
.t-trades-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); margin-top: 56px;
}
.t-trade-card {
  background: #fff; padding: 36px 28px;
  text-decoration: none; display: block;
  border-bottom: 3px solid transparent;
  transition: all .22s; position: relative;
}
.t-trade-card:hover { border-bottom-color: var(--coral); background: var(--off); }
.t-trade-ico {
  width: 52px; height: 52px;
  background: rgba(232,96,60,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.t-trade-ico svg { width: 24px; height: 24px; stroke: var(--coral); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.t-trade-t {
  font-family: var(--FC); font-size: 16px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy); margin-bottom: 6px; line-height: 1;
}
.t-trade-d { font-size: 13px; color: var(--mid); line-height: 1.55; margin-bottom: 16px; }
.t-trade-arr {
  font-family: var(--FC); font-size: 10px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .t-why-grid { grid-template-columns: repeat(2, 1fr); }
  .t-req-grid { grid-template-columns: repeat(2, 1fr); }
  .t-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .t-trades-grid { grid-template-columns: repeat(3, 1fr); }
  .t-form-layout { grid-template-columns: 1fr; }
  .t-foot-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .t-proc-wrap { flex-direction: column; }
  .t-proc-arr { display: none; }
  .t-work-grid { grid-template-columns: repeat(2, 1fr); }
  .t-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .t-trades-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .t-hdr { padding: 0 20px; height: 62px; }
  .t-nav-link { display: none; }
  .t-hero { min-height: 75vh; }
  .t-hero-inner { padding: 56px 20px 48px; }
  .t-sec { padding: 60px 20px; }
  .t-bread { padding: 10px 20px; }
  .t-cta { padding: 60px 20px; }
  .t-foot { padding: 48px 20px 24px; }
  .t-foot-inner { grid-template-columns: 1fr; }
  .t-foot-bottom { flex-direction: column; align-items: flex-start; }
  .t-why-grid { grid-template-columns: 1fr; }
  .t-work-grid { grid-template-columns: 1fr; }
  .t-hero-btns { flex-direction: column; align-items: flex-start; }
  .t-frow2, .t-frow3 { grid-template-columns: 1fr; }
  .t-form-card { padding: 28px 20px; }
  .t-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .t-req-grid { grid-template-columns: repeat(2, 1fr); }
  .t-trades-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .t-areas-grid { grid-template-columns: 1fr 1fr; }
  .t-req-grid { grid-template-columns: 1fr; }
  .t-stats-bar { grid-template-columns: 1fr 1fr; }
  .t-trades-grid { grid-template-columns: 1fr 1fr; }
}

/* ── BACK TO MAIN SITE LINK ── */
.t-nav-home{
  color:rgba(255,255,255,.45) !important;
  border-right:1px solid rgba(255,255,255,.1) !important;
  margin-right:4px !important;
  padding-right:18px !important;
  font-size:9.5px !important;
  letter-spacing:.12em !important;
}
.t-nav-home:hover{color:#fff !important}
