/* ==========================================================================
   Repair Center — Design System
   ========================================================================== */

:root {
  /* Original brand palette, restored */
  --navy-900: #081D30;
  --navy-800: #0D2B47;
  --blue-700: #124F80;
  --blue-600: #1769AA;
  --blue-500: #2785C5;
  --blue-100: #EAF4FB;
  --blue-50: #F5FAFD;
  --white: #FFFFFF;
  --text: #17212B;
  --muted: #61707D;
  --amber-500: #E8973C;
  --amber-600: #CF7F26;
  --grey-100: #EEF2F5;
  --grey-50: #F7F9FA;
  --border: #DCE6ED;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 10px rgba(8, 29, 48, 0.08);
  --shadow-md: 0 14px 32px rgba(8, 29, 48, 0.13);
  --shadow-lg: 0 30px 70px rgba(8, 29, 48, 0.20);
  --font-display: "Space Grotesk", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

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

.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width:600px) {

  .container,
  .container-narrow {
    padding: 0 22px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 16px;
  color: var(--text);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark p,
.on-dark {
  color: var(--white);
}

.on-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

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

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 18px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--amber-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--amber-600);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-md);
}

.btn-outline-blue {
  border-color: var(--blue-600);
  color: var(--blue-700);
  background: transparent;
}

.btn-outline-blue:hover {
  background: var(--blue-600);
  color: #fff;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: transparent;
  padding: 18px 0 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 10px 26px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.site-header .container {
  max-width: calc(var(--container) - 40px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo .logo-img {
  display: block;
  width: 170px;
  height: auto;
}

.logo-footer {
  background: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  display: inline-flex;
  margin-bottom: 10px;
}

.logo-footer .logo-img {
  width: 170px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue-600);
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-nav a[aria-current="page"] {
  color: var(--blue-700);
}

/* Desktop Services dropdown */
.nav-item {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text);
  padding: 6px 0;
}

.nav-dropdown-toggle i {
  font-size: 0.7rem;
  color: var(--blue-600);
  transition: transform .2s ease;
}

.nav-item.is-open .nav-dropdown-toggle,
.nav-item.is-open-current .nav-dropdown-toggle {
  color: var(--blue-700);
}

.nav-item.is-open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 10px;
  z-index: 80;
  display: none;
}

.nav-item.is-open .nav-dropdown-panel {
  display: block;
}

.nav-dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.nav-dropdown-panel a i {
  width: 18px;
  text-align: center;
  color: var(--blue-600);
}

.nav-dropdown-panel a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.nav-dropdown-panel a.nav-dropdown-all {
  color: var(--blue-700);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-radius: 8px 8px 0 0;
}

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

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.nav-call i {
  color: var(--blue-600);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile navigation panel */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--white);
  z-index: 400;
  padding-top: 0;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
  flex-direction: column;
}

.mobile-nav-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex: 0 0 auto;
}

.mobile-nav-topbar-logo .logo-img {
  width: 150px;
  height: auto;
  display: block;
}

.mobile-nav-close {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--grey-50);
  color: var(--navy-900);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.mobile-nav-close:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
  transform: rotate(90deg);
}

.mobile-nav.is-open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 6px 24px 20px;
}

.mobile-nav-links>a {
  display: block;
  padding: 17px 6px;
  font-weight: 700;
  font-size: 1.08rem;
  border-bottom: 1px solid var(--border);
  color: var(--navy-900);
}

.mobile-nav-ctas {
  flex: 0 0 auto;
  padding: 16px 24px 26px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.mobile-nav-ctas .btn {
  margin-bottom: 12px;
}

.mobile-nav-ctas .btn:last-child {
  margin-bottom: 0;
}

/* Mobile Services accordion */
.mobile-nav-item {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: none;
  border: none;
  padding: 17px 6px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy-900);
}

.mobile-nav-toggle i {
  font-size: 0.85rem;
  color: var(--blue-600);
  transition: transform .22s ease;
  flex-shrink: 0;
}

.mobile-nav-item.is-open .mobile-nav-toggle i {
  transform: rotate(180deg);
}

.mobile-nav-item.is-open .mobile-nav-toggle {
  color: var(--blue-700);
}

.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.mobile-nav-item.is-open .mobile-nav-submenu {
  max-height: 640px;
}

.mobile-nav-submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 10px 13px 18px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--muted);
}

.mobile-nav-submenu a i {
  width: 18px;
  text-align: center;
  color: var(--blue-600);
  display: none;
}

.mobile-nav-submenu a.nav-dropdown-all {
  color: var(--blue-700);
  font-weight: 700;
}

@media (max-width:960px) {
  .main-nav {
    display: none;
  }

  .nav-call span {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-actions .btn-primary {
    display: none;
  }
}

/* ---------------- Breadcrumbs ---------------- */
.breadcrumbs {
  background: var(--blue-50);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-size: 0.86rem;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs li:not(:last-child)::after {
  content: ">";
  color: var(--blue-500);
  font-weight: 700;
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: var(--blue-700);
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs li[aria-current="page"] {
  color: var(--muted);
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 56px 0 92px;
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--blue-700) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 82% 18%, rgba(39, 133, 197, 0.55), transparent 55%),
    radial-gradient(circle at 8% 88%, rgba(8, 29, 48, 0.7), transparent 60%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 29, 48, 0.82) 0%, rgba(8, 29, 48, 0.48) 45%, rgba(18, 79, 128, 0.55) 100%);
}

@media (max-width:760px) {
  .hero-overlay {
    background: linear-gradient(90deg, rgba(8, 29, 48, 0.82) 0%, rgba(8, 29, 48, 0.48) 45%, rgba(18, 79, 128, 0.45) 100%);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero h1 {
  color: #fff;
  margin-bottom: 18px;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.18rem;
  max-width: 600px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-meta i {
  color: var(--amber-500);
  font-size: 1.05rem;
}

/* Generic media placeholder (used instead of real photography until supplied) */
.media-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(155deg, var(--blue-700), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  box-shadow: var(--shadow-md);
}

.media-frame i {
  color: rgba(255, 255, 255, 0.85);
  font-size: 4rem;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame span.media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(0deg, rgba(8, 29, 48, 0.85), transparent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.media-frame.light {
  background: linear-gradient(155deg, var(--blue-100), var(--blue-500));
}

.media-frame.light i {
  color: var(--navy-900);
  opacity: 0.75;
}

/* ---------------- Sections ---------------- */
.section {
  padding: 92px 0;
}

.section-sm {
  padding: 56px 0;
}

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

.bg-blue-50 {
  background: var(--blue-50);
}

.bg-blue-100 {
  background: var(--blue-100);
}

.bg-grey {
  background: var(--grey-50);
}

.bg-navy {
  background: var(--navy-900);
  color: #fff;
}

.bg-navy-800 {
  background: var(--navy-800);
  color: #fff;
}

.bg-blue-deep {
  background: linear-gradient(120deg, var(--blue-700), var(--navy-800));
  color: #fff;
}

.section-head {
  max-width: 720px;
  margin: 0 0 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  font-size: 1.08rem;
}

/* ---------------- Brand marquee ---------------- */
.marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.bg-blue-50 .marquee-wrap::before {
  background: linear-gradient(90deg, var(--blue-50), transparent);
}

.bg-blue-50 .marquee-wrap::after {
  background: linear-gradient(270deg, var(--blue-50), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brand-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
  filter: grayscale(0.1);
  flex-shrink: 0;
}

.brand-chip img {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

@media (max-width: 760px) {
  .brand-chip img {
    height: 26px;
    max-width: 96px;
  }
}

/* ---------------- Form section ---------------- */
.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.form-visual {
  position: relative;
  color: #fff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, var(--blue-700), var(--navy-900));
  min-height: 340px;
}

.form-visual .media-icon-field {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.form-visual .media-icon-field i {
  font-size: 14rem;
}

.form-visual .media-icon-field img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-visual-inner {
  position: relative;
  z-index: 2;
}

.form-visual h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.form-visual p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.94rem;
}

.trust-points i {
  color: var(--amber-500);
  margin-top: 3px;
}

.form-panel {
  background: var(--white);
  padding: 44px;
}

.form-panel h3 {
  margin-bottom: 8px;
}

.form-panel .muted {
  margin-bottom: 26px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(23, 105, 170, 0.14);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}

.form-status {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #FDEDEC;
  color: #B3261E;
}

.form-status.is-loading {
  background: var(--blue-50);
  color: var(--blue-700);
}

@media (max-width:860px) {
  .form-split {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-visual {
    padding: 36px 26px;
  }

  .form-panel {
    padding: 30px 22px;
  }
}

/* ---------------- Editorial split rows ---------------- */
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.editorial-row:last-child {
  border-bottom: none;
}

.editorial-row.reverse .editorial-media {
  order: 2;
}

.editorial-row.reverse .editorial-copy {
  order: 1;
}

.editorial-media .media-frame {
  aspect-ratio: 4/3;
  min-height: 0;
}

.editorial-copy .tag {
  display: none;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.editorial-copy ul {
  margin: 18px 0;
}

.editorial-copy ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.editorial-copy ul li i {
  color: var(--blue-600);
  margin-top: 4px;
}

.editorial-copy .link-arrow {
  font-weight: 700;
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.editorial-copy .link-arrow i {
  transition: transform .18s ease;
}

.editorial-copy .link-arrow:hover i {
  transform: translateX(4px);
}

@media (max-width:860px) {
  .editorial-row {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 0;
  }

  .editorial-row.reverse .editorial-media {
    order: 1;
  }

  .editorial-row.reverse .editorial-copy {
    order: 2;
  }
}

/* ---------------- Problem list ---------------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.problem-item {
  display: flex;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.problem-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue-500);
}

.problem-item i {
  color: var(--amber-500);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
  display: none;
}

.problem-item h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.problem-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

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

/* ---------------- Feature rows / Why choose ---------------- */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--amber-500);
  min-width: 52px;
}

.feature-row h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.feature-row p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ---------------- Process steps ---------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  position: relative;
  padding: 32px 26px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
}

.process-step .step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width:960px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Service hub cards (used sparingly) ---------------- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card .media-frame {
  border-radius: 0;
  min-height: 150px;
}

.service-card .service-card-body {
  padding: 24px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.service-card .link-arrow {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-700);
}

@media (max-width:960px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Areas ---------------- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areas-list span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue-700);
}

/* ---------------- FAQ ---------------- */
.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-900);
}

.faq-q i {
  transition: transform .22s ease;
  color: var(--blue-600);
  flex-shrink: 0;
}

.faq-item[data-open="true"] .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-a p {
  padding: 0 4px 22px;
  color: var(--muted);
  max-width: 680px;
}

/* ---------------- CTA band ---------------- */
.cta-band {
  text-align: center;
  padding: 64px 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--blue-700), var(--navy-900));
  color: #fff;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 30px;
}

.cta-band .hero-ctas {
  justify-content: center;
}

/* ---------------- Reviews ---------------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
}

.review-card .stars {
  color: var(--amber-500);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.review-card p {
  font-style: italic;
  color: var(--text);
}

.review-card .reviewer {
  font-weight: 700;
  color: var(--navy-900);
  font-style: normal;
  margin-top: 14px;
  font-size: 0.9rem;
}

.reviews-placeholder {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  color: var(--muted);
}

/* ---------------- Contact blocks ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-md);
}

.contact-method .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method h3 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.contact-method p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

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

  .cta-band{
    padding: 36px;
  }
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col h5 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--blue-600);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

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

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

/* ---------------- Sticky mobile contact ---------------- */
.sticky-contact {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 600;
  flex-direction: column;
  gap: 12px;
}

.sticky-contact a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.sticky-contact a.call {
  background: var(--blue-600);
}

.sticky-contact a.whatsapp {
  background: #25D366;
}

.sticky-contact a.email {
  background: var(--navy-800);
}

.sticky-contact a .tip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-900);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.sticky-contact a:hover .tip,
.sticky-contact a:focus-visible .tip {
  opacity: 1;
}

@media (max-width:760px) {
  .sticky-contact {
    display: flex;
  }
}

/* ---------------- 404 ---------------- */
.error-page {
  text-align: center;
  padding: 120px 0;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  opacity: .5;
  line-height: 1;
}

/* ---------------- Utility ---------------- */
.mt-0 {
  margin-top: 0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

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

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

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

.badge-config {
  display: inline-block;
  background: #FFF4E5;
  color: #8A5A00;
  border: 1px dashed #E3A94C;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}

.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

@media (max-width:760px) {
  .section {
    padding: 52px 0;
  }

  .hero {
    padding: 68px 0 56px;
  }
}

/* ---------------- Emergency section ---------------- */
.emergency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.emergency-copy .tag {
  display: inline-block;
  background: var(--amber-500);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.emergency-copy h2 {
  color: #fff;
}

.emergency-copy p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.emergency-points {
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.emergency-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 0.96rem;
}

.emergency-points li i {
  color: var(--amber-500);
  font-size: 1.15rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.emergency-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.emergency-illustration {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}

.emergency-illustration img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

@media (max-width:860px) {
  .emergency-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .emergency-illustration {
    order: -1;
  }
}