/* Nano Fusion — marketing site (RTL, grey palette) */
:root {
  /* مستوحاة من هوية اللوجو: خلفية فحمية + فضي هادئ */
  --bg-deep: #1f1f1f;
  --bg: #252525;
  --surface: #2b2b2b;
  --surface-2: #333333;
  --border: rgba(189, 189, 189, 0.1);
  --border-strong: rgba(189, 189, 189, 0.2);
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --muted-2: #8a8a8a;
  --accent: #d4d4d4;
  --accent-logo: #bdbdbd;
  --accent-soft: rgba(189, 189, 189, 0.1);
  --glow: rgba(189, 189, 189, 0.06);
  /* Brand blue — extracted from promo designs (cobalt/royal) */
  --nb:        #1a56db;
  --nb-2:      #4d86f5;
  --nb-3:      #6ba4ff;
  --nb-soft:   rgba(26, 86, 219, 0.14);
  --nb-glow:   rgba(26, 86, 219, 0.45);
  --radius: 14px;
  --radius-lg: 22px;
  --font: "Cairo", "Tajawal", system-ui, sans-serif;
  --nf-logo-serif: Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

/* Use the logo serif for any "NANO FUSION" wordmark on home */
.bt-name,
#wf-brochure-title,
.wf-brochure__tab,
.wfbr-brand,
.poffer__name,
.psvc__cat-name small {
  font-family: var(--nf-logo-serif) !important;
}

/* Ensure Latin product names render LTR inside RTL pages */
html[dir="rtl"] .bt-name,
html[dir="rtl"] #wf-brochure-title,
html[dir="rtl"] .wf-brochure__tab {
  direction: ltr;
  unicode-bidi: isolate;
}

/* Auto-wrapped brand wordmarks (see main.js) */
.nf-wordmark {
  font-family: var(--nf-logo-serif);
}

/* Latin wordmark polish */
html[lang^="en"] .nf-wordmark,
.nf-wordmark[dir="ltr"] {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  background: var(--accent);
  color: var(--bg-deep);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Top bar */
.top-bar {
  background: linear-gradient(180deg, rgba(24, 24, 27, 0.95), rgba(12, 12, 14, 0.98));
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}

.top-bar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
}

.top-bar__phone,
.top-bar a[href^="tel"] {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  flex-shrink: 0;
}

.top-bar__phone:hover,
.top-bar a[href^="tel"]:hover {
  color: var(--text);
}

.top-bar__booking {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  flex: 1;
  min-width: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(107, 164, 255, 0.22);
  background: rgba(26, 86, 219, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.top-bar__booking-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184, 212, 255, 0.95);
  white-space: nowrap;
  padding-inline-end: 0.15rem;
}

.top-bar__book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.top-bar__book-ico {
  flex-shrink: 0;
  opacity: 0.95;
}

.top-bar__book--service {
  color: #fff;
  background: linear-gradient(135deg, #1a56db 0%, #3b82f6 55%, #2563eb 100%);
  border-color: rgba(147, 197, 253, 0.45);
  box-shadow:
    0 4px 18px rgba(26, 86, 219, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.top-bar__book--service:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 24px rgba(26, 86, 219, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
}

.top-bar__book--maint {
  color: #ecfdf5;
  background: linear-gradient(135deg, #15803d 0%, #22c55e 55%, #16a34a 100%);
  border-color: rgba(134, 239, 172, 0.45);
  box-shadow:
    0 4px 18px rgba(22, 163, 74, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.top-bar__book--maint:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 24px rgba(22, 163, 74, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
}

@media (max-width: 720px) {
  .top-bar__booking-label {
    width: 100%;
    text-align: center;
    padding-inline-end: 0;
  }
}

@media (max-width: 520px) {
  .top-bar .inner {
    justify-content: center;
    row-gap: 0.5rem;
  }

  .top-bar__booking {
    order: 3;
    width: 100%;
    padding: 0.55rem 0.65rem 0.6rem;
    border-top: 1px solid rgba(107, 164, 255, 0.15);
    border-radius: 0 0 10px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.5rem;
    justify-items: stretch;
  }

  .top-bar__booking-label {
    grid-column: 1 / -1;
    margin-bottom: 0.1rem;
  }

  .top-bar__book {
    width: 100%;
    padding: 0.58rem 0.65rem;
    font-size: 0.82rem;
  }

  .top-bar__phone {
    margin-inline-end: auto;
  }

  .lang-switch {
    margin-inline-start: auto;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  font: inherit;
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s;
}

.lang-switch:hover {
  border-color: var(--border-strong);
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(9, 9, 11, 0.72);
  border-bottom: 1px solid var(--border);
}

/* Gap after «بعض خدماتنا» cards before «خدمات المباني» */
/* Buildings section gets a distinct dark surface */
#buildings {
  background: var(--surface);
}

/* About section — deeper dark for contrast */
#about {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  min-width: 0;
  flex: 1;
  text-align: center;
}

.header-brand .logo-img {
  object-position: center;
}

.logo-affiliation {
  margin: 0;
  margin-top: -0.06rem;
  max-width: min(22rem, 92vw);
  font-size: 0.54rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
}

.logo-affiliation__name {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 520px) {
  .header-brand {
    gap: 0.06rem;
  }
  .logo-affiliation {
    max-width: min(19rem, 94vw);
    margin-top: -0.05rem;
    font-size: 0.5rem;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}

.logo-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.logo-link:active {
  transform: translateY(0);
  filter: brightness(1.02);
}

.logo-link img,
.logo-img {
  height: clamp(48px, 6vw, 70px);
  width: auto;
  max-width: min(360px, 78vw);
  object-fit: contain;
  object-position: center inline-start;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: filter 0.3s var(--ease);
}

.logo-link:hover .logo-img {
  /* Keep logo colors original (no blue glow) */
  filter: drop-shadow(0 4px 22px rgba(228, 228, 231, 0.14)) brightness(1.06);
}

/* PNG من ملفك: استغلال الدقة الكاملة على Retina */
.logo-img--raster {
  image-rendering: auto;
}

.logo-img--footer {
  height: clamp(38px, 4vw, 48px);
  max-width: 260px;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  position: relative;
  z-index: 200;
  padding: 0.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-primary a {
  position: relative;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-primary a[aria-current="page"]::after {
  content: "";
  position: absolute;
  inset-inline: 0.65rem;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #4d86f5, transparent);
  opacity: 0.85;
}

.nav-dropdown > button[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-dropdown > button[aria-current="page"] .nav-dropdown__chev {
  opacity: 0.95;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  font: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-dropdown > button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-dropdown-panel {
  position: absolute;
  inset-inline-start: 0;
  top: calc(100% + 6px);
  min-width: 260px;
  padding: 0.5rem;
  background: linear-gradient(180deg, rgba(43, 43, 43, 0.98), rgba(30, 30, 33, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  z-index: 300;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-dropdown-panel a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}

.nav-dropdown-panel a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  transform: translateX(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

@media (max-width: 960px) {
  .nav-primary {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.25rem 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    background: #1e1e21;
    border: none;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.nav-open .nav-primary {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-primary a {
    color: #f5f5f5;
    font-size: 1.1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    display: block;
    background: transparent;
  }

  .nav-primary a:hover,
  .nav-primary a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
  }

  .nav-dropdown > button {
    color: #f5f5f5;
    font-size: 1.1rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    background: transparent;
  }

  .nav-dropdown-panel {
    position: static;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0.35rem;
    margin-inline: 0.5rem;

    /* collapsed by default; open via chevron */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height 0.22s var(--ease), opacity 0.22s var(--ease), visibility 0.22s;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown-panel a {
    color: rgba(245, 245, 245, 0.85);
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 10000;
  }

  .nav-backdrop {
    display: none !important;
  }
}

/* Boost logo contrast on mobile header (iOS) */
@media (max-width: 960px) {
  .site-header .logo-img {
    filter: brightness(1.18) contrast(1.06);
  }
  .site-header {
    z-index: 10000;
  }
}

/* خلفية تغلق القائمة عند الضغط خارجها (جوال) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

body.nav-open .nav-backdrop {
  display: block;
}

@media (min-width: 961px) {
  .nav-backdrop {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════
   SECTION LAYOUT SYSTEM — professional rhythm
══════════════════════════════════════════════ */

/* ── Smart views (turn long scroll into pages) ──
   Only hides DIRECT section children of main (preserves nested sections). */
body[data-view] main > section {
  display: none;
}

/* Standalone pages (e.g., privacy.html): never hide their sections */
body.page-privacy[data-view] main > section {
  display: block !important;
}

/* Home shows hero + video + projects + contact */
body[data-view="home"] #hero,
body[data-view="home"] #brochure-info,
body[data-view="home"] #window-film-brochure,
body[data-view="home"] #video,
body[data-view="home"] #partners,
body[data-view="home"] #offers,
body[data-view="home"] #contact {
  display: block;
}

/* All standalone page-views */
body[data-view="cars"]        #cars        { display: block; }
body[data-view="buildings"]   #buildings   { display: block; }
body[data-view="window-film"] #window-film { display: block; }
body[data-view="about"]       #about       { display: block; }
body[data-view="offers"]      #offers      { display: block; }
body[data-view="pricing"]     #pricing     { display: block; }
body[data-view="gallery"]     #gallery     { display: block; }
body[data-view="contact"]     #contact     { display: block; }
body[data-view="video"]       #video       { display: block; }

/* warranty / faq / tips are NESTED inside #window-film — show the parent */
body[data-view="warranty"] #window-film,
body[data-view="faq"]      #window-film,
body[data-view="tips"]     #window-film { display: block; }

/* Split nested content inside Window Film */
body[data-view="window-film"] #warranty-card,
body[data-view="window-film"] #window-film-faq,
body[data-view="window-film"] #tips-care {
  display: none !important;
}

body[data-view="warranty"] #window-film-faq,
body[data-view="warranty"] #tips-care {
  display: none !important;
}

/* In warranty view, hide Window Film content and show warranty only */
body[data-view="warranty"] #window-film > .container > :not(.window-film-extras) {
  display: none !important;
}

body[data-view="warranty"] #window-film .window-film-extras > :not(#warranty-card) {
  display: none !important;
}

/* In FAQ view, show FAQ only */
body[data-view="faq"] #window-film > .container > :not(.window-film-extras) {
  display: none !important;
}

body[data-view="faq"] #window-film .window-film-extras > :not(#window-film-faq) {
  display: none !important;
}

/* In Tips view, show tips only */
body[data-view="tips"] #window-film > .container > :not(.window-film-extras) {
  display: none !important;
}

body[data-view="tips"] #window-film .window-film-extras > :not(#tips-care) {
  display: none !important;
}

body[data-view="faq"] #warranty-card,
body[data-view="faq"] #tips-care {
  display: none !important;
}

body[data-view="tips"] #warranty-card,
body[data-view="tips"] #window-film-faq {
  display: none !important;
}

/* Smooth page-like transition */
body[data-view] main > section {
  animation: view-in 0.35s var(--ease);
}

@keyframes view-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Consistent padding on every section */
main > section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  position: relative;
}

/* Glowing gradient divider between consecutive sections */
main > section + section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(26, 86, 219, 0.35) 30%,
    rgba(77, 134, 245, 0.55) 50%,
    rgba(26, 86, 219, 0.35) 70%,
    transparent 100%
  );
  pointer-events: none;
}

/* Subtle blue glow bloom at the top of every non-hero section */
main > section:not(.hero)::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 120px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(26, 86, 219, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure section content sits above pseudo elements */
main > section > .container,
main > section > * {
  position: relative;
  z-index: 1;
}

/* Alternating subtle background shift */
main > section:nth-child(even) {
  background: rgba(26, 86, 219, 0.022);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.5rem, 10vw, 6rem) 0 clamp(4rem, 12vw, 7rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 120%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 86, 219, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 40%, rgba(77, 134, 245, 0.10), transparent 50%),
    radial-gradient(ellipse 50% 35% at 15% 60%, rgba(26, 86, 219, 0.08), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Full-width slider under text (AR + EN) */
html[dir="ltr"] .hero-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

@media (max-width: 900px) {
  html[dir="ltr"] .hero-visual {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
  }
}

html[dir="ltr"] .hero-visual {
  order: 2;
  /* Full viewport width hero slider */
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  border-radius: 0;
  aspect-ratio: 16 / 9;
}

html[dir="ltr"] .hero .container { position: relative; }

html[dir="ltr"] .hero-lead { max-width: 70ch; }

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

  .hero-visual {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
    aspect-ratio: 4 / 3;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 86, 219, 0.45);
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.14), rgba(77, 134, 245, 0.07));
  color: #6ba4ff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 18px rgba(26, 86, 219, 0.18);
}

.hero-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4d86f5, #1a56db);
  box-shadow: 0 0 10px rgba(26, 86, 219, 0.8);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(26, 86, 219, 0.8); }
  50%       { box-shadow: 0 0 18px rgba(77, 134, 245, 1); }
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

/* Hero wordmark (NANO FUSION) — keep it closer to logo scale */
.hero h1 > span:first-child {
  font-family: var(--nf-logo-serif);
  font-size: clamp(1.65rem, 3.6vw, 2.55rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

/* Hero second line (tagline) — slightly smaller + more spacing from wordmark */
.hero h1 > span:nth-child(2) {
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  margin-top: 0.65rem;
  color: rgba(244, 244, 245, 0.88);
  line-height: 1.25;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 34ch;
  margin: 0 0 1.75rem;
}

/* Keep the Arabic hero lead as a single line on wide screens */
@media (min-width: 900px) {
  .hero-lead--single {
    max-width: none;
    white-space: nowrap;
  }
}

.hero-highlights {
  margin: 1rem 0 1.5rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.72), rgba(9, 9, 11, 0.50));
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(26, 86, 219, 0.18) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 52ch;
}

.hero-highlights__title {
  font-weight: 800;
  color: rgba(244, 244, 245, 0.92);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.hero-highlights__title span[dir="ltr"] {
  unicode-bidi: isolate;
}

.hero-highlights__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.hero-highlights__list li {
  position: relative;
  padding-inline-start: 1.35rem;
  color: rgba(244, 244, 245, 0.82);
  line-height: 1.55;
}

.hero-highlights__list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0.05rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #dbe8ff;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.55), rgba(77, 134, 245, 0.35));
  box-shadow: 0 0 0 1px rgba(77, 134, 245, 0.22) inset, 0 10px 24px rgba(26, 86, 219, 0.18);
}

@media (max-width: 520px) {
  .hero-highlights {
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
  }
  .hero-highlights__title {
    font-size: 0.98rem;
  }
  .hero-highlights__list li {
    font-size: 0.98rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn-primary {
  background: linear-gradient(180deg, #e8e8e8, var(--accent-logo));
  color: #1a1a1a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(228, 228, 231, 0.18);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--accent-soft);
  border-color: var(--border-strong);
}

.hero-visual {
  position: relative;
  border-radius: 0;
  border: 0;
  background: #07070a;
  /* full viewport width (edge-to-edge) */
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 700ms var(--ease), transform 1200ms var(--ease);
  will-change: opacity, transform;
}

/* Make the wall wordmark in the Mercedes slide more legible */
.hero-slide[src*="hero-slides/slide-9.png"] {
  filter: contrast(1.22) brightness(0.92) saturate(1.06);
  /* Show the full car + wall logo (avoid cropping for this slide only) */
  object-fit: contain;
  object-position: center;
  background: #07070a;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.035);
}

/* Reduce zoom for the Mercedes slide so the top logo isn't clipped */
.hero-slide.is-active[src*="hero-slides/slide-9.png"] {
  transform: scale(1);
}

.hero-dots {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 4;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  pointer-events: none;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(244, 244, 245, 0.35);
  border: 1px solid rgba(244, 244, 245, 0.25);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  transition: transform 300ms var(--ease), background 300ms var(--ease);
}

.hero-dot.is-active {
  background: rgba(244, 244, 245, 0.78);
  transform: scale(1.15);
}

.hero-visual::after { display: none; }

.hero-visual-inner {
  display: none;
}

.hero-stat {
  position: absolute;
  bottom: 1.25rem;
  inset-inline: 1.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 3;
}

.stat-pill {
  flex: 1;
  min-width: 130px;
  padding: 0.75rem 1rem 0.75rem 0.9rem;
  border-radius: var(--radius);
  background: rgba(9, 9, 11, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Circular glowing badge — mirrors brochure 92% ring */
.stat-pill strong {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.025em;
  background:
    radial-gradient(circle at 38% 30%, rgba(26, 86, 219, 0.38) 0%, transparent 58%),
    radial-gradient(circle at 50% 50%, #0a1120, #060c18);
  border: 2px solid rgba(26, 86, 219, 0.72);
  box-shadow:
    0 0 0 1px rgba(77, 134, 245, 0.12) inset,
    0 0 22px rgba(26, 86, 219, 0.55),
    0 0 50px rgba(26, 86, 219, 0.15);
  text-shadow: 0 0 14px rgba(77, 134, 245, 0.9);
  position: relative;
}

/* outer subtle ring */
.stat-pill strong::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(26, 86, 219, 0.20);
  pointer-events: none;
}

.stat-pill span {
  font-size: 0.8rem;
  color: var(--muted-2);
  line-height: 1.45;
}

/* ═══════════════════════════════════════
   BROCHURE INFO SECTION
═══════════════════════════════════════ */
.brochure-section {
  position: relative;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════
   WINDOW FILM BROCHURE (DESIGN)
═══════════════════════════════════════ */
.wf-brochure {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}

.wf-brochure::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 520px at 50% 0%, rgba(26, 86, 219, 0.08), transparent 70%),
    radial-gradient(900px 620px at 50% 100%, rgba(0, 0, 0, 0.35), transparent 65%);
  opacity: 0.95;
}

.wf-brochure > .container {
  position: relative;
  z-index: 1;
}

/* Match the logo-like serif feel for COOL title */
#wf-brochure-title {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wf-brochure__widget {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(9, 9, 11, 0.78), rgba(2, 6, 23, 0.62));
  box-shadow:
    0 18px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.wf-brochure__radio {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.wf-brochure__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 0%, rgba(26, 86, 219, 0.14), transparent 55%),
    rgba(0, 0, 0, 0.24);
}

.wf-brochure__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(244, 244, 245, 0.92);
  background: rgba(9, 9, 11, 0.35);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
  user-select: none;
}

/* Force override any inherited font rules */
.wf-brochure__tabs .wf-brochure__tab {
  font-family: Georgia, "Times New Roman", serif !important;
}

.wf-brochure__tab:hover {
  transform: translateY(-1px);
  border-color: rgba(77, 134, 245, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.wf-brochure__viewer {
  padding: clamp(0.9rem, 2.2vw, 1.35rem);
}

/* Panels */
.wfbr-panel { display: none; }
.wfbr-panel--7 { display: block; }

.wfbr-grid {
  display: grid;
  grid-template-columns: 320px 1fr 420px;
  gap: 1rem;
  align-items: stretch;
}

.wfbr-grid--bottom {
  margin-top: 1rem;
  grid-template-columns: 1.05fr 0.85fr 1.1fr;
}

.wfbr-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(9, 9, 11, 0.70), rgba(2, 6, 23, 0.55));
  box-shadow: 0 14px 70px rgba(0,0,0,0.55);
  overflow: hidden;
}

.wfbr-card__title {
  margin: 0;
  padding: 1rem 1rem 0.75rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at 20% 0%, rgba(26, 86, 219, 0.16), transparent 55%);
}

.wfbr-perf { padding-bottom: 1rem; }
.wfbr-metric { padding: 0.85rem 1rem 0; }
.wfbr-metric__label { font-weight: 700; font-size: 0.9rem; color: rgba(244,244,245,0.92); }
.wfbr-metric__note { margin-top: 0.35rem; font-size: 0.82rem; color: rgba(244,244,245,0.7); }

.wfbr-pill {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(77, 134, 245, 0.35);
  background: rgba(26, 86, 219, 0.12);
  color: #e5f0ff;
  font-weight: 900;
}

.wfbr-pill--strong {
  background: linear-gradient(180deg, rgba(77, 134, 245, 0.22), rgba(26, 86, 219, 0.14));
  border-color: rgba(77, 134, 245, 0.65);
  box-shadow: 0 0 30px rgba(26, 86, 219, 0.18);
}

.wfbr-bar {
  margin-top: 0.55rem;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}

.wfbr-bar > span {
  display: block;
  height: 100%;
  width: calc(var(--p, 0.5) * 100%);
  background: linear-gradient(90deg, rgba(77, 134, 245, 0.35), rgba(77, 134, 245, 0.9));
  box-shadow: 0 0 22px rgba(77, 134, 245, 0.35);
}

.wfbr-warranty {
  margin-top: 0.85rem;
  padding: 0.9rem 1rem 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.85rem;
  align-items: center;
}

.wfbr-warranty p {
  margin: 0;
  color: rgba(244,244,245,0.72);
  font-size: 0.85rem;
  line-height: 1.55;
}

.wfbr-warranty__badge {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  border: 1px solid rgba(77, 134, 245, 0.35);
  background:
    radial-gradient(circle at 30% 25%, rgba(77, 134, 245, 0.25), transparent 55%),
    rgba(0,0,0,0.35);
  display: grid;
  place-content: center;
  text-align: center;
}

.wfbr-warranty__badge span { font-size: 0.72rem; color: rgba(244,244,245,0.7); }
.wfbr-warranty__badge strong { display: block; font-size: 1.7rem; line-height: 1; font-weight: 950; color: #fff; text-shadow: 0 0 18px rgba(77,134,245,0.55); }
.wfbr-warranty__badge em { font-style: normal; font-size: 0.72rem; color: rgba(244,244,245,0.75); }

.wfbr-warranty__badge--pro {
  border-color: rgba(77, 134, 245, 0.65);
  box-shadow: 0 0 40px rgba(26, 86, 219, 0.18);
}

.wfbr-about { padding: 1.1rem 1.1rem 1.2rem; }
.wfbr-brand { margin: 0; font-weight: 900; letter-spacing: 0.08em; }
.wfbr-brand__sub { margin: 0.25rem 0 0.9rem; color: rgba(77,134,245,0.85); font-weight: 700; letter-spacing: 0.12em; font-size: 0.78rem; }
.wfbr-copy { margin: 0 0 1rem; color: rgba(244,244,245,0.72); line-height: 1.7; }

.wfbr-seal {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
}

.wfbr-seal__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #dbeafe;
  border: 1px solid rgba(77,134,245,0.55);
  background: rgba(26,86,219,0.16);
}

.wfbr-seal__sub { color: rgba(244,244,245,0.7); font-size: 0.82rem; }

.wfbr-hero { position: relative; min-height: 320px; }
.wfbr-hero__media { position: absolute; inset: 0; }
.wfbr-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wfbr-hero__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.75));
}

.wfbr-hero__kicker { margin: 0; color: rgba(244,244,245,0.78); font-weight: 700; }
.wfbr-hero__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  font-family: var(--nf-logo-serif);
  text-transform: uppercase;
}
.wfbr-hero__pro { color: #93c5fd; }
.wfbr-hero__sub { margin: 0; color: rgba(244,244,245,0.75); font-weight: 700; }

.wfbr-hero__icons {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.wfbr-hero__icons span {
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.25);
  font-size: 0.78rem;
  color: rgba(244,244,245,0.85);
}

.wfbr-features { padding-bottom: 0.4rem; }
.wfbr-list { list-style: none; margin: 0; padding: 0.8rem 1rem 1rem; display: grid; gap: 0.7rem; }
.wfbr-list li { display: grid; gap: 0.15rem; padding-bottom: 0.7rem; border-bottom: 1px dashed rgba(255,255,255,0.10); }
.wfbr-list li:last-child { border-bottom: none; padding-bottom: 0; }
.wfbr-list strong { font-weight: 900; }
.wfbr-list span { color: rgba(244,244,245,0.7); font-size: 0.86rem; line-height: 1.45; }

.wfbr-ring { padding: 1rem; display: grid; place-items: center; gap: 0.6rem; text-align: center; }
.wfbr-ring__wrap {
  width: min(260px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid rgba(77, 134, 245, 0.55);
  box-shadow: 0 0 32px rgba(26,86,219,0.25);
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
  display: grid;
  place-items: center;
  position: relative;
}

.wfbr-ring__wrap::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  z-index: 1;
}

.wfbr-ring__wrap--pro {
  border-color: rgba(77, 134, 245, 0.85);
  box-shadow: 0 0 44px rgba(26,86,219,0.32);
}

.wfbr-ring__wrap--pro .wfbr-ring__value {
  position: relative;
  z-index: 2;
}

/* PRO card: make the photo fill the whole card */
.wfbr-panel--10 .wfbr-ring {
  position: relative;
  overflow: hidden;
  background: url("/assets/brochure/fusion-cool-pro-circle.png");
  background-size: cover;
  background-position: 50% 55%;
  background-repeat: no-repeat;
}

.wfbr-panel--10 .wfbr-ring > * {
  position: relative;
  z-index: 1;
}

/* COOL card: make the photo fill the whole card */
.wfbr-panel--7 .wfbr-ring {
  position: relative;
  overflow: hidden;
  background: url("/assets/brochure/fusion-cool-bg.png");
  background-size: cover;
  background-position: 50% 55%;
  background-repeat: no-repeat;
}

.wfbr-panel--7 .wfbr-ring > * {
  position: relative;
  z-index: 1;
}

.wfbr-ring__value strong { display: block; font-size: 2.4rem; font-weight: 950; text-shadow: 0 0 18px rgba(77,134,245,0.65); }
.wfbr-ring__value span { color: rgba(244,244,245,0.78); font-weight: 700; font-size: 0.9rem; }
.wfbr-ring__note { margin: 0; color: rgba(244,244,245,0.65); font-size: 0.84rem; line-height: 1.55; }

/* Improve readability over COOL PRO photo background */
.wfbr-panel--10 .wfbr-ring__note {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 14px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  display: inline-block;
  max-width: 36ch;
}

.wfbr-faq { padding-bottom: 0.6rem; }
.wfbr-faq__item { padding: 0.85rem 1rem 0; }
.wfbr-faq__item p { margin: 0.4rem 0 0; color: rgba(244,244,245,0.7); line-height: 1.6; font-size: 0.9rem; }

#wfbr-7:checked ~ .wf-brochure__tabs .wf-brochure__tab[for="wfbr-7"],
#wfbr-10:checked ~ .wf-brochure__tabs .wf-brochure__tab[for="wfbr-10"] {
  background: linear-gradient(180deg, rgba(228, 228, 231, 0.22), rgba(26, 86, 219, 0.16));
  border-color: rgba(77, 134, 245, 0.55);
  box-shadow: 0 10px 28px rgba(26, 86, 219, 0.18);
}

#wfbr-10:checked ~ .wf-brochure__viewer .wfbr-panel--7 { display: none; }
#wfbr-10:checked ~ .wf-brochure__viewer .wfbr-panel--10 { display: block; }

@media (max-width: 680px) {
  .wf-brochure__tabs {
    flex-wrap: wrap;
    gap: 0.55rem;
  }
}

@media (max-width: 1020px) {
  .wfbr-grid { grid-template-columns: 1fr; }
  .wfbr-grid--bottom { grid-template-columns: 1fr; }
  .wfbr-hero { min-height: 280px; }
}

.brochure-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 420px at 50% 0%, rgba(255,255,255,0.04), transparent 70%),
    radial-gradient(900px 620px at 50% 100%, rgba(0,0,0,0.25), transparent 65%);
  opacity: 0.9;
}

.brochure-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3.2vw, 2rem) clamp(1rem, 3.2vw, 2rem);
  position: relative;
  z-index: 1;
}

/* Top row */
.brochure-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom: none;
  width: 100%;
  margin-inline: auto;
  box-shadow:
    0 14px 70px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 80px rgba(26,86,219,0.06);
  position: relative;
}

.brochure-top::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: transparent;
  opacity: 0;
}

.brochure-panel {
  padding: 2.5rem 2rem;
}

.brochure-panel--brand {
  background: rgba(0,0,0,0.32);
  border-inline-end: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
}

.brochure-panel--desc {
  background: rgba(0,0,0,0.26);
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  justify-content: flex-start;
  backdrop-filter: blur(14px);
  text-align: start;
}

.bp-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.bp-logo-row img { height: 32px; width: auto; }
.bp-sub { font-size: 0.6rem; letter-spacing: 0.18em; color: #888; text-transform: uppercase; }

.bp-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.bp-protect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.bp-protect-grid li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #ccc;
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.bpg-icon { font-size: 0.9rem; }

.bp-cta { display: none; }

.bp-head {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bp-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.bp-h {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.bp-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.85;
  margin: 0;
  max-width: 60ch;
}

.bp-social {
  display: none;
}

.bp-social strong { display: none; }

.bp-foot {
  display: none;
}

.bp-trust {
  display: none;
}

.bpt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.3rem;
}

.bpt-item small { font-size: 0.65rem; color: #888; letter-spacing: 0.05em; }

/* Bottom row */
.brochure-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.26);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  width: 100%;
  margin-inline: auto;
  box-shadow:
    0 22px 80px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 90px rgba(26,86,219,0.06);
  backdrop-filter: blur(16px);
}

.brochure-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0;
}

.brochure-warranty-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
  justify-content: center;
  text-align: center;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
}

.bwb-label {
  font-size: 0.78rem;
  color: #aaa;
  letter-spacing: 0.05em;
}

.bwb-years {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

/* Car section grid */
.brochure-car-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "features diagram"
    "faq      faq";
  gap: 0;
  position: relative;
  z-index: 1;
}

.brochure-features-list {
  grid-area: features;
  padding: 1.8rem 1.4rem 1.8rem 1.8rem;
  border-inline-end: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
}

.bfl-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.bfl-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 10px 30px rgba(0,0,0,0.45);
}

.bfl-item strong {
  display: block;
  font-size: 0.82rem;
  color: #eee;
  margin-bottom: 0.25rem;
}

.bfl-item p {
  font-size: 0.74rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* Car diagram — provided image */
.brochure-car-diagram {
  grid-area: diagram;
  padding: 0.85rem;
  display: flex;
  align-items: stretch;
  background: rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
}

.bcd-car-wrap {
  width: 100%;
}

.bcd-car-svg { display: none; }

.bcd-car-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.60),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 70px rgba(26,86,219,0.05);
}

/* FAQ mini */
.brochure-faq-mini {
  grid-area: faq;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.bfm-item {
  padding: 1.2rem 1.8rem;
  background: rgba(255,255,255,0.015);
}

.bfm-item--check {
  border-inline-start: 1px solid rgba(255,255,255,0.06);
  background: rgba(201,168,76,0.03);
}

.bfm-q {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.bfm-icon { font-size: 1rem; flex-shrink: 0; }

.bfm-q strong {
  font-size: 0.88rem;
  color: #ddd;
}

.bfm-item p {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
  line-height: 1.65;
  padding-inline-start: 1.5rem;
}

/* ThermaFusion strip */
.brochure-therma {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(90deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.bt-header {
  flex-shrink: 0;
}

.bt-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #777;
  text-transform: uppercase;
  margin: 0 0 0.15rem;
}

.bt-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 0.15rem;
}

.bt-sub {
  font-size: 0.7rem;
  color: #888;
  margin: 0;
}

.bt-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  flex: 1;
}

.btf-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btf-icon { font-size: 1rem; }
.btf-item strong { font-size: 0.78rem; color: #ccc; font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
  .brochure-top { grid-template-columns: 1fr; }
  .brochure-panel--brand { border-inline-end: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .brochure-car-section { grid-template-columns: 1fr; grid-template-areas: "features" "diagram" "faq"; }
  .brochure-features-list { border-inline-end: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .brochure-faq-mini { grid-template-columns: 1fr; }
  .bfm-item--check { border-inline-start: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .brochure-car-diagram { padding: 0.9rem 0.9rem 0.2rem; }
}

/* قسم الفيديو */
.video-section {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg), rgba(24, 24, 27, 0.6));
}

/* ═══════════════════════════════════════
   PARTNERS — orb grid (individual circles)
═══════════════════════════════════════ */
.partners-section {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
}

/* Emphasize "Our Partners" label */
.partners-section .section-head .section-label {
  display: block;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  justify-content: center;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.55rem;
  color: rgba(244, 244, 245, 0.92);
}

.partners-section .section-head h2 {
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.partners-section .section-head .section-label::before {
  width: 28px;
  height: 3px;
  opacity: 0.95;
}

/* Projects ("مشاريعنا") label: match Partners sizing */
#offers .section-head .section-label {
  display: block;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  justify-content: center;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.55rem;
  color: rgba(244, 244, 245, 0.92);
}

#offers .section-head .section-label::before {
  width: 28px;
  height: 3px;
  opacity: 0.95;
}

/* Orb grid container */
.partners-orbs {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.1rem);
}

/* Single partner orb */
.po-item {
  --clr: hsl(var(--hue, 210), 72%, 55%);
  --clr-glow: hsl(var(--hue, 210), 80%, 50%);

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  cursor: default;
  user-select: none;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.3),
              box-shadow 0.35s ease;

  background:
    radial-gradient(ellipse 80% 58% at 50% 28%,
      rgba(255,255,255,0.13), transparent 65%),
    linear-gradient(150deg,
      rgba(255,255,255,0.07) 0%,
      rgba(255,255,255,0.02) 55%,
      rgba(0,0,0,0.18) 100%),
    rgba(10, 15, 28, 0.62);
  backdrop-filter: blur(16px);

  border: 1.5px solid color-mix(in srgb, var(--clr) 40%, transparent);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--clr) 9%, transparent),
    0 6px 24px rgba(0,0,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.14);

  /* tooltip positioning context */
  isolation: isolate;
}

/* specular — soft top highlight on the round orb */
.po-item::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: radial-gradient(ellipse 78% 48% at 50% 18%,
    rgba(255,255,255,0.20), transparent 58%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

/* hover glow */
.po-item:hover {
  transform: translateY(-6px) scale(1.09);
  box-shadow:
    0 0 0 3.5px color-mix(in srgb, var(--clr) 30%, transparent),
    0 18px 48px rgba(0,0,0,0.55),
    0 0 30px color-mix(in srgb, var(--clr-glow) 28%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

/* (tooltip removed by request) */

/* Company logo — circular “coin” inside the round orb (classic look) */
.po-logo {
  --po-stage: linear-gradient(165deg, #f8fafc 0%, #e8eef4 50%, #d8dee8 100%);

  width: 80%;
  height: 80%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: var(--po-stage);
  padding: 6px;
  box-sizing: border-box;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.06),
    0 2px 10px rgba(0,0,0,0.2);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  transition: filter 0.3s ease, transform 0.32s cubic-bezier(.22,.68,0,1.3);
  display: block;
  position: relative;
  z-index: 2;
  backface-visibility: hidden;
  overflow: hidden; /* keep marks inside the circle */
}
.po-item:hover .po-logo {
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
  transform: scale(1.04);
}

/* Light-on-light marks: dark circular stage (e.g. GCC) — red + white read clearly */
.po-item--contrast .po-logo {
  --po-stage: linear-gradient(160deg, #12151f 0%, #0a0c12 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 2px 10px rgba(0,0,0,0.4);
  /* same round geometry as other logos */
  width: 80%;
  height: 80%;
  border-radius: 50%;
  padding: 5px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35)) contrast(1.06) saturate(1.12);
}
.po-item--contrast:hover .po-logo {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)) contrast(1.08) saturate(1.15);
}
.po-item--contrast {
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--clr) 9%, transparent),
    0 6px 24px rgba(0,0,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

@media (prefers-reduced-motion: no-preference) {
  .partners-orbs .po-item {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
    animation: po-fadeIn 0.5s ease forwards;
  }
  .partners-orbs .po-item:nth-child(1)  { animation-delay: 0.04s; }
  .partners-orbs .po-item:nth-child(2)  { animation-delay: 0.08s; }
  .partners-orbs .po-item:nth-child(3)  { animation-delay: 0.12s; }
  .partners-orbs .po-item:nth-child(4)  { animation-delay: 0.16s; }
  .partners-orbs .po-item:nth-child(5)  { animation-delay: 0.20s; }
  .partners-orbs .po-item:nth-child(6)  { animation-delay: 0.24s; }
  .partners-orbs .po-item:nth-child(7)  { animation-delay: 0.28s; }
  .partners-orbs .po-item:nth-child(8)  { animation-delay: 0.32s; }
  .partners-orbs .po-item:nth-child(9)  { animation-delay: 0.36s; }
  .partners-orbs .po-item:nth-child(10) { animation-delay: 0.40s; }
  .partners-orbs .po-item:nth-child(11) { animation-delay: 0.44s; }
  .partners-orbs .po-item:nth-child(12) { animation-delay: 0.48s; }
  .partners-orbs .po-item:nth-child(13) { animation-delay: 0.52s; }
  .partners-orbs .po-item:nth-child(14) { animation-delay: 0.56s; }
  .partners-orbs .po-item:nth-child(15) { animation-delay: 0.60s; }
  .partners-orbs .po-item:nth-child(16) { animation-delay: 0.64s; }
  .partners-orbs .po-item:nth-child(17) { animation-delay: 0.68s; }
  .partners-orbs .po-item:nth-child(18) { animation-delay: 0.72s; }
  .partners-orbs .po-item:nth-child(19) { animation-delay: 0.76s; }
  .partners-orbs .po-item:nth-child(20) { animation-delay: 0.80s; }
  .partners-orbs .po-item:nth-child(21) { animation-delay: 0.84s; }
  .partners-orbs .po-item:nth-child(22) { animation-delay: 0.88s; }
  .partners-orbs .po-item:nth-child(23) { animation-delay: 0.92s; }
  .partners-orbs .po-item:nth-child(24) { animation-delay: 0.96s; }
  .partners-orbs .po-item:nth-child(25) { animation-delay: 1.00s; }
  .partners-orbs .po-item:nth-child(26) { animation-delay: 1.04s; }
  .partners-orbs .po-item:nth-child(27) { animation-delay: 1.08s; }
  .partners-orbs .po-item:nth-child(28) { animation-delay: 1.12s; }
}
@keyframes po-fadeIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .partners-orbs {
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 0.75rem;
  }
}



.video-frame {
  position: relative;
  max-width: min(1920px, 100%);
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-deep);
  aspect-ratio: 16 / 9;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
}

/* أقصى وضوح من الملف المصدر: بدون قص، وتمرير طبقة عرض للمتصفح */
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Sections */
section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

/* ── Section head ── */
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 800;
  margin: 0 0 0.7rem;
  letter-spacing: -0.025em;
  position: relative;
  display: inline-block;
}

/* Blue gradient underline on every section title */
.section-head h2::after {
  content: "";
  display: block;
  margin: 0.45rem auto 0;
  width: 55px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a56db, #4d86f5, #1a56db);
  box-shadow: 0 0 12px rgba(26, 86, 219, 0.55);
  animation: shimmer-bar 3s linear infinite;
  background-size: 200% 100%;
}

@keyframes shimmer-bar {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ── Section label — glowing blue badge ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.18), rgba(77, 134, 245, 0.08));
  border: 1px solid rgba(26, 86, 219, 0.40);
  color: #6ba4ff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
  box-shadow: 0 0 14px rgba(26, 86, 219, 0.18);
}

/* Leading dot inside label */
.section-label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4d86f5;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(26, 86, 219, 0.9);
}

/* Pricing label: match Offers label size */
#pricing .section-head .section-label {
  display: block;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  justify-content: center;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.55rem;
  color: rgba(244, 244, 245, 0.92);
}
#pricing .section-head .section-label::before {
  width: 28px;
  height: 3px;
  opacity: 0.95;
}

/* Window film (services inspired section) */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

@media (max-width: 900px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

.use-case {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), rgba(9, 9, 11, 0.55));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.use-case__media {
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-deep);
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.use-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}

.use-case h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.use-case p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

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

.result-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.4);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.result-card:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 228, 231, 0.18);
  background: rgba(228, 228, 231, 0.04);
}

.result-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.result-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.steps {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, var(--surface), rgba(9, 9, 11, 0.7));
  padding: clamp(1.35rem, 3.5vw, 2rem);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.35);
}

.steps-head {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.35);
}

.step__num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--bg-deep);
  background: linear-gradient(145deg, #e8e8e8, var(--accent-logo));
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  flex: 0 0 auto;
}

.step strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

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

.steps-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.window-film-extras {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.window-film-extras .warranty-showcase {
  grid-column: 1 / -1;
}

.window-film-extras .faq-card {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .window-film-extras {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   WARRANTY CARD — HIGH QUALITY HTML
═══════════════════════════════════════ */
.wc-section { margin: 0; }

.wc-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26,86,219,0.25);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  background: #fff;
}

/* ── Brand panel (left dark) ── */
.wc-brand {
  background: linear-gradient(175deg, #0a0f1e 0%, #0d1530 60%, #070b18 100%);
  padding: 2.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.wc-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,86,219,0.08), transparent 60%);
  pointer-events: none;
}
.wc-brand__logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  margin-bottom: 1rem;
}
.wc-brand__nano {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}
.wc-brand__fusion {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.65);
  line-height: 1;
}
.wc-brand__divider {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, #1a56db, rgba(26,86,219,0.15));
  margin-bottom: 1rem;
}
.wc-brand__title {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a56db;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}
.wc-brand__sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 1.25rem;
}
.wc-brand__car-wrap {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 0 -1.75rem;
  width: calc(100% + 3.5rem);
}
.wc-brand__car-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  opacity: 0.6;
  filter: grayscale(0.3) contrast(1.1);
}
.wc-brand__contact {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26,86,219,0.2);
  width: 100%;
}
.wc-brand__contact p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 0.2rem;
}
.wc-brand__contact a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a56db;
  text-decoration: none;
  direction: ltr;
  display: inline-block;
}

/* ── Content panel (right light) ── */
.wc-content {
  background: #fafaf8;
  padding: 2rem 2.25rem;
  overflow-y: auto;
  color: #1a1a1a;
  direction: rtl;
}
.wc-content__brand {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.35rem;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #1a56db;
  padding-bottom: 0.4rem;
  display: inline-block;
}
.wc-content__intro {
  font-size: 0.82rem;
  color: #555;
  margin: 0.35rem 0 1.25rem;
  font-weight: 600;
}

.wc-block { margin-bottom: 1.2rem; }
.wc-block__title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #1a56db;
  margin: 0 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.wc-block__title::before {
  content: "◆";
  color: #1a56db;
  font-size: 0.6rem;
  flex-shrink: 0;
}
.wc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.wc-list li {
  font-size: 0.8rem;
  color: #333;
  line-height: 1.6;
  padding-inline-start: 1rem;
  position: relative;
}
.wc-list li::before {
  content: "–";
  position: absolute;
  inset-inline-start: 0;
  color: #1a56db;
  font-weight: 700;
}

.wc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

/* Duration grid */
.wc-duration-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wc-duration-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.9rem;
  background: #f0efe8;
  border-radius: 8px;
  border-inline-start: 3px solid #ccc;
}
.wc-duration-item--gold { border-inline-start-color: #1a56db; background: #eef3ff; }
.wc-duration-item--premium { border-inline-start-color: #b8960c; background: #fdf8e8; }
.wc-duration-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.wc-duration-name small {
  font-size: 0.68rem;
  font-weight: 400;
  color: #777;
  direction: ltr;
}
.wc-duration-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  text-align: left;
  white-space: nowrap;
}
.wc-duration-item--gold .wc-duration-val,
.wc-duration-item--premium .wc-duration-val { color: #b8960c; }

/* Footer note */
.wc-footer-note {
  font-size: 0.75rem;
  color: #666;
  background: #f0efe8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border-inline-start: 3px solid #1a56db;
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* Actions row */
.wc-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 800px) {
  .wc-card { grid-template-columns: 1fr; }
  .wc-brand { flex-direction: row; flex-wrap: wrap; padding: 1.5rem 1.25rem 0; gap: 0.75rem; }
  .wc-brand__car-wrap { display: none; }
  .wc-brand__contact { border-top: none; padding-top: 0; }
  .wc-cols { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wc-content { padding: 1.5rem 1.25rem; }
}

/* Print */
@media print {
  .site-header, nav, footer, .wc-actions { display: none !important; }
  .wc-card { box-shadow: none; border: 1px solid #ccc; }
  .wc-brand__car-img { opacity: 0.4; }
}

/* ─── legacy warranty selectors still used in lightbox JS ─── */
.warranty-card,
.faq-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.55), rgba(9, 9, 11, 0.35));
  padding: 1.35rem;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

/* FAQ brand wordmark shown above the FAQ card (works in ?view=faq mode) */
#window-film-faq {
  position: relative;
}

#window-film-faq[data-faq-brand]::before {
  content: attr(data-faq-brand);
  position: absolute;
  left: 50%;
  top: -5.1rem;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--nf-logo-serif);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.96);
  font-size: clamp(1.6rem, 2.6vw, 2.05rem);
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.warranty-showcase__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.warranty-showcase__lead {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 60ch;
}

.warranty-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

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

.warranty-points {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.warranty-points li {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.28);
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.warranty-points strong {
  color: var(--text);
}

/* Text view */
.warranty-text {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: radial-gradient(1000px 480px at 10% 10%, rgba(228, 228, 231, 0.06), transparent 55%),
    rgba(9, 9, 11, 0.18);
  padding: 1rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.warranty-text__tools {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.warranty-text__sections {
  display: grid;
  gap: 0.65rem;
}

.warranty-text details {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.25);
  overflow: hidden;
}

.warranty-text summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 0.95rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.warranty-text summary::-webkit-details-marker { display: none; }

.warranty-text summary::after {
  content: "＋";
  color: rgba(26, 86, 219, 0.9);
  font-weight: 800;
}

.warranty-text details[open] summary::after { content: "—"; }

.warranty-text__body {
  padding: 0 0.95rem 0.95rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.warranty-text__body ul {
  margin: 0.6rem 0 0;
  padding-inline-start: 1.1rem;
}

.warranty-text__body li { margin: 0.25rem 0; }

.warranty-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.warranty-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.warranty-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.35);
  padding: 0.65rem 0.85rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: inline-end;
  color: var(--muted-2);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.card ul {
  margin: 0;
  padding-inline-start: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.card ul li {
  margin-bottom: 0.35rem;
}

/* Long-form copy inside #cars service cards */
.card-lead {
  color: var(--muted);
  margin: 0 0 0.85rem;
  line-height: 1.8;
  font-size: 0.98rem;
}

.card-marketing-block {
  margin-top: 1.05rem;
}

.card-marketing-block:first-of-type {
  margin-top: 0.35rem;
}

.card-marketing-block h4 {
  margin: 0 0 0.55rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.38;
}

.card-marketing-block p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.9rem;
}

.card-marketing-block p:last-child {
  margin-bottom: 0;
}

.card-callout {
  display: inline-block;
  margin: 0.55rem 0 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(26, 86, 219, 0.1);
  border: 1px solid rgba(26, 86, 219, 0.22);
  font-weight: 700;
  font-size: 0.78rem;
  color: #a8c4f5;
}

.card-marketing-sep {
  border: 0;
  height: 1px;
  margin: 1.15rem 0;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

/* Bullet list inside styling hub panels */

/* Premium list style (used in "Why Nano Fusion" & similar cards) */
.nf-list {
  margin: 0.85rem 0 0;
  padding-inline-start: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  font-size: 0.95rem;
}

.nf-list li {
  margin: 0.35rem 0;
}

.nf-list li::marker {
  color: #4d86f5;
}

.nf-list strong {
  color: #ffffff;
}

/* Bullet list inside styling hub panels */
.styling-hub-list {
  margin: 0.55rem 0 0;
  padding-inline-start: 1.15rem;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.88rem;
}

.styling-hub-list li {
  margin-bottom: 0.42rem;
}

.styling-hub-list li:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════
   PAINT PROTECTION HUB — full-bleed video card
═══════════════════════════════════════════════════ */

/* Brochure-aligned tokens + per‑hub accent (Window Film brochure palette) */
#cars {
  --cars-h: 218;
  --cars-br-pro: #93c5fd;
  --cars-br-ink: rgba(244, 244, 245, 0.94);
  --cars-br-ink-muted: rgba(244, 244, 245, 0.72);
  --cars-br-chrome: rgba(255, 255, 255, 0.08);
  --cars-br-widget-a: rgba(9, 9, 11, 0.82);
  --cars-br-widget-b: rgba(2, 6, 23, 0.72);
}

#cars #paint-protection-hub {
  --cars-h: 218;
}

#cars #glass-protection-hub {
  --cars-h: 198;
}

#cars #paint-microfiber-hub {
  --cars-h: 208;
}

#cars #glass-shatter-protection-hub {
  --cars-h: 188;
}

#cars #ceramic-protection-hub {
  --cars-h: 232;
}

#cars #styling-services-hub {
  --cars-h: 258;
}

#cars #interior-nano-ceramic-hub {
  --cars-h: 248;
}

#cars #wheel-rubber-paint-hub {
  --cars-h: 268;
}

#cars #upholstery-services-hub {
  --cars-h: 292;
}

/* ── Car services — premium section header + quick jumps ── */
.cars-section {
  position: relative;
  padding: clamp(1.5rem, 3.5vw, 2.65rem) 0 clamp(0.35rem, 1.4vw, 0.85rem);
  overflow: hidden;
}

.cars-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(820px 540px at 50% 0%, rgba(26, 86, 219, 0.11), transparent 72%),
    radial-gradient(900px 620px at 50% 100%, rgba(0, 0, 0, 0.42), transparent 66%),
    radial-gradient(closest-side at 8% 40%, hsla(var(--cars-h), 70%, 52%, 0.12), transparent 55%),
    radial-gradient(closest-side at 96% 22%, hsla(calc(var(--cars-h) + 22), 75%, 58%, 0.1), transparent 52%);
  opacity: 1;
}

.cars-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(closest-side at 50% 12%, #000 0%, transparent 74%);
  opacity: 0.4;
  pointer-events: none;
}

.cars-hero {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(1rem, 2.4vw, 1.6rem);
}

#cars .cars-hero .section-label {
  color: rgba(77, 134, 245, 0.88);
  font-weight: 800;
  font-size: 0.72rem;
}

html[lang^="en"] #cars .cars-hero .section-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cars-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 2.4vw, 1.75rem);
  align-items: stretch;
}

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

.cars-hero__title {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(1.55rem, 3.6vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 950;
  color: var(--cars-br-ink);
  text-shadow:
    0 0 48px rgba(26, 86, 219, 0.2),
    0 1px 0 rgba(0, 0, 0, 0.45);
}

html[lang^="en"] .cars-hero__title {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", serif;
}

.cars-hero__title .cars-hero__title-accent,
#cars .cars-hero__title em {
  font-style: normal;
  color: var(--cars-br-pro);
}

.cars-hero__lead {
  margin: 0 0 1rem;
  max-width: 62ch;
  color: var(--cars-br-ink-muted);
  line-height: 1.75;
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
}

.cars-hero__leads {
  max-width: 62ch;
}

.cars-hero__leads .cars-hero__lead {
  margin: 0 0 0.5rem;
  max-width: none;
}

.cars-hero__leads .cars-hero__lead:last-child {
  margin-bottom: 1rem;
}

.cars-hero__panel {
  position: relative;
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border: 1px solid var(--cars-br-chrome);
  background: linear-gradient(145deg, var(--cars-br-widget-a), var(--cars-br-widget-b));
  box-shadow:
    0 18px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  min-height: 220px;
}

.cars-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(26, 86, 219, 0.2), transparent 58%);
  opacity: 0.95;
}

.cars-hero__orbit {
  position: absolute;
  width: clamp(240px, 42vw, 360px);
  height: clamp(240px, 42vw, 360px);
  right: -18%;
  top: -22%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  opacity: 0.85;
}

@media (prefers-reduced-motion: no-preference) {
  .cars-hero__orbit {
    animation: cars-orbit-spin 18s linear infinite;
  }
}

@keyframes cars-orbit-spin {
  to { transform: rotate(360deg); }
}

.cars-hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (max-width: 520px) {
  .cars-hero__stats {
    grid-template-columns: 1fr;
  }
}

.cars-stat {
  border-radius: 16px;
  padding: 0.65rem 0.72rem;
  border: 1px solid rgba(77, 134, 245, 0.32);
  background:
    radial-gradient(circle at 28% 18%, rgba(77, 134, 245, 0.22), transparent 58%),
    rgba(0, 0, 0, 0.32);
  box-shadow: 0 0 26px rgba(26, 86, 219, 0.14);
}

.cars-stat__k {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.62);
}

.cars-stat__v {
  display: block;
  margin-top: 0.2rem;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 16px rgba(77, 134, 245, 0.45);
}

.cars-hero__note {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  color: var(--cars-br-ink-muted);
  line-height: 1.65;
  font-size: 0.84rem;
  max-width: 52ch;
}

/* Keep deep-linked hubs from hiding under the sticky header */
#cars .card--spotlight {
  scroll-margin-top: clamp(4.75rem, 10vw, 6.25rem);
}

@media (prefers-reduced-motion: reduce) {
  .cars-hero__orbit { animation: none; }
}

/* Wrapper that sits full-width in the grid, holds two hubs side by side */
.hubs-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.hubs-row--single > .card--spotlight {
  grid-column: 1 / -1;
}

/* One hub centered — same width as a single column in a two-hub row */
.hubs-row--solo-centered {
  grid-template-columns: 1fr;
  justify-items: center;
}

.hubs-row--solo-centered > .card--spotlight {
  grid-column: 1;
  justify-self: center;
  width: min(100%, calc((100% - 1.25rem) / 2));
}

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

  .hubs-row--solo-centered > .card--spotlight {
    width: 100%;
  }
}

/* Spotlight card — spans full width when standalone, auto when inside .hubs-row */
.cards-grid > .card--spotlight {
  grid-column: 1 / -1;
  padding: 0;
  background: rgba(11, 11, 13, 0.98);
  border-color: rgba(26, 86, 219, 0.18);
  overflow: hidden;
  cursor: default;
}

.hubs-row > .card--spotlight {
  grid-column: auto; /* each hub takes 1 column inside hubs-row */
}

.cards-grid > .card--spotlight:hover {
  transform: none;
  box-shadow: 0 0 0 1px rgba(26, 86, 219, 0.14), 0 32px 80px rgba(0, 0, 0, 0.4);
}

/* #cars — service hubs: Window Film brochure language (wf-brochure / wfbr-card) */
#cars .cards-grid .card--spotlight {
  position: relative;
  isolation: isolate;
  border-radius: 18px;
  border: 1px solid var(--cars-br-chrome);
  background:
    radial-gradient(520px 220px at 14% 0%, hsla(var(--cars-h), 72%, 54%, 0.26), transparent 58%),
    radial-gradient(420px 200px at 94% 6%, hsla(calc(var(--cars-h) + 16), 70%, 58%, 0.14), transparent 55%),
    linear-gradient(145deg, var(--cars-br-widget-a), var(--cars-br-widget-b));
  box-shadow:
    0 22px 88px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 90px hsla(var(--cars-h), 70%, 50%, 0.1);
}

#cars .cards-grid .card--spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    128deg,
    hsla(calc(var(--cars-h) + 24), 88%, 72%, 0.55) 0%,
    hsla(var(--cars-h), 72%, 58%, 0.22) 38%,
    rgba(255, 255, 255, 0.08) 55%,
    hsla(var(--cars-h), 78%, 56%, 0.32) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

#cars .cards-grid .card--spotlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(calc(var(--cars-h) + 10), 90%, 72%, 0.95),
    hsla(var(--cars-h), 82%, 58%, 0.75),
    transparent
  );
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  #cars .cards-grid .card--spotlight {
    transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease), border-color 0.45s var(--ease);
  }

  #cars .cards-grid .card--spotlight:hover {
    transform: translateY(-4px);
    border-color: hsla(var(--cars-h), 72%, 62%, 0.35);
    box-shadow:
      0 26px 96px rgba(0, 0, 0, 0.72),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset,
      0 0 0 1px hsla(var(--cars-h), 70%, 55%, 0.22),
      0 0 120px hsla(var(--cars-h), 75%, 52%, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  #cars .cards-grid .card--spotlight:hover {
    transform: none;
  }
}

#cars .cards-grid .card--spotlight .phub-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(0.85rem, 2vw, 1.15rem);
  row-gap: 0.35rem;
  align-items: start;
  padding: clamp(1rem, 2.3vw, 1.35rem) clamp(1.05rem, 2.5vw, 1.55rem) clamp(0.55rem, 1.3vw, 0.8rem);
  border-bottom: 1px solid var(--cars-br-chrome);
  background: radial-gradient(circle at 18% 0%, hsla(var(--cars-h), 70%, 52%, 0.2), transparent 58%);
}

#cars .cards-grid .card--spotlight .phub-header:not(:has(> .card-icon)) {
  grid-template-columns: 1fr;
}

#cars .cards-grid .card--spotlight .phub-header:not(:has(> .card-icon)) h3,
#cars .cards-grid .card--spotlight .phub-header:not(:has(> .card-icon)) .paint-hub__lead {
  grid-column: 1;
}

#cars .cards-grid .card--spotlight .phub-header .card-icon {
  grid-row: 1 / span 2;
  margin: 0;
  align-self: start;
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
  border-radius: 18px;
  border: 1px solid hsla(var(--cars-h), 70%, 58%, 0.45);
  background:
    radial-gradient(circle at 30% 22%, hsla(var(--cars-h), 78%, 62%, 0.38), transparent 56%),
    rgba(0, 0, 0, 0.38);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 0 34px hsla(var(--cars-h), 72%, 50%, 0.22);
}

#cars .cards-grid .card--spotlight .phub-header h3 {
  grid-column: 2;
  margin: 0 0 0.15rem;
  font-size: clamp(1.04rem, 2.1vw, 1.32rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--cars-br-ink);
  text-shadow: 0 0 26px hsla(var(--cars-h), 70%, 55%, 0.25);
}

#cars .cards-grid .card--spotlight .paint-hub__lead {
  grid-column: 2;
  font-size: 0.86rem;
  line-height: 1.74;
  color: var(--cars-br-ink-muted);
  max-width: 58ch;
}

#cars .cards-grid .card--spotlight .service-explorer {
  position: relative;
  z-index: 2;
}

#cars .cards-grid .card--spotlight .service-explorer__rail {
  margin-top: 0;
  padding: 0.95rem clamp(1rem, 2.4vw, 1.35rem);
  gap: 0.55rem;
  border-top: 0;
  border-bottom: 1px solid var(--cars-br-chrome);
  background:
    radial-gradient(circle at 18% 0%, hsla(var(--cars-h), 70%, 52%, 0.18), transparent 56%),
    rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#cars .cards-grid .card--spotlight .service-explorer__pick {
  padding: 0.48rem 0.92rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: var(--cars-br-ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 9, 11, 0.4);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}

#cars .cards-grid .card--spotlight .service-explorer__rail--compact .service-explorer__pick {
  font-size: 0.68rem;
  padding: 0.36rem 0.62rem;
}

@media (max-width: 520px) {
  #cars .cards-grid .card--spotlight .service-explorer__rail--compact .service-explorer__pick {
    font-size: 0.6rem;
    padding: 0.32rem 0.52rem;
  }
}

#cars .cards-grid .card--spotlight .service-explorer__pick:hover {
  transform: translateY(-1px);
  border-color: hsla(var(--cars-h), 72%, 58%, 0.42);
  background: hsla(var(--cars-h), 55%, 40%, 0.14);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
  color: #fff;
}

#cars .cards-grid .card--spotlight .service-explorer__pick.is-active {
  border-color: hsla(var(--cars-h), 74%, 58%, 0.75);
  background: linear-gradient(
    180deg,
    hsla(var(--cars-h), 58%, 46%, 0.34),
    hsla(var(--cars-h), 62%, 38%, 0.16)
  );
  color: #e5f0ff;
  box-shadow:
    0 0 30px hsla(var(--cars-h), 72%, 52%, 0.22),
    0 0 0 1px hsla(var(--cars-h), 80%, 62%, 0.35) inset;
}

#cars .cards-grid .card--spotlight .service-explorer__copy {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(2, 6, 23, 0.38));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#cars .cards-grid .card--spotlight .service-explorer__panel h4 {
  color: hsl(calc(var(--cars-h) + 6) 88% 78%);
  text-shadow: 0 0 22px hsla(var(--cars-h), 80%, 58%, 0.22);
}

#cars .cards-grid .card--spotlight .service-explorer__panel p {
  color: var(--cars-br-ink-muted);
}

#cars .cards-grid .card--spotlight .service-explorer__callout {
  border-color: hsla(var(--cars-h), 72%, 58%, 0.42);
  background: hsla(var(--cars-h), 58%, 42%, 0.16);
  color: hsl(calc(var(--cars-h) + 8) 92% 84%);
}

#cars .cards-grid .card--spotlight .se-spec {
  border: 2px solid hsla(var(--cars-h), 70%, 58%, 0.68);
  background:
    radial-gradient(circle at 38% 30%, hsla(var(--cars-h), 72%, 54%, 0.38) 0%, transparent 62%),
    radial-gradient(circle at 50% 50%, #0a1120, #060c18);
  box-shadow:
    0 0 0 1px hsla(var(--cars-h), 75%, 62%, 0.14) inset,
    0 0 22px hsla(var(--cars-h), 72%, 52%, 0.48),
    0 0 48px hsla(var(--cars-h), 78%, 56%, 0.12);
}

#cars .cards-grid .card--spotlight .se-spec::before {
  border-color: hsla(var(--cars-h), 68%, 58%, 0.28);
}

#cars .cards-grid .card--spotlight .se-spec strong {
  text-shadow:
    0 0 14px hsla(var(--cars-h), 82%, 62%, 0.95),
    0 0 32px hsla(var(--cars-h), 72%, 52%, 0.45);
}

#cars .cards-grid .card--spotlight .se-spec:hover {
  box-shadow:
    0 0 0 1px hsla(var(--cars-h), 78%, 62%, 0.22) inset,
    0 0 30px hsla(var(--cars-h), 74%, 54%, 0.65),
    0 0 64px hsla(var(--cars-h), 78%, 56%, 0.18);
}

#cars .cards-grid .card--spotlight .service-explorer__frame {
  border-top: 1px solid var(--cars-br-chrome);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px hsla(var(--cars-h), 65%, 55%, 0.12);
}

#cars .cards-grid .card--spotlight .service-explorer__filmstrip {
  padding-block: 0.85rem;
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid var(--cars-br-chrome);
}

#cars .cards-grid .card--spotlight .service-explorer__filmstrip img {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

/* “Why Nano Fusion” — brochure wfbr-card */
#cars .cards-grid > .card:not(.card--spotlight) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: min(420px, 100%);
  padding: clamp(0.95rem, 2.2vw, 1.15rem) clamp(1rem, 2.4vw, 1.25rem);
  border-radius: 14px;
  border: 1px solid var(--cars-br-chrome);
  background: linear-gradient(145deg, rgba(9, 9, 11, 0.74), rgba(2, 6, 23, 0.58));
  box-shadow: 0 12px 52px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#cars .cards-grid > .card:not(.card--spotlight) .card-icon {
  margin-inline: auto;
  margin-bottom: 0.5rem;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  border-radius: 11px;
}

#cars .cards-grid > .card:not(.card--spotlight) h3 {
  color: var(--cars-br-ink);
  max-width: 26ch;
  margin-inline: auto;
  font-size: 1.05rem;
}

#cars .cards-grid > .card:not(.card--spotlight) .nf-list {
  color: var(--cars-br-ink-muted);
  width: fit-content;
  max-width: min(34ch, 100%);
  margin-block: 0.55rem 0;
  margin-inline: auto;
  text-align: start;
  padding-inline-start: 1.05rem;
  font-size: 0.88rem;
  line-height: 1.75;
}

#cars .cards-grid > .card:not(.card--spotlight) .nf-list li {
  margin: 0.22rem 0;
}

#cars .cards-grid > .card:not(.card--spotlight) .nf-list strong {
  color: #fff;
}

#cars .cards-grid > .card:not(.card--spotlight) .nf-list li::marker {
  color: hsl(var(--cars-h) 72% 58%);
}

#cars .cards-grid .card--spotlight .styling-hub-list {
  color: var(--cars-br-ink-muted);
}

#cars .cards-grid .card--spotlight .styling-hub-list strong {
  color: var(--cars-br-ink);
}

/* --- header (icon + title + lead) --- */
.phub-header {
  padding: clamp(1rem, 2.2vw, 1.4rem) clamp(1.1rem, 2.5vw, 1.6rem) 0;
}

.phub-header .card-icon {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.phub-header h3 {
  margin: 0 0 0.3rem;
  font-size: clamp(0.98rem, 2vw, 1.22rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.paint-hub__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.82rem;
  max-width: 64ch;
}

/* --- tab pills row --- */
.service-explorer {
  display: flex;
  flex-direction: column;
  isolation: isolate; /* own stacking context */
}

.service-explorer__rail {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.75rem clamp(1.1rem, 2.5vw, 1.6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.012);
  position: relative;
  z-index: 10;
}

/* 4+ tab pills (e.g. upholstery hub) */
.service-explorer__rail--compact .service-explorer__pick {
  font-size: 0.66rem;
  padding: 0.3rem 0.55rem;
}

@media (max-width: 520px) {
  .service-explorer__rail--compact .service-explorer__pick {
    font-size: 0.58rem;
    padding: 0.26rem 0.45rem;
  }
}

.service-explorer__pick {
  flex: 0 0 auto;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  pointer-events: auto;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease);
}

.service-explorer__pick:hover {
  border-color: rgba(26, 86, 219, 0.5);
  background: rgba(26, 86, 219, 0.08);
  color: var(--text);
}

.service-explorer__pick.is-active {
  border-color: rgba(26, 86, 219, 0.85);
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.22), rgba(77, 134, 245, 0.10));
  color: #6ba4ff;
  box-shadow:
    0 0 16px rgba(26, 86, 219, 0.28),
    0 0 1px rgba(26, 86, 219, 0.9) inset;
}

.service-explorer__pick-hint {
  display: none;
}

/* --- video — full bleed edge to edge --- */
.service-explorer__frame {
  width: 100%;
  aspect-ratio: 16 / 5.5;
  position: relative;
  z-index: 1; /* stays below rail, copy, filmstrip */
  overflow: hidden;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-explorer__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(9, 9, 11, 0.72) 0%, transparent 40%),
    linear-gradient(to right, rgba(9, 9, 11, 0.28) 0%, transparent 35%);
  z-index: 2;
  pointer-events: none; /* never blocks clicks */
}

.service-explorer__frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── PPF Image Carousel ─────────────────────────────── */

/* Standalone carousel (replaces the whole frame) */
.service-explorer__frame.ppf-carousel {
  aspect-ratio: 4 / 3;
}

.service-explorer__frame.ppf-carousel::before {
  display: none;
}

/* Carousel nested inside a shared tabbed frame */
[data-tabbed-frame] {
  aspect-ratio: 4 / 3;
}

[data-tabbed-frame]::before {
  display: none;
}

[data-tabbed-frame] .ppf-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

[data-tabbed-frame] .ppf-carousel[hidden] {
  display: none;
}

.ppf-carousel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* Fill the ceramic showcase frame edge-to-edge */
#ceramic-protection-hub .ppf-carousel__img {
  object-fit: cover;
  object-position: center;
}

.ppf-carousel__img.is-active {
  opacity: 1;
  z-index: 1;
}

.ppf-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}

.ppf-carousel__btn:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
}

.ppf-carousel__btn--prev { left: 0.75rem; }
.ppf-carousel__btn--next { right: 0.75rem; }

.ppf-carousel__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 4;
}

.ppf-carousel__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.ppf-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* --- info panels below video --- */
.service-explorer__copy {
  background: rgba(255, 255, 255, 0.012);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.service-explorer__panel {
  display: none;
}

.service-explorer__panel.is-active {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1.5rem;
  align-items: start;
  padding: clamp(0.75rem, 1.8vw, 1.1rem) clamp(1.1rem, 2.5vw, 1.6rem);
  animation: se-fade-in 0.38s var(--ease);
}

@media (max-width: 640px) {
  .service-explorer__panel.is-active {
    grid-template-columns: 1fr;
  }
}

@keyframes se-fade-in {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .service-explorer__panel.is-active { animation: none; }
  .service-explorer__pick:hover { transform: none; }
}

/* Paint / glass hubs: tabs removed — keep rail band height for layout parity */
#paint-protection-hub .service-explorer__rail--phantom,
#glass-protection-hub .service-explorer__rail--phantom,
#paint-microfiber-hub .service-explorer__rail--phantom,
#glass-shatter-protection-hub .service-explorer__rail--phantom,
#styling-services-hub .service-explorer__rail--phantom,
#ceramic-protection-hub .service-explorer__rail--phantom,
#interior-nano-ceramic-hub .service-explorer__rail--phantom,
#wheel-rubber-paint-hub .service-explorer__rail--phantom,
#upholstery-services-hub .service-explorer__rail--phantom {
  pointer-events: none;
  user-select: none;
  flex-wrap: nowrap;
  gap: 0;
  min-height: 2.65rem;
}

.service-explorer__panel h4 {
  grid-column: 1 / -1;
  margin: 0 0 0.35rem;
  font-size: clamp(0.88rem, 1.7vw, 1.05rem);
  font-weight: 800;
  color: #4d86f5;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.se-copy-main { min-width: 0; }

.service-explorer__panel p {
  margin: 0 0 0.4rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.82rem;
}

.service-explorer__panel p:last-child { margin-bottom: 0; }

.service-explorer__callout {
  display: inline-block;
  margin: 0.35rem 0 0.2rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(26, 86, 219, 0.12);
  border: 1px solid rgba(26, 86, 219, 0.28);
  font-weight: 700;
  font-size: 0.72rem;
  color: #4d86f5;
  letter-spacing: 0.02em;
}

/* ── spec chips column — circular glowing badges ── */
.se-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 92px;
  padding-block-start: 1.8rem;
  align-items: center;
}

@media (max-width: 640px) {
  .se-specs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-block-start: 0;
    gap: 0.6rem;
  }
}

/* Circular glowing badge — mirrors the 92% brochure ring */
.se-spec {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  background:
    radial-gradient(circle at 38% 30%, rgba(26, 86, 219, 0.32) 0%, transparent 62%),
    radial-gradient(circle at 50% 50%, #0a1120, #060c18);
  border: 2px solid rgba(26, 86, 219, 0.72);
  box-shadow:
    0 0 0 1px rgba(77, 134, 245, 0.12) inset,
    0 0 20px rgba(26, 86, 219, 0.50),
    0 0 48px rgba(26, 86, 219, 0.14);
  text-align: center;
  font-size: 0.56rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.03em;
  position: relative;
  transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
}

.se-spec:hover {
  box-shadow:
    0 0 0 1px rgba(77, 134, 245, 0.22) inset,
    0 0 28px rgba(26, 86, 219, 0.72),
    0 0 60px rgba(26, 86, 219, 0.22);
  transform: translateY(-3px) scale(1.05);
}

/* Outer glow ring — extra layer matching brochure */
.se-spec::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(26, 86, 219, 0.22);
  pointer-events: none;
}

.se-spec strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
  text-shadow: 0 0 14px rgba(77, 134, 245, 0.9), 0 0 30px rgba(26, 86, 219, 0.5);
}

/* Long Latin label — keep inside the 80px ring */
.se-spec--selfheal {
  padding: 0 5px;
}

.se-spec--selfheal strong {
  font-size: clamp(0.52rem, 1.45vw, 0.62rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  max-width: 100%;
  word-break: break-word;
}

.se-spec--selfheal .se-spec__sub {
  display: block;
  margin-top: 0.18rem;
  font-size: clamp(0.48rem, 1.35vw, 0.56rem);
  line-height: 1.12;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  max-width: 100%;
}

#cars .cards-grid .card--spotlight .se-spec--selfheal strong {
  font-size: clamp(0.5rem, 1.35vw, 0.58rem);
  letter-spacing: -0.05em;
}

#cars .cards-grid .card--spotlight .se-spec--selfheal .se-spec__sub {
  font-size: clamp(0.46rem, 1.25vw, 0.54rem);
}

/* thumbnail filmstrip */
.service-explorer__filmstrip {
  display: flex;
  gap: 0.45rem;
  padding: 0.6rem clamp(1.1rem, 2.5vw, 1.6rem);
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  z-index: 10;
}

.service-explorer__filmstrip::-webkit-scrollbar { display: none; }

.service-explorer__filmstrip img {
  flex: 0 0 auto;
  width: clamp(80px, 11vw, 120px);
  height: 66px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.09);
  opacity: 0.7;
  cursor: zoom-in;
  pointer-events: auto;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.service-explorer__filmstrip img:hover {
  opacity: 1;
  transform: scale(1.05) translateY(-2px);
}

/* Lightbox overlay */
.phub-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: zoom-out;
  animation: lb-in 0.2s ease;
}

@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.phub-lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7);
  cursor: default;
}

.phub-lightbox__close {
  position: fixed;
  top: 1.1rem;
  inset-inline-end: 1.1rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  backdrop-filter: blur(4px);
}

.phub-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.split-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  min-height: 280px;
  background:
    linear-gradient(160deg, var(--surface-2), var(--bg-deep)),
    radial-gradient(circle at 70% 30%, rgba(228, 228, 231, 0.06), transparent 50%);
}

.split-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.split-photo.is-hidden {
  display: none;
}

/* Buildings — integrate with page/brochure language */
.buildings-section {
  position: relative;
  overflow: hidden;
}

.buildings-section::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 120%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 86, 219, 0.10), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 40%, rgba(77, 134, 245, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 35% at 15% 60%, rgba(26, 86, 219, 0.06), transparent 45%);
  opacity: 0.9;
}

.buildings-section > .container {
  position: relative;
  z-index: 1;
}

.buildings-copy__h {
  margin: 0.35rem 0 0.55rem;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.buildings-copy__h--sm {
  margin-top: 1rem;
  font-size: 1.15rem;
}

.buildings-copy__p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  line-height: 1.85;
}

.buildings-copy__p--last {
  margin-bottom: 0;
}

.buildings-jump {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-inline-start: 0.65rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(26, 86, 219, 0.10);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
}
.buildings-jump:hover {
  background: rgba(26, 86, 219, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
}
.buildings-jump:focus-visible {
  outline: 2px solid rgba(26, 86, 219, 0.55);
  outline-offset: 2px;
}

/* Buildings — premium add-on (keep existing data, add brochure-like layer) */
.buildings-section .buildings-showcase {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(9, 9, 11, 0.72), rgba(2, 6, 23, 0.56));
  box-shadow: 0 16px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.buildings-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.buildings-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  filter: contrast(1.04) saturate(1.08);
}

@media (max-width: 860px) {
  .buildings-strip {
    grid-template-columns: 1fr;
  }
  .buildings-strip img {
    height: 190px;
  }
}

.buildings-showcase__grid {
  padding: clamp(1rem, 2.6vw, 1.5rem);
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: start;
  background: radial-gradient(circle at 20% 0%, rgba(26, 86, 219, 0.18), transparent 58%);
}

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

.buildings-kicker {
  margin: 0 0 0.55rem;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(77, 134, 245, 0.9);
}

html[dir="rtl"] .buildings-kicker {
  letter-spacing: 0.02em;
  text-transform: none;
}

.buildings-title {
  margin: 0 0 0.7rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.22;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: rgba(244, 244, 245, 0.96);
}

.buildings-lead {
  margin: 0 0 1.05rem;
  color: rgba(244, 244, 245, 0.72);
  line-height: 1.75;
  max-width: 70ch;
}

.buildings-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
}

.bld-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 9, 11, 0.35);
  color: rgba(244, 244, 245, 0.86);
  font-weight: 750;
  font-size: 0.78rem;
}

.buildings-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (max-width: 520px) {
  .buildings-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.bld-kpi {
  border-radius: 14px;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(77, 134, 245, 0.32);
  background:
    radial-gradient(circle at 28% 18%, rgba(77, 134, 245, 0.22), transparent 58%),
    rgba(0, 0, 0, 0.32);
  box-shadow: 0 0 26px rgba(26, 86, 219, 0.14);
  text-align: center;
}

.bld-kpi strong {
  display: block;
  font-weight: 950;
  font-size: 0.74rem;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  overflow-wrap: anywhere;
}

html[dir="rtl"] .bld-kpi strong {
  letter-spacing: -0.02em;
  text-transform: none;
}

.bld-kpi span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: rgba(244, 244, 245, 0.68);
}

.bld-bullets {
  margin: 1rem 0 0;
  padding-inline-start: 1.15rem;
  color: rgba(244, 244, 245, 0.72);
  line-height: 1.85;
  display: grid;
  gap: 0.45rem;
}

.bld-bullets strong {
  color: rgba(244, 244, 245, 0.94);
}

.buildings-cards {
  display: grid;
  gap: 0.75rem;
}

.buildings-faq {
  display: block;
}

.bld-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(9, 9, 11, 0.70), rgba(2, 6, 23, 0.55));
  box-shadow: 0 14px 50px rgba(0,0,0,0.45);
  padding: 0.95rem 1rem;
}

.bld-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 900;
  color: rgba(244, 244, 245, 0.94);
}

.bld-card p {
  margin: 0;
  color: rgba(244, 244, 245, 0.7);
  line-height: 1.7;
  font-size: 0.88rem;
}

.bld-faq {
  margin-top: 0.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.bld-faq__item {
  padding: 0.85rem 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bld-faq__item:first-child {
  border-top: 0;
}

.bld-faq__item strong {
  display: block;
  color: rgba(244, 244, 245, 0.94);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.bld-faq__item p {
  margin: 0.35rem 0 0;
  color: rgba(244, 244, 245, 0.7);
  line-height: 1.7;
  font-size: 0.86rem;
}

.buildings-actions {
  padding: 0 0 clamp(1rem, 2.4vw, 1.35rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.buildings-window-fusion {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.1rem, 3vw, 1.8rem);
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(228, 228, 231, 0.14);
  background:
    radial-gradient(1200px 500px at 95% -20%, rgba(77, 134, 245, 0.16), transparent 50%),
    linear-gradient(165deg, rgba(22, 22, 26, 0.88), rgba(8, 8, 10, 0.92));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.buildings-window-fusion__head {
  margin-top: 0 !important;
  margin-bottom: 0.9rem;
}

.buildings-window-fusion__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.buildings-window-fusion__chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 228, 231, 0.16);
  background: rgba(13, 13, 16, 0.65);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.buildings-window-fusion .use-cases-grid,
.buildings-window-fusion .results-grid {
  margin-bottom: 1.1rem;
}

/* Features row */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.feature {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* شهادة SAIP — الفئة 37 */
.licensed-block {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: clamp(2rem, 5vw, 2.75rem);
  border-top: 1px solid var(--border);
}

.licensed-block__panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(145deg, rgba(228, 228, 231, 0.04) 0%, transparent 42%),
    linear-gradient(180deg, var(--surface-2), var(--bg-deep));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  padding: clamp(1.35rem, 3.5vw, 2rem);
  position: relative;
  overflow: hidden;
}

.licensed-block__panel::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent-logo), rgba(189, 189, 189, 0.25));
  opacity: 0.9;
}

.licensed-block__header {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.licensed-block__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.licensed-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: 999px;
  border: 1px solid rgba(228, 228, 231, 0.2);
  background: var(--accent-soft);
}

.licensed-pill--muted {
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(228, 228, 231, 0.04);
}

.licensed-block__label {
  margin-bottom: 0.4rem;
}

.licensed-block__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.licensed-block__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 50ch;
}

.official-services {
  margin: 0;
  padding-inline-start: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  display: grid;
  gap: 0.35rem;
}

.official-services li {
  padding-inline-start: 0.25rem;
}

.official-services li::marker {
  color: var(--accent);
  font-weight: 700;
}

.official-services--cards {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: licensed-svc;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 0.75rem;
}

.official-services--cards > li {
  counter-increment: licensed-svc;
  position: relative;
  margin: 0;
  padding: 1rem;
  padding-inline-start: 3rem;
  min-height: 110px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.45);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.official-services--cards > li::before {
  content: counter(licensed-svc);
  position: absolute;
  inset-inline-start: 0.75rem;
  top: 0.9rem;
  translate: 0 0;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bg-deep);
  background: linear-gradient(145deg, #e8e8e8, var(--accent-logo));
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.official-services--cards > li:hover {
  border-color: rgba(228, 228, 231, 0.18);
  background: rgba(228, 228, 231, 0.04);
  transform: translateY(-2px);
}

/* Service cards with images (Cars → "خدمات أخرى في مراكزنا") */
.official-services--cards > li.svc-card--media {
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: 0;
}

.official-services--cards > li.svc-card {
  overflow: hidden;
  justify-content: center;
  text-align: center;
}

.svc-card__media {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  background: var(--bg-deep);
  z-index: 0;
}

.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-card__text {
  display: block;
  color: var(--text);
  font-weight: 600;
  z-index: 2;
  position: relative;
  max-width: 18ch;
  margin-inline: auto;
}

.official-services--cards > li.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.25) 0%, rgba(9, 9, 11, 0.88) 100%);
  z-index: 1;
}

.official-services--cards > li.svc-card:not(.svc-card--media) {
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(228, 228, 231, 0.06), transparent 55%),
    rgba(9, 9, 11, 0.45);
}

.svc-card__link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  padding-inline-start: 3rem;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
}

.svc-card__link:focus-visible {
  outline: 2px solid var(--accent-logo);
  outline-offset: 2px;
}

.svc-card__link .svc-card__media {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
}

.svc-card__link .svc-card__text {
  position: relative;
  z-index: 2;
}

#carbon-fiber,
#upholstery-service,
#dry-cleaning-service,
#tire-wheel-service,
#vehicle-polishing-service,
#chassis-service,
#window-cleaning-service,
#varnish-service {
  scroll-margin-top: 6rem;
}

.vehicle-polish-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  max-width: min(100%, 960px);
  margin-inline: auto;
}

.vehicle-polish-photos figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-deep);
}

.vehicle-polish-photos img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 900px) {
  .vehicle-polish-photos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .vehicle-polish-photos {
    grid-template-columns: 1fr;
  }
}

.chassis-pdr-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  max-width: min(100%, 720px);
  margin-inline: auto;
}

.chassis-pdr-photos figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-deep);
}

.chassis-pdr-photos img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 520px) {
  .chassis-pdr-photos {
    grid-template-columns: 1fr;
  }
}

.dry-cleaning-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: min(100%, 880px);
  margin-inline: auto;
  align-items: stretch;
}

.dry-cleaning-split__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  aspect-ratio: 16 / 9;
}

.dry-cleaning-split__figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dry-cleaning-split__video {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dry-cleaning-split__video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: 0;
  border-radius: 0;
}

@media (max-width: 640px) {
  .dry-cleaning-split {
    grid-template-columns: 1fr;
    max-width: min(100%, 420px);
  }
}

.carbon-detail {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-deep), var(--surface));
}

.carbon-detail__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  max-width: min(100%, 420px);
  margin-inline: auto;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .carbon-detail__photos {
    grid-template-columns: 1fr;
    max-width: min(100%, 320px);
  }
}

.carbon-detail__photos figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-deep);
}

.carbon-detail__photos img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carbon-detail__video {
  max-width: min(100%, 420px);
  margin-inline: auto;
}

@media (max-width: 640px) {
  .carbon-detail__video {
    max-width: min(100%, 320px);
  }
}

.carbon-detail__video video {
  width: 100%;
  max-height: min(32vh, 240px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #000;
  display: block;
}

.tire-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
  max-width: min(100%, 920px);
  margin-inline: auto;
}

.tire-video-label {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.tire-videos-grid .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #000;
}

.tire-videos-grid .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .tire-videos-grid {
    grid-template-columns: 1fr;
  }
}

/* Projects */
.projects-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .projects-strip {
    grid-template-columns: 1fr;
  }
}

.project-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.project-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.5s var(--ease);
}

.project-tile:hover .project-tile__img {
  transform: scale(1.05);
}

.project-tile--empty .project-tile__img {
  display: none;
}

.project-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(9, 9, 11, 0.88), transparent 58%);
}

.project-tile__cap {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 0.95rem;
}

/* معرض الصور والفيديو */
.gallery-mosaic {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, minmax(100px, 18vw));
  max-height: none;
}

.gallery-mosaic--mixed {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  grid-template-rows: none;
  grid-auto-rows: minmax(200px, 26vw);
}

.gallery-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-photos-grid .gallery-cell {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

@media (max-width: 900px) {
  .gallery-mosaic:not(.gallery-mosaic--mixed) {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: minmax(140px, 28vw);
  }

  .gallery-mosaic--mixed {
    grid-auto-rows: minmax(180px, 42vw);
  }

  .gallery-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-cell--wide,
  .gallery-cell--tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .gallery-photos-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-videos-wrap {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--border);
}

.gallery-videos-heading {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.gallery-videos-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.5;
}

.gallery-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.25rem;
}

.video-card {
  margin: 0;
}

.video-card__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-deep);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16 / 9;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s;
}

.video-card:hover .video-card__frame {
  border-color: rgba(228, 228, 231, 0.2);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
}

.video-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* contain يعرض الإطار كاملاً دون تكبير قصّي يقلّل وضوح التفاصيل */
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--bg-deep);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gallery-cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  min-height: 120px;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gallery-photos-grid .gallery-cell img {
  min-height: 0;
}

.gallery-cell:hover img {
  transform: scale(1.04);
}

.gallery-cell.is-empty {
  background:
    linear-gradient(145deg, var(--surface-2), var(--bg-deep)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 3px,
      rgba(228, 228, 231, 0.04) 3px,
      rgba(228, 228, 231, 0.04) 6px
    );
}

.gallery-cell.is-empty img {
  display: none;
}

.gallery-cell--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-cell--tall {
  grid-row: span 2;
}

/* Contact / footer */
.contact-section {
  scroll-margin-top: 1.25rem;
}

.contact-shell__header {
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  max-width: 52ch;
}

.contact-shell__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.95;
}

.contact-shell__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.contact-shell__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.contact-bar {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(77, 134, 245, 0.1), transparent 50%),
    linear-gradient(165deg, rgba(18, 20, 28, 0.95) 0%, rgba(6, 7, 12, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.28);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
}

.contact-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(77, 134, 245, 0.06), transparent 55%);
  pointer-events: none;
}

.contact-bar__main {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.contact-bar__branches-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(245, 245, 245, 0.88);
  letter-spacing: -0.01em;
}

/* Hotline strip — same visual language as branch cards (no heavy green / grey clash) */
.contact-toolbar {
  margin-bottom: 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 6, 10, 0.45);
}

.contact-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
}

.contact-toolbar__lead {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact-toolbar__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-toolbar__number {
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.15;
}

.contact-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.contact-toolbar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.52rem 0.95rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}

.contact-toolbar__ico {
  flex-shrink: 0;
  opacity: 0.92;
}

.contact-toolbar__btn--primary {
  background: rgba(228, 228, 231, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.contact-toolbar__btn--primary:hover {
  background: rgba(228, 228, 231, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-toolbar__btn--wa {
  background: rgba(37, 211, 102, 0.09);
  border-color: rgba(37, 211, 102, 0.28);
  color: #b8f5cf;
}

.contact-toolbar__btn--wa:hover {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.42);
  color: #d8fce8;
}

.contact-toolbar__btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.contact-toolbar__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.contact-toolbar__hint {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

.contact-copy-btn.contact-toolbar__btn {
  font-family: inherit;
}

.contact-copy-btn__done {
  color: #a8d4ff;
  font-weight: 700;
}

@media (max-width: 520px) {
  .contact-toolbar__actions {
    width: 100%;
  }

  .contact-toolbar__btn {
    flex: 1 1 auto;
    min-width: calc(33.333% - 0.35rem);
    justify-content: center;
  }
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 0.35rem 1rem;
  align-items: baseline;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.28);
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-list strong {
  color: var(--accent);
  display: inline-block;
  margin: 0;
  font-weight: 700;
}

.contact-value {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  justify-content: flex-start;
}

.contact-list a,
.contact-list span {
  color: var(--text);
}

.contact-list span {
  color: rgba(245, 245, 245, 0.9);
}

.contact-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.contact-list a[href^="tel"] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.branches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-top: 0;
}

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

.branch-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 9, 14, 0.55);
  padding: 1rem 1rem 1.05rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.branch-card__head {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
}

.branch-card__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
}

.branch-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.branch-card__badge--open {
  color: #a7e9bd;
  border: 1px solid rgba(52, 168, 83, 0.35);
  background: rgba(34, 120, 62, 0.14);
}

.branch-card__badge--soon {
  color: #e8c87a;
  border: 1px solid rgba(200, 160, 80, 0.28);
  background: rgba(180, 130, 40, 0.1);
}

.branch-card--open {
  border-color: rgba(52, 130, 78, 0.25);
}

.branch-card--soon {
  opacity: 0.92;
}

.branch-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.branch-card__addr {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.branch-card .contact-list {
  margin-top: auto;
}

.branch-card .contact-list li {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
}

.branch-card .contact-list strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
}

.branch-card .contact-value {
  gap: 0.45rem;
}

.wa-link {
  margin-inline-start: 0.5rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(228, 228, 231, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.wa-link:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--accent-soft);
}

.contact-email-row {
  margin-top: 1.35rem;
  margin-bottom: 0.15rem;
  text-align: center;
}

.contact-email-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.contact-email-text .contact-email-chip {
  margin-top: 0;
  margin-inline-start: 0.35rem;
  vertical-align: middle;
}

.contact-email-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(99, 152, 255, 0.28);
  background: rgba(26, 86, 219, 0.07);
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.contact-email-chip:hover {
  background: rgba(26, 86, 219, 0.16);
  border-color: rgba(99, 152, 255, 0.6);
  color: var(--text);
  box-shadow: 0 0 18px rgba(26, 86, 219, 0.18);
  text-decoration: none;
}

.contact-email-chip__icon {
  display: flex;
  align-items: center;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.85;
}

.contact-email-chip__label {
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.site-footer {
  border-top: 1px solid rgba(26, 86, 219, 0.25);
  padding: 3rem 0 2rem;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(6, 10, 22, 0.70), rgba(4, 7, 16, 0.95));
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 134, 245, 0.65), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

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

/* Footer — payment partners panel (lead copy + logo grid) */
.footer-payments {
  margin: 0 0 2rem;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(77, 134, 245, 0.12), transparent 55%),
    radial-gradient(ellipse 90% 70% at 0% 100%, rgba(139, 92, 246, 0.08), transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 45%, rgba(4, 8, 20, 0.55) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.footer-payments__shell {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.65rem 0 1.75rem;
}
.footer-payments__lead {
  text-align: start;
  margin-inline: 1.75rem;
  padding-inline-start: 0.85rem;
  border-inline-start: 3px solid rgba(77, 134, 245, 0.65);
}
.footer-payments__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(129, 168, 255, 0.95);
}
.footer-payments__title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
  border: none;
  padding: 0;
}
h2.footer-payments__title {
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: -0.02em;
}
.footer-payments__tagline {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 38ch;
}
.footer-payments__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem 0.65rem;
}
.footer-payments__cell {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.footer-payments__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0.5rem 0.65rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-payments__pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}
.footer-payments__pill img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}
.footer-payments__pill--wide img {
  max-width: 120px;
}
.footer-payments__caption {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(228, 228, 231, 0.72);
  max-width: 12rem;
}
@media (max-width: 900px) {
  .footer-payments__shell {
    gap: 1rem;
    padding: 1.35rem 0 1.5rem;
  }
  .footer-payments__lead {
    margin-inline: 1.25rem;
  }
}
@media (max-width: 480px) {
  .footer-payments__title,
  h2.footer-payments__title {
    font-size: 0.98rem;
  }
  .footer-payments__tagline {
    font-size: 0.85rem;
  }
  .footer-payments__pill {
    min-height: 46px;
    padding: 0.45rem 0.5rem;
  }
  .footer-payments__pill img {
    height: 22px;
    max-width: 88px;
  }
  .footer-payments__caption {
    font-size: 0.65rem;
  }
}

.footer-links h4 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
  display: block;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-brand-copy {
  position: relative;
  margin-top: 1.4rem;
  max-width: 38ch;
  padding-top: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.85;
  color: rgba(220, 232, 255, 0.88);
  letter-spacing: 0.015em;
  text-wrap: pretty;
  border-top: 1px solid rgba(125, 211, 252, 0.15);
}


html[dir="rtl"] .footer-brand-copy {
  text-align: right;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-2);
}

.social {
  display: flex;
  gap: 0.75rem;
}

.contact-social {
  margin-top: 1.15rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social a:hover {
  background: var(--accent-soft);
  color: var(--text);
  border-color: var(--border-strong);
}

.social a svg {
  display: block;
}

.social a.social-link--instagram {
  color: #e4405f;
}

.social a.social-link--x {
  color: #ffffff;
}

.social a.social-link--snapchat {
  color: #fffc00;
}

.social a.social-link--tiktok {
  color: #25f4ee;
}

.social a.social-link--instagram:hover {
  color: #e4405f;
  border-color: #e4405f;
  background: rgba(228, 64, 95, 0.12);
}

.social a.social-link--x:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.social a.social-link--snapchat:hover {
  color: #fffc00;
  border-color: #fffc00;
  background: rgba(255, 252, 0, 0.15);
}

.social a.social-link--tiktok:hover {
  color: #25f4ee;
  border-color: #25f4ee;
  background: rgba(37, 244, 238, 0.14);
}

/* Subtle reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Privacy pages: show content instantly (no scroll reveal). */
body.page-privacy .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Offers view: avoid "blank until scroll" on first paint. */
body[data-view="offers"] .reveal {
  opacity: 1;
  transform: none;
}

/* English page (en/index.html) — Latin typography */
html[lang="en"] body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
}

/* ═══════════════════════════════════════
   PRICING SECTION  — Professional 2026
═══════════════════════════════════════ */

#pricing {
  padding: clamp(4rem, 10vw, 7rem) 0;
  scroll-margin-top: 80px;
  --pricing-num: #34d399;
}
.pricing-title-blue {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  position: relative;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #4d86f5 0%, #7dd3fc 50%, #4d86f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.pricing-title-blue::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 65%;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.95), transparent);
}

/* ══════════════════════════════════════════════
   PRICING PAYMENTS BLOCK — Premium Redesign
   ══════════════════════════════════════════════ */
.pricing-payments {
  position: relative;
  background: linear-gradient(145deg, var(--surface), var(--bg-deep));
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.3);
  padding: clamp(1.5rem, 3vw, 2.1rem) clamp(1.1rem, 2.4vw, 1.8rem);
  margin: 3rem 0 2rem;
  overflow: hidden;
}
.pricing-payments::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(26,86,219,0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(77,134,245,0.1), transparent 60%);
  pointer-events: none;
}
.pricing-payments::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
}

/* ── Promo hero ── */
.pricing-payments__promo {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.35rem;
  position: relative;
  overflow: hidden;
}
.pricing-payments__promo::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2563eb, #0ea5e9);
}
.ppromo__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ppromo__title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}
.ppromo__line {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 48ch;
}
.ppromo__line strong {
  color: #cfe0ff;
  font-weight: 700;
  font-size: 1em;
}
.ppromo__tag {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  margin-left: 0.4rem;
  vertical-align: middle;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(59,130,246,0.35);
}
.ppromo__partners {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}
.ppromo__partners strong {
  color: var(--text);
  font-weight: 700;
}
.ppromo__dot {
  color: var(--muted-2);
  font-weight: 700;
}
.ppromo__qitaf {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.ppromo__qitaf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(26,86,219,0.16);
  border: 1px solid rgba(77,134,245,0.45);
  color: #cfe0ff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .pricing-payments__promo { flex-direction: column; padding: 0.95rem 1rem; }
}

/* ── Payments grid header ── */
.pricing-payments__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.pricing-payments__head::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #2563eb, #0ea5e9);
  border-radius: 4px;
  flex-shrink: 0;
}
.pricing-payments__head h3 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfe0ff;
}
.pricing-payments__head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.pricing-payments__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}
.payment-logo-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  min-height: 82px;
  padding: 0.85rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 14px rgba(15,23,42,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.payment-logo-card:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: 0 10px 24px rgba(37,99,235,0.14);
}
.payment-logo-card img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}
.payment-logo-card span {
  font-size: 0.74rem;
  color: rgba(75,85,99,0.82);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.payment-logo-card--wide img {
  max-width: 132px;
}

/* ── Footer payment ticker overrides (dark background) ── */
.footer-payments .pay-ticker {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  padding: 0.25rem 0 0.5rem;
}
.footer-payments .pay-ticker__slide {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  min-width: 80px;
  height: 54px;
}
.footer-payments .pay-ticker__slide:hover {
  border-color: #93c5fd;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14);
  transform: translateY(-2px);
}
.footer-payments .pay-ticker__slide img {
  height: 26px;
}

/* ── Payment Logo Ticker ── */
.pay-ticker {
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0 1rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.pay-ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  animation: pay-ticker-scroll 32s linear infinite;
  direction: ltr;
}
.pay-ticker__track:hover {
  animation-play-state: paused;
}
.pay-ticker__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  padding: 0 14px;
  margin: 0 8px;
  background: linear-gradient(160deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  min-width: 88px;
  box-shadow: 0 2px 10px rgba(15,23,42,0.07), 0 1px 2px rgba(15,23,42,0.04);
  flex-shrink: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: default;
}
.pay-ticker__slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(37,99,235,0.13);
  border-color: #bfdbfe;
}
.pay-ticker__slide img {
  height: 30px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.pay-ticker__slide--wide img {
  max-width: 130px;
}
@keyframes pay-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .pay-ticker__track { animation: none; }
}

/* ── Ticker slide tooltip (portal – rendered on body to escape overflow:hidden) ── */
.pay-tip-portal {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, calc(-100% - 8px));
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.93);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.3em 0.7em;
  border-radius: 7px;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  direction: rtl;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.pay-tip-portal--visible {
  opacity: 1;
}

/* ── Corporate / University discount banner ── */
.corp-discount-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(120deg, rgba(26,86,219,0.10) 0%, rgba(26,86,219,0.03) 100%);
  border: 1px solid rgba(26,86,219,0.35);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.corp-discount-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(26,86,219,0.025) 0px, rgba(26,86,219,0.025) 1px,
    transparent 1px, transparent 14px
  );
  pointer-events: none;
}
.corp-discount-icon {
  font-size: 2.6rem;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
.corp-discount-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.corp-discount-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}
.corp-discount-sub {
  margin: 0;
  font-size: 0.95rem;
  color: #86efac;
  line-height: 1.75;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.corp-discount-range {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.25rem 0;
}
.corp-discount-pct {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pricing-num), #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.corp-discount-sep {
  font-size: 1.5rem;
  color: rgba(52, 211, 153, 0.65);
  font-weight: 300;
}
.corp-discount-cta {
  margin: 0;
  font-size: 0.95rem;
  color: #86efac;
  line-height: 1.75;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.corp-discount-btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}
@media (max-width: 600px) {
  .pricing-payments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .corp-discount-banner { flex-direction: column; align-items: flex-start; padding: 1.5rem 1.25rem; }
  .corp-discount-pct { font-size: 2rem; }
}

/* ── Promo strip ───────────────────────── */
.pricing-promo-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  background: linear-gradient(120deg, rgba(26,86,219,0.15) 0%, rgba(26,86,219,0.04) 100%);
  border: 1px solid rgba(26,86,219,0.35);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.75rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.pricing-promo-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(26,86,219,0.03) 0px, rgba(26,86,219,0.03) 2px,
    transparent 2px, transparent 12px
  );
  pointer-events: none;
}
.pricing-promo-badge {
  background: linear-gradient(135deg, #1a56db, #1545be);
  color: #1a1400;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.pricing-promo-text {
  flex: 1;
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}
.pricing-promo-text strong {
  color: var(--pricing-num, #34d399);
  font-size: 1.2rem;
}
.pricing-promo-btn { white-space: nowrap; flex-shrink: 0; }

/* ── Service block (psvc) ───────────────── */
.psvc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem 2rem;
  margin-bottom: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.psvc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a56db, #1545be, #1a56db);
  opacity: 0;
  transition: opacity 0.3s;
}
.psvc:hover { border-color: rgba(26,86,219,0.35); box-shadow: 0 12px 50px rgba(0,0,0,0.35); }
.psvc:hover::before { opacity: 1; }

/* Header row */
.psvc__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.psvc__title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.psvc__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.psvc__name {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}
.psvc__sub {
  margin: 0;
  font-size: 0.83rem;
  color: var(--muted);
  direction: ltr;
}
.psvc__disc {
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a56db, #1545be);
  color: #1a1400;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  align-self: flex-start;
  white-space: nowrap;
}

/* CTA */
.psvc__cta {
  display: inline-block;
  margin-top: 1.75rem;
}

/* Call message */
.psvc__call-msg {
  font-size: 0.97rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
}
.psvc__call-msg a {
  color: #1a56db;
  font-weight: 600;
  text-decoration: none;
}
.psvc__call-msg a:hover { text-decoration: underline; }

/* ── Pricing Table ──────────────────────── */
.psvc__table {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.psvc__table-head {
  display: table-row;
  background: rgba(26, 86, 219, 0.08);
}
.psvc__table-head th,
.psvc__table-head span {
  display: table-cell;
  padding: 0.85rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

/* Ensure equal column widths */
.psvc__table th, .psvc__table td {
  width: 25%;
}
.psvc__table--2col th, .psvc__table--2col td {
  width: 33.333%;
}

/* Category column alignment */
.psvc__table-head th:first-child,
.psvc__table-head span:first-child {
  text-align: right;
}

.psvc__table-row {
  display: table-row;
  transition: background 0.2s;
}
.psvc__table-row td,
.psvc__table-row > span {
  display: table-cell;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  transition: background 0.2s;
}

.psvc__table-row:last-child td { border-bottom: none; }
.psvc__table-row:hover td { background: var(--accent-soft); }

.psvc__table-row--gold td {
  background: linear-gradient(90deg, rgba(26, 86, 219, 0.06), transparent);
}
.psvc__table-row--gold:hover td {
  background: rgba(26, 86, 219, 0.1);
}

.psvc__cat-name {
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: right;
  align-items: flex-end;
  word-break: break-word;
}

.psvc__cat-name small {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
  font-family: var(--nf-logo-serif);
  display: block;
}

.psvc__price-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pricing-num, #34d399);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  line-height: 1.1;
}

.psvc__price-val small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
}

.psvc__table-row--gold .psvc__price-val { color: var(--pricing-num, #34d399); }


/* ── Note ─────────────────────────────── */
.psvc__note {
  margin: 0.85rem 0 0;
  font-size: 0.77rem;
  color: var(--muted-2);
}

/* ── Bumper row ──────────────────────────── */
.psvc__bumper-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.psvc__bumper-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent-soft);
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
}
.psvc__bumper-label {
  font-size: 0.87rem;
  color: var(--muted);
}
.psvc__bumper-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pricing-num, #34d399);
  white-space: nowrap;
}
.psvc__bumper-price small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  margin-inline-start: 0.2rem;
}

/* ── Fixed price box ─────────────────────── */
.psvc__fixed-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: linear-gradient(120deg, #0d1530, #0a1220);
  border: 1px solid rgba(26,86,219,0.3);
  border-radius: 14px;
  padding: 1.5rem 2rem;
}
.psvc__fixed-label {
  font-size: 1.05rem;
  font-weight: 700;
}
.psvc__fixed-label span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  direction: ltr;
  margin-top: 0.2rem;
}
.psvc__fixed-tag {
  background: rgba(26,86,219,0.15);
  color: #1a56db;
  border: 1px solid rgba(26,86,219,0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.psvc__fixed-val {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--pricing-num, #34d399);
  line-height: 1;
}
.psvc__fixed-val small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  margin-inline-start: 0.25rem;
}

/* ── Note ─────────────────────────────── */
.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-2);
  margin-top: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

/* ── Special Offers block ───────────────── */
.pricing-offers-section {
  margin-top: 3rem;
}
.pricing-offers-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26,86,219,0.25);
  text-align: center;
}
.pricing-offers-intro {
  margin: -0.15rem auto 1.4rem;
  max-width: 60ch;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  color: #e6efff;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.14), rgba(56, 189, 248, 0.08));
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.28);
  text-shadow: 0 1px 10px rgba(14, 165, 233, 0.18);
}
.pricing-offers-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  position: relative;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #34d399 0%, #7dd3fc 45%, #34d399 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  direction: ltr;
  animation: offers-title-shimmer 3.2s ease-in-out infinite, offers-title-float 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(52, 211, 153, 0.28));
}

.pricing-offers-header h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.38rem;
  width: 62%;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.95), transparent);
  animation: offers-title-line 2.8s ease-in-out infinite;
}

@keyframes offers-title-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes offers-title-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes offers-title-line {
  0%, 100% { opacity: 0.45; width: 46%; }
  50% { opacity: 1; width: 72%; }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-offers-header h3,
  .pricing-offers-header h3::after {
    animation: none;
  }
}
.pricing-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}
.poffer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.poffer:hover {
  border-color: rgba(26,86,219,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.poffer__name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.1rem;
  line-height: 1.4;
  direction: ltr;
}
.poffer--gold {
  background: linear-gradient(160deg, #0d1530, #0a1220);
  border-color: rgba(26,86,219,0.4);
  box-shadow: 0 6px 30px rgba(26,86,219,0.12);
}
.poffer--gold:hover { border-color: rgba(26,86,219,0.65); box-shadow: 0 16px 50px rgba(26,86,219,0.2); }
.poffer--gold .poffer__disc { background: linear-gradient(135deg, #1a56db, #0d3ab0); }
.poffer--gold .poffer__price { color: #34d399; }
.poffer--bronze {
  background: linear-gradient(160deg, #261e18, #1e1710);
  border-color: rgba(176,112,60,0.4);
}
.poffer--bronze:hover { border-color: rgba(176,112,60,0.65); }
.poffer--bronze .poffer__disc { background: linear-gradient(135deg, #b0703c, #8f5520); }
.poffer--bronze .poffer__price { color: var(--pricing-num, #34d399); }
.poffer--silver {
  background: linear-gradient(160deg, #20201f, #181818);
  border-color: rgba(180,180,180,0.25);
}
.poffer--silver:hover { border-color: rgba(180,180,180,0.45); }
.poffer--silver .poffer__disc { background: linear-gradient(135deg, #a0a0a0, #787878); color: #fff; }
.poffer--silver .poffer__price { color: var(--pricing-num, #34d399); }
.poffer--internal {
  background: var(--surface);
  border-color: var(--border);
}
.poffer--internal:hover { border-color: var(--border-strong); }
.poffer--internal .poffer__disc { background: linear-gradient(135deg, #3a6, #276); color: #fff; }
.poffer--internal .poffer__price { color: var(--pricing-num, #34d399); }
.poffer__disc {
  display: inline-block;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a56db, #1545be);
  color: #1a1400;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.poffer__sizes { display: flex; flex-direction: column; gap: 0.6rem; }
.poffer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}
.poffer__row:last-child { border-bottom: none; }
.poffer__na { color: #1a56db; font-weight: 600; font-size: 0.82rem; text-decoration: none; flex-shrink: 0; }
.poffer__na:hover { text-decoration: underline; }
.poffer__price {
  color: #34d399;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Offers brochure (PDF pages) ───────────────────────────── */
.brochure-offers {
  --bro-frame: rgba(255, 255, 255, 0.06);
  --bro-frame-strong: rgba(255, 255, 255, 0.11);
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  padding-block: clamp(2.25rem, 5vw, 3.75rem);
  padding-inline: clamp(0.4rem, 1.8vw, 1rem);
  position: relative;
  border-radius: clamp(20px, 2.5vw, 28px);
  isolation: isolate;
  /* Same family as page + print mat — lets brochure whites read clean */
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 255, 255, 0.04), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg-deep) 55%, #1a1a1a 100%);
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 60px rgba(0, 0, 0, 0.2),
    0 40px 80px rgba(0, 0, 0, 0.38);
}

.brochure-offers::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.06) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

.brochure-offers::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 0, 0, 0.22), transparent 65%);
  opacity: 1;
}

.brochure-offers > * {
  position: relative;
  z-index: 2;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

/* Offers: full-width pages stacked — scroll the section in document order */
.brochure-offers .brochure-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 2.85rem);
}

.brochure-offers .brochure-grid::before {
  content: "";
  display: block;
  width: min(320px, 72%);
  height: 1px;
  margin: 0 auto 0.25rem;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bro-frame),
    var(--bro-frame-strong),
    var(--bro-frame),
    transparent
  );
}

.brochure-offers .brochure-card {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  border-radius: clamp(20px, 2vw, 26px);
  border-color: var(--border-strong);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg-deep) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 32px 64px rgba(0, 0, 0, 0.45);
}

.brochure-offers .brochure-card::after {
  background: conic-gradient(
    from 210deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.07),
    rgba(200, 200, 200, 0.1),
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.22;
}

.brochure-offers .brochure-card img {
  filter: none;
}

.brochure-offers .brochure-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 48px 90px rgba(0, 0, 0, 0.52);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.brochure-offers .brochure-card:hover img {
  transform: scale(1.008);
  filter: none;
}

.brochure-offers .brochure-card:hover::after {
  opacity: 0.34;
  filter: blur(0);
}

.brochure-offers .brochure-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}

.brochure-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(900px 240px at 50% -20%, rgba(77, 134, 245, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.88), rgba(9, 9, 11, 0.58));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateZ(0);
  cursor: zoom-in;
  transition:
    transform 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    filter 0.22s var(--ease);
  will-change: transform;
}

.brochure-card:focus-visible {
  outline: 3px solid rgba(77, 134, 245, 0.65);
  outline-offset: 3px;
}

.brochure-card::before {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 55%
  );
  transform: translateX(-35%) rotate(8deg);
  opacity: 0;
  transition: opacity 0.22s var(--ease), transform 0.65s var(--ease);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}

.brochure-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    conic-gradient(
      from 210deg,
      rgba(77, 134, 245, 0.00),
      rgba(77, 134, 245, 0.85),
      rgba(52, 211, 153, 0.72),
      rgba(250, 204, 21, 0.62),
      rgba(77, 134, 245, 0.85),
      rgba(77, 134, 245, 0.00)
    );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.52;
  filter: blur(0.2px);
  transition: opacity 0.22s var(--ease), filter 0.22s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.brochure-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1);
  transition: transform 0.28s var(--ease), filter 0.28s var(--ease);
}

.brochure-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(77, 134, 245, 0.18) inset;
  filter: drop-shadow(0 14px 28px rgba(77, 134, 245, 0.10));
}

.brochure-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.07) contrast(1.05);
}

.brochure-card:hover::before {
  opacity: 1;
  transform: translateX(28%) rotate(8deg);
}

.brochure-card:hover::after {
  opacity: 0.9;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .brochure-card,
  .brochure-card img,
  .brochure-card::before,
  .brochure-card::after {
    transition: none !important;
  }
  .brochure-offers .brochure-card:hover,
  .brochure-offers .brochure-card:hover img {
    transform: none !important;
  }
}

/* Brochure lightbox */
.brochure-lb {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.brochure-lb__panel {
  width: min(1040px, 96vw);
  max-height: 88vh;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(9, 9, 11, 0.75);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.65);
  position: relative;
}

.brochure-lb__img {
  width: 100%;
  height: 88vh;
  max-height: 88vh;
  object-fit: contain;
  background: #07070a;
  display: block;
}

.brochure-lb__close {
  position: absolute;
  top: 0.65rem;
  inset-inline-end: 0.65rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(9, 9, 11, 0.55);
  color: rgba(244, 244, 245, 0.92);
  font-size: 1.35rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.brochure-lb__close:hover {
  background: rgba(9, 9, 11, 0.72);
}

.brochure-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(9, 9, 11, 0.50);
  color: rgba(244, 244, 245, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.brochure-lb__nav:hover { background: rgba(9, 9, 11, 0.72); }
.brochure-lb__nav--prev { inset-inline-start: 0.65rem; }
.brochure-lb__nav--next { inset-inline-end: 0.65rem; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  /* Table maintains fixed layout until 700px */
}
@media (max-width: 700px) {
  .psvc { padding: 1.5rem 1rem; }
  .psvc__table { display: block; border: none; }
  .psvc__table-head { display: none; }
  .psvc__table-row {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    background: var(--surface);
  }
  .psvc__table-row td {
    display: block;
    width: 100% !important;
    padding: 0.25rem 0;
    border: none;
    text-align: right;
  }
  .psvc__cat-name { 
    margin-bottom: 0.75rem; 
    border-bottom: 1px solid var(--border-strong) !important;
    padding-bottom: 0.75rem !important;
  }
  .psvc__price-val { 
    font-size: 1.15rem; 
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.4rem 0 !important;
  }
  /* Add labels for mobile accessibility */
  .psvc__price-val::before {
    content: attr(data-label);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
  }
  .psvc__price-val small { font-size: 0.75rem; }
  .psvc__fixed-price-box { flex-direction: column; align-items: flex-start; }
  .psvc__fixed-val { font-size: 2rem; }

  .pricing-promo-strip { flex-direction: column; text-align: center; }
  .pricing-offers-grid { grid-template-columns: 1fr 1fr; }
  .psvc__bumper-row { flex-direction: column; }
}
@media (max-width: 440px) {
  .pricing-offers-grid { grid-template-columns: 1fr; }
  .psvc__table-row { grid-template-columns: 1fr; }
  .brochure-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
}

/* ══════════════════════════════════════════════════════════════════
   Location Map — Premium
   ══════════════════════════════════════════════════════════════════ */
.location-map {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(26, 86, 219, 0.06);
}

/* map frame — full width, fixed height */
.location-map__frame {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: #0a0b10;
}
@media (max-width: 699px) {
  .location-map__frame { height: 310px; }
}

.location-map__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.38) brightness(0.68) contrast(1.18);
  transition: filter 0.5s var(--ease);
}
.location-map:hover .location-map__frame iframe {
  filter: saturate(0.6) brightness(0.8) contrast(1.1);
}

/* Dark gradient veil — creates depth over the map */
.location-map__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(7, 8, 14, 0.97) 0%,
                              rgba(7, 8, 14, 0.65) 32%,
                              rgba(7, 8, 14, 0.15) 60%,
                              transparent          80%),
    radial-gradient(ellipse 70% 80% at 0% 100%, rgba(26, 86, 219, 0.13), transparent 65%);
  pointer-events: none;
}

/* Floating glass info panel — absolute, anchored to bottom of map */
.location-map__panel {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 4;
}
/* Subtle top-edge shimmer */
.location-map__panel::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 2rem;
  inset-inline-end: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 134, 245, 0.45), transparent);
  pointer-events: none;
}

/* Pulsing location pin */
.location-map__pin-wrap {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-map__pin-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.3), rgba(77, 134, 245, 0.18));
  border: 1.5px solid rgba(107, 164, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90c2ff;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 20px rgba(26, 86, 219, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.location-map__pin-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(77, 134, 245, 0.55);
  animation: lm-pulse 2.6s ease-out infinite;
}
.location-map__pin-ring2 {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(77, 134, 245, 0.28);
  animation: lm-pulse 2.6s ease-out infinite 1.1s;
}
@keyframes lm-pulse {
  0%   { transform: scale(1);   opacity: 0.75; }
  75%  { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* Text block */
.location-map__info {
  flex: 1;
  min-width: 160px;
}
.location-map__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nb-3);
}
.location-map__name {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.location-map__addr {
  margin: 0;
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.65;
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}
.location-map__addr svg {
  flex-shrink: 0;
  margin-top: 0.2em;
  color: var(--nb-3);
  opacity: 0.8;
}

/* CTA button — premium gradient */
.location-map__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.68rem 1.35rem;
  background: linear-gradient(135deg, #1a56db 0%, #2d6aed 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  border: 1px solid rgba(107, 164, 255, 0.25);
  box-shadow:
    0 4px 22px rgba(26, 86, 219, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.22s var(--ease), transform 0.18s var(--ease), background 0.22s;
}
.location-map__cta:hover {
  background: linear-gradient(135deg, #2060e8 0%, #4d86f5 100%);
  box-shadow:
    0 6px 30px rgba(26, 86, 219, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.location-map__cta:active {
  transform: translateY(0);
}

@media (max-width: 520px) {
  .location-map__panel { padding: 1.25rem 1.25rem; gap: 0.85rem 1.25rem; }
  .location-map__cta { width: 100%; justify-content: center; }
}

/* Booking forms (service + maintenance) */
.booking-block {
  margin: 0 0 clamp(1.5rem, 3.5vw, 2rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(77, 134, 245, 0.08), transparent 55%),
    linear-gradient(165deg, rgba(18, 20, 28, 0.92) 0%, rgba(8, 9, 14, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.booking-block__head {
  margin-bottom: 1.1rem;
  max-width: 58ch;
}

.booking-block__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.booking-block__lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
}

.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.booking-tabs__btn {
  flex: 1 1 12rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 6, 10, 0.45);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.booking-tabs__btn:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.booking-tabs__btn.is-active {
  background: rgba(77, 134, 245, 0.14);
  border-color: rgba(107, 164, 255, 0.35);
  color: #d4e4ff;
}

.booking-form {
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 6, 10, 0.35);
}

.booking-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.booking-field--wide {
  grid-column: 1 / -1;
}

.booking-field__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.82);
}

.booking-field__req {
  color: #7eb8ff;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 0.62rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.4;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: rgba(107, 164, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(77, 134, 245, 0.12);
}

.booking-field input:invalid:not(:placeholder-shown):not(:focus),
.booking-field select:invalid:not(:focus),
.booking-field textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(248, 113, 113, 0.45);
}

.booking-field textarea {
  resize: vertical;
  min-height: 5rem;
}

.booking-form__actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.booking-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.booking-form__status {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}

.booking-form__status.is-success {
  color: #9fd4b0;
}

.booking-form__status.is-error {
  color: #f5a8a8;
}

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

  .booking-field--wide {
    grid-column: auto;
  }

  .booking-form__submit {
    width: 100%;
  }
}
