:root {
  --bg: #0b1220;
  --bg-soft: #111a2b;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #52607a;
  --line: #d8e1ee;
  --white: #ffffff;
  --blue: #1f6ae5;
  --blue-dark: #0f4fbc;
  --blue-soft: #eaf2ff;
  --shadow: 0 20px 55px rgba(12, 25, 50, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #f6f8fc;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.section { padding: 88px 0; }
.section-alt { background: linear-gradient(180deg, #f1f6ff 0%, #f9fbff 100%); }
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.section-heading.left {
  text-align: left;
  max-width: 760px;
  margin-left: 0;
}
.section-heading h2,
.about-grid h2,
.cta-wrap h2,
.hero h1 {
  margin: 0 0 14px;
  line-height: 1.1;
}
.section-heading p,
.about-grid p,
.cta-wrap p,
.hero .lead { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.brand-logo {
  width: 96px;
  height: 52px;
  object-fit: contain;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 4px 10px;
}
.brand-name { font-weight: 800; font-size: 1.1rem; }
.brand-tag { color: #b9c7de; font-size: 0.88rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #dce7f8;
  font-weight: 600;
}
.site-nav a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--blue-dark); }
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  border-radius: 10px;
  padding: 10px 14px;
}

.hero {
  padding-top: 50px;
  background:
    radial-gradient(circle at top right, rgba(31,106,229,0.18), transparent 34%),
    linear-gradient(180deg, #0b1220 0%, #10192d 100%);
  color: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  max-width: 12ch;
}
.hero .lead {
  font-size: 1.08rem;
  color: #d5dfef;
  max-width: 62ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-secondary:hover { background: rgba(255,255,255,0.16); }
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  font-size: 0.95rem;
}
.hero-points div {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 16px;
  color: #dbe6f7;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 16px;
  align-items: stretch;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}
.hero-main-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.hero-side-stack {
  display: grid;
  gap: 16px;
}
.small-photo img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.stat-card {
  border-radius: var(--radius-lg);
  background: var(--blue);
  padding: 20px;
  display: grid;
  gap: 10px;
  align-content: center;
  color: var(--white);
  box-shadow: 0 18px 45px rgba(15,79,188,0.32);
}
.stat-card strong { font-size: 1.2rem; }

.trust-bar {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 22px 0;
}
.trust-grid div {
  display: grid;
  gap: 4px;
}
.trust-grid strong { font-size: 1rem; }
.trust-grid span { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e5ebf5;
}
.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.service-copy { padding: 22px; }
.service-copy h3 { margin: 0 0 10px; }
.service-copy p { margin: 0; color: var(--muted); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
}
.gallery-item {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e5ebf5;
}
.gallery-item.wide {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.gallery-item.wide img { min-height: 560px; }
.gallery-item figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}



.emergency-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}
.emergency-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.emergency-copy h2 {
  margin: 0 0 14px;
  line-height: 1.1;
}
.emergency-copy p { color: var(--muted); }
.emergency-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 8px;
}
.emergency-list div {
  background: #fff;
  border: 1px solid #dbe7f8;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  font-weight: 600;
}
.emergency-photo {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e5ebf5;
  box-shadow: var(--shadow);
}
.emergency-photo img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}
.btn-secondary.dark {
  color: var(--text);
  background: #fff;
  border: 1px solid #dbe7f8;
}
.btn-secondary.dark:hover {
  background: #f3f7ff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.checklist-card {
  background: #fff;
  border: 1px solid #e5ebf5;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.checklist-card h3 { margin-top: 0; }
.checklist-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.checklist-card li {
  position: relative;
  padding-left: 30px;
}
.checklist-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.cta-section {
  background: linear-gradient(135deg, #0f4fbc 0%, #1f6ae5 100%);
  color: var(--white);
}
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-wrap p { color: rgba(255,255,255,0.88); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-section .btn-secondary {
  background: rgba(255,255,255,0.12);
}

.site-footer {
  background: #0b1220;
  color: #dbe6f7;
  padding: 54px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
}
.footer-logo {
  width: 140px;
  object-fit: contain;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 6px 10px;
  margin-bottom: 14px;
}
.footer-company {
  font-size: 1.1rem;
  font-weight: 800;
}
.site-footer h3 {
  margin-top: 0;
  color: var(--white);
}
.site-footer p { margin: 0 0 10px; }
.site-footer a { color: #dbe6f7; }
.site-footer a:hover { color: var(--white); }

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .emergency-grid,
  .service-grid,
  .footer-grid,
  .trust-grid,
  .gallery-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    grid-template-columns: 1fr;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .emergency-list {
    grid-template-columns: 1fr;
  }
  .gallery-item.wide { grid-row: auto; }
  .gallery-item.wide img { min-height: 380px; }
  .cta-wrap { align-items: flex-start; }
  .site-nav {
    position: absolute;
    right: 16px;
    top: 78px;
    width: min(280px, calc(100% - 32px));
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: #10203b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { width: min(1180px, calc(100% - 22px)); }
  .nav-wrap { min-height: 76px; }
  .brand-logo { width: 82px; height: 46px; }
  .hero h1 { font-size: 2.3rem; }
  .hero-main-photo img { min-height: 340px; }
  .small-photo img { height: 220px; }
  .service-card img { height: 220px; }
  .emergency-photo img { min-height: 320px; }
}
