/* ── UTIL BAR ── */
.util-bar {
  background: #0d1420;
  padding: 6px 60px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: 'Barlow Condensed', sans-serif;
}
.util-bar a { color: rgba(255,255,255,0.45); text-decoration: none; }
.util-bar a:hover { color: #6baed6; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #d0d8e8;
  border-top: 3px solid #2e86c1;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  box-shadow: 0 2px 16px rgba(46,134,193,0.08);
  overflow: visible;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; overflow: hidden; height: 100%; width: 150px; flex-shrink: 0; }
.nav-logo-img { width: 260px; height: auto; filter: invert(1); margin-left: -55px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; height: 100%; }
.nav-links > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-links > li > a {
  display: flex; align-items: center;
  padding: 0 22px; height: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #2a3550; text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.nav-active { color: #2e86c1; border-bottom-color: #2e86c1; }

/* ── DROPDOWN ── */
.has-drop { position: relative; }
.subnav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 220px;
  background: #ffffff;
  border-top: 3px solid #2e86c1;
  border-left: 1px solid #d0d8e8;
  border-right: 1px solid #d0d8e8;
  border-bottom: 1px solid #d0d8e8;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  z-index: 9999;
}
.has-drop:hover .subnav { display: block; }
.subnav li a {
  display: block;
  padding: 14px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #0d1420; text-decoration: none;
  border-bottom: 1px solid #eaeff6;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.subnav li:last-child a { border-bottom: none; }
.subnav li a:hover { background: #f0f5fb; color: #2e86c1; padding-left: 30px; }

/* ── NAV ACTIONS ── */
.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-contact {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; padding: 12px 28px;
  background: #2e86c1; color: #ffffff; border: none; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.2s;
  white-space: nowrap;
}
.btn-contact:hover { background: #0d1420; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: #0d1420; }
.mobile-menu { display: none; flex-direction: column; background: #ffffff; border-bottom: 2px solid #2e86c1; padding: 12px 24px 20px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 0; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; color: #0d1420; text-decoration: none; border-bottom: 1px solid #eaeff6; }
.mobile-menu a:hover { color: #2e86c1; }

/* ── PAGE HERO/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 90px 60px 80px;
  background:
    linear-gradient(135deg, rgba(13,20,32,0.96) 0%, rgba(13,20,32,0.75) 100%),
    repeating-linear-gradient(0deg, rgba(46,134,193,0.04) 0px, rgba(46,134,193,0.04) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(46,134,193,0.04) 0px, rgba(46,134,193,0.04) 1px, transparent 1px, transparent 60px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), var(--accent), rgba(255,255,255,0.5), transparent);
}
.page-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--accent2); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: linear-gradient(to right, #ffffff, var(--accent));
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px,7vw,88px); line-height: 0.92;
  letter-spacing: 2px; margin-bottom: 20px; color: #ffffff;
}
.page-hero h1 span { color: var(--accent2); }
.page-hero p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.75); max-width: 600px; font-weight: 300; }
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 28px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb span { color: var(--accent2); }

/* ── SECTION COMMON ── */
section.content { padding: 90px 60px; border-top: 1px solid var(--border); }
.section-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: linear-gradient(to right, var(--accent), var(--accent2));
  opacity: 0.8;
}
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px,5vw,58px); letter-spacing: 2px; line-height: 1;
  color: var(--text); margin-bottom: 20px;
}
h2 span { color: var(--accent); }
h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; color: var(--text); margin-bottom: 12px; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; padding: 16px 36px;
  background: var(--accent); color: #ffffff; border: none; cursor: pointer;
  transition: all 0.25s; text-decoration: none; display: inline-block;
  box-shadow: 0 2px 16px rgba(46,134,193,0.3);
}
.btn-primary:hover { background: var(--text); transform: translateY(-1px); box-shadow: 0 4px 24px rgba(46,134,193,0.25); }
.btn-outline {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; padding: 15px 36px;
  background: transparent; color: var(--text2); border: 1.5px solid var(--border);
  cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(46,134,193,0.04); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--text);
  padding: 60px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.cta-strip h2 { font-size: clamp(28px,4vw,50px); color: #ffffff; margin: 0; }
.cta-strip p { color: rgba(255,255,255,0.55); font-size: 15px; margin-top: 8px; }
.btn-dark {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; padding: 16px 36px;
  background: var(--accent); color: #ffffff; border: none; cursor: pointer;
  white-space: nowrap; text-decoration: none; display: inline-block; transition: all 0.25s;
  box-shadow: 0 2px 16px rgba(46,134,193,0.4);
}
.btn-dark:hover { background: var(--accent2); }

/* ── FOOTER ── */
footer { background: var(--text); border-top: 3px solid var(--accent); padding: 60px 60px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; transition: all 0.2s; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent2); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col ul a:hover { color: #ffffff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 12px; color: rgba(255,255,255,0.3); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent2); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── GRID HELPERS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

.card {
  background: var(--bg2); padding: 40px 36px; position: relative; overflow: hidden;
  transition: all 0.3s; border-bottom: 2px solid transparent;
  border: 1px solid var(--border);
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.card:hover::before { transform: scaleX(1); }
.card:hover { background: var(--bg3); box-shadow: 0 4px 24px rgba(46,134,193,0.1); }
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { font-size: 14px; line-height: 1.7; color: var(--text2); }

.spec-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.spec-list li { display: flex; align-items: center; gap: 12px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 1px; color: var(--text); text-transform: uppercase; }
.spec-list li::before { content: '◆'; color: var(--accent); font-size: 7px; flex-shrink: 0; }

.cap-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); text-decoration: none; font-weight: 600; }
.cap-link::after { content: '→'; transition: transform 0.2s; }
.cap-link:hover::after { transform: translateX(4px); }

/* ── FORM ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg2); border: 1px solid var(--border); color: var(--text);
  padding: 14px 18px; font-family: 'Barlow', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--accent); background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,134,193,0.08);
}
.form-field select option { background: var(--white); color: var(--text); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav, .page-hero, section.content, .cta-strip, footer { padding-left: 36px; padding-right: 36px; }
  .util-bar { padding: 6px 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .util-bar { display: none; }
  .nav-links, .nav-actions .btn-contact { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 24px; }
  .page-hero, section.content, .cta-strip, footer { padding-left: 24px; padding-right: 24px; }
  .two-col, .three-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* ── WHITE ACCENT LAYER ── */
.process-num {
  box-shadow: 0 0 0 1px var(--border);
}
.process-step:hover .process-num {
  box-shadow: 0 0 16px rgba(46,134,193,0.2);
}
section.content {
  border-top: 1px solid var(--border);
}
.job-card {
  border-left: 2px solid var(--border);
}
.why-icon {
  background: var(--bg2);
}
