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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background-color: #f6f7fb;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER & NAV */

header {
  background: #ffffff;
  border-bottom: 1px solid #e3e5ee;
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: #1f3c88;
}

.nav-logo span {
  color: #f97316;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: #f1f5ff;
  color: #1f3c88;
}

.nav-phone {
  font-weight: 700;
  color: #1f3c88;
}

/* MOBILE NAV */

.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111827;
  margin: 4px 0;
}

/* HERO */

.hero {
  background: radial-gradient(circle at top left, #e0edff, #f6f7fb);
  padding: 40px 0 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 60, 136, 0.05);
  color: #1f3c88;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.hero h1 {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
  margin-bottom: 10px;
  color: #0f172a;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 18px;
}

.hero-list {
  list-style: none;
  margin-bottom: 20px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #374151;
}

.hero-list li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.btn-primary {
  border-radius: 999px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #1f3c88, #2563eb);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.97rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  border-radius: 999px;
  padding: 9px 18px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.hero-phone-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6b7280;
}

.hero-phone {
  font-weight: 700;
  color: #1f3c88;
}

.hero-image-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.09);
}

.hero-image-card img {
  border-radius: 14px;
}

.hero-image-caption {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #6b7280;
}

/* SECTIONS */

.section {
  padding: 40px 0;
}

.section-header {
  margin-bottom: 20px;
  text-align: left;
}

.section-header h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #111827;
}

.section-header p {
  font-size: 0.95rem;
  color: #6b7280;
}

/* GRID CARDS */

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 16px 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #111827;
}

.card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* SERVICE TILES */

.service-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.service-tile {
  padding: 8px 9px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px dashed #d1d5db;
  font-size: 0.86rem;
  color: #374151;
}

/* PROCESS */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.step-badge {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #1f3c88;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

/* FAQ */

.faq-item {
  margin-bottom: 12px;
}

.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.faq-item p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* FORMS */

.form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.form-row {
  display: grid;
  gap: 10px;
}

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 2px;
  display: block;
}

input,
textarea,
select {
  width: 100%;
  padding: 8px 9px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

/* FOOTER */

footer {
  background: #0f172a;
  color: #9ca3af;
  padding: 24px 0;
  margin-top: 30px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.footer-brand {
  font-weight: 700;
  color: #e5e7eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.86rem;
}

.footer-bottom {
  font-size: 0.78rem;
  color: #6b7280;
}

/* CITY PAGE HERO */

.city-hero {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 26px 0 20px;
}

.city-hero h1 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: #111827;
}

.city-meta {
  font-size: 0.9rem;
  color: #6b7280;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    right: 16px;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    z-index: 60;
  }
}
