html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', system-ui, sans-serif; color: #192434; }
h1, h2, h3, h4 { font-family: 'Poppins', system-ui, sans-serif; }

.section-pad { padding: 96px 16px; }
@media (max-width: 768px) { .section-pad { padding: 64px 16px; } }

.section-pad-sm { padding: 64px 16px; }
@media (max-width: 768px) { .section-pad-sm { padding: 48px 16px; } }

.hero-bg {
  background-image:
    radial-gradient(120% 80% at 80% 30%, rgba(200,162,74,0.10) 0%, rgba(22,50,90,0) 60%),
    linear-gradient(180deg, rgba(15,36,64,0.78) 0%, rgba(22,50,90,0.85) 60%, rgba(15,36,64,0.92) 100%),
    url('brand_assets/hero-banner.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero {
  background-image:
    radial-gradient(120% 80% at 80% 30%, rgba(200,162,74,0.10) 0%, rgba(22,50,90,0) 60%),
    linear-gradient(180deg, rgba(15,36,64,0.85) 0%, rgba(22,50,90,0.92) 100%),
    url('brand_assets/hero-banner.jpg');
  background-size: cover;
  background-position: center;
}

.cta-bg {
  background-image:
    linear-gradient(120deg, rgba(15,36,64,0.96) 0%, rgba(22,50,90,0.94) 100%),
    radial-gradient(60% 80% at 0% 0%, rgba(200,162,74,0.18) 0%, rgba(22,50,90,0) 70%);
  background-color: #16325A;
}

.btn-gold {
  background: linear-gradient(180deg, #D2AC54 0%, #C8A24A 100%);
  color: #0F2440;
  transition: transform 120ms cubic-bezier(.2,.9,.3,1.2), box-shadow 200ms ease, background 200ms ease;
}
.btn-gold:hover { background: linear-gradient(180deg, #DAB562 0%, #C8A24A 100%); box-shadow: 0 10px 22px -6px rgba(168,132,56,0.55); }
.btn-gold:active { transform: translateY(1px) scale(0.99); }
.btn-gold:focus-visible { outline: 2px solid #E0BE6E; outline-offset: 3px; }

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.85);
  color: #FFFFFF;
  background: transparent;
  transition: background-color 200ms ease, transform 120ms cubic-bezier(.2,.9,.3,1.2), border-color 200ms ease;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.10); border-color: #FFFFFF; }
.btn-outline-light:active { transform: translateY(1px) scale(0.99); }
.btn-outline-light:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 3px; }

.btn-primary {
  background: #16325A;
  color: #FFFFFF;
  transition: background-color 200ms ease, transform 120ms cubic-bezier(.2,.9,.3,1.2), box-shadow 200ms ease;
}
.btn-primary:hover { background: #1A3D6B; box-shadow: 0 8px 18px -4px rgba(22,50,90,0.35); }
.btn-primary:active { transform: translateY(1px) scale(0.99); }
.btn-primary:focus-visible { outline: 2px solid #C8A24A; outline-offset: 3px; }

.btn-outline {
  border: 1.5px solid #16325A;
  color: #16325A;
  background: transparent;
  transition: background-color 200ms ease, color 200ms ease, transform 120ms cubic-bezier(.2,.9,.3,1.2);
}
.btn-outline:hover { background: #16325A; color: #FFFFFF; }
.btn-outline:active { transform: translateY(1px) scale(0.99); }
.btn-outline:focus-visible { outline: 2px solid #C8A24A; outline-offset: 3px; }

.nav-link {
  color: #FFFFFF;
  transition: color 180ms ease, background-color 180ms ease;
}
.nav-link:hover { color: #E0BE6E; background-color: rgba(255,255,255,0.05); }
.nav-link:focus-visible { outline: 2px solid #C8A24A; outline-offset: 2px; border-radius: 6px; }
.nav-link.active { color: #E0BE6E; }

.card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 200ms ease, transform 200ms cubic-bezier(.2,.9,.3,1.2), border-color 200ms ease;
}
.card:hover {
  box-shadow: 0 10px 22px -6px rgba(22,50,90,0.14), 0 4px 10px -2px rgba(22,50,90,0.08);
  transform: translateY(-2px);
  border-color: rgba(22,50,90,0.18);
}

.industry-img { transition: transform 400ms cubic-bezier(.2,.9,.3,1.2); }
.industry-card:hover .industry-img { transform: scale(1.04); }

.learn-more {
  color: #16325A;
  font-weight: 600;
  transition: color 180ms ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card:hover .learn-more { color: #A88438; }
.card:hover .learn-more .arrow { transform: translateX(3px); }
.learn-more .arrow { transition: transform 220ms cubic-bezier(.2,.9,.3,1.2); display: inline-block; }

.section-eyebrow {
  color: #A88438;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.check-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(200,162,74,0.14);
  color: #A88438;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-tile {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(22,50,90,0.08);
  color: #16325A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.field {
  width: 100%;
  border: 1px solid #D6D9DE;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: #192434;
  background: #FFFFFF;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field:hover { border-color: #B5BAC2; }
.field:focus { outline: none; border-color: #16325A; box-shadow: 0 0 0 3px rgba(22,50,90,0.12); }
.field::placeholder { color: #98A0AB; }

.label {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #192434;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.naics-row { transition: background-color 180ms ease; }
.naics-row:hover { background-color: rgba(22,50,90,0.04); }

.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
}

.notice {
  background: #ECF3D9;
  border: 1px solid #A8C45F;
  color: #2F4A0F;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
}
.notice-error {
  background: #FCE7E7;
  border-color: #E48A8A;
  color: #6E1A1A;
}
