:root {
  --navy: #0d1b2a;
  --navy-2: #14283d;
  --orange: #ff7a1a;
  --orange-dark: #e0650a;
  --grey-bg: #f5f7fa;
  --text: #1c2530;
  --text-light: #5c6b7a;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
h1, h2, h3, .logo-text {
  font-family: 'Poppins', sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.35);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.hero .btn-ghost { border-color: rgba(255,255,255,0.6); }
.section .btn-ghost {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Mobile call button */
.mobile-call-btn {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--orange);
  color: var(--white);
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(255,122,26,0.45);
}
.mobile-call-btn svg { width: 18px; height: 18px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,27,42,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { width: 38px; height: 38px; }
.logo-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.25;
}
.logo-text small {
  font-weight: 500;
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--orange); }
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #1c3752 100%);
  color: var(--white);
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255,122,26,0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 780px; }
.eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 12px;
}
.eyebrow.center { text-align: center; }
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 auto 32px;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; align-items: center; }
.trust-item strong { font-size: 1.6rem; font-weight: 800; color: var(--orange); }
.trust-item span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* Strip */
.strip { background: var(--grey-bg); padding: 22px 0; border-bottom: 1px solid #e8ecf1; }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  justify-content: center;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.strip-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--grey-bg); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}
.section-title.center { text-align: center; }
.section-sub {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-sub.center { text-align: center; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid #eceff3;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,122,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.1rem; margin: 0 0 8px; color: var(--navy); }
.service-card p { margin: 0; color: var(--text-light); font-size: 0.95rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.about-copy p { color: var(--text-light); }
.about-list { margin: 20px 0 28px; }
.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text);
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
}
.about-visual { display: flex; justify-content: center; }
.about-badge {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow);
}
.badge-number { font-size: 3rem; font-weight: 800; color: var(--orange); }
.badge-label { text-align: center; font-size: 0.9rem; margin-top: 8px; color: rgba(255,255,255,0.85); }

/* Coverage */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.coverage-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.coverage-copy p { color: var(--text-light); }
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.coverage-tags span {
  background: var(--grey-bg);
  border: 1px solid #e4e9ef;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

/* Reviews */
.reviews-summary {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.review-stat { text-align: center; }
.stars { color: var(--orange); font-size: 1.6rem; letter-spacing: 2px; }
.big-percent { font-size: 2.6rem; font-weight: 800; color: var(--orange); }
.reviews-cta {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.reviews-cta p { color: var(--text-light); margin-bottom: 18px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info p { color: var(--text-light); }
.contact-details { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
}
.contact-form {
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dbe1e8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding-top: 50px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-top: 10px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .coverage-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-call-btn { display: inline-flex; }
  .services-grid { grid-template-columns: 1fr; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  .hero { padding: 60px 0 50px; }
}
