/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #070b10;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Utilities ────────────────────────────────────────────────── */
.bg-alt { background: #0b1117; }

/* ── Navbar ───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(0,0,0,.65);
  border-bottom: 1px solid #1f2937;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
.navbar-logo { display: flex; align-items: center; line-height: 0; }
.navbar-logo-img { height: 5.85rem; width: auto; display: block; margin-bottom: -.5rem; }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.3rem;
  list-style: none;
}
.navbar-links a { transition: color .2s; color: #d1d5db; }
.navbar-links a:hover,
.navbar-links a.active { color: #60a5fa; }

/* Dropdown */
.nav-dropdown {
  position: relative;
  list-style: none;
}
.nav-dropdown > a::after { content: ' \25BE'; font-size: .65rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #0f141a;
  border: 1px solid #1f2937;
  border-radius: .75rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  min-width: 200px;
  padding: .75rem 0 .5rem;
  z-index: 100;
  white-space: nowrap;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .825rem;
  color: #d1d5db;
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: #1f2937; color: #60a5fa; }
.nav-contact { color: #d1d5db; }
.nav-contact.active { color: #60a5fa; }

/* hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0b1117;
  border-top: 1px solid #1f2937;
  padding: 1rem 2rem;
  gap: 1rem;
  font-size: 1.225rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #d1d5db; transition: color .2s; }
.mobile-nav a:hover,
.mobile-nav a.active { color: #60a5fa; }

/* Mobile contact accordion */
.mobile-contact-toggle {
  background: none;
  border: none;
  color: #d1d5db;
  font-size: 1.225rem;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}
.mobile-contact-toggle:hover,
.mobile-contact-toggle.open { color: #60a5fa; }
.toggle-arrow { font-size: .65rem; transition: transform .2s; }
.mobile-contact-toggle.open .toggle-arrow { transform: rotate(180deg); }
.mobile-contact-panel {
  display: none;
  flex-direction: column;
  gap: .6rem;
  padding-left: 1rem;
  border-left: 1px solid #1f2937;
}
.mobile-contact-panel.open { display: flex; }
.mobile-contact-panel a { font-size: .825rem; color: #9ca3af; }
.mobile-contact-panel a:hover { color: #60a5fa; }

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  padding: .85rem 2rem;
  border-radius: .75rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(59,130,246,.45);
  transition: background .2s, transform .2s, box-shadow .2s;
  text-align: center;
}
.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(59,130,246,.6);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: .85rem 2rem;
  border-radius: .75rem;
  font-size: 1rem;
  border: 1px solid #6b7280;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s;
  text-align: center;
}
.btn-outline:hover { border-color: #60a5fa; color: #60a5fa; transform: translateY(-2px); }

/* ── Section helpers ──────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 1.75rem; }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.title-accent { color: #60a5fa; }
.section-sub { color: #9ca3af; font-size: 1rem; max-width: 42rem; margin: 0 auto; }

/* ── Page Banner (inner pages) ────────────────────────────────── */
.page-banner {
  padding: 7rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, #0b1117 0%, #070b10 100%);
  border-bottom: 1px solid #1f2937;
}
.page-banner-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: .75rem;
}
.banner-subtitle { color: #9ca3af; font-size: 1.125rem; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0d1219 0%, #070b10 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 60rem;
  padding: 6rem 1.5rem 2rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #60a5fa;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.25);
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-title .accent {
  display: block;
  color: #60a5fa;
  text-shadow: 0 0 40px rgba(59,130,246,.4);
}
.hero-subtitle { color: #9ca3af; font-size: 1.05rem; margin-bottom: 2.5rem; letter-spacing: .04em; }
.hero-buttons { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: .5;
  transition: opacity .2s;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-hint:hover { opacity: 1; }
.scroll-arrow {
  display: block;
  width: 10px; height: 10px;
  border-right: 2px solid #60a5fa;
  border-bottom: 2px solid #60a5fa;
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Services ─────────────────────────────────────────────────── */
.services {
  padding: 2rem 2rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  border-radius: .75rem;
  overflow: hidden;
  background: #0d1219;
  border: 1px solid #1f2937;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.service-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 0 28px rgba(59,130,246,.18);
  transform: translateY(-4px);
}
.service-card-img {
  height: 7rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,18,25,.85) 100%);
}
.service-card-body {
  padding: .75rem 1rem 1rem;
}
.service-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: #3b82f6;
  margin-bottom: .35rem;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .3rem;
  transition: color .2s;
}
.service-card:hover h4 { color: #60a5fa; }
.service-card p { color: #9ca3af; font-size: .9rem; line-height: 1.5; }

/* ── Precision Split ──────────────────────────────────────────── */
.precision-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
@media (max-width: 768px) {
  .precision-split { grid-template-columns: 1fr; }
  .precision-img { min-height: 180px; }
}
.precision-img {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}
.precision-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,11,16,.2) 0%, rgba(7,11,16,.6) 100%);
}
.precision-content {
  background: #070b10;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.precision-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.precision-desc { color: #9ca3af; font-size: .9rem; line-height: 1.7; margin-bottom: 1.75rem; }
.precision-checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
}
.precision-checks li { font-size: .875rem; color: #d1d5db; display: flex; align-items: center; gap: .5rem; }
.check-icon { color: #3b82f6; font-weight: 700; font-size: 1rem; }

/* ── Stats Bar ────────────────────────────────────────────────── */
.stats-bar {
  background: #0b1117;
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1rem;
}
.stat-number {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.stat-placeholder { color: #374151; }
.stat-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #6b7280;
  text-transform: uppercase;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: #1f2937;
  flex-shrink: 0;
}
@media (max-width: 580px) { .stat-divider { display: none; } }

/* ── Industries ───────────────────────────────────────────────── */
.industries { padding: 4rem 2rem; }
.industries-inner { max-width: 1280px; margin: 0 auto; }
.industry-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .industry-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .industry-cards { grid-template-columns: repeat(2, 1fr); } }
.industry-card {
  position: relative;
  border-radius: .6rem;
  overflow: hidden;
  border: 1px solid #1f2937;
  cursor: default;
  transition: border-color .3s, transform .3s;
}
.industry-card:hover { border-color: #3b82f6; transform: translateY(-3px); }
.industry-card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.industry-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
}
.industry-card-label {
  position: absolute;
  bottom: .6rem;
  left: 0; right: 0;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  z-index: 1;
}

/* ── Project cards (shared: teaser + full page) ───────────────── */
.projects-teaser { padding: 3rem 2rem; background: #0b1117; }
.projects-teaser-inner { max-width: 1280px; margin: 0 auto; }
.teaser-cta { text-align: center; margin-top: 2rem; }

.projects-full { padding: 3rem 2rem 4rem; }
.projects-full-inner { max-width: 1280px; margin: 0 auto; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.project-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #0f141a;
  border: 1px solid #1f2937;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.project-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(59,130,246,.2);
}
.project-card-img {
  position: relative;
  height: 13rem;
  background: linear-gradient(135deg, #1f2937, #111827);
  background-size: cover;
  background-position: center;
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  transition: background .3s;
}
.project-card:hover .project-card-overlay { background: rgba(0,0,0,.15); }
.project-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(59,130,246,.25);
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,.4);
  padding: .25rem .6rem;
  border-radius: 999px;
}
.project-card-body { padding: 1.5rem; }
.project-card-body h4 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.project-card-body p { color: #9ca3af; font-size: .875rem; margin-bottom: 1rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag {
  font-size: .7rem;
  font-weight: 500;
  background: #1f2937;
  color: #9ca3af;
  border: 1px solid #374151;
  padding: .2rem .55rem;
  border-radius: 999px;
}

/* ── About page ───────────────────────────────────────────────── */
.about-story { padding: 3.5rem 2rem; }
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  background: linear-gradient(135deg, #0f141a, #1f2937);
  border: 1px solid #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: .875rem;
}
.about-img { width: 100%; border-radius: 1rem; box-shadow: 0 25px 50px rgba(0,0,0,.5); }
.about-text h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1.25rem; }
.about-text p { color: #9ca3af; margin-bottom: 1rem; }
@media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Values */
.values { padding: 3.5rem 2rem; }
.values-inner { max-width: 1280px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.value-card {
  padding: 2rem;
  border-radius: 1rem;
  background: #0f141a;
  border: 1px solid #1f2937;
  transition: border-color .3s, transform .3s;
}
.value-card:hover { border-color: #3b82f6; transform: translateY(-3px); }
.value-card h4 { font-size: 1rem; font-weight: 600; color: #60a5fa; margin-bottom: .6rem; }
.value-card p { color: #9ca3af; font-size: .875rem; }

/* Team */
.team { padding: 3.5rem 2rem; }
.team-inner { max-width: 1280px; margin: 0 auto; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.team-card {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: #0f141a;
  border: 1px solid #1f2937;
  transition: border-color .3s, transform .3s;
}
.team-card:hover { border-color: #3b82f6; transform: translateY(-3px); }
.team-avatar {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #1e3a5f);
  margin: 0 auto 1rem;
  border: 2px solid #1f2937;
}
.team-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.team-role { font-size: .8rem; color: #60a5fa; font-weight: 500; margin-bottom: .6rem; }
.team-bio { font-size: .8rem; color: #9ca3af; }

/* ── Contact page ─────────────────────────────────────────────── */
.contact-page { padding: 3rem 2rem 5rem; }
.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3,
.contact-form-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-details li { display: flex; flex-direction: column; gap: .2rem; }
.contact-label { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #60a5fa; }
.contact-details a,
.contact-details span { font-size: .875rem; color: #d1d5db; transition: color .2s; }
.contact-details a:hover { color: #60a5fa; }

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9ca3af;
}
.label-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: #4b5563; font-size: .75rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem .9rem;
  background: #0b1117;
  border: 1px solid #374151;
  border-radius: .5rem;
  color: #fff;
  font-size: .875rem;
  font-family: inherit;
  transition: border-color .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: #3b82f6; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #6b7280; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.25rem; cursor: pointer; }
.form-group select option { background: #0f141a; }

/* File upload */
.file-upload-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  background: #0b1117;
  border: 1px dashed #374151;
  border-radius: .5rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.file-upload-label:hover,
.file-upload-label.drag-over { border-color: #3b82f6; background: rgba(59,130,246,.05); }
.file-upload-label.has-file { border-style: solid; border-color: #3b82f6; }
.file-upload-icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; color: #6b7280; }
.file-upload-label.has-file .file-upload-icon { color: #60a5fa; }
#file-upload-text { font-size: .85rem; color: #9ca3af; flex: 1; }
.file-upload-label.has-file #file-upload-text { color: #60a5fa; font-weight: 500; }
.file-upload-hint { font-size: .7rem; color: #4b5563; white-space: nowrap; }
.file-upload-label input[type="file"] { display: none; }

.form-submit { margin-top: 1.25rem; }

@media (max-width: 768px) {
  .contact-page-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .navbar-logo-img { height: 3.75rem; margin-left: 0; }
}

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta {
  padding: 3.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(29,78,216,.15) 0%, transparent 60%);
  border-top: 1px solid #1f2937;
}
.cta-inner { max-width: 48rem; margin: 0 auto; }
.cta h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1.5rem; }
.cta p { color: #9ca3af; margin-bottom: 2rem; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: #050810;
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 0;
  border-bottom: 1px solid #1f2937;
}
.footer-logo-img { height: 4.9rem; width: auto; display: block; margin: 0; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: #60a5fa; }
.footer-contact-item { font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: .6rem; }
.footer-contact-item strong { color: rgba(255,255,255,.75); margin-right: .3rem; }
.footer-contact-item a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-contact-item a:hover { color: #60a5fa; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.25); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; padding: 1.5rem 0; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-container { padding: 0 1.25rem; }
  .hero-content { padding: 7rem 1.25rem 0.2rem; }
}

/* ── Privacy page ─────────────────────────────────────────────── */
.privacy-page { padding: 3rem 2rem 5rem; }
.privacy-inner { max-width: 760px; margin: 0 auto; }
.privacy-inner h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin: 2rem 0 .6rem; }
.privacy-inner h4 { font-size: .95rem; font-weight: 600; color: #93c5fd; margin: 1.25rem 0 .4rem; }
.privacy-inner p { color: #9ca3af; font-size: .9rem; line-height: 1.75; }
.privacy-inner ul { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .4rem; margin-top: .6rem; }
.privacy-inner ul li { color: #9ca3af; font-size: .9rem; }
.privacy-inner a { color: #60a5fa; }
.privacy-inner a:hover { text-decoration: underline; }

/* ── Image placeholders ───────────────────────────────────────── */
.precision-img-placeholder { background: linear-gradient(135deg, #0d1219, #1a2230); display: flex; align-items: center; justify-content: center; }
.precision-img-text { position: relative; z-index: 1; color: #4b5563; font-size: .875rem; font-style: italic; }
.industry-card-placeholder { background: linear-gradient(135deg, #0d1219, #1a2230); }
.project-card-placeholder { background: linear-gradient(135deg, #0f141a, #1f2937); }

/* ── Coming soon placeholder ──────────────────────────────────── */
.coming-soon {
  color: #4b5563;
  font-style: italic;
  font-size: .875rem;
}

