:root {
  --navy: #0b2f57;
  --blue: #0f6fc6;
  --blue-dark: #0a4f95;
  --orange: #f2662f;
  --green: #4caf50;
  --bg: #f4f8fc;
  --card: #ffffff;
  --text: #1f3144;
  --muted: #5f7184;
  --border: #dce6f1;
  --shadow: 0 22px 60px rgba(9, 41, 75, 0.12);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: radial-gradient(
      circle at top left,
      rgba(15, 111, 198, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 190px;
  max-width: 100%;
  display: block;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.contact-links a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}
.hero {
  padding: 52px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  background: rgba(15, 111, 198, 0.1);
  color: var(--navy);
  border: 1px solid rgba(15, 111, 198, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
}
h1 {
  margin: 0 0 14px !important;
  font-size: clamp(34px, 5vw, 62px) !important;
  line-height: 1.03 !important;
  letter-spacing: -1.3px;
  color: var(--navy) !important;
}
.lead {
  font-size: 20px;
  line-height: 1.58;
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 22px;
}
.chips {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.chip {
  background: #fff !important;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: 0 10px 26px rgba(11, 47, 87, 0.05);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 15px 22px !important;
  border-radius: 16px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: 0.15s ease !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 16px !important;
}
.btn:hover {
  transform: translateY(-1px) !important;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #2488df) !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(15, 111, 198, 0.24) !important;
}
.btn-secondary {
  background: #fff !important;
  color: var(--navy) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 12px 24px rgba(10, 47, 87, 0.07) !important;
}
.visual-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.visual-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
  background: #fff;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
}
.stat strong {
  display: block;
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 6px;
}
section {
  padding: 18px 0 10px;
}
.section-title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.section-sub {
  margin: 0 0 22px;
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(10, 47, 87, 0.06);
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(15, 111, 198, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
}
.card h3 {
  margin: 0 0 8px !important;
  font-size: 22px !important;
  color: var(--navy) !important;
}
.card p,
.card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.checklist {
  padding-left: 20px;
}
.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote {
  background: linear-gradient(180deg, #0a2f57 0%, #0f4e8f 100%);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 22px 55px rgba(10, 47, 87, 0.22);
}
.quote p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 17px;
  line-height: 1.7;
}
.form-section {
  padding-top: 22px;
}
.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}
.contact-card {
  background: linear-gradient(180deg, #0a2f57 0%, #0f4e8f 100%);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(10, 47, 87, 0.22);
}
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 29px;
  color:#fff !important;
}
.contact-card p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  font-size: 16px;
}
.contact-card a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
form {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  padding: 28px !important;
  box-shadow: 0 18px 44px rgba(10, 47, 87, 0.08) !important;
}
.row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: grid !important;
  gap: 8px;
  margin-bottom: 14px;
}
label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy) !important;
}
input,
textarea,
select {
  width: 100% !important;
  border: 1px solid #ced9e6 !important;
  background: #fbfdff !important;
  border-radius: 15px !important;
  padding: 14px 15px !important;
  font-size: 15px !important;
  color: var(--text) !important;
  outline: none !important;
}
textarea {
  min-height: 120px !important;
  resize: vertical !important;
}
.note {
  font-size: 13px;
  color: var(--muted) !important;
  line-height: 1.6;
  margin-top: 10px;
}
.footer {
  padding: 36px 0 48px;
}
.footer-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}
.small-btns {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap;
  margin-top: 12px;
}
@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .two-col,
  .proof,
  .form-wrap,
  .row,
  .stats {
    grid-template-columns: 1fr;
  }
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand img {
    width: 160px;
  }
  .hero {
    padding-top: 34px;
  }
}
