:root {
  --blue: #1d6fae;
  --blue-dark: #15527f;
  --navy: #2d3748;
  --gray: #6b7280;
  --light-bg: #f4f8fb;
  --border: #dbe7f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
}

nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}

nav a.active,
nav a:hover {
  color: var(--blue);
}

.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--blue-dark);
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue) !important;
  border: 2px solid var(--blue);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff !important;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 14px;
}

.hero p {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

.hero .btn {
  background: #fff;
  color: var(--blue) !important;
}

.hero .btn:hover {
  background: var(--light-bg);
}

section {
  padding: 64px 20px;
}

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

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--navy);
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 44px;
}

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

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

.card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
}

.card h3 {
  margin-top: 0;
  color: var(--blue);
}

.card .icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.bg-light {
  background: var(--light-bg);
}

.cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 56px 20px;
}

.cta h2 {
  margin-top: 0;
}

footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 36px 20px 18px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #cbd5e1;
}

footer .foot-links {
  margin-bottom: 14px;
}

footer .foot-links a {
  margin: 0 10px;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  padding: 8px 0 8px 30px;
  position: relative;
}

.list-check li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
  position: absolute;
  left: 0;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.area-tags span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  color: var(--blue-dark);
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-block .icon {
  font-size: 22px;
  width: 30px;
}

.page-hero {
  background: var(--light-bg);
  text-align: center;
  padding: 50px 20px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0;
  font-size: 32px;
  color: var(--navy);
}

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

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}

form {
  display: grid;
  gap: 16px;
}

form label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--blue);
}

/* ── Hamburger Button ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.burger span {
  display: block;
  width: 26px;
  heig