:root {
  --primary: #0f3d66;
  --primary-dark: #0b2e4d;
  --accent: #ff7a00;
  --accent-dark: #e56d00;
  --bg: #f4f8fc;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #667085;
  --border: #dbe4ee;
  --shadow: 0 14px 34px rgba(15, 61, 102, 0.10);
  --shadow-soft: 0 8px 22px rgba(15, 61, 102, 0.07);
  --radius: 20px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.22);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.topbar {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #edf2f7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.logo span {
  color: var(--accent);
}

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

.header-call-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-call-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #39b54a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(57, 181, 74, 0.25);
  flex-shrink: 0;
}

.header-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: right;
}

.header-call-text small {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
}

.header-call-text strong {
  font-size: 28px;
  color: var(--primary);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.10), transparent 24%),
    linear-gradient(135deg, #eef5fc 0%, #f8fbfe 50%, #eef6ff 100%);
  padding: 86px 0 64px;
  overflow: hidden;
}

.hero-content {
  max-width: 1120px;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 122, 0, 0.12);
  color: var(--accent-dark);
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.05;
  color: var(--primary-dark);
  margin-bottom: 18px;
  max-width: 980px;
}

.hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 980px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  max-width: 1040px;
}

.trust-list li {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.trust-list .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: rgba(15, 61, 102, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

section {
  padding: 78px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
}

.trust-strip {
  background: var(--primary);
  color: var(--white);
  padding: 18px 0;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
  font-weight: 700;
}

.service-areas {
  background: var(--white);
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.area-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}

.area-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.pre-about-cta {
  padding: 22px 0 10px;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f8fc 100%);
}

.pre-about-cta .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pre-about-cta .btn {
  min-width: 280px;
}

.services-grid,
.benefits-grid,
.why-grid,
.reviews-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefits-grid,
.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.service-card,
.benefit-card,
.review-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.benefit-card::before,
.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #ffb36a);
}

.service-icon,
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 61, 102, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.service-card h3,
.benefit-card h3,
.review-card h3,
.why-box h3,
.cta-box h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.service-card p,
.benefit-card p,
.review-card p,
.why-box p,
.cta-box p {
  color: var(--muted);
}

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

.why-box,
.cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.feature-list li {
  padding-left: 18px;
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.emergency {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.emergency .section-title h2,
.emergency .section-title p,
.emergency .cta-box h3,
.emergency .cta-box p,
.emergency .feature-list li {
  color: var(--white);
}

.emergency .cta-box {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.emergency .feature-list li::before {
  color: #ffcf99;
}

.stars {
  font-size: 18px;
  color: #ffb347;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.review-name {
  font-size: 18px;
  margin-top: 14px;
  margin-bottom: 4px;
  color: var(--primary-dark);
  font-weight: 700;
}

.review-role {
  font-size: 14px;
  color: var(--muted);
}

.final-cta {
  background: #edf5fd;
}

.final-cta .cta-wrap {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 28px;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 17px;
}

.footer {
  background: #0d2237;
  color: #d8e1ec;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 28px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 14px;
  color: #a7b6c8;
}

.mobile-sticky-call {
  display: none;
}

@media (max-width: 1080px) {
  .services-grid,
  .benefits-grid,
  .reviews-grid,
  .footer-grid,
  .why-grid,
  .trust-list,
  .trust-strip .container,
  .service-area-grid {
    grid-template-columns: 1fr 1fr;
  }

  h1,
  .hero p {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .hero,
  section {
    padding: 48px 0;
  }

  .services-grid,
  .benefits-grid,
  .reviews-grid,
  .footer-grid,
  .why-grid,
  .trust-list,
  .trust-strip .container,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    font-size: 12px;
    padding: 8px 0;
  }

  .topbar-inner {
    gap: 6px;
  }

  .header {
    position: static;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 0;
  }

  .logo {
    font-size: 22px;
    text-align: center;
  }

  .nav-cta,
  .hero-buttons,
  .topbar-inner {
    width: 100%;
  }

  .nav-cta {
    justify-content: center;
  }

  .header-call-wrap {
    justify-content: center;
    width: 100%;
  }

  .header-call-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .header-call-text {
    text-align: left;
  }

  .header-call-text small {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .header-call-text strong {
    font-size: 20px;
  }

  h1 {
    font-size: 38px;
  }

  .hero p,
  .section-title p,
  .final-cta p {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .trust-list li,
  .card,
  .why-box,
  .cta-box,
  .area-card {
    padding: 18px;
    border-radius: 16px;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .services-grid,
  .benefits-grid,
  .reviews-grid,
  .why-grid,
  .trust-list,
  .footer-grid,
  .service-area-grid {
    gap: 14px;
  }

  .trust-strip .container {
    text-align: left;
    gap: 10px;
    font-size: 14px;
  }

  .pre-about-cta {
    padding: 20px 0 6px;
  }

  .pre-about-cta .btn {
    width: 100%;
    min-width: auto;
  }

  .final-cta .cta-wrap {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .footer {
    padding: 42px 0 86px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .mobile-sticky-call {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #1653a2;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.22);
  }

  .mobile-sticky-call a {
    display: grid;
    grid-template-columns: 56px 1fr 64px;
    align-items: center;
    min-height: 68px;
    color: #fff;
  }

  .mobile-sticky-left {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .mobile-sticky-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff22;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .mobile-sticky-text {
    text-align: center;
    line-height: 1.05;
    padding: 8px 6px;
  }

  .mobile-sticky-text small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 4px;
  }

  .mobile-sticky-text strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.2px;
  }

  .mobile-sticky-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
  }

  .mobile-call-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ff9f2f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(255, 159, 47, 0.35);
  }
}