/* ============================================================
   NTSM — National Traffic Safety Management Inc.
   styles.css — shared across all pages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --yellow:      #FFD700;
  --yellow-hover:#FFE44D;
  --yellow-dark: #C9A800;
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #1c1c1c;
  --gray:        #2d2d2d;
  --mid-gray:    #5a5a5a;
  --light-gray:  #f4f4f4;
  --border:      #e0e0e0;
  --white:       #ffffff;
  --red:         #CC0000;
  --max-w:       1200px;
  --font-head:   'Inter', sans-serif;
  --font-body:   'Inter', sans-serif;
  --ease:        0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  padding-top: 81px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), transform var(--ease), border-color var(--ease);
  line-height: 1;
}
.btn-yellow  { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-hover); transform: translateY(-2px); }
.btn-black   { background: var(--black); color: var(--white); }
.btn-black:hover { background: #222; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--yellow); }
.btn-outline:hover { background: var(--yellow); color: var(--black); }

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; padding: 6px 10px; }
.logo { max-height: 45px; width: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--ease);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 8px 13px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.975rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--yellow); }
.nav-list > li > a.nav-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 10px 22px;
  margin-left: 10px;
}
.nav-list > li > a.nav-cta:hover { background: var(--yellow-hover); color: var(--black); }

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  min-width: 230px;
  background: #161616;
  border-top: 3px solid var(--yellow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 13px 20px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--ease), color var(--ease);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--yellow); color: var(--black); }

/* ── HERO (home) ── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 740px;
  padding: 88px 0;
}
.hero-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-phone svg { flex-shrink: 0; }
.hero p.hero-intro {
  font-size: 1.075rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-inner {
  padding: 56px 0 56px 28px;
  border-left: 6px solid var(--yellow);
  margin: 40px 0;
}
.breadcrumb {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.02em;
}
.page-hero p.subtitle {
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
  font-size: 1.05rem;
  max-width: 560px;
}

/* ── SECTIONS ── */
section { padding: 84px 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-line {
  width: 56px;
  height: 4px;
  background: var(--yellow);
  margin-bottom: 28px;
}
.section-line.center { margin: 0 auto 28px; }
p.body-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--mid-gray);
  max-width: 680px;
}

/* ── SERVICES GRID (home) ── */
.bg-dark { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
}
.service-card {
  background: var(--dark-2);
  padding: 48px 36px 44px;
  position: relative;
  overflow: hidden;
  transition: background var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: #232323; }
.service-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: #FFD700;
  line-height: 1;
  margin-bottom: 4px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.service-card p {
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  line-height: 1.75;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap var(--ease);
}
.card-link:hover { gap: 14px; }

/* ── TRUST / TWO-COL IMAGE ── */
.trust-section { background: var(--light-gray); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.reverse { }
.two-col .col-image { position: relative; }
.two-col .col-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-top: 5px solid var(--yellow);
}
.two-col .col-image .img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  color: var(--black);
  padding: 22px 28px;
  font-family: var(--font-head);
  text-align: center;
  text-transform: uppercase;
}
.img-badge .num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.img-badge .lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; }
.col-text { }
.col-text .check-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.col-text .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--mid-gray);
}
.col-text .check-list li::before {
  content: '✓';
  background: var(--yellow);
  color: var(--black);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── MISSION BANNER ── */
.mission-banner {
  background: var(--black);
  padding: 72px 0;
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}
.mission-banner .inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.mission-banner .mission-label {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.mission-banner blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-style: normal;
}
.mission-banner blockquote em { color: var(--yellow); font-style: normal; }

/* ── LIUNA + BADGE ── */
.liuna-section {
  background: var(--dark-2);
  padding: 64px 0;
}
.liuna-flex {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.liuna-text { flex: 1; min-width: 260px; }
.liuna-text h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.liuna-text p { color: rgba(255,255,255,0.75); line-height: 1.75; }
.startup-badge {
  background: var(--yellow);
  color: var(--black);
  padding: 28px 36px;
  text-align: center;
  min-width: 200px;
  flex-shrink: 0;
}
.startup-badge .badge-year { font-family: var(--font-head); font-size: 3.2rem; font-weight: 900; line-height: 1; }
.startup-badge .badge-title { font-family: var(--font-head); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; margin-top: 6px; }
.startup-badge .badge-sub { font-size: 0.8rem; font-weight: 600; margin-top: 2px; line-height: 1.3; }

/* ── SAFETY BANNER ── */
.safety-banner {
  background: var(--yellow);
  padding: 36px 0;
  text-align: center;
}
.safety-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.08em;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.photo-strip-item { overflow: hidden; position: relative; height: 280px; }
.photo-strip-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-strip-item:hover img { transform: scale(1.07); }

/* ── CANADA STRIP ── */
.canada-strip {
  background: var(--red);
  padding: 26px 0;
  text-align: center;
}
.canada-strip p {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.12em;
}

/* ── ABOUT BLOCKS (inner pages) ── */
.content-section { padding: 84px 0; }
.about-intro {
  font-size: 1.15rem;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 780px;
  margin-bottom: 56px;
  border-left: 5px solid var(--yellow);
  padding-left: 24px;
}
.about-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}
.about-block {
  padding-top: 20px;
  border-top: 3px solid var(--border);
}
.about-block h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-block h3 .block-icon {
  width: 8px;
  height: 32px;
  background: var(--yellow);
  flex-shrink: 0;
  display: block;
}
.about-block p { color: var(--mid-gray); line-height: 1.8; }

/* ── COMMITMENT LIST ── */
.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--light-gray);
  padding: 26px 32px;
  border-left: 6px solid var(--yellow);
  transition: background var(--ease);
}
.commitment-item:hover { background: #ede8d0; }
.commitment-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  min-width: 44px;
  background: var(--black);
  text-align: center;
  padding: 6px 0;
}
.commitment-body h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.commitment-body p { color: var(--mid-gray); font-size: 0.95rem; line-height: 1.7; }

/* ── VALUES CARDS ── */
.values-section { background: var(--dark); padding: 84px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
}
.value-card {
  background: var(--dark-2);
  padding: 56px 40px 52px;
  text-align: center;
  transition: background var(--ease);
  position: relative;
}
.value-card:hover { background: #222; }
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 76px;
  height: 76px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.9rem;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.value-card p { color: rgba(255,255,255,0.68); line-height: 1.75; }

/* ── SERVICE DETAIL PAGES ── */
.service-detail { padding: 84px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.service-detail-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.service-detail-text p { color: var(--mid-gray); line-height: 1.8; margin-bottom: 20px; }
.service-bullets {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  color: var(--dark);
}
.service-bullets li:last-child { border-bottom: none; }
.service-bullets li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 6px;
}
.service-img-col { position: sticky; top: 100px; }
.service-img-col img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-top: 5px solid var(--yellow);
}
.service-img-col img + img { margin-top: 4px; height: 240px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--black);
  padding: 64px 0;
  border-top: 4px solid var(--yellow);
}
.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-flex h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}
.cta-flex .cta-phone {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--yellow);
  white-space: nowrap;
}

/* ── RESOURCES TABLE ── */
.resources-section { padding: 84px 0; }
.resources-table-wrap {
  margin-top: 48px;
  border: 1px solid var(--border);
  overflow-x: auto;
}
table.resources-table {
  width: 100%;
  border-collapse: collapse;
}
.resources-table thead tr { background: var(--black); }
.resources-table thead th {
  padding: 18px 24px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--white);
  text-align: left;
  white-space: nowrap;
}
.resources-table thead th:last-child { width: 140px; text-align: center; }
.resources-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--ease); }
.resources-table tbody tr:hover { background: #fff9da; }
.resources-table tbody td { padding: 15px 24px; font-size: 0.96rem; }
.resources-table tbody td:last-child { text-align: center; }
a.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--ease);
  white-space: nowrap;
}
a.dl-btn:hover { background: var(--yellow-hover); }

/* ── BLOG ── */
.blog-section { padding: 84px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.blog-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: var(--dark-2);
}
.blog-card-img-placeholder {
  width: 100%;
  height: 210px;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,215,0,0.5);
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.blog-card-body { padding: 26px 26px 20px; }
.blog-cat {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.blog-card p { color: var(--mid-gray); font-size: 0.9rem; line-height: 1.7; }
.blog-card-footer {
  padding: 15px 26px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #999;
}
a.read-more {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  transition: color var(--ease);
}
a.read-more:hover { color: var(--yellow); }

/* ── CONTACT ── */
.ghl-form-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  min-height: 600px;
}
.contact-section { padding: 84px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 72px;
  margin-top: 56px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.97rem;
  background: var(--white);
  color: var(--dark);
  border-radius: 0;
  -webkit-appearance: none;
  outline: none;
  transition: border-color var(--ease);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { height: 140px; resize: vertical; }
.location-card {
  background: var(--light-gray);
  padding: 28px 28px 28px 24px;
  border-left: 6px solid var(--yellow);
  margin-bottom: 20px;
}
.location-card h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 10px;
}
.location-card p { color: var(--mid-gray); font-size: 0.95rem; line-height: 1.7; }
.contact-direct { margin-top: 24px; }
.contact-direct a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: color var(--ease);
}
.contact-direct a:hover { color: var(--yellow); }
.contact-direct .icon {
  background: var(--yellow);
  color: var(--black);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  border-top: 4px solid var(--yellow);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-logo { height: 46px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-col p { color: rgba(255,255,255,0.58); font-size: 0.9rem; line-height: 1.75; }
.footer-col a.f-link {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color var(--ease);
}
.footer-col a.f-link:hover { color: var(--yellow); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.32); font-size: 0.84rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .two-col,
  .service-detail-grid,
  .contact-grid,
  .about-blocks  { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid     { grid-template-columns: 1fr 1fr; }
  .photo-strip   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #0f0f0f;
    border-top: 3px solid var(--yellow);
    padding: 8px 0;
    gap: 0;
    z-index: 999;
  }
  .nav-list.open { display: flex; }
  .nav-list > li > a {
    padding: 15px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1.1rem;
  }
  .nav-list > li > a.nav-cta {
    margin: 8px 16px;
    text-align: center;
  }
  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.04);
    border-top: none;
    border-left: 4px solid var(--yellow);
    margin-left: 20px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }

  .services-grid,
  .values-grid,
  .blog-grid    { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .cta-flex     { flex-direction: column; text-align: center; }
  .photo-strip  { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 540px; }
}

@media (max-width: 520px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .photo-strip  { grid-template-columns: 1fr; }
  .photo-strip-item { height: 220px; }
  .liuna-flex   { flex-direction: column; }
  .startup-badge { width: 100%; }
}
