/* =========================================================
   سطحة حائل — Style 2026 (Carbon & Crimson Variant)
   تصميم فخم فحمي، أحمر كرامزون، ذهبي ناعم، أبيض ناصع
   ========================================================= */

:root {
  --bg: #0E0E12;
  --bg-2: #131318;
  --surface: #18181F;
  --surface-2: #1F1F28;
  --border: #2A2A33;
  --border-2: #38383F;

  --text: #F5F5F7;
  --text-2: #C9C9D1;
  --text-3: #9CA0AB;

  --primary: #E63B4D;
  --primary-2: #B71F2E;
  --primary-soft: rgba(230, 59, 77, .15);
  --primary-glow: rgba(230, 59, 77, .55);

  --whatsapp: #25d366;
  --whatsapp-2: #128c4e;

  --gold: #F5C56C;

  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;

  --shadow-1: 0 10px 30px -10px rgba(0, 0, 0, .65);
  --shadow-2: 0 20px 60px -20px rgba(230, 59, 77, .35);
  --shadow-glow: 0 0 0 1px rgba(230, 59, 77, .35), 0 20px 60px -20px rgba(230, 59, 77, .55);

  --container: 1200px;
  --gap: clamp(16px, 2.4vw, 28px);

  --font-ar: "SF Arabic", "Tajawal", "Cairo", "Almarai", "Segoe UI Arabic",
             "Helvetica Neue", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ar);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 90% -10%, rgba(230, 59, 77, .14), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(230, 59, 77, .08), transparent 55%),
    linear-gradient(180deg, #0E0E12 0%, #08080B 100%);
  background-attachment: fixed;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 6px; }

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

.skip-link {
  position: absolute; inset-inline-start: -9999px; top: 8px;
  background: var(--primary); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 1000;
}
.skip-link:focus { inset-inline-start: 8px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(16px, 3vw, 28px); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 14, 18, .72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(14, 14, 18, .92);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 14px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  color: var(--primary);
  background: linear-gradient(160deg, rgba(230, 59, 77, .18), rgba(230, 59, 77, .04));
  border: 1px solid var(--border-2);
  border-radius: 12px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 19px; font-weight: 800; letter-spacing: .2px; }
.brand-text span { font-size: 12px; color: var(--text-3); }

.nav { display: flex; align-items: center; gap: 18px; }
.nav-list {
  display: flex; align-items: center; gap: 6px;
}
.nav-list a {
  display: inline-block;
  padding: 10px 14px;
  color: var(--text-2);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}
.nav-list a:hover { color: var(--text); background: rgba(255, 255, 255, .04); }

.header-call { font-weight: 800; letter-spacing: .3px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: #fff;
  --btn-border: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 18px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-border);
  border-radius: 12px;
  font-weight: 700; font-size: 15px;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease, filter .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 10px 28px -10px var(--primary-glow);
}
.btn-primary:hover { box-shadow: 0 16px 36px -10px var(--primary-glow); }

.btn-whatsapp {
  background: linear-gradient(135deg, #2cd96b 0%, var(--whatsapp-2) 100%);
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(37, 211, 102, .55);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .04); }

.btn-call {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  box-shadow: 0 10px 28px -10px var(--primary-glow);
}

.btn-xl { padding: 16px 24px; font-size: 17px; border-radius: 14px; }
.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 110px) 0 clamp(40px, 7vw, 90px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero-bg .orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
}
.hero-bg .orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(230, 59, 77, .55), transparent 70%);
  top: -160px; inset-inline-start: -120px;
}
.hero-bg .orb-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(245, 197, 108, .25), transparent 70%);
  bottom: -200px; inset-inline-end: -80px;
}
.hero-bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, #000 30%, transparent 75%);
}

.hero-inner {
  display: grid; grid-template-columns: 1.2fr .9fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border-2);
  background: rgba(230, 59, 77, .10);
  color: var(--text-2);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2cd96b;
  box-shadow: 0 0 0 4px rgba(44, 217, 107, .2);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(44, 217, 107, .2); }
  50% { box-shadow: 0 0 0 8px rgba(44, 217, 107, 0); }
}

.hero-content h1 {
  margin-top: 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.5px;
}
.h1-top {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #f3d9a3 55%, var(--primary) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.h1-sub {
  display: block;
  margin-top: 10px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: var(--text-2);
}

.lead {
  margin-top: 18px;
  color: var(--text-2);
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 60ch;
}
.lead strong { color: #fff; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 28px;
}
.hero-cta .btn span { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.hero-cta .phone-num { font-weight: 900; letter-spacing: 1px; font-size: 18px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  margin-top: 28px;
}
.hero-badges li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 13px; font-weight: 600;
}

/* Hero card */
.hero-card {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(230, 59, 77, .25), transparent 60%),
    linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-2);
  position: relative; isolation: isolate;
}
.hero-card::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(230, 59, 77, .6), rgba(245, 197, 108, .15), rgba(230, 59, 77, .3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.hero-card-image {
  position: relative;
  margin: -8px -8px 18px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-2);
  box-shadow: 0 12px 36px -16px rgba(0, 0, 0, .6);
}
.hero-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.hero-card:hover .hero-card-image img { transform: scale(1.04); }
.hero-card-image-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 14, 18, 0) 30%, rgba(14, 14, 18, .75) 100%),
    linear-gradient(135deg, rgba(230, 59, 77, .15), transparent 55%);
  pointer-events: none;
}
.hero-card-tag {
  position: absolute; bottom: 12px; inset-inline-start: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(14, 14, 18, .65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
  color: #fff;
}

.hero-card-top {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-2); font-size: 13px; font-weight: 600;
}
.ping {
  position: relative;
  width: 10px; height: 10px; border-radius: 50%; background: #2cd96b;
}
.ping::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(44, 217, 107, .35);
  animation: ping 1.5s infinite ease-out;
}
@keyframes ping {
  0% { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.hero-phone {
  display: block; margin-top: 12px;
  text-align: center;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(230, 59, 77, .18), rgba(245, 197, 108, .06));
  border: 1px dashed var(--border-2);
}
.hero-phone-label { display: block; font-size: 13px; color: var(--text-3); margin-bottom: 6px; }
.hero-phone-num {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  direction: ltr;
  font-feature-settings: "tnum" 1;
}

.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.mini-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px; border-radius: 12px;
  font-weight: 800; font-size: 15px;
  transition: transform .15s ease, filter .2s ease;
}
.mini-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.mini-call { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; }
.mini-wa { background: linear-gradient(135deg, #2cd96b, var(--whatsapp-2)); color: #fff; }

.hero-card-list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.hero-card-list li {
  position: relative; padding-inline-start: 22px;
  color: var(--text-2); font-size: 14.5px;
}
.hero-card-list li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 11px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 4px rgba(230, 59, 77, .18);
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(56px, 8vw, 110px) 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, rgba(24, 24, 31, .55), rgba(14, 14, 18, 0));
  border-block: 1px solid var(--border);
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(30px, 5vw, 56px);
}
.kicker {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary-soft);
  color: #ffb1bb;
  border: 1px solid rgba(230, 59, 77, .30);
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section h2 strong { color: var(--primary); }
.section-head p {
  color: var(--text-2);
  font-size: clamp(15px, 1.4vw, 17px);
}

/* ============ GRIDS ============ */
.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============ CARDS ============ */
.card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card::after {
  content: ""; position: absolute; inset-inline-end: -60px; top: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(230, 59, 77, .25), transparent 70%);
  opacity: 0; transition: opacity .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .5), 0 0 0 1px rgba(230, 59, 77, .25);
}
.card:hover::after { opacity: 1; }
.card-icon {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(230, 59, 77, .2), rgba(230, 59, 77, .04));
  border: 1px solid var(--border-2);
  color: var(--primary);
  margin-bottom: 18px;
}
.card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.card p { color: var(--text-2); font-size: 15px; }
.card-link {
  display: inline-block; margin-top: 16px;
  font-weight: 700; color: var(--primary);
  transition: color .2s ease, transform .2s ease;
}
.card-link:hover { color: #ff8090; transform: translateX(-3px); }

/* ============ SPLIT (hydraulic, inside) ============ */
.split {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.split-reverse { direction: ltr; }
.split-reverse > * { direction: rtl; }
.split-content .kicker { margin-bottom: 16px; }
.split-content h2 { margin-bottom: 16px; }
.split-content > p { color: var(--text-2); margin-bottom: 22px; }
.split-content > p strong { color: #fff; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.check-list li {
  position: relative; padding-inline-start: 32px;
  color: var(--text-2); font-size: 15.5px; line-height: 1.7;
}
.check-list li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 7px;
  width: 18px; height: 18px; border-radius: 50%;
  background:
    linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 4px rgba(230, 59, 77, .15);
}
.check-list li::after {
  content: ""; position: absolute; inset-inline-start: 5px; top: 10px;
  width: 8px; height: 5px;
  border-inline-start: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.split-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.split-visual { display: grid; gap: 14px; }
.visual-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-2);
}
.visual-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-2);
}
.visual-row:last-of-type { border-bottom: 0; margin-bottom: 16px; }
.visual-row strong { color: #fff; font-weight: 800; }

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-2);
  margin-bottom: 16px;
  aspect-ratio: 4 / 3;
  isolation: isolate;
}
.split-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.split-image:hover img { transform: scale(1.04); }
.split-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0) 50%, rgba(14, 14, 18, .85) 100%);
  pointer-events: none;
}
.split-image figcaption {
  position: absolute; bottom: 0; inset-inline: 0;
  padding: 16px 20px;
  color: #fff;
  font-size: 14px; font-weight: 700;
  z-index: 2;
}
.split-image figcaption::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
  margin-inline-end: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(230, 59, 77, .25);
}

/* Stats */
.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.stat {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}
.stat:hover { transform: translateY(-3px); border-color: rgba(230, 59, 77, .4); }
.stat strong {
  display: block; font-size: clamp(28px, 4vw, 40px); font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat span { color: var(--text-3); font-size: 14px; }

/* ============ ROUTES ============ */
.routes { gap: 16px; }
.route {
  display: block;
  padding: 24px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.route::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230, 59, 77, .15), transparent 60%);
  opacity: 0; transition: opacity .25s ease;
}
.route:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px -15px var(--primary-glow);
}
.route:hover::before { opacity: 1; }
.route h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; position: relative; }
.route p { color: var(--text-3); font-size: 14px; margin-bottom: 14px; position: relative; }
.route-cta {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary-soft);
  border: 1px solid rgba(230, 59, 77, .30);
  color: #ffb1bb;
  border-radius: 999px;
  font-size: 13px; font-weight: 700; position: relative;
}

/* ============ AREAS ============ */
.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
.areas-col {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.areas-col h3 {
  font-size: 19px; font-weight: 800; margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.areas-col h3::before {
  content: ""; width: 8px; height: 8px; background: var(--primary); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 59, 77, .2);
}
.areas-col ul {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px;
}
.areas-col li {
  position: relative; padding-inline-start: 18px;
  color: var(--text-2); font-size: 14.5px;
}
.areas-col li::before {
  content: "•"; position: absolute; inset-inline-start: 4px;
  color: var(--primary);
}

/* ============ FEATURES ============ */
.feature {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-2); }
.feature-num {
  font-size: 36px; font-weight: 900; line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--primary), rgba(245, 197, 108, .35));
  -webkit-background-clip: text; background-clip: text;
  margin-bottom: 16px;
}
.feature h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.feature p { color: var(--text-2); font-size: 14.5px; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  padding: clamp(20px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(24, 24, 31, .35), transparent);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease;
}
.trust-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-2);
}
.trust-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(230, 59, 77, .18), rgba(245, 197, 108, .08));
  border: 1px solid var(--border-2);
  border-radius: 11px;
  color: var(--primary);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.trust-item span {
  display: block;
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ============ GUIDE (Long-form content) ============ */
.guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.5vw, 28px);
}
.guide article {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color .25s ease, transform .25s ease;
}
.guide article:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.guide h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  color: var(--text);
}
.guide h3::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(230, 59, 77, .2);
  flex-shrink: 0;
}
.guide p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.9;
}

/* ============ REVIEWS / TESTIMONIALS ============ */
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 18px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 14px;
}
.reviews-badge svg {
  flex-shrink: 0;
}
.reviews-badge strong {
  font-weight: 800;
  color: var(--text);
  letter-spacing: .2px;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 36px);
}
.reviews-google-btn {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border-color: var(--border-2);
  color: var(--text);
  font-weight: 800;
  gap: 12px;
}
.reviews-google-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 14px 36px -16px var(--primary-glow);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.review-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.review-card::before {
  content: "❝";
  position: absolute;
  top: 6px;
  inset-inline-end: 20px;
  font-size: 80px;
  line-height: 1;
  color: var(--primary);
  opacity: .12;
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
  box-shadow: 0 18px 40px -20px rgba(230, 59, 77, .25);
}
.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
}
.stars-row {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  direction: ltr;
  line-height: 1;
}
.stars-row--partial {
  background-image: linear-gradient(to right, var(--gold) 0%, var(--gold) 96%, rgba(245, 197, 108, .30) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.rating-score {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-2);
  letter-spacing: 0;
  padding: 3px 10px;
  background: rgba(245, 197, 108, .10);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  direction: ltr;
  line-height: 1.2;
}
.review-text {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 22px;
  position: relative;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  position: relative;
}
.review-avatar {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.review-author span {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 1px;
}

/* ============ GALLERY ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 18px 40px -18px var(--primary-glow);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease, filter .4s ease;
  filter: saturate(.95) brightness(.96);
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 22, 0) 45%, rgba(7, 11, 22, .9) 100%);
  pointer-events: none;
  z-index: 1;
}
.gallery-cap {
  position: absolute; bottom: 12px; inset-inline-start: 14px;
  color: #fff;
  font-size: 14px; font-weight: 800;
  letter-spacing: .2px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}
.gallery-cap::before {
  content: ""; width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 59, 77, .35);
}
.gi-tall { grid-row: span 2; }

/* ============ FAQ ============ */
.faq {
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq details {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq details[open] {
  border-color: rgba(230, 59, 77, .45);
  box-shadow: 0 15px 40px -20px rgba(230, 59, 77, .35);
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  font-weight: 800; font-size: 16.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: 0 0 32px;
  width: 32px; height: 32px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 22px; font-weight: 900; line-height: 1;
  transition: transform .25s ease, background .25s ease;
}
.faq details[open] summary::after {
  content: "−";
  background: var(--primary); color: #fff;
}
.faq details p {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.85;
}
.faq details p a { color: var(--primary); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

/* ============ MAP ============ */
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-1);
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(.85);
}
.map-overlay {
  position: absolute; inset-block: 0; inset-inline-start: 0;
  width: min(420px, 90%);
  background: linear-gradient(160deg, rgba(24, 24, 31, .92), rgba(14, 14, 18, .9));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-inline-end: 1px solid var(--border-2);
  padding: clamp(24px, 4vw, 36px);
  display: flex; flex-direction: column; justify-content: center;
}
.map-overlay h3 { font-size: 24px; font-weight: 900; margin-bottom: 8px; }
.map-overlay p { color: var(--text-2); margin-bottom: 20px; }
.map-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  margin: clamp(40px, 6vw, 80px) 0;
}
.cta-inner {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(230, 59, 77, .35), transparent 60%),
    linear-gradient(135deg, #1A0A12 0%, #100808 100%);
  border: 1px solid var(--border-2);
  padding: clamp(28px, 5vw, 60px);
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, #000, transparent 80%);
  pointer-events: none;
}
.cta-inner h2 { font-size: clamp(24px, 3.4vw, 36px); font-weight: 900; margin-bottom: 8px; }
.cta-inner p { color: var(--text-2); font-size: 16px; }
.cta-inner p bdi { color: #fff; font-weight: 900; letter-spacing: 1px; direction: ltr; display: inline-block; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }

/* ============ FOOTER ============ */
.site-footer {
  background: linear-gradient(180deg, #0A0A0D 0%, #050507 100%);
  border-top: 1px solid var(--border);
  padding-top: clamp(48px, 6vw, 80px);
  margin-top: 40px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.4fr .8fr .9fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(32px, 4vw, 56px);
}
.footer-col h3 {
  font-size: 16px; font-weight: 800; margin-bottom: 16px;
  color: #fff;
  position: relative; padding-bottom: 10px;
}
.footer-col h3::after {
  content: ""; position: absolute; bottom: 0; inset-inline-start: 0;
  width: 32px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-col p { color: var(--text-2); font-size: 14.5px; margin-top: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--text-2); font-size: 14.5px;
  transition: color .2s ease, transform .2s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col ul a:hover { color: var(--primary); transform: translateX(-3px); }
.contact-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-2); font-size: 14.5px;
}
.contact-list li a { color: var(--text-2); }
.contact-list bdi { direction: ltr; font-weight: 800; color: #fff; letter-spacing: 1px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(230, 59, 77, .10);
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p { color: var(--text-3); font-size: 13.5px; }

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed; bottom: 18px; inset-inline-end: 18px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 40;
}
.float {
  position: relative;
  display: inline-grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, .6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float:hover { transform: translateY(-3px) scale(1.05); }
.float-wa { background: linear-gradient(135deg, #2cd96b, var(--whatsapp-2)); }
.float-call { background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.float::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid currentColor; opacity: .35;
  animation: float-ping 2s infinite;
}
@keyframes float-ping {
  0% { transform: scale(.85); opacity: .55; }
  100% { transform: scale(1.25); opacity: 0; }
}
.float-label {
  position: absolute; inset-inline-end: calc(100% + 10px); top: 50%; transform: translateY(-50%);
  background: var(--surface-2); color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-2);
  font-size: 13px; font-weight: 700;
  white-space: nowrap; opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.float:hover .float-label { opacity: 1; transform: translateY(-50%) translateX(-4px); }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; margin-inline: auto; width: 100%; }
  .split, .cta-inner { grid-template-columns: 1fr; }
  .cta-buttons { justify-content: flex-start; }
  .map-overlay { position: static; width: 100%; border-inline-end: 0; border-bottom: 1px solid var(--border-2); }
  .map-wrap { grid-template-rows: auto 1fr; min-height: 0; }
  .map-wrap iframe { min-height: 360px; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .guide { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; order: 2; }
  .header-call { display: none; }
  .nav-list {
    position: fixed; inset-block-start: 72px; inset-inline-start: 0;
    width: 100%;
    flex-direction: column; align-items: stretch;
    background: rgba(14, 14, 18, .98);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    padding: 14px;
    gap: 4px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-list.is-open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .nav-list a {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .nav-list li:last-child a { border-bottom: 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .areas-col ul { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { flex: 1 1 100%; }
  .float { width: 54px; height: 54px; }
  .floating-cta { bottom: 14px; inset-inline-end: 14px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gi-tall { grid-row: span 1; }
  .split-image { aspect-ratio: 16 / 11; }
  .trust-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 20px; }
  .guide article { padding: 24px 20px; }
}

@media (max-width: 420px) {
  .hero-phone-num { font-size: 32px; letter-spacing: 1px; }
  .header-inner { padding-block: 12px; }
  .brand-text strong { font-size: 17px; }
}
