    :root {
      --red: #df0000;
      --red-dark: #b40000;
      --charcoal: #2f2f33;
      --charcoal-soft: #44454c;
      --bg: #f5f5f7;
      --white: #ffffff;
      --text: #1f2328;
      --muted: #636771;
      --line: #e6e6ea;
      --shadow: 0 18px 40px rgba(24, 24, 27, 0.08);
      --radius: 24px;
      --radius-sm: 16px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(223, 0, 0, 0.08), transparent 30%),
        linear-gradient(180deg, #fafafa 0%, #f3f4f6 100%);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: rgba(255, 255, 255, 0.88);
      border-bottom: 1px solid rgba(230, 230, 234, 0.9);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand img {
      width: 62px;
      height: 62px;
      object-fit: contain;
      border-radius: 14px;
      background: #fff;
    }

    .brand-text {
      min-width: 0;
    }

    .brand-text strong {
      display: block;
      font-size: 1.1rem;
      color: var(--charcoal);
      letter-spacing: -0.02em;
    }

    .brand-text span {
      display: block;
      color: var(--muted);
      font-size: 0.95rem;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 0.98rem;
      color: var(--charcoal-soft);
    }

    nav a:hover {
      color: var(--red);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 22px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-weight: 700;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
      color: var(--white);
      box-shadow: 0 14px 26px rgba(223, 0, 0, 0.22);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--charcoal);
      border: 1px solid rgba(47, 47, 51, 0.12);
      box-shadow: var(--shadow);
    }

    .hero {
      padding: 54px 0 36px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 30px;
      align-items: stretch;
    }

    .hero-copy,
    .hero-card {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(230, 230, 234, 0.95);
      box-shadow: var(--shadow);
      border-radius: calc(var(--radius) + 4px);
    }

    .hero-copy {
      padding: 44px;
      position: relative;
      overflow: hidden;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      right: -50px;
      top: -50px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(223, 0, 0, 0.12), rgba(223, 0, 0, 0));
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(223, 0, 0, 0.08);
      color: var(--red-dark);
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 18px;
    }

    h1 {
      margin: 0 0 18px;
      font-size: clamp(2.2rem, 4vw, 4.4rem);
      line-height: 1.02;
      letter-spacing: -0.045em;
      color: var(--charcoal);
      max-width: 12ch;
    }

    .hero-copy p {
      margin: 0;
      font-size: 1.06rem;
      color: var(--muted);
      max-width: 62ch;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
    }

    .point {
      background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px;
    }

    .point strong {
      display: block;
      font-size: 1.05rem;
      color: var(--charcoal);
      margin-bottom: 4px;
    }

    .point span {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .hero-card {
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .hero-card img {
      width: 100%;
      height: 100%;
      min-height: 460px;
      object-fit: cover;
      border-radius: var(--radius);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
      color: var(--white);
    }

    .hero-badge strong {
      display: block;
      font-size: 1rem;
    }

    .hero-badge span {
      display: block;
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.78);
    }

    section {
      padding: 34px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 20px;
      margin-bottom: 24px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(1.8rem, 3vw, 3rem);
      line-height: 1.05;
      color: var(--charcoal);
      letter-spacing: -0.04em;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      max-width: 58ch;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(230, 230, 234, 0.95);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
    }

    .service-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
    }

    .service-content {
      padding: 24px;
    }

    .service-tag {
      display: inline-flex;
      margin-bottom: 14px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(223, 0, 0, 0.08);
      color: var(--red-dark);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .service-content h3 {
      margin: 0 0 12px;
      font-size: 1.35rem;
      line-height: 1.15;
      color: var(--charcoal);
    }

    .service-content p {
      margin: 0 0 16px;
      color: var(--muted);
    }

    .service-content ul {
      margin: 0;
      padding-left: 18px;
      color: var(--charcoal-soft);
    }

    .service-content li + li {
      margin-top: 8px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .trust-card,
    .contact-card {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(230, 230, 234, 0.95);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 30px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 20px;
    }

    .step {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px;
      background: linear-gradient(180deg, #fff 0%, #fafafb 100%);
    }

    .step-number {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--red);
      color: var(--white);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .step strong {
      display: block;
      color: var(--charcoal);
      margin-bottom: 6px;
    }

    .step p,
    .trust-card p,
    .contact-card p {
      margin: 0;
      color: var(--muted);
    }

    .highlight-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .highlight {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
    }

    .highlight-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin-top: 7px;
      background: var(--red);
      flex-shrink: 0;
    }

    .highlight strong {
      display: block;
      color: var(--charcoal);
      margin-bottom: 3px;
    }

    .cta {
      padding: 12px 0 70px;
    }

    .cta-box {
      background: linear-gradient(135deg, var(--charcoal) 0%, #16171b 100%);
      color: var(--white);
      border-radius: 32px;
      padding: 36px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: center;
      box-shadow: 0 26px 60px rgba(24, 24, 27, 0.2);
    }

    .cta-box h2 {
      margin: 0 0 12px;
      font-size: clamp(1.8rem, 3vw, 3rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
    }

    .cta-box p {
      margin: 0;
      color: rgba(255, 255, 255, 0.8);
      max-width: 54ch;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(4px);
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin: 22px 0 0;
    }

    .contact-item {
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact-item strong {
      display: block;
      margin-bottom: 4px;
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.7);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .contact-item span,
    .contact-item a {
      font-size: 1.08rem;
      font-weight: 700;
      color: #fff;
    }

    footer {
      padding: 0 0 110px;
      color: var(--muted);
    }

    .floating-call {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 50;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
      color: var(--white);
      font-weight: 800;
      box-shadow: 0 18px 36px rgba(223, 0, 0, 0.28);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .floating-call:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 42px rgba(223, 0, 0, 0.34);
    }

    .floating-call-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: white;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .floating-call-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .floating-call-text small {
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.82);
    }

    .floating-call-text strong {
      font-size: 1rem;
      color: #fff;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      border-top: 1px solid var(--line);
      padding-top: 24px;
      font-size: 0.95rem;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .cta-box,
      .trust-grid,
      .services {
        grid-template-columns: 1fr;
      }

      .section-head {
        align-items: start;
        flex-direction: column;
      }
    }

    @media (max-width: 760px) {
      nav {
        display: none;
      }

      .floating-call {
        right: 12px;
        left: 12px;
        bottom: 12px;
        justify-content: center;
        padding: 14px 16px;
      }

      .floating-call-text small {
        display: none;
      }

      .brand img {
        width: 82px;
        height: 82px;
      }

      .hero-copy,
      .trust-card,
      .contact-card,
      .cta-box,
      .service-content {
        padding: 22px;
      }

      .hero-points,
      .steps {
        grid-template-columns: 1fr;
      }

      .hero-card img {
        min-height: 300px;
      }

      h1 {
        max-width: none;
      }

      .footer-inner,
      .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }
	
	.zone-section {
  padding: 20px 0 60px;
}

.zone-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(230, 230, 234, 0.95);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.zone-content {
  padding: 38px;
}

.zone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(223, 0, 0, 0.08);
  color: var(--red-dark);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.zone-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.04em;
}

.zone-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.zone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.zone-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #fafafb 100%);
}

.zone-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--charcoal);
  font-size: 1rem;
}

.zone-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.zone-map {
  min-height: 100%;
  background: #f3f4f6;
}

.zone-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

@media (max-width: 1080px) {
  .zone-grid {
    grid-template-columns: 1fr;
  }

  .zone-map iframe {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .zone-content {
    padding: 22px;
  }

  .zone-list {
    grid-template-columns: 1fr;
  }
}
