@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/alexandria-arabic-variable.woff2") format("woff2-variations");
}

:root {
  --brand-gold: #f6b26d;
  --brand-gold-deep: #bd6b33;
  --brand-gold-rgb: 246, 178, 109;
  --brand-dark: #1d1e26;
  --brand-dark-soft: #282a35;
  --ink: #20242d;
  --muted: #666b78;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --surface-warm: #fff8f1;
  --line: #e5e7eb;
  --whatsapp: #20b858;
  --whatsapp-dark: #128c44;
  --shadow-sm: 0 12px 32px rgba(29, 30, 38, 0.07);
  --shadow-md: 0 20px 55px rgba(29, 30, 38, 0.11);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --header-height: 92px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100vw;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15.75px, 0.22vw + 15px, 17px);
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container {
  width: min(var(--container), calc(100% - clamp(30px, 6vw, 88px)));
  margin-inline: auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 5000;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(var(--brand-gold-rgb), 0.8);
  outline-offset: 4px;
}

.section {
  position: relative;
  padding-block: clamp(76px, 9vw, 124px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

.section-heading h2,
.why-intro h2,
.properties-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.section-heading p,
.why-intro > p,
.properties-copy > p,
.faq-intro > p,
.contact-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.9;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 8px 15px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.42);
  border-radius: 999px;
  background: rgba(var(--brand-gold-rgb), 0.13);
  color: var(--brand-gold-deep);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.eyebrow-dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-gold);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52d273;
  box-shadow: 0 0 0 5px rgba(82, 210, 115, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn .icon {
  font-size: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-gold), #e9954d);
  color: var(--brand-dark);
  box-shadow: 0 14px 35px rgba(189, 107, 51, 0.25);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, var(--whatsapp-dark));
  color: #fff;
  box-shadow: 0 14px 34px rgba(18, 140, 68, 0.24);
}

.btn-light {
  border-color: #fff;
  background: #fff;
  color: var(--brand-dark);
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-3px);
  }

  .btn-primary:hover {
    box-shadow: 0 18px 42px rgba(189, 107, 51, 0.34);
  }

  .btn-ghost:hover {
    border-color: rgba(var(--brand-gold-rgb), 0.75);
    background: rgba(var(--brand-gold-rgb), 0.11);
    color: var(--brand-gold);
  }

  .btn-light:hover {
    border-color: var(--brand-gold);
    background: var(--brand-gold);
  }
}

/* Header and isolated navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(29, 30, 38, 0.88);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height 0.3s var(--ease), background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  height: 78px;
  background: rgba(29, 30, 38, 0.97);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 54px;
  max-width: 166px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-copy {
  display: grid;
  gap: 1px;
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.19);
  line-height: 1.4;
}

.brand-copy strong {
  color: var(--brand-gold);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.site-header .brand-copy strong {
  color: #fff;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.13);
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10.5px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 8px 24px rgba(0, 0, 0, 0.09);
}

.desktop-nav a {
  position: relative;
  padding: 9px clamp(10px, 1vw, 15px);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.desktop-nav a::after {
  display: none;
}

.desktop-nav a[aria-current="page"] {
  background: linear-gradient(135deg, var(--brand-gold), #ffd3a3);
  color: var(--brand-dark);
  box-shadow: 0 6px 18px rgba(var(--brand-gold-rgb), 0.22);
}

@media (hover: hover) {
  .desktop-nav a:not([aria-current="page"]):hover {
    background: rgba(var(--brand-gold-rgb), 0.13);
    color: #fff;
    transform: translateY(-1px);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.35);
  border-radius: 12px;
  background: rgba(var(--brand-gold-rgb), 0.1);
  color: #fff;
  direction: ltr;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.header-call .icon {
  color: var(--brand-gold);
  font-size: 18px;
}

@media (hover: hover) {
  .header-call:hover {
    background: var(--brand-gold);
    color: var(--brand-dark);
    transform: translateY(-2px);
  }

  .header-call:hover .icon {
    color: currentColor;
  }
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 24px;
}

.menu-toggle .icon-close,
.menu-open .menu-toggle .icon-menu {
  display: none;
}

.menu-open .menu-toggle .icon-close {
  display: block;
}

.mobile-nav-shell {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  pointer-events: none;
}

.nav-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 10, 14, 0.7);
  opacity: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity 0.35s ease;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(390px, 88vw);
  height: 100%;
  padding: calc(34px + env(safe-area-inset-top)) 26px calc(28px + env(safe-area-inset-bottom));
  overflow-y: auto;
  border-left: 1px solid rgba(var(--brand-gold-rgb), 0.22);
  background:
    radial-gradient(circle at 0 0, rgba(var(--brand-gold-rgb), 0.2), transparent 36%),
    linear-gradient(165deg, #23252f 0%, var(--brand-dark) 58%, #14151b 100%);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.34);
  transform: translateX(105%);
  transition: transform 0.42s var(--ease);
}

.menu-open .mobile-nav-shell {
  visibility: visible;
  pointer-events: auto;
}

.menu-open .nav-overlay {
  opacity: 1;
}

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

.mobile-nav-head {
  display: grid;
  gap: 3px;
  margin-bottom: 22px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mobile-nav-head span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 600;
}

.mobile-nav-head strong {
  color: #fff;
  font-size: 23px;
  font-weight: 800;
}

.mobile-nav-links {
  display: grid;
  gap: 8px;
}

.mobile-nav-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mobile-nav-links a::after {
  content: "←";
  color: rgba(var(--brand-gold-rgb), 0.72);
  font-size: 17px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.mobile-nav-links a:is(:hover, [aria-current="page"]) {
  border-color: rgba(var(--brand-gold-rgb), 0.32);
  background: rgba(var(--brand-gold-rgb), 0.11);
  color: #fff;
  transform: translateX(-2px);
}

.mobile-nav-links a:is(:hover, [aria-current="page"])::after {
  color: var(--brand-gold);
  transform: translateX(-3px);
}

.mobile-nav-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 780px;
  padding: calc(var(--header-height) + 80px) 0 110px;
  overflow: hidden;
  background: var(--brand-dark);
  color: #fff;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent);
  pointer-events: none;
}

.hero-mesh,
.hero-mesh > * {
  position: absolute;
  pointer-events: none;
}

.hero-mesh {
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.mesh-orb {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.34;
}

.mesh-orb-one {
  top: -240px;
  right: -140px;
  background: rgba(var(--brand-gold-rgb), 0.72);
}

.mesh-orb-two {
  bottom: -300px;
  left: -100px;
  background: rgba(71, 82, 138, 0.8);
}

.mesh-grid {
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to left, transparent, #000 35%, #000 70%, transparent);
  mask-image: linear-gradient(to left, transparent, #000 35%, #000 70%, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

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

.hero h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(40px, 5.1vw, 69px);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.035em;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--brand-gold), #ffd5ad 55%, var(--brand-gold));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.95;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  font-weight: 650;
}

.hero-points .icon {
  color: var(--brand-gold);
  font-size: 15px;
  stroke-width: 2.4;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}

.operations-card {
  position: relative;
  z-index: 2;
  width: min(100%, 410px);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow-dark);
  text-align: center;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.operations-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 45%);
}

.operations-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.operations-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 11.5px;
  font-weight: 700;
}

.operations-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #52d273;
  box-shadow: 0 0 0 5px rgba(82, 210, 115, 0.12);
}

.operations-badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(var(--brand-gold-rgb), 0.14);
  color: var(--brand-gold);
  font-size: 10.5px;
  font-weight: 800;
}

.operations-main-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 30px auto 20px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.28);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(var(--brand-gold-rgb), 0.2), rgba(var(--brand-gold-rgb), 0.07));
  color: var(--brand-gold);
  font-size: 54px;
  transform: rotate(3deg);
}

.operations-main-icon > .icon {
  position: relative;
  z-index: 1;
  transform: rotate(-3deg);
}

.icon-halo {
  position: absolute;
  inset: -17px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.14);
  border-radius: 39px;
}

.operations-card > strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.operations-card > p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 13px;
}

.operations-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.operations-status span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
}

.operations-status .icon {
  color: var(--brand-gold);
  font-size: 16px;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(29, 30, 38, 0.72);
  color: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-chip .icon {
  color: var(--brand-gold);
  font-size: 21px;
}

.chip-one {
  top: 12%;
  left: -3%;
}

.chip-two {
  right: -3%;
  bottom: 22%;
}

.chip-three {
  bottom: 4%;
  left: 11%;
}

.scroll-cue {
  position: absolute;
  bottom: 27px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 10.5px;
  font-weight: 700;
  transform: translateX(-50%);
}

.scroll-cue .icon {
  color: var(--brand-gold);
  font-size: 16px;
  transform: rotate(-90deg);
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -45px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 84px;
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-soft);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background: rgba(var(--brand-gold-rgb), 0.16);
  color: var(--brand-gold-deep);
  font-size: 22px;
}

.trust-item div {
  display: grid;
  gap: 2px;
}

.trust-item strong {
  color: var(--brand-dark);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.45;
}

.trust-item small {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 550;
  line-height: 1.65;
}

/* Services */
.services-section {
  padding-top: clamp(100px, 11vw, 150px);
  background:
    radial-gradient(circle at 95% 8%, rgba(var(--brand-gold-rgb), 0.1), transparent 24%),
    var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 355px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px 27px 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #fff 55%, #fff9f3);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  text-align: center;
  transition: transform 0.38s var(--ease), border-color 0.3s ease, box-shadow 0.38s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -95px;
  left: -95px;
  z-index: -1;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-gold-rgb), 0.18), transparent 68%);
  transition: transform 0.45s var(--ease);
}

.service-number {
  position: absolute;
  top: 22px;
  left: 23px;
  color: rgba(29, 30, 38, 0.12);
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 2px auto 22px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.34);
  border-radius: 25px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.82), transparent 31%),
    linear-gradient(145deg, rgba(var(--brand-gold-rgb), 0.28), rgba(var(--brand-gold-rgb), 0.08));
  color: var(--brand-gold-deep);
  box-shadow: 0 14px 28px rgba(var(--brand-gold-rgb), 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-size: 35px;
  transition: transform 0.4s var(--ease), background-color 0.3s ease, color 0.3s ease, box-shadow 0.35s ease;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.22);
  border-radius: 19px;
  pointer-events: none;
}

.service-icon::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 2px 7px rgba(29, 30, 38, 0.2);
}

.service-icon .icon {
  position: relative;
  z-index: 1;
}

.service-tag {
  align-self: center;
  margin-bottom: 9px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-gold-deep);
  font-size: 10.5px;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 11px;
  color: var(--brand-dark);
  font-size: clamp(19px, 1.65vw, 23px);
  font-weight: 800;
  line-height: 1.52;
}

.service-card p {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.85;
}

.service-card .service-link {
  justify-content: center;
  margin-inline: auto;
}

.service-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--brand-gold-deep);
  font-size: 13px;
  font-weight: 800;
}

.service-link .icon,
.text-link .icon {
  font-size: 17px;
  transition: transform 0.3s var(--ease);
}

.service-card-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 320px;
}

.service-card-wide p {
  margin-bottom: 22px;
}

.service-card-wide .service-tag {
  display: inline-flex;
}

.service-wide-copy h3 {
  margin-bottom: 11px;
}

.service-wide-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.service-card-wide .service-link {
  margin-top: auto;
  white-space: nowrap;
}

@media (hover: hover) {
  .service-card:hover {
    border-color: rgba(var(--brand-gold-rgb), 0.7);
    box-shadow: 0 25px 58px rgba(29, 30, 38, 0.12);
    transform: translateY(-8px);
  }

  .service-card:hover::before {
    transform: scale(1.28);
  }

  .service-card:hover .service-icon {
    background:
      radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.8), transparent 31%),
      linear-gradient(145deg, #ffd7aa, var(--brand-gold));
    color: var(--brand-dark);
    box-shadow: 0 19px 34px rgba(var(--brand-gold-rgb), 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-4px) scale(1.04);
  }

  .service-link:hover .icon,
  .text-link:hover .icon {
    transform: translateX(-5px);
  }
}

/* Why us */
.why-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(var(--brand-gold-rgb), 0.17), transparent 26%),
    radial-gradient(circle at 90% 100%, rgba(76, 87, 145, 0.2), transparent 26%),
    var(--brand-dark);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.why-intro h2 {
  color: #fff;
}

.why-intro > p {
  color: rgba(255, 255, 255, 0.69);
}

.why-intro .text-link {
  margin-top: 26px;
  color: var(--brand-gold);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  position: relative;
  min-height: 225px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease);
}

.benefit-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 13px;
  background: rgba(var(--brand-gold-rgb), 0.15);
  color: var(--brand-gold);
  font-size: 12px;
  font-weight: 850;
}

.benefit-card h3 {
  margin-bottom: 9px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
}

.benefit-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.85;
}

@media (hover: hover) {
  .benefit-card:hover {
    border-color: rgba(var(--brand-gold-rgb), 0.38);
    background: rgba(var(--brand-gold-rgb), 0.09);
    transform: translateY(-5px);
  }
}

/* Process */
.process-section {
  background: var(--surface-soft);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 59px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-gold-rgb), 0.65), transparent);
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.process-number {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(29, 30, 38, 0.13);
  font-size: 16px;
  font-weight: 850;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  border: 7px solid #fff;
  border-radius: 21px;
  background: linear-gradient(145deg, var(--brand-gold), #e89850);
  color: var(--brand-dark);
  box-shadow: 0 13px 32px rgba(189, 107, 51, 0.2);
  font-size: 29px;
}

.process-card h3 {
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 800;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

/* Properties */
.properties-section {
  overflow: hidden;
  background:
    linear-gradient(100deg, #fff 0 48%, transparent 48%),
    radial-gradient(circle at 90% 20%, rgba(var(--brand-gold-rgb), 0.18), transparent 30%),
    var(--surface-warm);
}

.properties-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(45px, 7vw, 86px);
}

.property-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.property-card {
  display: grid;
  gap: 20px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.25);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.property-card > .icon {
  color: var(--brand-gold-deep);
  font-size: 36px;
}

.property-card h3 {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 17px;
  font-weight: 800;
}

.property-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.8;
}

/* FAQ */
.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(38px, 7vw, 88px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.faq-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 17px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.32);
  border-radius: 17px;
  background: var(--surface-warm);
}

.faq-contact-card > .icon {
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 14px;
  background: var(--brand-gold);
  color: var(--brand-dark);
}

.faq-contact-card div {
  display: grid;
  gap: 1px;
}

.faq-contact-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.faq-contact-card a {
  color: var(--brand-dark);
  direction: ltr;
  font-size: 18px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-list details[open] {
  border-color: rgba(var(--brand-gold-rgb), 0.6);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 17px 19px;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.65;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary > span {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  border-radius: 10px;
  background: rgba(var(--brand-gold-rgb), 0.16);
  color: var(--brand-gold-deep);
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.3s var(--ease), background-color 0.3s ease;
}

.faq-list details[open] summary > span {
  background: var(--brand-gold);
  color: var(--brand-dark);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 19px 19px;
}

.faq-answer p {
  margin: 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.faq-answer a {
  color: var(--brand-gold-deep);
  font-weight: 800;
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 clamp(76px, 8vw, 110px);
  background: #fff;
}

.contact-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(var(--brand-gold-rgb), 0.2), transparent 28%);
  pointer-events: none;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 45px;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(var(--brand-gold-rgb), 0.22), transparent 30%),
    linear-gradient(130deg, var(--brand-dark), var(--brand-dark-soft));
  box-shadow: var(--shadow-dark);
  color: #fff;
}

.contact-card::after {
  content: "";
  position: absolute;
  top: -130px;
  left: -110px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.02), 0 0 0 100px rgba(255, 255, 255, 0.015);
  pointer-events: none;
}

.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.contact-copy h2 {
  color: #fff;
  font-size: clamp(28px, 3.8vw, 46px);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.67);
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  min-width: 245px;
}

/* Footer */
.site-footer {
  background: #121319;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.95fr 1fr;
  gap: clamp(30px, 5vw, 62px);
  padding-block: clamp(58px, 7vw, 86px);
}

.brand-footer {
  margin-bottom: 20px;
}

.brand-footer .brand-logo {
  height: 51px;
}

.footer-brand > p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.9;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  position: relative;
  margin-bottom: 13px;
  padding-bottom: 11px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.footer-column h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-gold);
}

.footer-column > a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
  .footer-column > a:hover {
    color: var(--brand-gold);
    transform: translateX(-4px);
  }
}

.footer-contact > a,
.footer-location {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 53px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-contact > a > .icon,
.footer-location > .icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(var(--brand-gold-rgb), 0.13);
  color: var(--brand-gold);
}

.footer-contact span span,
.footer-contact > a span {
  display: grid;
  color: rgba(255, 255, 255, 0.8);
  direction: ltr;
  font-size: 12.5px;
  font-weight: 750;
}

.footer-contact small {
  color: rgba(255, 255, 255, 0.43);
  direction: rtl;
  font-size: 9.5px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  min-height: 62px;
  direction: rtl;
}

.footer-bottom p {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10.5px;
  font-weight: 550;
  line-height: 1.8;
  text-align: right;
}

/* Floating contact actions */
.floating-actions {
  position: fixed;
  bottom: max(22px, env(safe-area-inset-bottom));
  left: max(16px, env(safe-area-inset-left));
  z-index: 1000;
  display: grid;
  gap: 14px;
}

.fab {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 32px rgba(29, 30, 38, 0.25);
  font-size: 24px;
  isolation: isolate;
  transform: translateZ(0);
  animation: fab-float 4.6s ease-in-out infinite;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.fab-whatsapp {
  background: #25d366;
}

.fab-call {
  background: var(--brand-gold);
  color: var(--brand-dark);
  animation-delay: 0.65s;
}

.fab::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid currentColor;
  border-radius: inherit;
  opacity: 0;
  animation: fab-pulse 2.6s ease-out infinite;
}

.fab::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  animation: fab-soft-glow 2.6s ease-in-out infinite;
}

.fab-call::before,
.fab-call::after {
  animation-delay: 0.65s;
}

.fab-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  padding: 8px 11px;
  border-radius: 9px;
  background: var(--brand-dark);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-6px, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
  .fab:hover {
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.03);
  }

  .fab:hover .fab-tooltip {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes fab-pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.84);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

@keyframes fab-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes fab-soft-glow {
  0%,
  100% {
    opacity: 0.05;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.22;
    transform: scale(1.08);
  }
}

/* Entrance motion: enabled only after JavaScript is ready */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s var(--ease) var(--delay, 0ms), transform 0.72s var(--ease) var(--delay, 0ms);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive layout */
@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.is-scrolled {
    height: 70px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
    gap: 42px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 0.8fr);
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-contact h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 62px);
    padding-bottom: 95px;
  }

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

  .hero-content {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 520px);
    min-height: 455px;
    margin-inline: auto;
  }

  .scroll-cue {
    display: none;
  }

  .why-grid,
  .properties-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .why-intro,
  .properties-copy,
  .faq-intro {
    max-width: 760px;
  }

  .faq-intro {
    position: static;
  }

  .properties-section {
    background:
      radial-gradient(circle at 90% 20%, rgba(var(--brand-gold-rgb), 0.18), transparent 32%),
      var(--surface-warm);
  }

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

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding-block: 74px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    height: 41px;
    max-width: 126px;
  }

  .brand-copy {
    gap: 0;
    padding-right: 9px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 22px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 45px);
    padding-bottom: 70px;
  }

  .hero h1 {
    margin-bottom: 19px;
    font-size: clamp(31px, 9.4vw, 45px);
    line-height: 1.32;
  }

  .hero-lead {
    font-size: 15.5px;
    line-height: 1.88;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
    justify-content: stretch;
    width: min(100%, 360px);
    margin-inline: auto;
    text-align: right;
  }

  .hero-visual {
    min-height: 390px;
  }

  .operations-card {
    width: min(100% - 18px, 390px);
    padding: 20px;
    border-radius: 27px;
  }

  .operations-main-icon {
    width: 96px;
    height: 96px;
    font-size: 45px;
  }

  .operations-card > strong {
    font-size: 18px;
  }

  .floating-chip {
    min-height: 41px;
    padding: 8px 10px;
  }

  .chip-one {
    left: 0;
  }

  .chip-two {
    right: 0;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 16px;
    background: #fff;
  }

  .trust-grid,
  .services-grid,
  .benefits-grid,
  .process-list,
  .property-cards {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    padding: 9px;
    border-radius: 19px;
  }

  .trust-item {
    min-height: 75px;
  }

  .services-section {
    padding-top: 84px;
  }

  .service-card {
    min-height: 325px;
    padding: 23px;
  }

  .service-card-wide {
    display: flex;
    align-items: center;
    min-height: 325px;
    text-align: center;
  }

  .service-card-wide .service-icon {
    margin-bottom: 22px;
  }

  .service-card-wide .service-link {
    margin-top: auto;
  }

  .benefit-card,
  .property-card {
    min-height: auto;
  }

  .process-card {
    min-height: 245px;
  }

  .faq-list summary {
    min-height: 68px;
    padding: 15px;
    font-size: 13.5px;
  }

  .faq-answer {
    padding: 0 15px 16px;
  }

  .contact-section {
    padding-bottom: 74px;
  }

  .contact-card {
    gap: 30px;
    padding: 28px 22px;
    border-radius: 24px;
    text-align: center;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 22px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

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

  .footer-contact h2 {
    grid-column: auto;
  }

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

  .brand-footer {
    justify-content: center;
  }

  .footer-brand > p {
    margin-inline: auto;
  }

  .footer-bottom .container {
    min-height: 70px;
    padding-block: 15px;
  }

  .floating-actions {
    bottom: calc(15px + env(safe-area-inset-bottom));
    left: calc(14px + env(safe-area-inset-left));
    gap: 9px;
  }

  .fab {
    width: 53px;
    height: 53px;
    font-size: 24px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .brand-logo {
    height: 38px;
    max-width: 115px;
  }

  .brand-copy strong {
    font-size: 10px;
  }

  .mobile-nav-panel {
    width: min(360px, 91vw);
    padding-inline: 21px;
  }

  .hero .eyebrow {
    padding-inline: 11px;
    font-size: 11.5px;
  }

  .hero h1 {
    font-size: clamp(28px, 9.1vw, 38px);
  }

  .hero-visual {
    min-height: 365px;
  }

  .operations-topbar {
    gap: 8px;
  }

  .operations-label {
    font-size: 9.5px;
  }

  .operations-status {
    gap: 6px;
  }

  .operations-status span {
    padding-inline: 4px;
    font-size: 9.5px;
  }

  .floating-chip {
    font-size: 9.5px;
  }

  .chip-one {
    top: 8%;
  }

  .chip-three {
    bottom: 1%;
    left: 4%;
  }

  .section-heading h2,
  .why-intro h2,
  .properties-copy h2,
  .faq-intro h2 {
    font-size: clamp(27px, 8.5vw, 36px);
  }

  .footer-grid {
    gap: 34px 14px;
  }

  .footer-column h2 {
    font-size: 14px;
  }

  .footer-column > a {
    font-size: 11.5px;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-nav-shell,
  .floating-actions,
  .scroll-cue,
  .contact-section,
  .site-footer {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
    background: #fff;
    color: #000;
  }

  .hero h1,
  .hero h1 span,
  .hero-lead,
  .hero-points li {
    color: #000;
    background: none;
  }

  .hero-visual {
    display: none;
  }

  .section {
    padding-block: 35px;
  }

  .service-card,
  .process-card,
  .benefit-card,
  .property-card {
    break-inside: avoid;
    box-shadow: none;
  }
}

/* ================================================================
   Long-form service landing pages
   ================================================================ */
.service-detail-page {
  --service-accent: 246, 178, 109;
  --service-accent-deep: 189, 107, 51;
  background: var(--surface);
}

.service-detail-page.theme-ac {
  --service-accent: 113, 190, 211;
  --service-accent-deep: 42, 126, 151;
}

.service-detail-page.theme-electrical {
  --service-accent: 255, 190, 72;
  --service-accent-deep: 190, 121, 17;
}

.service-page-hero {
  position: relative;
  min-height: 730px;
  padding: calc(var(--header-height) + 70px) 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(var(--service-accent), 0.22), transparent 29%),
    radial-gradient(circle at 10% 90%, rgba(73, 82, 139, 0.24), transparent 27%),
    linear-gradient(135deg, #1d1e26, #252733 72%, #1d1e26);
  color: #fff;
  isolation: isolate;
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(100deg, transparent, #000 28%, #000 72%, transparent);
  mask-image: linear-gradient(100deg, transparent, #000 28%, #000 72%, transparent);
}

.service-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 110px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.57);
  font-size: 11.5px;
  font-weight: 650;
}

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

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(var(--service-accent), 0.72);
}

.breadcrumbs a {
  transition: color 0.25s ease;
}

.breadcrumbs a:hover {
  color: rgb(var(--service-accent));
}

.service-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(50px, 7vw, 95px);
}

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

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  padding: 8px 14px;
  border: 1px solid rgba(var(--service-accent), 0.34);
  border-radius: 999px;
  background: rgba(var(--service-accent), 0.1);
  color: rgb(var(--service-accent));
  font-size: 12px;
  font-weight: 800;
}

.service-kicker .icon {
  font-size: 16px;
}

.service-page-hero h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(37px, 4.9vw, 65px);
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.service-page-hero h1 span {
  color: rgb(var(--service-accent));
}

.service-hero-lead {
  max-width: 720px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.2vw, 19px);
  font-weight: 500;
  line-height: 1.95;
}

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

.service-hero-actions .btn-primary {
  background: linear-gradient(135deg, rgb(var(--service-accent)), rgb(var(--service-accent-deep)));
}

.service-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.service-hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 700;
}

.service-hero-meta .icon {
  color: rgb(var(--service-accent));
  font-size: 15px;
}

.service-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 455px;
}

.service-visual-orbit {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(var(--service-accent), 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(var(--service-accent), 0.035),
    0 0 0 110px rgba(var(--service-accent), 0.018);
}

.service-visual-card {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.052));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.service-visual-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border: 1px solid rgba(var(--service-accent), 0.3);
  border-radius: 27px;
  background: linear-gradient(145deg, rgba(var(--service-accent), 0.22), rgba(var(--service-accent), 0.07));
  color: rgb(var(--service-accent));
  font-size: 46px;
}

.service-visual-card > small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10.5px;
  font-weight: 700;
}

.service-visual-card > strong {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.55;
}

.service-visual-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-visual-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.69);
  font-size: 11.5px;
  font-weight: 650;
}

.service-visual-list .icon {
  color: rgb(var(--service-accent));
  font-size: 16px;
  stroke-width: 2.2;
}

.service-anchor-nav {
  position: relative;
  z-index: 6;
  margin-top: -32px;
}

.service-anchor-nav .container {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
  scrollbar-width: none;
}

.service-anchor-nav .container::-webkit-scrollbar {
  display: none;
}

.service-anchor-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 750;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.service-anchor-nav a:hover,
.service-anchor-nav a:first-child {
  background: rgba(var(--service-accent), 0.14);
  color: rgb(var(--service-accent-deep));
}

.service-overview-section {
  padding-top: clamp(105px, 11vw, 145px);
  background: #fff;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(285px, 0.65fr);
  align-items: start;
  gap: clamp(42px, 7vw, 84px);
}

.long-form-copy > .eyebrow {
  color: rgb(var(--service-accent-deep));
  border-color: rgba(var(--service-accent), 0.38);
  background: rgba(var(--service-accent), 0.1);
}

.long-form-copy h2,
.content-panel h2 {
  margin-bottom: 21px;
  color: var(--brand-dark);
  font-size: clamp(29px, 3.7vw, 45px);
  font-weight: 820;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.long-form-copy h3,
.content-panel h3 {
  margin: 34px 0 12px;
  color: var(--brand-dark);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 800;
  line-height: 1.5;
}

.long-form-copy p,
.content-panel p {
  margin-bottom: 18px;
  color: #565e6c;
  font-size: clamp(15.5px, 0.5vw + 14px, 17px);
  line-height: 2.05;
}

.long-form-copy p:last-child,
.content-panel p:last-child {
  margin-bottom: 0;
}

.highlight-note {
  position: relative;
  margin: 30px 0;
  padding: 22px 24px 22px 25px;
  overflow: hidden;
  border: 1px solid rgba(var(--service-accent), 0.34);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(var(--service-accent), 0.11), rgba(var(--service-accent), 0.035));
}

.highlight-note::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: rgb(var(--service-accent-deep));
}

.highlight-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 820;
}

.highlight-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.service-side-card {
  position: sticky;
  top: calc(var(--header-height) + 25px);
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0, rgba(var(--service-accent), 0.17), transparent 32%),
    var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.service-side-card > .icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  padding: 15px;
  border-radius: 17px;
  background: rgb(var(--service-accent));
  color: var(--brand-dark);
}

.service-side-card h2 {
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.55;
}

.service-side-card > p {
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.85;
}

.side-check-list {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.side-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #4f5765;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.7;
}

.side-check-list .icon {
  margin-top: 4px;
  color: rgb(var(--service-accent-deep));
  font-size: 14px;
  stroke-width: 2.3;
}

.service-side-card .btn {
  width: 100%;
  margin-top: 8px;
}

.service-side-card .btn-primary {
  background: linear-gradient(135deg, rgb(var(--service-accent)), rgb(var(--service-accent-deep)));
}

.scope-section {
  background:
    radial-gradient(circle at 7% 15%, rgba(var(--service-accent), 0.1), transparent 23%),
    var(--surface-soft);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.scope-card {
  position: relative;
  min-height: 245px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.scope-card::after {
  content: "";
  position: absolute;
  top: -70px;
  left: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(var(--service-accent), 0.1);
}

.scope-card > .icon {
  position: relative;
  z-index: 1;
  width: 55px;
  height: 55px;
  margin-bottom: 25px;
  padding: 13px;
  border-radius: 17px;
  background: rgba(var(--service-accent), 0.16);
  color: rgb(var(--service-accent-deep));
}

.scope-card h3 {
  margin-bottom: 9px;
  color: var(--brand-dark);
  font-size: 17px;
  font-weight: 820;
  line-height: 1.55;
}

.scope-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.87;
}

@media (hover: hover) {
  .scope-card:hover {
    border-color: rgba(var(--service-accent), 0.65);
    box-shadow: 0 22px 50px rgba(29, 30, 38, 0.1);
    transform: translateY(-6px);
  }
}

.service-insight-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0, rgba(var(--service-accent), 0.17), transparent 27%),
    var(--brand-dark);
  color: #fff;
}

.service-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 55px);
}

.content-panel {
  padding: clamp(25px, 3.5vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.content-panel h2,
.content-panel h3 {
  color: #fff;
}

.content-panel h2 {
  font-size: clamp(25px, 3vw, 37px);
}

.content-panel h3 {
  margin-top: 27px;
  font-size: 19px;
}

.content-panel p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 2;
}

.insight-list,
.feature-check-grid {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.insight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.73);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.75;
}

.insight-list .icon {
  margin-top: 4px;
  color: rgb(var(--service-accent));
  font-size: 15px;
  stroke-width: 2.3;
}

.service-process-section {
  background: #fff;
}

.service-process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-process-card {
  position: relative;
  min-height: 285px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(155deg, #fff, var(--surface-soft));
}

.service-process-card::before {
  content: attr(data-step);
  position: absolute;
  top: 16px;
  left: 17px;
  color: rgba(29, 30, 38, 0.12);
  font-size: 16px;
  font-weight: 850;
}

.service-process-card > .icon {
  width: 57px;
  height: 57px;
  margin-bottom: 25px;
  padding: 14px;
  border-radius: 17px;
  background: rgb(var(--service-accent));
  color: var(--brand-dark);
  box-shadow: 0 12px 27px rgba(var(--service-accent-deep), 0.2);
}

.service-process-card h3 {
  margin-bottom: 9px;
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 820;
  line-height: 1.55;
}

.service-process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11.8px;
  line-height: 1.85;
}

.packages-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(var(--service-accent), 0.13), transparent 25%),
    var(--surface-warm);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(var(--service-accent), 0.25);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.package-card.is-featured {
  border-color: rgba(var(--service-accent), 0.75);
  background:
    radial-gradient(circle at 100% 0, rgba(var(--service-accent), 0.19), transparent 30%),
    #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-9px);
}

.package-badge {
  align-self: flex-start;
  margin-bottom: 21px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(var(--service-accent), 0.15);
  color: rgb(var(--service-accent-deep));
  font-size: 10px;
  font-weight: 850;
}

.package-card h3 {
  margin-bottom: 11px;
  color: var(--brand-dark);
  font-size: 21px;
  font-weight: 830;
  line-height: 1.5;
}

.package-card > p {
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.85;
}

.package-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #4f5765;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.7;
}

.package-list .icon {
  margin-top: 4px;
  color: rgb(var(--service-accent-deep));
  font-size: 14px;
  stroke-width: 2.3;
}

.package-note {
  margin-top: auto;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.7;
}

.service-benefits-section {
  background: #fff;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(45px, 7vw, 86px);
}

.benefits-copy h2 {
  margin-bottom: 17px;
  color: var(--brand-dark);
  font-size: clamp(29px, 3.8vw, 46px);
  font-weight: 830;
  line-height: 1.4;
}

.benefits-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.feature-check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.feature-check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 120px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-soft);
}

.feature-check-grid .icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  padding: 9px;
  border-radius: 11px;
  background: rgba(var(--service-accent), 0.17);
  color: rgb(var(--service-accent-deep));
  stroke-width: 2.2;
}

.feature-check-grid div {
  display: grid;
  gap: 4px;
}

.feature-check-grid strong {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 810;
}

.feature-check-grid span {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.75;
}

.service-faq-section {
  background: var(--surface-soft);
}

.service-faq-section .faq-list details {
  background: rgba(255, 255, 255, 0.94);
}

.related-services-section {
  padding-top: 0;
  background: var(--surface-soft);
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.related-service-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), border-color 0.3s ease;
}

.related-service-card > .icon {
  width: 49px;
  height: 49px;
  margin-bottom: 19px;
  padding: 12px;
  border-radius: 15px;
  background: rgba(var(--service-accent), 0.15);
  color: rgb(var(--service-accent-deep));
}

.related-service-card h3 {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 17px;
  font-weight: 810;
}

.related-service-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.related-service-card .service-link {
  margin-top: auto;
}

@media (hover: hover) {
  .related-service-card:hover {
    border-color: rgba(var(--service-accent), 0.65);
    transform: translateY(-5px);
  }
}

.service-detail-page .contact-card {
  background:
    radial-gradient(circle at 0 0, rgba(var(--service-accent), 0.2), transparent 30%),
    linear-gradient(130deg, var(--brand-dark), var(--brand-dark-soft));
}

@media (max-width: 1120px) {
  .service-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 42px;
  }

  .scope-grid,
  .related-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-page-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 48px);
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .service-hero-layout,
  .service-overview-grid,
  .service-insight-grid,
  .service-benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-content {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
  }

  .service-hero-actions,
  .service-hero-meta {
    justify-content: center;
  }

  .service-hero-visual {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .service-side-card {
    position: static;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
  }

  .service-side-card > .icon {
    margin-bottom: 0;
  }

  .service-side-card > p,
  .service-side-card .side-check-list {
    grid-column: 2;
  }

  .service-side-card .btn {
    grid-column: 3;
    grid-row: 1 / span 3;
    width: auto;
    margin: 0;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .package-card {
    min-height: auto;
  }

  .package-card.is-featured {
    transform: none;
  }
}

@media (max-width: 700px) {
  .service-page-hero {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 75px;
  }

  .service-page-hero h1 {
    font-size: clamp(29px, 9vw, 43px);
  }

  .service-hero-lead {
    font-size: 15.5px;
  }

  .service-hero-actions {
    display: grid;
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .service-hero-actions .btn {
    width: 100%;
  }

  .service-hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .service-hero-meta li {
    justify-content: center;
    min-width: 0;
    padding-inline: 6px;
    font-size: 9.5px;
  }

  .service-hero-visual {
    min-height: 390px;
  }

  .service-visual-orbit {
    width: 300px;
    height: 300px;
  }

  .service-visual-card {
    width: min(100% - 18px, 380px);
    padding: 22px;
  }

  .service-anchor-nav {
    margin-top: 0;
    padding-top: 12px;
    background: #fff;
  }

  .service-anchor-nav .container {
    width: min(100% - 20px, var(--container));
    border-radius: 14px;
  }

  .service-overview-section {
    padding-top: 78px;
  }

  .service-side-card {
    display: block;
  }

  .service-side-card > .icon {
    margin-bottom: 18px;
  }

  .service-side-card .btn {
    width: 100%;
    margin-top: 8px;
  }

  .scope-grid,
  .service-process-list,
  .feature-check-grid,
  .related-services-grid {
    grid-template-columns: 1fr;
  }

  .scope-card,
  .service-process-card,
  .feature-check-grid li {
    min-height: auto;
  }

  .content-panel {
    padding: 23px;
  }

  .service-benefits-grid {
    gap: 34px;
  }
}

@media (max-width: 430px) {
  .breadcrumbs {
    font-size: 10px;
  }

  .service-kicker {
    font-size: 10.5px;
  }

  .service-page-hero h1 {
    font-size: clamp(27px, 8.8vw, 37px);
  }

  .service-visual-card > strong {
    font-size: 18px;
  }

  .service-hero-meta {
    grid-template-columns: 1fr;
  }
}
