/* ===========================================================
   Handy Service · Mariendorfer Damm — Demo Website
   Repair-shop identity · signage style (black + hot pink)
   =========================================================== */

:root {
  --ink: #111114;
  --ink-2: #1b1b20;
  --bg: #ffffff;
  --soft: #f4f4f6;
  --soft-2: #ececef;
  --line: #e4e4e8;
  --muted: #6c6c75;
  --pink: #ff1f8e;
  --pink-dark: #e10b78;
  --pink-soft: #ffe6f2;
  --yellow: #ffd23f;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 6px rgba(17,17,20,0.06), 0 14px 30px -20px rgba(17,17,20,0.25);
  --shadow: 0 30px 70px -34px rgba(17,17,20,0.5);
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

h1, h2, h3, .brand-text strong {
  font-family: "Oswald", "Inter", sans-serif; font-weight: 600;
  line-height: 1.04; letter-spacing: 0.01em; text-transform: uppercase;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.eyebrow {
  display: inline-block; font-family: "Oswald", sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 12px;
}

/* ---------- Utility bar ---------- */
.utilbar { background: var(--ink); color: #d9d9df; font-size: 0.8rem; }
.utilbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 8px clamp(16px, 4vw, 40px);
  display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; justify-content: center;
}
.util-strong { color: var(--yellow); font-weight: 600; }
a.util-item { color: #d9d9df; text-decoration: none; }
a.util-item:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; background: var(--ink); box-shadow: 0 0 0 2px var(--pink); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-size: 1.3rem; font-weight: 700; letter-spacing: 0.02em; line-height: 1; }
.brand-name .wt { color: #ffffff; font-size: 1.45em; line-height: 0.9; }
.brand-name .pk { color: var(--pink); }
/* 3D extruded sign look + black outline */
.brand-name {
  -webkit-text-stroke: 1.2px #0a0a0c;
  text-shadow:
    1px 1px 0 #0a0a0c,
    2px 2px 0 rgba(10, 10, 12, 0.85),
    3px 3px 0 rgba(10, 10, 12, 0.7),
    4px 4px 0 rgba(10, 10, 12, 0.5),
    5px 7px 8px rgba(0, 0, 0, 0.45);
  paint-order: stroke fill;
}
.brand-text small { font-family: "Inter"; color: var(--muted); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

.nav { display: flex; gap: 2px; }
.nav a { padding: 9px 13px; border-radius: 9px; color: var(--ink); font-size: 0.92rem; font-weight: 500;
  transition: color 0.2s, background 0.2s; }
.nav a:hover { color: var(--pink); background: var(--pink-soft); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 0.03em;
  color: var(--ink); white-space: nowrap; }
.header-phone:hover { color: var(--pink); }
@media (max-width: 1024px) { .header-phone { display: none; } }

/* Language control */
.lang-toggle { position: relative; display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--line); background: var(--soft); padding: 3px; border-radius: 999px; }
.lang-toggle button { position: relative; z-index: 2; cursor: pointer; border: 0; background: none;
  color: var(--muted); padding: 6px 10px; border-radius: 999px; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.04em; font-family: "Inter"; transition: color 0.25s; }
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button.active { color: #fff; }
.lang-glider { position: absolute; z-index: 1; top: 3px; bottom: 3px; left: 0; width: 0; border-radius: 999px;
  background: var(--pink); transition: transform 0.3s var(--ease), width 0.3s var(--ease); }

/* Bilingual stacked text */
.bi { display: block; }
.bi-en { font-family: "Inter"; font-size: 0.8em; font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; margin-top: 1px; font-style: italic; }
.btn .bi, .nav a .bi, .footer-nav a .bi, .util-item .bi { display: inline; }
.btn .bi-en, .nav a .bi-en, .footer-nav a .bi-en { font-size: 0.8em; opacity: 0.7; margin-left: 5px; font-style: normal; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; font-family: "Oswald", sans-serif; font-weight: 600;
  font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 10px 24px -12px var(--pink); }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-glass { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-glass:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-btn span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hero-videos { position: absolute; inset: 0; z-index: 0; pointer-events: auto; cursor: pointer; }
.hero-inner { pointer-events: none; }
.hero-inner a, .hero-inner button { pointer-events: auto; cursor: pointer; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0;
  transition: opacity 0.9s var(--ease); }
.hero-video.is-active { opacity: 1; }
.hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17,17,20,0.55) 0%, rgba(17,17,20,0.42) 45%, rgba(17,17,20,0.66) 100%),
    radial-gradient(700px 460px at 88% -10%, rgba(255,31,142,0.34), transparent 60%),
    radial-gradient(560px 380px at 0% 120%, rgba(255,31,142,0.18), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(80px, 12vw, 150px) clamp(16px, 4vw, 40px) clamp(70px, 9vw, 120px);
  display: grid; grid-template-columns: 1fr; }
.hero-copy { max-width: 680px; }

.tag-flash { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--pink); color: #fff; font-family: "Oswald"; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 700; margin-bottom: 20px; }
.hero-title .hl { color: var(--pink); display: block; }
.hero-sub { color: #c8c8d2; font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 520px; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-rating { display: flex; align-items: center; gap: 10px; color: #c8c8d2; font-size: 0.92rem; }
.stars { color: var(--yellow); letter-spacing: 2px; }

/* Quote section + widget — one-screen panel */
.quote-section { background: #fff;
  padding-top: clamp(24px, 3vw, 44px); padding-bottom: clamp(24px, 3vw, 44px); }
.quote-layout { max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 3vw, 40px); align-items: stretch; }
.quote-video { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--ink); }
.quote-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Animated pink diagnosis scene (matches reference design) */
.quote-scene { background: transparent;
  min-height: 360px; overflow: hidden; border: none; box-shadow: none; }

.qs-phone { position: absolute; left: 50%; top: 52%; transform: translate(-50%,-50%);
  width: 56%; max-width: 220px; aspect-ratio: 9/16; border-radius: 26px;
  background: linear-gradient(165deg, #241027, #160712);
  border: 2px solid rgba(255,61,142,0.55);
  box-shadow: 0 0 0 1px rgba(255,61,142,0.18), 0 22px 56px -18px rgba(255,31,142,0.6), inset 0 0 26px rgba(255,31,142,0.1);
  padding: 16px; animation: qsPhoneFloat 6s ease-in-out infinite; }
@keyframes qsPhoneFloat { 0%,100% { transform: translate(-50%,-50%) translateY(0); } 50% { transform: translate(-50%,-50%) translateY(-10px); } }
.qs-phone-notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 36%; height: 7px; border-radius: 999px; background: #0a0208; }
.qs-screen { display: flex; flex-direction: column; gap: 12px; }
.qs-screen-head { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.qs-brand { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.04em; color: #ffd6ec; }
.qs-brand .qs-h, .qs-brand .qs-s { font-size: 1.3em; color: #fff; -webkit-text-stroke: 0.6px #1a0712; }
.qs-live { display: inline-flex; align-items: center; gap: 4px; font-size: 0.56rem; color: #ff8fc4; letter-spacing: 0.08em; }
.qs-live i { width: 6px; height: 6px; border-radius: 50%; background: #ff3d8e; box-shadow: 0 0 8px #ff3d8e; animation: qsBlink 1.4s infinite; }
@keyframes qsBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.qs-diag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,61,142,0.4); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 10px; backdrop-filter: blur(4px); }
.qs-gear { font-size: 1.1rem; color: #ff8fc4; animation: qsSpin 9s linear infinite; }
.qs-screw { display: inline-block; animation: qsSpin 3.5s linear infinite; filter: drop-shadow(0 0 6px rgba(255,61,142,0.8)); }
@keyframes qsSpin { to { transform: rotate(360deg); } }
.qs-diag-t { font-family: "Inter"; font-size: 0.74rem; color: #ffe3f1; }
.qs-progress { height: 7px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; }
.qs-progress i { display: block; height: 100%; width: 100%; border-radius: 999px;
  background: linear-gradient(90deg, #ff3d8e, #ff8fc4, #ffc9e3); box-shadow: 0 0 10px rgba(255,61,142,0.7);
  transform-origin: left; animation: qsFill 3s ease-in-out infinite; }
@keyframes qsFill { 0% { transform: scaleX(0.15); } 50% { transform: scaleX(1); } 100% { transform: scaleX(0.15); } }
.qs-status { list-style: none; display: grid; gap: 7px; }
.qs-status li { display: flex; justify-content: space-between; font-family: "Inter"; font-size: 0.72rem; color: #ffd6ec; }
.qs-status .ok { color: #ff8fc4; font-weight: 700; }

.qs-tag { position: absolute; padding: 9px 13px; border-radius: 14px; font-family: "Oswald", sans-serif; font-weight: 600; font-size: 0.78rem; color: #fff;
  background: linear-gradient(150deg, rgba(255,61,142,0.92), rgba(255,143,196,0.85));
  border: 1px solid rgba(255,255,255,0.35); box-shadow: 0 12px 28px -10px rgba(255,31,142,0.7);
  display: flex; align-items: center; gap: 8px; white-space: nowrap; backdrop-filter: blur(4px); }
.qs-tag-ic { width: 12px; height: 9px; border-radius: 2px; background: #ffe3f1; box-shadow: 0 0 6px rgba(255,255,255,0.6); }
.qs-tag-ic-bat { width: 14px; height: 8px; border-radius: 2px; }
.qs-tag-ic-star { width: 12px; height: 12px; border-radius: 50%; background: #ffe3f1; clip-path: polygon(50% 0,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.qs-tag-1 { top: 10%; left: 4%; animation: qsTagA 5.5s ease-in-out infinite; }
.qs-tag-2 { bottom: 16%; left: 6%; animation: qsTagB 6.5s ease-in-out infinite; }
.qs-tag-3 { bottom: 10%; right: 6%; animation: qsTagC 7s ease-in-out infinite; }
@keyframes qsTagA { 0%,100% { transform: translate(0,0) rotate(-3deg); } 50% { transform: translate(8px,12px) rotate(2deg); } }
@keyframes qsTagB { 0%,100% { transform: translate(0,0) rotate(2deg); } 50% { transform: translate(10px,-10px) rotate(-3deg); } }
@keyframes qsTagC { 0%,100% { transform: translate(0,0) rotate(3deg); } 50% { transform: translate(-10px,-12px) rotate(-2deg); } }

.qs-badge { position: absolute; top: 8%; right: 5%; width: 82px; height: 82px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 40%, #ff8fc4, #ff3d8e 70%);
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 0 0 4px rgba(255,61,142,0.18), 0 0 26px rgba(255,61,142,0.85);
  animation: qsBadge 4s ease-in-out infinite; }
@keyframes qsBadge { 0%,100% { transform: scale(1) rotate(-4deg); } 50% { transform: scale(1.08) rotate(4deg); } }
.qs-badge-num { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1.8rem; color: #fff; line-height: 1; }
.qs-badge-txt { font-family: "Oswald", sans-serif; font-size: 0.5rem; letter-spacing: 0.12em; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .qs-phone, .qs-tag, .qs-badge, .qs-progress i, .qs-gear, .qs-live i { animation: none; }
}

.quote-card { background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; width: 100%; box-shadow: var(--shadow-sm); }
.quote-head { background: var(--soft); padding: 16px 22px 12px; border-bottom: 1px solid var(--line); }
.quote-head h2 { font-size: 1.3rem; }
.quote-head p { color: var(--muted); font-size: 0.86rem; margin-top: 3px; }
.quote-body { padding: 16px 22px 18px; display: grid; gap: 11px; }
.field { display: grid; gap: 5px; }
.field > span { font-family: "Oswald"; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.field select { appearance: none; -webkit-appearance: none; width: 100%; padding: 10px 38px 10px 13px;
  border: 2px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); font-size: 0.95rem;
  font-family: "Inter"; cursor: pointer; transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23111114' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; }
.field select:focus { outline: none; border-color: var(--pink); }
.quote-result { background: var(--pink-soft); border: 1px solid #ffc9e3; border-radius: 12px; padding: 12px 16px; }
.quote-result .qr-line { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.quote-result .qr-label { font-size: 0.84rem; color: var(--muted); }
.quote-result .qr-price { font-family: "Oswald"; font-weight: 700; font-size: 1.6rem; color: var(--pink-dark); }
.quote-result .qr-meta { margin-top: 4px; font-size: 0.84rem; color: var(--ink); }
.quote-note { font-size: 0.74rem; color: var(--muted); text-align: center; }
.quote-section .btn-block { padding-top: 12px; padding-bottom: 12px; }

/* ---------- Trust strip ---------- */
.trust { max-width: var(--maxw); margin: -34px auto 0; position: relative; z-index: 2;
  padding: 0 clamp(16px, 4vw, 40px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-item { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 22px 16px; text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.trust-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.trust-ic { display: block; line-height: 0; margin: 0 auto 8px; color: var(--pink); }
.trust-ic svg { display: inline-block; }
.trust-item strong { display: block; font-family: "Oswald"; font-weight: 700; font-size: 1.9rem; color: var(--ink); line-height: 1; }
.trust-item span { display: block; margin-top: 4px; font-size: 0.82rem; color: var(--muted);
  font-family: "Oswald"; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

/* Warranty stat — emphasised, pink card with shield */
.trust-warranty { background: linear-gradient(160deg, var(--pink), var(--pink-dark)); border-color: transparent;
  color: #fff; box-shadow: 0 18px 36px -14px var(--pink); }
.trust-warranty .trust-ic { color: #fff; }
.trust-warranty .trust-ic svg { filter: drop-shadow(0 3px 5px rgba(0,0,0,0.25)); }
.trust-warranty strong { color: #fff; font-size: 2.4rem; }
.trust-warranty span { color: rgba(255,255,255,0.92); }

/* ---------- Sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(54px, 8vw, 96px) clamp(16px, 4vw, 40px); }
.section-soft { max-width: none; background: var(--soft); }
.section-dark { max-width: none; background: var(--ink); color: #fff; }
.section-soft > *, .section-dark > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* Section with a fixed background video (keeps the section's own size) */
.section.has-video { position: relative; overflow: hidden; }
.section.has-video > .section-media { position: absolute; inset: 0; z-index: 0; max-width: none; margin: 0; pointer-events: none; }
.section.has-video > .section-media video { width: 100%; height: 100%; object-fit: cover; }
#process .section-media video { filter: brightness(1.15); }
.section.has-video > .section-media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,20,0.68), rgba(17,17,20,0.62)); }
.section.has-video > *:not(.section-media) { position: relative; z-index: 1; }
.section-dark .eyebrow { color: var(--pink); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(32px, 5vw, 52px); }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 12px; }
.section-head p { font-family: "Inter"; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 1.04rem; }
.section-dark .section-head p { color: #b9b9c4; }

/* ---------- Repair menu ---------- */
.repair-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.repair { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); border-left: 4px solid var(--pink);
  transition: transform 0.2s var(--ease), box-shadow 0.2s; }
.repair:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.repair-ic { flex: none; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 12px;
  background: var(--ink); color: var(--pink); }
.repair-text { flex: 1; min-width: 0; }
.repair-text h3 { font-size: 1.12rem; }
.repair-text p { font-family: "Inter"; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 0.88rem; }
.repair-meta { flex: none; text-align: right; display: grid; gap: 3px; }
.repair-price { font-family: "Oswald"; font-weight: 700; font-size: 1.05rem; color: var(--pink-dark); }
.repair-time { font-size: 0.78rem; color: var(--muted); }

.price-note { margin: 22px auto 0; width: fit-content; max-width: 100%; display: flex; align-items: center; gap: 9px;
  padding: 10px 20px; border-radius: 999px; background: var(--pink-soft); border: 1px solid #ffc9e3;
  color: var(--pink-dark); font-weight: 600; font-size: 0.95rem; }
.price-note svg { flex: none; }
.brands { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 22px; }
.brands span { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.brands b { font-family: "Oswald"; font-weight: 600; font-size: 1.1rem; color: var(--ink); opacity: 0.55; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { padding: 28px 24px; background: rgba(17, 17, 20, 0.34); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius); }
.step-num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink); color: #fff; font-family: "Oswald"; font-weight: 700; font-size: 1.3rem; margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); }
.step p { font-family: "Inter"; text-transform: none; letter-spacing: 0; color: #eaeaf0; font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); max-height: 520px; background: var(--ink); }
.about-media video { width: 100%; height: 100%; min-height: 280px; max-height: 520px; display: block; object-fit: cover; }
.about-media img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); max-height: 520px; object-fit: cover; }
.about-pin { position: absolute; left: 16px; bottom: 16px; background: var(--ink); color: #fff; font-size: 0.84rem;
  font-weight: 500; padding: 9px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.about-copy { perspective: 1100px; }
.about-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--pink);
  border-radius: var(--radius-lg); padding: clamp(22px, 3.2vw, 34px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 2px 6px rgba(17,17,20,0.05),
    0 16px 36px -12px rgba(17,17,20,0.14),
    0 32px 64px -28px rgba(255,31,142,0.18);
  transform: perspective(1100px) rotateY(-2.5deg) rotateX(1.2deg) translateZ(0);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.about-card:hover, .about-card:focus-within {
  transform: perspective(1100px) rotateY(0deg) rotateX(0deg) translateZ(8px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 4px 10px rgba(17,17,20,0.07),
    0 22px 48px -14px rgba(17,17,20,0.18),
    0 40px 80px -32px rgba(255,31,142,0.24); }
.about-card h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 10px 0 16px; }
.about-card > p { font-family: "Inter"; text-transform: none; letter-spacing: 0; color: var(--muted); margin-bottom: 18px; }
.about-list { list-style: none; display: grid; gap: 10px; margin-bottom: 18px; }
.about-list li { position: relative; padding-left: 30px; font-size: 0.96rem; }
.about-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px;
  display: grid; place-items: center; border-radius: 50%; background: var(--pink-soft); color: var(--pink-dark); font-size: 0.74rem; font-weight: 700; }
.legal-note { font-family: "Inter"; text-transform: none; letter-spacing: 0; font-size: 0.82rem; color: var(--muted);
  padding: 11px 14px; border-radius: 10px; background: var(--soft); border-left: 3px solid var(--pink); margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .about-card { transform: none; transition: none; }
  .about-card:hover, .about-card:focus-within { transform: none; }
}

/* ---------- Reviews ---------- */
/* Reviews summary bar */
.reviews-summary { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 18px clamp(18px, 3vw, 30px); box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.rs-left { display: flex; align-items: center; gap: 16px; }
.rs-score { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 3rem; line-height: 1; color: var(--ink); }
.rs-meta { display: grid; gap: 4px; }
.rs-meta .stars { font-size: 1.2rem; }
.rs-count { font-size: 0.9rem; color: var(--muted); }
.rs-google { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem;
  padding: 11px 18px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease); }
.rs-google:hover { border-color: var(--pink); box-shadow: var(--shadow-sm); transform: translateY(-1px); }

/* Reviews moving "train" / marquee */
.reviews-marquee { position: relative; overflow: hidden; direction: ltr;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.reviews { display: flex; flex-wrap: nowrap; width: max-content; gap: 0;
  animation: reviews-scroll 55s linear infinite; will-change: transform; }
.reviews:hover { animation-play-state: paused; }
@keyframes reviews-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.review { position: relative; flex: 0 0 330px; width: 330px; margin-inline-end: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
body.lang-ar .review blockquote { direction: rtl; text-align: right; }
body.lang-ar .review figcaption { flex-direction: row-reverse; justify-content: flex-end; }
.review-g { position: absolute; top: 20px; right: 22px; opacity: 0.95; }
[dir="rtl"] .review-g { right: auto; left: 22px; }
.review .stars { font-size: 1.05rem; }
.review blockquote { font-family: "Inter"; text-transform: none; letter-spacing: 0; font-size: 1.02rem; line-height: 1.55; margin: 12px 0 18px; color: var(--ink); }
.review figcaption { display: flex; align-items: center; gap: 11px; }
.review-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff;
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1.05rem; }
.review-name { font-size: 0.92rem; color: var(--ink); font-weight: 600; }

/* ---------- Booking form ---------- */
.booking-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(20px, 4vw, 44px); align-items: start; }
.booking-col { display: grid; gap: 16px; align-content: start; }
.booking-aside { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 34px); }
.booking-aside h3 { font-size: 1.3rem; margin-bottom: 16px; }
.booking-points { list-style: none; display: grid; gap: 12px; margin-bottom: 22px; }
.booking-points li { position: relative; padding-left: 28px; font-family: "Inter"; text-transform: none; letter-spacing: 0; font-size: 0.95rem; color: #d9d9df; }
.booking-points li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; display: grid; place-items: center;
  border-radius: 50%; background: var(--pink); color: #fff; font-size: 0.72rem; font-weight: 700; }
.booking-contact { padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); }
.booking-contact span { display: block; font-size: 0.82rem; color: #9a9aa4; margin-bottom: 4px; }
.booking-contact a { font-family: "Oswald"; font-weight: 600; font-size: 1.25rem; color: var(--pink); }

/* Social buttons — separate white area below the black card */
.booking-social {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 14px 16px 16px; box-shadow: var(--shadow-sm);
  text-align: center;
}
.booking-social-label {
  display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 10px;
  letter-spacing: 0.06em; text-transform: uppercase; font-family: "Oswald"; font-weight: 600;
}
.booking-social-row { display: flex; gap: 12px; align-items: center; justify-content: center; }
.soc-btn {
  position: relative; width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; color: #fff; text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.28);
  overflow: hidden;
}
.soc-btn::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(160deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 42%);
}
.soc-btn svg { width: 22px; height: 22px; position: relative; z-index: 1; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.25)); }
.soc-btn:hover { transform: translateY(-3px) scale(1.06); filter: brightness(1.08); }
.soc-btn:active { transform: translateY(-1px) scale(1.02); }
.soc-btn:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

.soc-fb {
  background: linear-gradient(145deg, #4b9bff 0%, #1877F2 48%, #0d5bbd 100%);
  box-shadow: 0 8px 18px rgba(24,119,242,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
}
.soc-fb:hover { box-shadow: 0 12px 26px rgba(24,119,242,0.55), inset 0 1px 0 rgba(255,255,255,0.35); }

.soc-ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 8px 18px rgba(214,36,159,0.42), inset 0 1px 0 rgba(255,255,255,0.3);
}
.soc-ig:hover { box-shadow: 0 12px 26px rgba(214,36,159,0.55), inset 0 1px 0 rgba(255,255,255,0.35); }

.soc-tt {
  background: linear-gradient(145deg, #2a2a2e 0%, #111114 55%, #000 100%);
  box-shadow: 0 8px 18px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08), inset 0 1px 0 rgba(255,255,255,0.2);
}
.soc-tt::after {
  content: ""; position: absolute; width: 22px; height: 22px; border-radius: 4px;
  background: linear-gradient(90deg, #25F4EE, #FE2C55); opacity: 0.35; filter: blur(6px); z-index: 0;
}
.soc-tt:hover { box-shadow: 0 12px 26px rgba(254,44,85,0.35), 0 0 0 1px rgba(37,244,238,0.25), inset 0 1px 0 rgba(255,255,255,0.25); }

html[dir="rtl"] .booking-social-row { flex-direction: row-reverse; justify-content: center; }

.booking-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm); display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form .field > span { font-family: "Oswald"; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); }
.booking-form input, .booking-form textarea, .booking-form select {
  width: 100%; padding: 12px 14px; border: 2px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
  font-family: "Inter"; font-size: 0.98rem; transition: border-color 0.2s; }
.booking-form textarea { resize: vertical; min-height: 84px; }
.booking-form select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23111114' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; }
.booking-form input:focus, .booking-form textarea:focus, .booking-form select:focus { outline: none; border-color: var(--pink); }
.booking-form input:invalid:not(:placeholder-shown) { border-color: #e25555; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { font-family: "Inter"; text-transform: none; letter-spacing: 0; font-size: 0.92rem; min-height: 1.2em; margin: 2px 0; }
.form-status.ok { color: #1a8a4a; font-weight: 600; }
.form-status.err { color: #d63b3b; font-weight: 600; }
.form-status.loading { color: var(--muted); }
.form-legal { font-family: "Inter"; text-transform: none; letter-spacing: 0; font-size: 0.76rem; color: var(--muted); }
.booking-form .btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* Booking section — compact so it fits one screen */
#booking { padding-top: clamp(22px, 3vw, 44px); padding-bottom: clamp(22px, 3vw, 44px); }
#booking .section-head { margin-bottom: clamp(16px, 2.4vw, 26px); }
#booking .section-head h2 { margin-bottom: 8px; }
#booking .section-head p { font-size: 0.98rem; }
#booking .booking-form { gap: 11px; padding: clamp(18px, 2.4vw, 26px); }
#booking .booking-aside { padding: clamp(20px, 2.4vw, 28px); }
#booking .booking-aside h3 { margin-bottom: 12px; }
#booking .booking-points { gap: 9px; margin-bottom: 16px; }
#booking .booking-contact { padding-top: 14px; }
#booking .booking-col { gap: 12px; }
#booking .booking-social { padding: 12px 14px 14px; }
#booking .soc-btn { width: 42px; height: 42px; border-radius: 12px; }
#booking .soc-btn svg { width: 20px; height: 20px; }
#booking .form-row { gap: 12px; }
#booking .booking-form textarea { min-height: 60px; }
#booking .booking-form input, #booking .booking-form textarea, #booking .booking-form select { padding: 10px 13px; }
#booking .form-status { min-height: 0; margin: 0; }

/* ---------- Contact ---------- */
.contact-card { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.contact-info { padding: clamp(28px, 4vw, 46px); }
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 10px 0 24px; }
.contact-list { list-style: none; display: grid; gap: 16px; margin-bottom: 26px; }
.contact-list li { display: flex; gap: 13px; align-items: flex-start; }
.contact-ic { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: var(--soft); }
.contact-list strong { display: block; font-family: "Oswald"; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.04em; }
.contact-list a, .contact-list span { font-family: "Inter"; text-transform: none; letter-spacing: 0; color: var(--muted); }
.contact-list .hours-note { display: block; margin-top: 3px; color: var(--pink-dark); font-weight: 600; font-size: 0.85rem; }
.contact-list a:hover { color: var(--pink); }
.contact-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-map { min-height: 380px; position: relative; background: var(--soft); }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(0.96); }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px; padding: 24px;
  background:
    linear-gradient(rgba(244,244,246,0.92), rgba(244,244,246,0.96)),
    repeating-linear-gradient(45deg, #e9e9ee 0 12px, #f1f1f4 12px 24px); }
.map-consent-ic { font-size: 2rem; }
.map-consent p { font-family: "Inter"; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 0.9rem; max-width: 360px; }
.map-link { font-family: "Inter"; text-transform: none; letter-spacing: 0; font-size: 0.85rem; color: var(--pink-dark); text-decoration: underline; }
.form-legal-link { display: inline-block; font-family: "Inter"; text-transform: none; letter-spacing: 0;
  font-size: 0.76rem; color: var(--pink-dark); text-decoration: underline; margin-top: -4px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d9d9df; padding: 42px clamp(16px, 4vw, 40px) 26px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.brand-light .brand-mark { background: var(--ink); }
.brand-light .brand-name .wt { color: #fff; }
.brand-light .brand-name .pk { color: var(--pink); }
.brand-light .brand-text small { color: #9a9aa4; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; font-size: 0.9rem; }
.footer-contact .footer-owner { color: #fff; font-weight: 600; }
.footer-contact a { color: #c8c8d2; }
.footer-contact a:hover { color: var(--pink); }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-nav a { color: #c8c8d2; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--pink); }
.footer-bottom { max-width: var(--maxw); margin: 24px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: #9a9aa4; font-size: 0.82rem; }
.footer-demo { padding: 3px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); color: var(--pink); }

/* ---------- FAB ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
  display: none; place-items: center; background: var(--pink); color: #fff; box-shadow: 0 14px 30px -10px var(--pink);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.fab:hover { transform: translateY(-2px); }

/* WhatsApp FAB — green 3D rounded tile + white WhatsApp glyph (CSS/SVG only) */
.fab-whatsapp { display: grid; place-items: center; z-index: 91; width: 60px; height: 60px; padding: 0;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(150deg, #37d778 0%, #25d366 46%, #17a94f 100%);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.4) inset,
    0 -5px 10px rgba(0,0,0,0.16) inset,
    0 10px 22px -6px rgba(37,211,102,0.7),
    0 20px 40px -12px rgba(17,17,20,0.28);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); }
.fab-whatsapp::before { content: ""; position: absolute; inset: 5px 9px auto; height: 46%;
  border-radius: 16px 16px 50% 50%; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 100%); }
.fab-whatsapp::after { content: ""; position: absolute; inset: auto 0 0; height: 32%; pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,0.16) 0%, transparent 100%); }
.fab-wa-icon { position: relative; z-index: 1; display: block; overflow: visible; }
.fab-wa-glyph-shadow { fill: rgba(0,0,0,0.22); }
.fab-wa-glyph { fill: #fff;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.6)) drop-shadow(0 2px 4px rgba(0,0,0,0.22)); }
.fab-whatsapp:hover { transform: translateY(-4px) scale(1.05);
  background: linear-gradient(150deg, #3ee082 0%, #25d366 46%, #17a94f 100%);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.45) inset,
    0 -5px 10px rgba(0,0,0,0.14) inset,
    0 14px 28px -6px rgba(37,211,102,0.78),
    0 26px 48px -14px rgba(17,17,20,0.32); }
.fab-whatsapp:active { transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 2px 6px rgba(0,0,0,0.18) inset,
    0 6px 14px -4px rgba(37,211,102,0.55),
    0 12px 24px -8px rgba(17,17,20,0.22); }

@media (prefers-reduced-motion: reduce) {
  .fab-whatsapp:hover, .fab-whatsapp:active { transform: none; }
}

/* ---------- Free-diagnosis popup ---------- */
.promo-pop { position: fixed; left: 20px; bottom: 20px; z-index: 95; width: 320px; max-width: calc(100vw - 40px);
  display: flex; gap: 14px; padding: 18px 18px 18px 16px; border-radius: 18px;
  background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 60px -22px rgba(17,17,20,0.55);
  border-left: 5px solid var(--pink);
  opacity: 0; transform: translateY(20px) scale(0.94); transform-origin: bottom left;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); pointer-events: none; }
.promo-pop.show { opacity: 1; transform: none; pointer-events: auto; }
.promo-pop .promo-ic { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: var(--pink-soft); color: var(--pink-dark); }
.promo-text { display: grid; gap: 4px; }
.promo-text strong { font-family: "Oswald", sans-serif; font-size: 1.05rem; text-transform: none; letter-spacing: 0; color: var(--ink); }
.promo-text > span { font-family: "Inter"; text-transform: none; letter-spacing: 0; font-size: 0.86rem; color: var(--muted); line-height: 1.45; }
.promo-text .btn { margin-top: 8px; padding: 9px 16px; font-size: 0.86rem; }
.promo-close { position: absolute; top: 8px; right: 10px; background: none; border: 0; cursor: pointer;
  font-size: 1.4rem; line-height: 1; color: var(--muted); }
.promo-close:hover { color: var(--ink); }
[dir="rtl"] .promo-pop { left: auto; right: 20px; border-left: 0; border-right: 5px solid var(--pink); transform-origin: bottom right; }
[dir="rtl"] .promo-close { right: auto; left: 10px; }
@media (max-width: 560px) {
  .promo-pop { left: 12px; right: auto; bottom: 12px; width: calc(100vw - 100px); }
  [dir="rtl"] .promo-pop { right: 12px; left: auto; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
/* Tablets & small laptops → collapse nav into a dropdown menu */
@media (max-width: 1024px) {
  .nav { position: fixed; left: 12px; right: 12px; top: var(--nav-top, 104px); width: auto;
    flex-direction: column; gap: 4px; padding: 12px;
    border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-10px); opacity: 0; pointer-events: none; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
    max-height: calc(100vh - 130px); overflow-y: auto; }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 12px 14px; font-size: 1rem; border-radius: 10px; }
  .menu-btn { display: flex; }
  .btn-call span { display: none; }
  .btn-call { padding: 10px 12px; }
  .nav .lang-toggle { width: 100%; justify-content: center; margin-top: 6px; }
}

/* Tablets → stack the two-column layouts */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .about-grid, .contact-card, .booking-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .about-copy { perspective: none; }
  .about-card { transform: none; }
  .about-card:hover, .about-card:focus-within { transform: none; }
  .contact-map { min-height: 300px; }
  .quote-section { min-height: auto; display: block; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-video { order: 2; height: 300px; }
}

/* Phones */
@media (max-width: 720px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
  .repair-list, .steps { grid-template-columns: 1fr; }
  .repair { align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .fab { display: grid; bottom: 84px; }
  .utilbar-inner { justify-content: flex-start; }
  .hero { min-height: 84vh; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Small phones */
@media (max-width: 560px) {
  .brand-name { font-size: 1.15rem; }
  .brand-text small { font-size: 0.62rem; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .review { flex: 0 0 270px; width: 270px; }
  .contact-info { padding: 24px 20px; }
}

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

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-bar { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px clamp(16px, 4vw, 40px); background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); }
.legal-back { display: inline-flex; align-items: center; gap: 7px; font-family: "Oswald", sans-serif; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.86rem; color: var(--ink); }
.legal-back:hover { color: var(--pink); }
.legal-page { max-width: 820px; margin: 0 auto; padding: clamp(28px, 5vw, 64px) clamp(16px, 4vw, 40px) clamp(48px, 8vw, 90px); }
.legal-page h1 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin-bottom: 8px; }
.legal-page .legal-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.legal-page h2 { font-family: "Oswald", sans-serif; font-size: 1.25rem; text-transform: none; letter-spacing: 0;
  margin: 30px 0 10px; }
.legal-page h3 { font-family: "Oswald", sans-serif; font-size: 1.02rem; text-transform: none; letter-spacing: 0; margin: 18px 0 6px; }
.legal-page p, .legal-page li { font-family: "Inter"; text-transform: none; letter-spacing: 0; color: #2a2a30;
  line-height: 1.75; margin-bottom: 10px; }
.legal-page ul { padding-left: 22px; margin-bottom: 12px; }
.legal-page a { color: var(--pink-dark); text-decoration: underline; }
.legal-page .ph { background: #fff3c4; padding: 0 4px; border-radius: 3px; font-style: italic; }
.legal-owner-grid { display: grid; grid-template-columns: 1fr 288px; gap: clamp(20px, 4vw, 44px); align-items: start;
  margin-bottom: 24px; }
.legal-owner-info { min-width: 0; }
.legal-owner { margin: 0; display: flex; flex-direction: column; gap: 10px;
  position: sticky; top: 24px; align-self: start; transform: translateX(20%); }
.legal-owner img { width: 288px; height: 360px; object-fit: cover; object-position: center top;
  border-radius: 16px; border: 4px solid #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 2px 8px rgba(17,17,20,0.08),
    0 18px 40px -16px rgba(17,17,20,0.45),
    0 28px 60px -24px rgba(255,31,142,0.22);
  background: var(--soft); }
.legal-owner figcaption { font-family: "Inter"; font-size: 0.86rem; color: var(--muted); text-align: center; }
@media (max-width: 720px) {
  .legal-owner-grid { grid-template-columns: 1fr; }
  .legal-owner { position: static; align-self: stretch; }
  .legal-owner img { width: 100%; max-width: 336px; height: 408px; margin: 0 auto; }
}

/* ---------- Arabic / RTL ---------- */
body.lang-ar { font-family: "Cairo", "Inter", system-ui, sans-serif; }
body.lang-ar h1, body.lang-ar h2, body.lang-ar h3 {
  font-family: "Cairo", sans-serif; text-transform: none; letter-spacing: 0; line-height: 1.25;
}
/* keep the HANDY SERVICE logo in its original Latin styling */
body.lang-ar .brand-name { font-family: "Oswald", "Inter", sans-serif; text-transform: uppercase; letter-spacing: 0.02em; }
body.lang-ar .eyebrow, body.lang-ar .tag-flash, body.lang-ar .field > span,
body.lang-ar .util-strong { letter-spacing: 0; }

[dir="rtl"] .field select {
  padding: 10px 13px 10px 38px;
  background-position: left 13px center;
}
[dir="rtl"] .btn svg { transform: scaleX(-1); }
[dir="rtl"] .lang-toggle { direction: ltr; }
[dir="rtl"] .quote-result .qr-meta { direction: rtl; }
