
:root {
  --navy:#06101f;
  --navy2:#0b1b31;
  --blue:#0b5ed7;
  --blue2:#1c7dff;
  --silver:#e7edf5;
  --text:#0d1624;
  --muted:#64748b;
  --line:rgba(255,255,255,.14);
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
}

a { color:inherit; text-decoration:none; }

.topbar {
  background:#fff;
  color:#0d1624;
  border-bottom:1px solid #e8edf4;
}

.topbar-inner {
  max-width:1220px;
  margin:auto;
  padding:18px 20px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
}

.top-contact {
  font-size:15px;
  line-height:1.8;
  font-weight:700;
}

.top-contact span {
  display:block;
  color:#4b5d75;
  font-weight:600;
  font-size:13px;
}

.top-logo {
  text-align:center;
}

.top-logo img {
  width:min(420px, 82vw);
  height:auto;
  display:block;
}

.top-cta {
  justify-self:end;
  display:flex;
  align-items:center;
  gap:22px;
}

.aog {
  text-align:left;
  font-weight:900;
  text-transform:uppercase;
  font-size:14px;
}

.aog span {
  display:block;
  color:#4b5d75;
  font-size:12px;
  font-weight:600;
  text-transform:none;
  margin-top:4px;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 22px;
  border-radius:6px;
  font-weight:900;
  letter-spacing:.2px;
  text-transform:uppercase;
  background:linear-gradient(135deg,#06449b,#0b5ed7);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 12px 25px rgba(11,94,215,.28);
}

.btn:hover { transform:translateY(-1px); }

.btn.secondary {
  background:rgba(255,255,255,.08);
  box-shadow:none;
  border:1px solid rgba(255,255,255,.45);
}

.nav {
  background:rgba(3,10,22,.96);
  color:#fff;
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(12px);
}

.nav-inner {
  max-width:1220px;
  margin:auto;
  min-height:82px;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav-brand img {
  width:190px;
  max-height:62px;
  object-fit:contain;
}

.nav-links {
  display:flex;
  align-items:center;
  gap:24px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}

.nav-links a:not(.btn) {
  opacity:.92;
}

.hero {
  min-height:660px;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(3,8,18,.96),rgba(4,14,30,.84) 44%,rgba(4,14,30,.38)),
    url('../images/1-citation-avionics-panel-wiring.jpg');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  position:relative;
}

.hero::after {
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:130px;
  background:linear-gradient(0deg,#06101f,transparent);
  pointer-events:none;
}

.hero-inner {
  position:relative;
  z-index:2;
  max-width:1220px;
  margin:auto;
  padding:80px 20px 110px;
  width:100%;
}

.kicker {
  color:#68a9ff;
  font-weight:900;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:18px;
}

.hero h1 {
  margin:0 0 24px;
  font-size:62px;
  line-height:1.02;
  letter-spacing:-1.5px;
  text-transform:uppercase;
  max-width:720px;
}

.hero h1 span { color:#2b83ff; }

.hero p {
  font-size:19px;
  line-height:1.65;
  color:#e7edf5;
  max-width:690px;
  margin:0 0 34px;
}

.hero-actions {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.feature-strip {
  background:#06101f;
  color:#fff;
  border-top:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
}

.feature-grid {
  max-width:1220px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.feature {
  padding:30px 24px;
  border-right:1px solid rgba(255,255,255,.12);
}

.feature:last-child { border-right:0; }

.feature b {
  display:block;
  font-size:15px;
  text-transform:uppercase;
  margin-bottom:8px;
}

.feature span {
  display:block;
  color:#bcc8d8;
  font-size:13px;
  line-height:1.45;
}

.section {
  padding:82px 20px;
}

.container {
  max-width:1220px;
  margin:auto;
}

.center { text-align:center; }

.eyebrow {
  color:#0b5ed7;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:12px;
}

h2 {
  margin:10px 0 18px;
  font-size:40px;
  line-height:1.12;
  letter-spacing:-.5px;
  text-transform:uppercase;
}

.lead {
  max-width:860px;
  margin:0 auto 40px;
  color:#5b6b80;
  font-size:18px;
  line-height:1.7;
}

.cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card {
  background:#fff;
  border:1px solid #e5ebf3;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 20px 45px rgba(3,10,22,.10);
  text-align:left;
}

.card-img {
  min-height:210px;
  background:#0b1b31;
  background-size:cover;
  background-position:center;
}

.card-body {
  padding:28px;
}

.card h3 {
  margin:0 0 12px;
  font-size:21px;
  text-transform:uppercase;
}

.card p {
  margin:0;
  color:#5b6b80;
  line-height:1.65;
}

.dark {
  background:linear-gradient(135deg,#040912,#0a1a31);
  color:#fff;
}

.dark .lead { color:#c9d4e4; margin-left:0; }

.split {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}

.panel {
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:32px;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.checklist {
  display:grid;
  gap:14px;
  margin-top:22px;
}

.checklist div {
  padding:16px 18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:10px;
  font-weight:800;
}

.checklist div::before {
  content:"✓";
  color:#59a4ff;
  margin-right:10px;
}

.brands {
  background:#06101f;
  color:#fff;
  padding:35px 20px;
}

.brand-grid {
  max-width:1220px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr repeat(6,1fr);
  align-items:center;
  gap:20px;
}

.brand-title {
  font-size:20px;
  line-height:1.35;
  text-transform:uppercase;
  font-weight:900;
}

.brand-name {
  text-align:center;
  font-weight:900;
  color:#dce7f6;
  opacity:.92;
  font-size:18px;
}

.area-band {
  background:linear-gradient(90deg,#07182c,#0b5ed7);
  color:#fff;
  padding:26px 20px;
}

.area-inner {
  max-width:1220px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr .7fr 1fr;
  gap:26px;
  align-items:center;
}

.area-item {
  font-size:16px;
  font-weight:900;
  text-transform:uppercase;
  line-height:1.5;
}

.area-item span {
  display:block;
  font-size:13px;
  color:#dce7f6;
  font-weight:600;
  text-transform:none;
}

.gallery {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.gallery div {
  min-height:170px;
  background:#0b1b31;
  background-size:cover;
  background-position:center;
  border-radius:10px;
  border:1px solid #e6ebf2;
}

.contact {
  background:#f5f8fc;
}

.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:start;
}

.contact-card {
  background:#fff;
  border:1px solid #e3eaf3;
  border-radius:16px;
  padding:34px;
  box-shadow:0 20px 45px rgba(3,10,22,.08);
}

.contact-card p {
  margin:14px 0;
  font-size:18px;
  line-height:1.5;
}

.footer {
  background:#02060d;
  color:#aebbd0;
  padding:32px 20px;
  font-size:13px;
}

.footer-inner {
  max-width:1220px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.mobile-toggle { display:none; }

@media(max-width:930px) {
  .topbar-inner {
    grid-template-columns:1fr;
    text-align:center;
  }
  .top-cta { justify-self:center; flex-direction:column; gap:10px; }
  .nav-links { display:none; }
  .mobile-toggle { display:block; color:#fff; font-size:28px; }
  .nav-brand img { width:160px; }
  .hero { min-height:590px; }
  .hero h1 { font-size:42px; }
  .feature-grid,.cards,.split,.brand-grid,.area-inner,.contact-grid,.gallery {
    grid-template-columns:1fr;
  }
  .feature { border-right:0; border-bottom:1px solid rgba(255,255,255,.12); }
  .brand-name { text-align:left; }
}

@media(max-width:560px) {
  .hero h1 { font-size:34px; }
  h2 { font-size:30px; }
  .section { padding:62px 18px; }
  .top-logo img { width:94vw; }
}













.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .22s ease;
}
.gallery-thumb:hover img{
  transform:scale(1.05);
}
@media(max-width:1150px){
  
}
@media(max-width:900px){
  
  
}
@media(max-width:650px){
  
  
}
@media(max-width:460px){
  
}








@media(max-width:1150px){
  
}
@media(max-width:850px){
  
  
}
@media(max-width:560px){
  
  
}








/* FMA gallery: 3 columns, medium cards, about 6 photos visible per desktop screen */
.fma-gallery-section{
  background:#eef2f6;
  padding:42px 20px 56px;
}

.fma-gallery-section .container{
  max-width:1180px;
}

.fma-gallery-section h2{
  margin-bottom:10px;
}

.fma-gallery-section .lead{
  max-width:760px;
  margin-bottom:22px;
  font-size:16px;
  line-height:1.45;
}

.fma-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:20px;
}

.fma-gallery-card{
  background:#fff;
  border:1px solid #d9e1eb;
  box-shadow:0 7px 16px rgba(3,10,22,.08);
  overflow:hidden;
}

.fma-gallery-card a{
  display:block;
  height:165px;
  background:#07111f;
  overflow:hidden;
}

.fma-gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .2s ease;
}

.fma-gallery-card:hover img{
  transform:scale(1.025);
}

.fma-gallery-caption{
  height:48px;
  padding:8px 12px;
  color:#111827;
  font-size:14px;
  font-weight:800;
  line-height:1.25;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

@media(max-width:900px){
  .fma-gallery-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
  }

  .fma-gallery-card a{
    height:155px;
  }
}

@media(max-width:520px){
  .fma-gallery-grid{
    grid-template-columns:1fr;
  }

  .fma-gallery-card a{
    height:170px;
  }
}

/* Hard fixed proof gallery backup */
.proof-gallery-section{background:#eef2f6;padding:38px 20px 48px}
.proof-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:18px}
.proof-gallery-card{display:block;background:#fff;border:1px solid #d9e1eb;box-shadow:0 6px 14px rgba(3,10,22,.08);overflow:hidden;text-decoration:none;color:#111827}
.proof-gallery-photo{height:150px;width:100%;background-size:cover;background-position:center;background-repeat:no-repeat}
.proof-gallery-caption{height:42px;padding:7px 10px;display:flex;align-items:center;justify-content:center;text-align:center;background:#fff;color:#111827;font-size:13px;font-weight:800;line-height:1.22}
@media(max-width:900px){.proof-gallery-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.proof-gallery-grid{grid-template-columns:1fr}.proof-gallery-photo{height:155px}}
