/* ============================================================
   LANDMARK SURVEYS — SHARED DESIGN SYSTEM v2
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.nb2-label {
    display: none !important;
}


:root {
  --red: #c8102e;
  --red2: #9b0b22;
  --gold: #b8972a;
  --gold2: #d4af50;
  --gold3: #f0d878;
  --n1: #030810;
  --n2: #07111c;
  --n3: #0d1b2a;
  --n4: #162336;
  --w: #fff;
  --t1: rgba(255, 255, 255, 0.9);
  --t2: rgba(255, 255, 255, 0.65);
  --t3: rgba(255, 255, 255, 0.38);
  --t4: rgba(255, 255, 255, 0.12);
  --g1: rgba(184, 151, 42, 0.28);
  --g2: rgba(184, 151, 42, 0.14);
  --g3: rgba(184, 151, 42, 0.06);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Barlow", sans-serif;
  background: var(--n1);
  color: var(--w);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.left {
  transform: translateX(-40px);
}
.reveal.right {
  transform: translateX(40px);
}
.reveal.scale {
  transform: scale(0.94);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}
.reveal.d3 {
  transition-delay: 0.3s;
}
.reveal.d4 {
  transition-delay: 0.4s;
}
.reveal.d5 {
  transition-delay: 0.5s;
}

/* ══════════════════════════════════════════
   NAV  —  2-row sticky header
══════════════════════════════════════════ */
nav.sitenav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(3, 8, 16, 0.97);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--g1);
  transition: background 0.4s;
}
nav.sitenav.scrolled {
  background: rgba(3, 8, 16, 0.99);
}

/* ── Row 1 ── */
.ni {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.logo-a {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-a img {
  height: 40px;
  width: auto;
}
.logo-fb {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1.1;
  display: none;
}

/* main links */
.nl {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nl > a,
.has-drop > a {
  color: var(--t2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}
.nl > a::after,
.has-drop > a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--gold2);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left;
}
.nl > a:hover,
.nl > a.on,
.has-drop > a:hover,
.has-drop > a.on {
  color: var(--w);
}
.nl > a:hover::after,
.nl > a.on::after,
.has-drop > a:hover::after,
.has-drop > a.on::after {
  transform: scaleX(1);
}

/* right side */
.nr {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.nav-ph {
  color: var(--gold2);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-ph:hover {
  color: var(--gold3);
}
.nav-ph svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0.7;
}
.nav-btn {
  background: var(--red);
  color: #fff;
  padding: 7px 16px;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-btn:hover {
  background: var(--red2);
}

/* ── MEGA DROPDOWN ── */
.has-drop {
  position: relative;
}
.has-drop > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.has-drop > a svg {
  width: 9px;
  height: 9px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.2s;
}
.has-drop:hover > a svg {
  transform: rotate(180deg);
}

.mega-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(7, 17, 28, 0.98);
  border: 1px solid var(--g1);
  border-radius: 6px;
  width: 560px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
}
.has-drop:hover .mega-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-col {
  padding: 6px 0;
}
.mega-col-head {
  display: block;
  padding: 10px 18px 9px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 4px;
}
.mega-col:first-child .mega-col-head {
  background: var(--red);
}
.mega-col:last-child .mega-col-head {
  background: var(--red2);
}

.mega-drop a:not(.mega-col-head) {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition:
    color 0.18s,
    background 0.18s;
}
.mega-drop a:not(.mega-col-head)::before {
  content: "›";
  color: var(--gold2);
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.mega-drop a:not(.mega-col-head):hover {
  color: var(--gold2);
  background: rgba(184, 151, 42, 0.06);
}
.mega-drop a:not(.mega-col-head)::after {
  display: none;
}

/* ── Row 2: Customer Area ── */
.nav-bar2 {
  background: rgba(5, 13, 22, 0.98);
  border-bottom: 1px solid rgba(184, 151, 42, 0.15);
}
.nb2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nb2-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 151, 42, 0.45);
  padding-right: 16px;
  margin-right: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  flex-shrink: 0;
}
.nb2-label svg {
  width: 11px;
  height: 11px;
  stroke: rgba(184, 151, 42, 0.5);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nb2-links {
  display: flex;
  align-items: center;
}
.nb2-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: white;
  padding: 0 14px;
  height: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  transition:
    color 0.2s,
    background 0.2s;
}
.nb2-links a svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.65;
  flex-shrink: 0;
}
.nb2-links a:hover {
  color: var(--gold2);
  background: rgba(184, 151, 42, 0.05);
}
.nb2-links a.on {
  color: var(--gold2);
}
.nb2-links a.nb2-alt {
  color: rgba(200, 16, 46, 0.6);
  border-right: none;
}
.nb2-links a.nb2-alt:hover {
  color: var(--red);
  background: rgba(200, 16, 46, 0.05);
}

/* ── Hamburger ── */
.ham-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 400;
}
.ham-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--w);
  border-radius: 2px;
  transition: all 0.3s;
}
.ham-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ham-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav ── */
.mob-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: rgba(3, 8, 16, 0.99);
  border-left: 1px solid var(--g1);
  z-index: 350;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  padding: 80px 0 40px;
}
.mob-nav.open {
  transform: translateX(0);
}
.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 340;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mob-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mob-nav a {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 11px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    color 0.2s,
    background 0.2s;
}
.mob-nav a:hover,
.mob-nav a.on {
  color: var(--gold2);
  background: rgba(184, 151, 42, 0.05);
}
.mob-section {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.2);
  padding: 16px 26px 6px;
  text-transform: uppercase;
}
.mob-ph {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--gold2) !important;
  font-size: 15px !important;
  letter-spacing: 0.03em !important;
  padding: 14px 26px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.mob-cta {
  margin: 16px 22px 0;
  background: var(--red);
  color: #fff !important;
  text-align: center;
  border-radius: 3px;
  border-bottom: none !important;
}
.mob-cta:hover {
  background: var(--red2) !important;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-red {
  background: var(--red);
  color: #fff;
  padding: 13px 30px;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-red:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--w);
  padding: 12px 30px;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  border: 1.5px solid var(--t4);
}
.btn-ghost:hover {
  border-color: var(--gold2);
  color: var(--gold2);
}
.btn-gold {
  background: var(--gold);
  color: var(--n1);
  padding: 13px 30px;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.maxw {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.sec {
  padding: 100px 0;
  position: relative;
}
.sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g1), transparent);
}
.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}
h2.sh {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--w);
}
h2.sh em {
  font-style: normal;
  color: var(--gold2);
}
.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--t2);
  font-weight: 300;
}

/* inner hero */
.inner-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.inner-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.7);
}
.inner-hero .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(3, 8, 16, 0.88) 0%,
    rgba(3, 8, 16, 0.5) 100%
  );
}
.inner-hero .content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.inner-hero .breadcrumb {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 12px;
}
.inner-hero .breadcrumb a {
  color: var(--t3);
  transition: color 0.2s;
}
.inner-hero .breadcrumb a:hover {
  color: var(--gold2);
}
.inner-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 900;
  line-height: 1;
  color: var(--w);
}
.inner-hero h1 em {
  font-style: normal;
  color: var(--gold2);
}

/* ticker */
.ticker {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
}
.tk {
  display: flex;
  animation: tick 36s linear infinite;
  white-space: nowrap;
}
.tk-i {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 32px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tk-d {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   FOOTER  —  no topbar, clean 4-col
══════════════════════════════════════════ */
.sitefooter {
  background: var(--n1);
  padding: 72px 0 0;
  border-top: 1px solid var(--g1);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}
.foot-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
  opacity: 0.88;
}
.foot-brand .logo-fb-f {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold2);
  display: none;
  margin-bottom: 14px;
}
.foot-brand p {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--t3);
  font-weight: 300;
  max-width: 240px;
  margin-bottom: 18px;
}
.fbadges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fbadge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--t4);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--t3);
}
.fc-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--g1);
}
.flinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.flinks a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13.5px;
  transition: color 0.2s;
  font-weight: 400;
}
.flinks a:hover {
  color: var(--gold2);
}
.foot-bot {
  border-top: 1px solid var(--t4);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.22);
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════════
   CONTENT COMPONENTS
══════════════════════════════════════════ */
.card-grid {
  display: grid;
  gap: 16px;
}
.cg-2 {
  grid-template-columns: repeat(2, 1fr);
}
.cg-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cg-4 {
  grid-template-columns: repeat(4, 1fr);
}
.svc-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--t4);
  transition:
    border-color 0.35s,
    transform 0.35s;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
}
.svc-card:hover {
  border-color: var(--g1);
  transform: translateY(-5px);
}
.svc-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.85);
  transition:
    transform 0.5s,
    filter 0.45s;
}
.svc-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.9) saturate(1);
}
.svc-bar {
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left;
}
.svc-card:hover .svc-bar {
  transform: scaleX(1);
}
.svc-body {
  padding: 20px 18px 22px;
}
.svc-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(184, 151, 42, 0.4);
  margin-bottom: 5px;
}
.svc-nm {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 6px;
  line-height: 1.2;
}
.svc-d {
  font-size: 12px;
  line-height: 1.65;
  color: var(--t3);
  font-weight: 300;
  margin-bottom: 12px;
}
.svc-lk {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.svc-lk:hover {
  gap: 9px;
}
.content-box {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--t4);
  border-radius: 8px;
  padding: 32px 36px;
}
.content-box h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 10px;
}
.content-box p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--t2);
  font-weight: 300;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(184, 151, 42, 0.1)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23D4AF50' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    center/11px no-repeat;
  border: 1px solid var(--g1);
}
.info-card {
  background: rgba(200, 16, 46, 0.07);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 8px;
  padding: 22px 24px;
}
.info-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.info-card p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--t2);
  font-weight: 300;
}
.par-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.par-banner img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  position: absolute;
  top: -15%;
  will-change: transform;
  filter: brightness(0.3) saturate(0.7);
}
.par-banner .pov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(3, 8, 16, 0.88),
    rgba(3, 8, 16, 0.44)
  );
}
.par-banner .pc {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.par-banner .pi {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.cta-strip {
  background: var(--red);
  padding: 52px 0;
}
.cta-strip .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-strip h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
}
.cta-strip h3 em {
  font-style: normal;
  color: var(--gold3);
}
.nums-strip {
  background: #060d17;
  padding: 56px 0;
}
.nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--t4);
  border: 1px solid var(--t4);
  border-radius: 8px;
  overflow: hidden;
}
.num-card {
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  transition: background 0.3s;
}
.num-card:hover {
  background: rgba(255, 255, 255, 0.05);
}
.num-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 5px;
}
.num-label {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  font-weight: 600;
}
.num-sub {
  font-size: 12.5px;
  color: var(--t2);
  margin-top: 5px;
  font-weight: 300;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.three-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 52px;
  align-items: start;
}
.cform {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--t4);
  border-radius: 10px;
  padding: 36px;
}
.cform h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--w);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 11px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 11px;
}
.fl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t3);
}
.fi {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 10px 13px;
  font-size: 13.5px;
  color: var(--w);
  font-family: "Barlow", sans-serif;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.fi:focus {
  border-color: rgba(184, 151, 42, 0.42);
}
.fi::placeholder {
  color: rgba(255, 255, 255, 0.18);
}
select.fi {
  cursor: pointer;
  -webkit-appearance: none;
}
select.fi option {
  background: var(--n4);
  color: var(--w);
}
textarea.fi {
  resize: vertical;
  min-height: 80px;
}
.fsub {
  width: 100%;
  background: var(--red);
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 3px;
}
.fsub:hover {
  background: var(--red2);
  transform: translateY(-1px);
}
.test-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.stars {
  font-size: 22px;
  color: var(--gold2);
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.test-q {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  margin-bottom: 24px;
}
.test-auth {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold2);
}
.test-div {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto 10px;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gal-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 220px;
}
.gal-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s,
    filter 0.5s;
  filter: brightness(0.75);
}
.gal-cell:hover img {
  transform: scale(1.06);
  filter: brightness(0.95);
}
.gal-cell .gl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(3, 8, 16, 0.85), transparent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}
.gal-cell:hover .gl {
  opacity: 1;
  transform: translateY(0);
}
.clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cl-item {
  text-align: center;
  opacity: 0.8;
  transition:
    opacity 0.25s,
    transform 0.25s;
  cursor: default;
}
.cl-item:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.cl-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 18px;
}
.cl-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cl-name {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}
.faq-item {
  border-bottom: 1px solid var(--t4);
  padding: 22px 0;
}
.faq-q {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--w);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: 0.02em;
}
.faq-q svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--gold2);
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.3s;
}
.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 12px;
}
.faq-a p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--t2);
  font-weight: 300;
}
.link-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 6px;
  border: 1px solid var(--t4);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.link-item:hover {
  border-color: var(--g1);
  background: rgba(184, 151, 42, 0.04);
}
.link-icon {
  width: 38px;
  height: 38px;
  border-radius: 5px;
  background: rgba(184, 151, 42, 0.1);
  border: 1px solid var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.link-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.link-nm {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--w);
  letter-spacing: 0.03em;
}
.link-d {
  font-size: 12.5px;
  color: var(--t3);
  margin-top: 2px;
}
.dl-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--t4);
  border-radius: 8px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.dl-card:hover {
  border-color: var(--gold);
  background: rgba(184, 151, 42, 0.05);
}
.dl-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dl-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dl-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 4px;
}
.dl-desc {
  font-size: 12.5px;
  color: var(--t3);
  font-weight: 300;
}
.dl-btn {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  padding: 8px 18px;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background 0.25s;
}
.dl-btn:hover {
  background: var(--red2);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nl > a,
  .has-drop > a {
    font-size: 11.5px;
    padding: 5px 7px;
  }
  .nav-ph {
    display: none;
  }
  .nums-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .nl {
    display: none;
  }
  .nr .nav-ph {
    display: none;
  }
  .ham-btn {
    display: flex;
  }
  .nav-bar2 {
    display: none;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .three-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cg-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cg-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cg-2 {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .inner-hero {
    height: 240px;
  }
  .inner-hero h1 {
    font-size: clamp(30px, 8vw, 50px);
  }
  .maxw {
    padding: 0 20px;
  }
  .ni {
    padding: 0 18px;
  }
  .par-banner .pi {
    padding: 0 20px;
  }
  .sec {
    padding: 72px 0;
  }
  .nums-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clients-row {
    gap: 24px;
  }
  .cl-circle {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 540px) {
  .cg-4 {
    grid-template-columns: 1fr;
  }
  .cg-3 {
    grid-template-columns: 1fr;
  }
  .nums-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .gal-grid {
    grid-template-columns: 1fr;
  }
  .cform {
    padding: 20px 16px;
  }
  .inner-hero {
    height: 200px;
  }
  .par-banner {
    height: 320px;
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}
