*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f2744;
  --navy-dark: #0a1e38;
  --navy-mid: #1b3a6b;
  --amber: #E3DAC9;
  --amber-light: rgba(227,218,201,0.12);
  --amber-border: rgba(227,218,201,0.3);
  --white: #ffffff;
  --gray-50: #F5F7FA;
  --gray-100: #EEF1F5;
  --gray-200: #DDE3EC;
  --gray-400: #8A97AA;
  --gray-500: #78859A;
  --gray-600: #4A5568;
  --gray-800: #1F2937;
  --blue-light: #EBF2FC;
  --blue-mid: #1B5DBE;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Skip link (2.4.1 Bypass Blocks) */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--blue-mid);
  outline-offset: 2px;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
img { max-width: 100%; display: block; }

/* ── UTILITY ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 0.6rem;
  display:block;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 540px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #CCC4B5; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

/* ── NAVBAR ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--amber);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-brand-text { color: var(--white); font-size: 16px; font-weight: 600; }
.nav-brand-sub { color: rgba(255,255,255,0.45); font-size: 11px; font-weight: 400; display: block; }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-cta {
  background: var(--amber);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  margin-left: 8px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #CCC4B5; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 1rem 2rem 1.5rem;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { display: block; font-size: 15px; }
.nav-mobile .nav-cta { display: block; text-align: center; margin-top: 8px; font-size: 15px; padding: 12px; }

/* ── HERO ── */
#hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(227,218,201,0.04);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(27,93,190,0.06);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-light);
  border: 1px solid var(--amber-border);
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}
#hero h1 {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
#hero h1 .accent { color: var(--amber); }
#hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
}
.hero-stat-num {
  font-size: 36px;
  font-weight: 600;
  color: var(--amber);
  display: block;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── TRUST BAR ── */
#trust {
  background: var(--amber);
  padding: 1.25rem 0;
}
.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num { font-size: 26px; font-weight: 700; color: var(--navy); }
.trust-label { font-size: 12px; color: rgba(15,39,68,0.7); font-weight: 500; margin-top: 2px; }

/* ── SERVICES ── */
#services {
  padding: 80px 0;
  background: var(--gray-50);
}
.services-header { margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--blue-mid); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 17px; font-weight: 600; color: var(--gray-800); margin-bottom: 0.5rem; }
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 1rem; }
.service-link { font-size: 13px; font-weight: 600; color: var(--blue-mid); display: inline-flex; align-items: center; gap: 4px; }
.service-link:hover { text-decoration: underline; }

/* VALUE ADDED */
.value-section { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; }
.value-section h3 { font-size: 18px; font-weight: 600; color: var(--gray-800); margin-bottom: 1.25rem; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  width: 100%;
}
.value-dot {
  width: 8px;
  height: 8px;
  background: var(--navy-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.value-item span { font-size: 14px; color: var(--gray-600); line-height: 1.45; font-weight: 500; }

/* ── INDUSTRIES ── */
#industries {
  padding: 80px 0;
  background: var(--white);
}
.industries-header { margin-bottom: 3rem; }
.ind-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ind-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 30px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ind-badge:hover { background: var(--blue-light); border-color: #b5cff5; color: var(--blue-mid); }
.ind-badge svg { width: 16px; height: 16px; stroke: var(--blue-mid); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── ABOUT US ── */
#about {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 3rem;
  align-items: stretch;
}
.about-content {
  min-width: 0;
  overflow: visible;
  align-self: start;
}
.about-copy {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.85;
  max-width: none;
  margin-top: 0.35rem;
}
.about-content .section-title {
  max-width: 100%;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.about-highlight {
  flex: 1;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 96px;
}
.about-highlight strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.about-highlight span {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ── QUOTE FORM ── */
#quote {
  padding: 80px 0;
  background: var(--navy);
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.quote-left .section-label { color: var(--amber); }
.quote-left .section-title { color: var(--white); }
.quote-left .section-sub { color: rgba(255,255,255,0.55); margin-bottom: 2rem; }
.quote-left { min-width: 0; }
.form-card { min-width: 0; }
.contact-item { overflow-wrap: anywhere; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(227,218,201,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; stroke: var(--amber); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.form-card h3 { font-size: 18px; font-weight: 600; color: var(--gray-800); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.05em; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-500);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  outline: none;
  width: 100%;
  min-width: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(27,93,190,0.22);
  background: var(--white);
}
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.18);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-md);
  margin-top: 4px;
  box-shadow: 0 1px 2px rgba(15,39,68,0.2);
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: #CCC4B5; transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--gray-600); text-align: center; margin-top: 10px; }
.form-error {
  font-size: 14px;
  font-weight: 600;
  color: #B03024;
  background: #FDECEA;
  border: 1px solid #E8B4AE;
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  margin-bottom: 12px;
}

/* ── FORM SUCCESS STATE ── */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-location { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-phone { color: inherit; }

/* Honeypot — visible only to bots */
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  #hero h1 { font-size: 36px; }
  .hero-right { grid-template-columns: repeat(2, 1fr); }
  .quote-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 660px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  #hero { padding: 64px 0 56px; }
  .about-card { grid-template-columns: 1fr; padding: 1.5rem; }
  #hero h1 { font-size: 30px; }
  #hero p { font-size: 16px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
  .hero-right { grid-template-columns: 1fr 1fr; }
  .hero-stat-num { font-size: 28px; }
  .section-title { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 0.75rem; }
  .trust-num { font-size: 22px; }
}
