/* =========================================================
   FOUNDATIONS
   ========================================================= */

:root {
  /* Color system */
  --royal: #1e4dc7;
  --royal-deep: #143380;
  --royal-darker: #0a1d52;
  --royal-soft: #4470d6;
  --royal-pale: #eef2fc;
  --hazard: #ffc107;
  --hazard-deep: #f5a800;
  --ink: #08111f;
  --ink-2: #121b30;
  --ink-3: #1d2842;
  --line-dark: #2a3550;
  --paper: #ffffff;
  --paper-2: #f7f8fa;
  --paper-3: #eef0f4;
  --line: #e2e5ec;
  --line-soft: #eef0f4;
  --text-1: #08111f;
  --text-2: #3d4660;
  --text-3: #6b7390;
  --text-4: #9da3b8;
  --good: #10b981;
  /* Typography */
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  /* Spatial */
  --max: 1320px;
  --gutter: clamp(15px, 4vw, 20px);
  --section: clamp(40px, 9vw, 80px);
  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text-1);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--royal);
  color: #fff;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-1);
}

.sec-head {
  max-width: 700px;
  margin-bottom: 50px;
}

.sec-head.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: none;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--royal);
  border-radius: 50%;
}

.section-label.on-dark {
  color: #93b5ff;
}

.section-label.on-dark::before {
  background: #93b5ff;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-label.light::before {
  background: rgba(255, 255, 255, 0.4);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.022em;
}

.section-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 60ch;
  font-weight: 400;
}

.accent {
  color: var(--royal);
  position: relative;
}

.hazard {
  color: var(--hazard);
  position: relative;
  display: block;
}

.h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.012em;
}

.muted {
  color: var(--text-3);
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-full {
  padding: 0 var(--gutter);
}

.section-padding {
  padding: var(--section) 0px;
}

section {
  position: relative;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
  border: none;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--royal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 77, 199, 0.25);
}

.btn-primary:hover {
  background: var(--royal-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(30, 77, 199, 0.32);
}

.btn-secondary {
  background: var(--paper);
  color: var(--text-1);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: var(--paper-3);
  border-color: var(--text-3);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

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

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-hazard {
  background: var(--hazard);
  color: var(--ink);
}

.btn-hazard:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--ink);
}

.btn-white:hover {
  background: var(--hazard);
  transform: translateY(-1px);
}

.btn.start {
  flex-direction: row-reverse;
}

.btn.end {
  flex-direction: row;
}

/* =========================================================
   REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-d="1"] {
  transition-delay: 0.08s;
}

.reveal[data-d="2"] {
  transition-delay: 0.16s;
}

.reveal[data-d="3"] {
  transition-delay: 0.24s;
}

.reveal[data-d="4"] {
  transition-delay: 0.32s;
}

.counter {
  display: inline-block;
}

/* HAZARD STRIPE */
.hazard-stripe {
  height: 6px;
  background-image: repeating-linear-gradient(-45deg,
      var(--hazard) 0,
      var(--hazard) 14px,
      var(--ink) 14px,
      var(--ink) 28px);
}

.hazard-stripe.thin {
  height: 4px;
}

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.top-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 11px 0;
  position: relative;
  z-index: 60;
  font-size: 12.5px;
  font-weight: 500;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.78);
}

.top-bar-item svg {
  width: 13px;
  height: 13px;
  color: var(--hazard);
  flex-shrink: 0;
}

/* =========================================================
   HEADER
   ========================================================= */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 999;
}

.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-logo {
  max-width: 300px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-logo .mobile-logo-link {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  padding: 10px 4px;
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--royal);
}

.header-phone-icon {
  width: 36px;
  height: 36px;
  background: var(--royal-pale);
  color: var(--royal);
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}

.header-phone:hover .header-phone-icon {
  background: var(--royal);
  color: #fff;
}

.header-phone-icon svg {
  width: 16px;
  height: 16px;
}

.header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-phone-text .label {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-phone-text .number {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-quote:hover {
  background: var(--royal);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30, 77, 199, 0.25);
}

.btn-quote svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}

.btn-quote:hover svg {
  transform: translateX(3px);
}

.menu-trigger {
  width: 48px;
  height: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-trigger:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.menu-trigger:hover .bar {
  background: #fff;
}

.menu-trigger .bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.menu-trigger .bar {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-trigger .bar:nth-child(2) {
  width: 13px;
  align-self: flex-end;
}

@media (max-width: 768px) {
  .site-logo {
    max-width: 250px;
  }

  .header-phone-text {
    display: none;
  }

  .header-phone-icon {
    width: 44px;
    height: 44px;
  }

  .btn-quote {
    padding: 10px 16px;
    font-size: 13px;
  }

  .btn-quote svg {
    display: none;
  }

  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .btn-quote {
    padding: 10px 14px;
  }
}

/* =========================================================
   SLIDE-OUT MENU PANEL
   ========================================================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 17, 31, 0.5);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(460px, 100vw);
  background: var(--ink);
  color: #fff;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.menu-panel.open {
  transform: translateX(0);
}

.menu-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(-45deg,
      var(--hazard) 0,
      var(--hazard) 10px,
      var(--ink-2) 10px,
      var(--ink-2) 20px);
  z-index: 2;
}

.menu-head {
  padding: 32px 40px 24px;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.menu-head .logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.menu-head .logo-sub {
  font-size: 11px;
  color: var(--hazard);
  letter-spacing: 0.06em;
  margin-top: 3px;
  font-weight: 500;
  text-transform: uppercase;
}

.menu-close {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #fff;
}

.menu-close:hover {
  background: var(--royal);
  border-color: var(--royal);
  transform: rotate(90deg);
}

.menu-close svg {
  width: 16px;
  height: 16px;
}

.menu-body {
  padding: 28px 40px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.menu-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.menu-links {
  display: flex;
  flex-direction: column;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.25s ease;
}

.menu-link:hover {
  color: #fff;
  padding-left: 8px;
}

.menu-link:hover .menu-arrow {
  transform: translate(6px, 0);
  color: var(--hazard);
}

.menu-link .menu-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-4);
  letter-spacing: 0.08em;
  margin-right: 12px;
}

.menu-link .menu-arrow {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.25s ease;
}

.menu-link-text {
  flex: 1;
}

.menu-other-services-list {
  display: flex;
  flex-direction: column;
}

.menu-service {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--line-dark);
}

.menu-service:last-child {
  border-bottom: none;
}

.menu-service:hover {
  color: var(--hazard);
  padding-left: 6px;
}

.menu-service .dot {
  width: 4px;
  height: 4px;
  background: var(--royal-soft);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s;
}

.menu-service:hover .dot {
  background: var(--hazard);
  width: 8px;
}

.menu-foot {
  padding: 28px 40px 36px;
  border-top: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.menu-foot-cta {
  display: block;
  background: var(--royal);
  color: #fff;
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.25s ease;
  font-weight: 600;
}

.menu-foot-cta:hover {
  background: var(--hazard);
  color: var(--ink);
}

.menu-foot-cta .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 5px;
}

.menu-foot-cta .number {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.menu-foot-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.menu-foot-meta strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

@media (max-width: 600px) {
  .menu-head {
    padding: 24px 28px 20px;
  }

  .menu-body {
    padding: 24px 28px;
    gap: 24px;
  }

  .menu-foot {
    padding: 22px 28px 28px;
  }

  .menu-link {
    font-size: 20px;
    padding: 12px 0;
  }
}

/* =========================================================
   HERO — full bleed background image
   ========================================================= */
.hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(105deg,
      rgba(8, 17, 31, 0.85) 0%,
      rgba(8, 17, 31, 0.55) 55%,
      rgba(8, 17, 31, 0.4) 100%);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(8, 17, 31, 0.85) 0%,
      rgba(8, 17, 31, 0.55) 55%,
      rgba(8, 17, 31, 0.4) 100%);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

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

.hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin-bottom: 28px;
  color: #fff;
}

.hero h1 .accent {
  color: var(--hazard);
  display: inline-block;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  max-width: 60ch;
  font-weight: 400;
}

.page-hero-dark .hero-sub {
  color: var(--text-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero Google reviews badge */
.hero-google {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 12px 20px 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.hero-google:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-google-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.hero-google-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-google-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-google-stars {
  display: flex;
  gap: 2px;
  color: #fbbc05;
}

.hero-google-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-google-rating {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-google-count {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  padding: 32px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-strip-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
}

.trust-strip-items {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cert {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}

.cert svg {
  width: 18px;
  height: 18px;
  color: var(--royal);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--paper);
  padding: var(--section) 0;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.svc-card {
  position: relative;
  width: 32.33%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

#services .svc-card {
  min-width: 340px;
  width: 100%;
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--royal);
  box-shadow: 0 28px 56px rgba(8, 17, 31, 0.1);
}

.svc-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-2);
  z-index: 0;
}

.svc-img img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.svc-card:hover .svc-img img {
  transform: scale(1.05);
}

.svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 60%,
      rgba(8, 17, 31, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.svc-num {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(8, 17, 31, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.svc-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-body h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.svc-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 24px;
  flex: 1;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--royal);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.svc-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}

.svc-card:hover .svc-link svg {
  transform: translateX(5px);
}

/* =========================================================
   WHY CHOOSE US — replaces "Our Process"
   ========================================================= */
.why {
  background: var(--paper-2);
}

.why-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--royal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
  border-color: var(--royal);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(8, 17, 31, 0.08);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--royal-pale);
  color: var(--royal);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: var(--royal);
  color: #fff;
  transform: scale(1.05);
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
}

.why-card .why-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--royal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
}

.why-stat {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.why-stat-num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat-num .unit {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--royal);
  margin-left: 4px;
}

.why-stat-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.55;
}

.why-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--royal-pale);
  color: var(--royal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.why-list .check svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.why-visual {
  position: sticky;
  top: 120px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 20px 60px rgba(14, 19, 32, 0.12);
}

.why-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(14, 19, 32, 0.05) 0%,
      rgba(14, 19, 32, 0.7) 100%),
    url("https://images.unsplash.com/photo-1604762512526-b7068fe9f2d4?w=1200&q=80") center/cover;
}

.why-overlay {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.why-tag {
  align-self: flex-start;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.why-quote {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 24ch;
}

.why-quote .mark {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--royal-soft);
  margin-bottom: 18px;
  border-radius: 2px;
}

/* STATS BANNER */
.stats-banner {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-banner.section-title {
  color: var(--paper);
}

.stats-banner .sec-head {
  text-align: center;
  max-width: 700px;
  margin: 0px auto 50px;
}

.stats-banner .section-title {
  color: var(--paper);
}

.stats-cell:last-child {
  border-right: none;
}

.stats-cell:first-child {
  padding-left: 0;
}

.stats-num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}

.stats-num .unit {
  color: var(--hazard);
}

.stats-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.005em;
}

/* Our Team */
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding: 36px 28px;
  transition: all 0.3s;
}

.team-card:hover {
  border-color: var(--royal);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(8, 17, 31, 0.06);
}

.team-avatar {
  width: 96px;
  height: 96px;
  background: var(--ink);
  color: var(--hazard);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
}

.team-card h4 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.team-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--royal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}

/* Side meta pill */
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--royal-pale);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--royal);
}

/* =========================================================
   VISION — dark section
   ========================================================= */
.vision {
  background: var(--ink);
  color: #fff;
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center,
      rgba(30, 77, 199, 0.35) 0%,
      transparent 60%);
  pointer-events: none;
}

.vision .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.vision-content {
  text-align: center;
}

.vision-content .eyebrow {
  margin-bottom: 28px;
  justify-content: center;
}

.vision-quote {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.022em;
  color: #fff;
  margin-bottom: 36px;
}

.vision-quote .accent {
  color: #93b5ff;
}

.vision-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   REVIEWS — featured large quote layout
   ========================================================= */
.reviews {
  background: var(--paper);
  padding: var(--section) 0;
}

.reviews .sec-head {
  margin-bottom: 56px;
}

.reviews-feature-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .reviews-feature-grid {
    grid-template-columns: 1fr;
  }
}

.review-featured {
  position: relative;
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: #fff;
  padding: 56px 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 600px) {
  .review-featured {
    padding: 40px 28px;
  }
}

.review-featured::before {
  content: '"';
  position: absolute;
  top: -40px;
  right: 40px;
  font-size: 280px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  font-family: Georgia, serif;
}

.review-featured>* {
  position: relative;
  z-index: 1;
}

.review-featured .review-stars {
  display: flex;
  gap: 4px;
  color: var(--hazard);
  margin-bottom: 28px;
}

.review-featured .review-stars svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.review-featured-text {
  font-size: clamp(20px, 2.3vw, 22px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin-bottom: 36px;
}

.review-featured-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.review-featured-av {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
}

.review-featured-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.review-featured-loc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.review-featured-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
}

.review-featured-google svg {
  width: 14px;
  height: 14px;
}

.reviews-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-small {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s ease;
  flex: 1;
}

.review-small:hover {
  border-color: var(--royal);
  transform: translateX(4px);
}

.review-small .review-stars {
  display: flex;
  gap: 2px;
  color: #fbbc05;
}

.review-small .review-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-small-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-1);
  font-weight: 500;
}

.review-small-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
}

.review-small-meta strong {
  font-weight: 600;
}

.review-small-meta .dot {
  width: 3px;
  height: 3px;
  background: var(--text-4);
  border-radius: 50%;
}

.review-small-meta .loc {
  color: var(--text-3);
}

.reviews-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

@media (max-width: 880px) {
  .reviews-bottom-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 540px) {
  .reviews-bottom-row {
    grid-template-columns: 1fr;
  }
}

.review-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: all 0.25s ease;
}

.review-tile:hover {
  border-color: var(--royal);
  transform: translateY(-3px);
}

.review-tile .review-stars {
  display: flex;
  gap: 2px;
  color: #fbbc05;
  margin-bottom: 14px;
}

.review-tile .review-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-tile-text {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-1);
  font-weight: 500;
  margin-bottom: 18px;
}

.review-tile-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.review-tile-author strong {
  font-weight: 600;
}

.review-tile-author .loc {
  color: var(--text-3);
  font-size: 12px;
}

.reviews-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.reviews-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.reviews-cta-google .glogo {
  width: 32px;
  height: 32px;
}

.reviews-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews-cta-text .top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-cta-text .top-stars {
  display: flex;
  gap: 2px;
  color: #fbbc05;
}

.reviews-cta-text .top-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.reviews-cta-text .rating {
  font-weight: 700;
  font-size: 15px;
}

.reviews-cta-text .count {
  font-size: 13px;
  color: var(--text-3);
}

/* ============== CTA BANNER  ============== */
/* .cta-banner {
    background: var(--paper);
} */

.cta-banner {
  position: relative;
  background: var(--ink);
  padding: 60px 80px;
  color: #fff;
  overflow: hidden;
  /* border-radius: 16px; */
  margin-top: 60px;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(30, 77, 199, 0.4) 0%,
      transparent 60%);
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(68, 112, 214, 0.25) 0%,
      transparent 60%);
}

.cta-grid {
  grid-template-columns: 1.4fr auto;
  gap: 64px;
  align-items: center;
}

.cta-card .section-label {
  color: #93b5ff;
}

.cta-card .section-label::before {
  background: #93b5ff;
}

.cta-card h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: #fff;
  margin: 20px 0 20px;
}

.cta-banner h2 .accent {
  color: #93b5ff;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-actions .btn {
  justify-content: center;
}

/* =========================================================
   AREAS SERVED (with Google Map)
   ========================================================= */
.areas {
  background: var(--paper-2);
  padding: var(--section) 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.areas-content {
  display: flex;
  flex-direction: column;
}

.areas-content h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.05;
  margin: 20px 0 22px;
}

.areas-content h2 .accent {
  color: var(--royal);
}

.areas-content>p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 32px;
  max-width: 46ch;
}

/* .area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
} */

.area-item {
  margin-bottom: 20px;
}

.area-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  transition: all 0.25s ease;
  cursor: pointer;
}

.area-tile:hover,
.area-tile.active {
  background: var(--royal);
  color: #fff;
  border-color: var(--royal);
  transform: translateY(-2px);
}

.area-tile .mark {
  width: 9px;
  height: 9px;
  background: var(--royal);
  border-radius: 50%;
  position: relative;
}

.area-tile .mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1.5px solid var(--royal);
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.25s;
}

.area-tile:hover .mark {
  background: #fff;
}

.area-tile:hover .mark::after {
  border-color: rgba(255, 255, 255, 0.4);
}

.area-item .city-list-wrap {
  display: none;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.city {
  padding: 6px 20px;
  font-size: 14px;
  color: #555;
}

.areas-map {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-3);
}

.areas-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
}

.areas-map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: var(--paper-3);
  z-index: 0;
}

.areas-map-fallback-icon {
  width: 64px;
  height: 64px;
  background: var(--royal-pale);
  color: var(--royal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.areas-map-fallback-icon svg {
  width: 32px;
  height: 32px;
}

.areas-map-fallback h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.areas-map-fallback p {
  font-size: 14px;
  color: var(--text-3);
}

/* ============= CONTACT ============= */
.contact {
  background: var(--paper);
  padding: var(--section) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
}

.contact-bullets .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--royal-pale);
  color: var(--royal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.contact-bullets .check svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.contact-bullets strong {
  color: var(--text-1);
  font-weight: 600;
}

.contact-page-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--royal);
  padding-top: 8px;
}

.contact-page-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}

.contact-page-link:hover svg {
  transform: translateX(4px);
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow:
    0 1px 3px rgba(8, 17, 31, 0.04),
    0 12px 32px rgba(8, 17, 31, 0.04);
}

.cf-head {
  margin-bottom: 28px;
}

.cf-head h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.cf-head p {
  font-size: 14.5px;
  color: var(--text-3);
}

.process {
  padding: var(--section) 0;
  background: var(--paper-2);
}

.proc-grid {
  position: relative;
}

/* Connecting line */
.proc-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--line) 10%,
      var(--line) 90%,
      transparent);
  z-index: 0;
}

.proc-step {
  padding: 0 16px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.proc-num {
  width: 60px;
  height: 60px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.proc-step:hover .proc-num {
  background: var(--royal);
  color: #fff;
  border-color: var(--royal);
  transform: scale(1.05);
}

.proc-step h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.proc-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 24ch;
}

/* ============= FOOTER   ============= */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.footer-inner {
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.fb-brand .brand-name {
  color: #fff;
}

.fb-brand .brand-sub {
  color: rgba(255, 255, 255, 0.5);
}

.fb-about {
  margin-top: 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 38ch;
  text-align: center;
}

.fb-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.fb-col {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

.fb-address {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.fb-address-block+.fb-address-block {
  margin-top: 14px;
}

.fb-address-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fb-phone {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  display: inline-block;
  margin-top: 4px;
  transition: color 0.2s;
}

.fb-phone:hover {
  color: var(--hazard);
}

.fb-social-list {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  list-style: none;
}

.fb-social-list a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.25s ease;
}

.fb-social-list a:hover {
  background: var(--royal);
  border-color: var(--royal);
  color: #fff;
  transform: translateY(-2px);
}

.fb-social-list svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.fb-bot-left {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  text-align: center;
}

.fb-bot-left .license {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 2px;
}

.fb-bot-right {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 0 auto;
}

.footer-bottom a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1px;
  transition: all 0.25s ease;
}

.footer-bottom a:hover {
  color: #93b5ff;
  border-bottom-color: #93b5ff;
}

/* =========================================================
   INNER PAGE HEADER (Page Hero)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 80px 0 100px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-grid {
  position: relative;
  z-index: 99;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
  font-weight: 500;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-3);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--royal);
}

.breadcrumb .sep {
  color: var(--text-4);
  font-size: 14px;
  line-height: 1;
}

.breadcrumb .current {
  color: var(--text-1);
  font-weight: 600;
}

.page-hero .hero-title {
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
}

.page-hero .hero-title .accent {
  display: inline;
}

.page-hero-sub {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 56ch;
  margin-bottom: 32px;
}

.page-hero-light .hero-title {
  color: var(--paper);
}

.page-hero-light .hero-title .accent {
  color: var(--hazard);
}

.page-hero-light .hero-sub {
  color: var(--paper);
}

.page-hero-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(8, 17, 31, 0.85) 0%,
      rgba(8, 17, 31, 0.55) 55%,
      rgba(8, 17, 31, 0.4) 100%);
}

.page-hero-light .section-label {
  color: var(--hazard);
}

.page-hero-light .section-label::before {
  background: var(--hazard);
}

.breadcrumb {}

.page-hero-light .breadcrumb .current {
  color: var(--hazard);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 20px 50px rgba(14, 19, 32, 0.15);
}

.page-hero-visual img,
.page-hero-visual .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-visual .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(14, 19, 32, 0.1) 0%,
      rgba(14, 19, 32, 0.55) 100%);
}

.prose {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--text-2);
}

.prose .sec-head {
  margin-bottom: 15px;
}

.prose>*+* {
  margin-top: 20px;
}

.prose h2 {
  font-size: 30px;
  font-weight: 600;
}

.prose h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-1);
  margin-top: 36px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.prose p {
  margin-bottom: 0;
}

.info-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin: 32px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--royal);
  color: var(--paper);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
}

.info-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-1);
}

.info-card-text {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}

.info-card.warn {
  background: #fff8f1;
  border-color: #fde4cc;
}

.info-card.warn .info-card-icon {
  background: #ffeede;
  color: #cc5a16;
}

/* =========================================================
   FEATURE GRID
   ========================================================= */
.feat-section {
  padding: var(--section) 0;
  background: var(--paper-2);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.feat-card:hover {
  border-color: var(--royal);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 19, 32, 0.06);
}

.feat-icon {
  width: 48px;
  height: 48px;
  background: var(--royal-pale);
  color: var(--royal);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.feat-icon svg {
  width: 22px;
  height: 22px;
}

.feat-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section {
  padding: var(--section) 0;
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-side h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.faq-side .section-desc {
  font-size: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[open] {
  border-color: var(--royal);
}

.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.005em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231e4dc7' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231e4dc7' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}

.faq-item .answer {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
}

/* =========================================================
   PROCESS TIMELINE (vertical for inner pages)
   ========================================================= */
.timeline-section {
  padding: var(--section) 0;
  background: var(--paper-2);
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

.timeline-item .num {
  width: 60px;
  height: 60px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.timeline-item:hover .num {
  background: var(--royal);
  border-color: var(--royal);
  color: #fff;
}

.timeline-item h4 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  padding-top: 14px;
}

.timeline-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 60ch;
}

/* =========================================================
   BLOG LIST
   ========================================================= */
.blog-list-section {
  padding: var(--section) 0;
  background: var(--paper);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: var(--royal);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 19, 32, 0.08);
}

.blog-thumb {
  aspect-ratio: 16/10;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
}

.blog-thumb .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb .bg {
  transform: scale(1.04);
}

.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--royal);
  letter-spacing: 0.02em;
}

.blog-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: 12.5px;
  color: var(--text-3);
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta .sep {
  width: 3px;
  height: 3px;
  background: var(--text-4);
  border-radius: 50%;
}

.blog-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text-1);
}

.blog-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--royal);
}

.blog-read svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}

.blog-card:hover .blog-read svg {
  transform: translateX(4px);
}

.blog-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.blog-featured:hover {
  border-color: var(--royal);
  box-shadow: 0 20px 40px rgba(14, 19, 32, 0.08);
}

.blog-featured .blog-thumb {
  aspect-ratio: auto;
  min-height: 100%;
}

.blog-featured .blog-body {
  padding: 48px;
  justify-content: center;
}

.blog-featured h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.blog-featured p {
  font-size: 16px;
  margin-bottom: 24px;
}

/* =========================================================
   ABOUT VALUES / TEAM
   ========================================================= */

.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--royal);
  transform: translateY(-3px);
}

.value-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--royal);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

/* =========================================================
   CONTACT PAGE EXTRAS
   ========================================================= */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-quick {
  padding: 24px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.25s;
}

.contact-quick:hover {
  border-color: var(--royal);
  background: var(--paper);
}

.contact-quick-icon {
  width: 36px;
  height: 36px;
  background: var(--royal-pale);
  color: var(--royal);
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.contact-quick-icon svg {
  width: 18px;
  height: 18px;
}

.contact-quick-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.contact-quick-value {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.contact-quick:hover .contact-quick-value {
  color: var(--royal);
}

.contact-us-wrap .section-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  margin-bottom: 12px;
}

.contact-detail-card:hover {
  border-color: var(--royal);
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--royal-pale);
  color: var(--royal);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

a.contact-detail-card:hover .contact-detail-icon {
  background: var(--royal);
  color: #fff;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.contact-map-wrap {
  height: 460px;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}

.contact-map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--paper-3);
  z-index: 0;
  padding: 40px;
  text-align: center;
}

/* Content Area */
.content-layout-section {
  background: var(--paper);
  padding: var(--section) 0;
  padding-bottom: 0px;
}

.content-main {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
}

.content-main>*+* {
  margin-top: 20px;
}

.content-main h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--text-1);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.content-main h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-1);
  margin-top: 36px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.content-main p {
  margin-bottom: 0;
}

.content-main a {
  color: var(--royal);
  border-bottom: 1px solid currentColor;
}

.content-main a:hover {
  color: var(--royal-deep);
}

.content-main ul,
.content-main ol {
  padding-left: 0;
  list-style: none;
  margin-top: 16px;
}

.content-main ul li,
.content-main ol li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--text-2);
}

.content-main ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--royal);
  border-radius: 50%;
}

.content-main ol {
  counter-reset: content-counter;
}

.content-main ol li {
  counter-increment: content-counter;
}

.content-main ol li::before {
  content: counter(content-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--royal);
  font-weight: 700;
  font-size: 15px;
}

.content-main blockquote {
  border-left: 3px solid var(--royal);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.content-main strong {
  color: var(--text-1);
  font-weight: 600;
}

/* Content Images */
.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 36px 0;
  aspect-ratio: 16/9;
  background: var(--paper-3);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layout */
.sidebar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 60px;
  align-items: start;
}

/* Sidebar */
.content-sidebar {
  position: sticky;
  top: 100px;
}

.content-sidebar .side-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 20px;
}

.content-sidebar .side-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.content-sidebar div#text-6 {
  background: var(--ink);
  color: #fff;
}

.content-sidebar div#text-6 h4 {
  color: #fff;
}

.side-phone {
  display: block;
  padding: 18px 20px;
  background: var(--royal);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: all 0.25s;
}

.widget #menu-other-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.widget #menu-other-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s ease;
}

.widget #menu-other-services a:hover {
  background: var(--paper);
  color: var(--royal);
}

.widget #menu-other-services a.active {
  background: var(--royal);
  color: #fff;
}

.widget #menu-other-services a svg {
  width: 14px;
  height: 14px;
}

.side-card.dark .widget #menu-other-services a {
  color: rgba(255, 255, 255, 0.7);
}

.side-card.dark .widget #menu-other-services a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.content-sidebar div#text-7 {
  margin-top: 20px;
  background: var(--royal-pale);
  border-color: rgba(30, 77, 199, 0.2);
}

/* =================
404 Page Css
=================== */
.error-404-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.error-404-content h2 {
  margin-bottom: 20px;
}

.error-404-content .page-hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.error-404-content .page-hero-actions .btn-primary {
  color: #fff;
}

.error-404-content .page-hero-actions .btn-secondary {
  background: var(--paper);
  color: var(--text-1);
  border: 1px solid var(--line);
}

.error-404-content .page-hero-actions .btn-secondary:hover {
  background: var(--paper-3);
  border-color: var(--text-3);
}

.thumb-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.thumb-section .btn {
  width: 50%;
}

.thumb-section a.thumb-up {
  background: green;
}

.thumb-section a.thumb-down {
  background: red;
}

.thumb-section a {
  border: none;
  color: var(--paper);
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  justify-content: center;
  display: flex;
  text-decoration: none;
}

.thumb-section a:hover {
  color: var(--paper);
}

.thumb-section a i {
  font-size: 65px;
}

.review-title {
  margin-top: 0px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.thumb-section a.facebook,
.thumb-section a.google-plus {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid;
  border-radius: 10px;
  font-size: 34px;
  color: var(--paper);
  transition: all 0.3s;
}

.thumb-section .facebook {
  background-color: #4267b2;
}

.thumb-section .facebook:hover {
  background-color: #4267b2;
  color: var(--white);
}

.thumb-section .google-plus {
  background-color: #d64730;
}

.thumb-section .google-plus:hover {
  background-color: #d64730;
  color: var(--white);
}

.thumb-section a.facebook i,
.thumb-section a.google-plus i {
  font-size: 40px;
}

@media (max-width: 1200px) {
  .header .header-inner {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .proc-grid::before {
    display: none;
  }

  .proc-step {
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
}

@media (max-width: 992px) {

  .top-nav-menu,
  .cta-header {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-visual {
    position: static;
    aspect-ratio: 3/2;
  }

  .sec-head.split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .prose-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prose-wrap {
    grid-template-columns: 1fr;
  }

  .sidebar-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .top-bar-group {
    gap: 20px;
  }

  .top-bar-item {
    font-size: 12px;
  }
}

@media (max-width: 880px) {

  .top-left .top-item:not(:first-child),
  .top-right .top-item:not(:last-child) {
    display: none;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reviews-rating {
    justify-self: start;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stats-cell {
    padding: 0 20px;
    border-right: none;
  }

  .stats-cell:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cta-banner {
    padding: 56px 32px;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }

  .trust-item,
  .trust-item+.trust-item {
    padding: 0 16px;
    border-left: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    width: 50%;
  }

  .contact-quick-grid {
    grid-template-columns: 1fr;
  }

  .top-bar {
    padding: 9px 0;
  }

  .top-bar-group:nth-child(2) .top-bar-item:last-child {
    display: none;
  }

  .top-bar-group {
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .site-logo {
    max-width: 160px;
    margin: 0 auto;
  }

  .site-logo .custom-logo-link {
    display: none;
  }

  .site-logo .mobile-logo-link {
    display: block;
  }

  .header .header-inner {
    gap: 0px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .top-bar-inner {
    gap: 10px;
  }

  .top-bar-group {
    gap: 10px;
    justify-content: center;
  }

  .svc-card {
    width: 100%;
  }
}