:root {
	--primary-color: #0b2a4a;
	--secondary-color: #436489;
	--primary-hover: #09223B;
	--primary60: #0b2a4a;
	--primary70: #09223B;
	--secondary60: #436489;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #0b2a4a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Bar */
.topbar {
  background-color: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0b2a4a;
  text-decoration: none;
}
.logo span { color: #1f7f95; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}
.topbar-right a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.2s;
}
.topbar-right a:hover { color: #1f7f95; }
.topbar-right .phone {
  color: #1f7f95;
  font-weight: 700;
}

/* Hero */
.hero {
  padding: 90px 0 100px;
  background:
    radial-gradient(ellipse at top right, rgba(31,127,149,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(11,42,74,0.05) 0%, transparent 60%),
    #ffffff;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.badge {
  display: inline-block;
  padding: 8px 18px;
  background-color: #e6f2f5;
  color: #155f70;
  border: 1px solid rgba(31,127,149,0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-company {
  font-size: 13px;
  color: #7c8794;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 auto 24px;
  max-width: 860px;
  color: #0b2a4a;
  text-align: center;
}
.hero h1 .accent { color: #1f7f95; }
.hero-subhead {
  font-size: 18px;
  color: #4a5568;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.btn,
.btn:link,
.btn:visited,
.btn:hover,
.btn:active {
  color: #ffffff !important;
}
.btn {
  display: inline-block;
  padding: 16px 36px;
  background-color: #1f7f95;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(31,127,149,0.3);
}
.btn:hover {
  background-color: #155f70;
  box-shadow: 0 4px 14px rgba(31,127,149,0.4);
}
.btn:active { transform: translateY(1px); }

/* Section Defaults */
section { padding: 90px 0; }
.section-alt {
  background-color: #f8fafd;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.section-label {
  text-align: center;
  color: #155f70;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #0b2a4a;
}
.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: #4a5568;
  max-width: 760px;
  margin: 0 auto 56px;
  line-height: 1.65;
}

/* Who We Are 2x2 card grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 48px auto 0;
}
.value-item {
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.value-item:hover {
  border-color: #1f7f95;
  box-shadow: 0 6px 20px rgba(11,42,74,0.06);
  transform: translateY(-3px);
}
.value-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0b2a4a;
}
.value-item p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.65;
}
@media (max-width: 720px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* Perks numbered list */
.perks-list {
  max-width: 880px;
  margin: 56px auto 0;
}
.perk-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid #e2e8f0;
}
.perk-item:last-child { border-bottom: none; }
.perk-num {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  color: #155f70;
  width: 48px;
  height: 48px;
  background-color: #e6f2f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.perk-content h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b2a4a;
}
.perk-content p {
  color: #4a5568;
  font-size: 16px;
}

/* CTA Section */
.cta {
  text-align: center;
  background: linear-gradient(135deg, #0b2a4a 0%, #133862 100%);
  padding: 100px 0;
  color: #ffffff;
}
.cta h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}
.cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
}

/* Footer */
footer {
  background-color: #0b2a4a;
  padding: 36px 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
footer a:hover { color: #1f7f95; }
footer p + p { margin-top: 8px; }

/* Responsive */
@media (max-width: 640px) {
  .hero { padding: 60px 0 72px; }
  section { padding: 60px 0; }
  .perk-item { flex-direction: column; gap: 12px; padding: 24px 0; }
  .topbar-right { width: 100%; justify-content: space-between; gap: 12px; }
  .topbar-right a:not(.phone) { display: none; }
}
