/* =================================================================
   TM Lightscape Designs — Styles v2
   Palette: black / warm gold / cream / white
   Design language: editorial, elegant, premium outdoor lighting
   ================================================================= */


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ----------------------------------------------------------------
   Reset & base
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100vw;
}

/* ===== SCROLLBAR ===== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: var(--c-gold);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-gold);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--c-gold) transparent;
}

body {
  font-family:
    'Plus Jakarta Sans',
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  scrollbar-color: var(--c-gold) #000;

}

img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
ul {
  list-style: none;
}
p {
  margin: 0 0 14px;
}
p:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   Design tokens
   ---------------------------------------------------------------- */
:root {
  /* Core palette */
  --c-bg: #fafaf7;
  --c-text: #1a1a1a;
  --c-text-soft: #565650;
  --c-muted: #8a8a82;

  --c-black: #000000;
  --c-dark: #000000;
  --c-dark-2: #000000;

  --c-gold: #d4a94a;
  --c-gold-light: #e8c96e;
  --c-gold-dark: #b08a2e;
  --c-gold-faint: rgba(212, 169, 74, 0.08);

  --c-white: #ffffff;
  --c-cream: #faf6ee;
  --c-cream-2: #f2ead8;

  --c-line: rgba(0, 0, 0, 0.07);
  --c-line-mid: rgba(0, 0, 0, 0.12);
  --c-line-dark: rgba(255, 255, 255, 0.08);

  /* Typography */
  --f-display: "Playfair Display", system-ui, sans-serif;
  --f-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --f-mono: 'Plus Jakarta Sans', system-ui, sans-serif;
  --f-serif: 'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --container: 1240px;
  --radius: 4px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.22);
  --shadow-gold: 0 8px 32px rgba(212, 169, 74, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Section rhythm */
  --section-y: 4rem;
}

/* ----------------------------------------------------------------
   Container
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 768px) {
  :root {
    --section-y: 72px;
  }
  .container {
    padding: 0 14px;
  }
}

/* ----------------------------------------------------------------
   Scroll-progress bar
   ---------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--c-gold-dark),
    var(--c-gold),
    var(--c-gold-light)
  );
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ----------------------------------------------------------------
   Typography
   ---------------------------------------------------------------- */
h1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

h3 {
  font-family: var(--f-body);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  font-size: 1.4rem;
}

h4 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

.title-accent {
  color: var(--c-gold);
  font-style: italic;
}
.section--light .title-accent,
.section--why .title-accent,
.section--areas .title-accent {
  color: var(--c-gold-dark);
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 18px;

  @media(width<768px){
    display: block !important ;
    text-align: center;
  }
}
.eyebrow--dark {
  color: var(--c-gold-dark);
}

/* ----------------------------------------------------------------
   Section shells
   ---------------------------------------------------------------- */
.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--light {
  background: var(--c-bg);
  color: var(--c-text);
}
.section--dark {
  background: var(--c-black);
  color: #f0f0e8;
}
.section--why {
  background: var(--c-cream);
  color: var(--c-text);
}
.section--testimonials {
  background: var(--c-dark);
  color: #f0f0e8;
}
.section--areas {
  background: var(--c-cream);
  color: var(--c-text);
}
.section--contact {
  background: var(--c-black);
  color: #f0f0e8;
}
.section--demo {
  background: var(--c-black);
  color: #fff;
  overflow: hidden;
  padding: 140px 0;
}
.section--process {
  background: var(--c-dark-2);
  color: #f0f0e8;
}

.section__head {
  max-width: 700px;
  margin-bottom: 72px;
}
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__lede {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--c-text-soft);
  max-width: 580px;
  margin-top: 16px;

   @media(width<768px){
    text-align: center ;
  }
}

#benefits .section__lede{
  margin-inline: auto;
}

.section--dark .section__lede,
.section--testimonials .section__lede,
.section--contact .section__lede,
.section--demo .section__lede,
.section--process .section__lede {
  color: rgba(240, 240, 232, 0.6);
}

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 30px;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 0;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--lg {
  padding: 17px 38px;
  font-size: 0.86rem;
}
.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--primary {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
  box-shadow: 0 4px 18px rgba(212, 169, 74, 0.22);
}
.btn--primary:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  box-shadow: 0 10px 32px rgba(212, 169, 74, 0.4);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 243, 235, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--c-gold);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--dark {
  background: var(--c-black);
  color: var(--c-gold);
  border-color: var(--c-black);
}
.btn--dark:hover {
  background: #151515;
  color: var(--c-gold);
  border-color: #151515;
}

.btn--phone .icon {
  width: 16px;
  height: 16px;
}

@media(max-width: 768px){
  .btn:not([type="submit"]){
    max-width: 300px;
    max-height: 50px;
    margin: auto;
  }
}

/* ----------------------------------------------------------------
   Icons
   ---------------------------------------------------------------- */
.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.icon--gold {
  fill: var(--c-gold);
}

/* ----------------------------------------------------------------
   Sticky site-top wrapper (top-bar + header together)
   ---------------------------------------------------------------- */
.site-top {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Thin gold line at very bottom of sticky bar */
  box-shadow: 0 1px 0 rgba(212, 169, 74, 0.15);
}

/* ----------------------------------------------------------------
   Top bar
   ---------------------------------------------------------------- */
.top-bar {
  background: var(--c-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 38px;
  max-width: calc(var(--container) + 120px);
  margin: 0 auto;
  padding: 0 8px;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: rgba(200, 200, 185, 0.7);
  position: relative;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-bar__item:nth-child(2) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.top-bar__item .icon {
  width: 18px;
  height: 18px;
  fill: var(--c-gold);
  opacity: 0.75;
}

.top-bar__socials {
  display: flex;
  gap: 8px;
}
.top-bar__socials a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.top-bar__socials a.top-tel{
  display: none;
}

.top-bar__socials a:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-black);
}
.top-bar__socials .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .top-bar__inner {
    padding: 0 12px;
  }
  .top-bar__item:nth-child(2) {
    display: none;
  }
}

/* ----------------------------------------------------------------
   Header
   ---------------------------------------------------------------- */
.header {
  background: #000000;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.4s var(--ease);
}
.header--scrolled {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
  max-width: calc(var(--container) + 120px);
  margin: 0 auto;
  padding: 0 8px;
}

/* Brand logo */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand__logo {
  height: 88px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand--footer .brand__logo {
  height: 92px;
}

@media (max-width: 768px) {
  .brand__logo {
    height: 52px;
  }
  .header__inner {
    padding: 0 12px;
    height: 64px;
  }
}

/* Nav */
.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(232, 232, 220, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width 0.35s var(--ease);
}
.nav a:hover {
  color: var(--c-gold);
}
.nav a:hover::after {
  width: 100%;
}
.nav a.is-active {
  color: var(--c-gold);
}
.nav a.is-active::after {
  width: 100%;
}

/* Header CTA row */
.header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.header__cta .btn--ghost {
  padding: 9px 18px;
  font-size: 0.76rem;
}
.header__cta .btn--primary {
  padding: 9px 20px;
  font-size: 0.76rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(232, 232, 220, 0.8);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header__cta .btn--phone span {
    display: none;
  }
  .header__cta .btn--phone {
    padding: 9px;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 12px 20px;
    gap: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  }
  .nav.is-open a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(232, 232, 220, 0.75);
    letter-spacing: 0.14em;
  }
  .nav.is-open a:last-child {
    border-bottom: none;
  }
  .nav.is-open a::after {
    display: none;
  }
  .nav.is-open a:hover {
    color: var(--c-gold);
  }
}
@media (max-width: 560px) {
  .header__cta .btn--primary {
    display: none;
  }
}

/* ----------------------------------------------------------------
   Hero
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 100px 0 200px; /* extra bottom for stats strip */
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-left: 0;
}
.hero .container {
  padding-left: 0;
}

.hero .eyebrow {
  margin-bottom: 22px;
  @media(width<768px){
    text-align: center;
    display: block;
  }
}

.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
  font-style: italic;
}

.hero__sub {
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 42px;

  @media(width<768px){
    text-align: center ;
  }
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__trust .icon {
  width: 15px;
  height: 15px;
}

/* Hero stats strip at bottom */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero__stats-inner {
  display: flex;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.hero__stat {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s var(--ease);
}
.hero__stat:last-child {
  border-right: none;
}
.hero__stat:hover {
  background: rgba(212, 169, 74, 0.06);
}
.hero__stat-num {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.hero__stat-label {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 244, 236, 0.84);
  line-height: 1.6;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.hero__scroll span {
  width: 3px;
  height: 6px;
  background: var(--c-gold);
  border-radius: 2px;
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 84vh;
    padding: 60px 0 180px;
  }
  .hero__sub {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  .hero__cta .btn {
    flex: 1 1 auto;
  }
  .hero__trust {
    gap: 18px;
  }
  .hero__stats-inner {
    padding: 0 20px;
  }
  .hero__stats{
    margin-top: 4rem ;
  }
  .hero__stat {
    padding: 14px 12px;
  }
  .hero__stat-num {
    font-size: 1.35rem;
  }
  .hero__scroll {
    bottom: 305px !important;
  }
}
@media (max-width: 480px) {
  .hero__stats-inner {
    flex-wrap: wrap;
  }
  .hero__stat {
    flex: 1 1 calc(50% - 1px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hero__stat:nth-child(even) {
    border-right: none;
  }
}

/* ----------------------------------------------------------------
   Benefits
   ---------------------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.benefit {
  padding: 44px 36px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 169, 74, 0.3);
}
.benefit::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold-dark), var(--c-gold-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}
.benefit:hover {
  background: var(--c-cream);
}
.benefit:hover::after {
  transform: scaleX(1);
}

.benefit__icon {
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(212, 169, 74, 0.5);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--c-gold-dark);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.benefit:hover .benefit__icon {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-black);
}
.benefit__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.benefit h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--c-black);
}
.benefit p {
  color: var(--c-text-soft);
  font-size: 0.93rem;
  margin: 0;
}

@media (max-width: 768px){
  #benefits .section__head{
    margin-bottom: 15px;
  }

  .section--why .section__head{
    margin-bottom: 15px;
  }
}

/* ----------------------------------------------------------------
   Services — Accordion
   ---------------------------------------------------------------- */

/* Wrapper */
.services-accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 64px;
}

/* Single accordion row */
.svc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Trigger button — the always-visible row */
.svc-item__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 30px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s var(--ease);
}
.svc-item__trigger:hover {
  background: rgba(212, 169, 74, 0.03);
}
.svc-item.is-open .svc-item__trigger:not(.pp) {
  background: rgba(212, 169, 74, 0.05);
}

/* Number */
.svc-item__num {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--c-gold);
  opacity: 0.5;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: opacity 0.35s var(--ease);
  padding-left: 2px;
}
.svc-item__trigger:hover .svc-item__num,
.svc-item.is-open .svc-item__num {
  opacity: 1;
}

/* Title */
.svc-item__title {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  transition: color 0.35s var(--ease);
}
.svc-item__trigger:hover .svc-item__title,
.svc-item.is-open .svc-item__title {
  color: var(--c-gold);
}

/* Icon (+ rotates to ×) */
.svc-item__icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition:
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.5s var(--ease-spring);
}
.svc-item__icon svg {
  transition: transform 0.45s var(--ease-spring);
}
.svc-item__icon .svc-icon__v {
  transition: transform 0.45s var(--ease-spring);
}

.svc-item__trigger:hover .svc-item__icon {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.svc-item.is-open .svc-item__icon {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-black);
}
.svc-item.is-open .svc-item__icon .svc-icon__v {
  transform: scaleY(0);
}

/* Panel — CSS grid trick for smooth height animation */
.svc-item__panel {
  display: grid !important;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease);
   opacity: 1 !important;
    overflow: visible !important;
    height: 100% !important;
    max-height: max-content !important;
}

.svc-item.is-open .svc-item__panel {
  grid-template-rows: 1fr;
}

/* Inner wrapper must overflow:hidden for the grid trick */
.svc-item__inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 0;
  transition: padding-bottom 0.55s var(--ease);
}
.svc-item.is-open .svc-item__inner {
  padding-bottom: 48px;
}

/* Image */
.svc-item__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.svc-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
  transform: scale(1.05);
  transition:
    transform 1s var(--ease),
    filter 0.6s var(--ease);
}
.svc-item.is-open .svc-item__media img {
  transform: scale(1);
  filter: brightness(0.95) saturate(1.05);
}

/* Content */
.svc-item__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 0px;
}
.svc-item__content p {
  color: #a0a092;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* List */
.svc-item__list {
  display: grid;
  gap: 9px;
  padding: 0;
}
.svc-item__list li {
  font-size: 0.9rem;
  color: #787870;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.svc-item__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.7;
}

/* Note */
.svc-item__note {
  font-size: 0.85rem;
  color: var(--c-gold-light);
  font-style: italic;
  margin: 0;
}

/* CTA */
.services-cta {
  margin-top: 64px;
  text-align: center;
}
.services-cta p {
  font-size: 1rem;
  color: #888880;
  margin-bottom: 20px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .svc-item__trigger {
    grid-template-columns: 52px 1fr auto;
    gap: 16px;
    padding: 22px 0;
  }
  .svc-item__num {
    font-size: 1.5rem;
  }
  .svc-item__title {
    font-size: 1.05rem;
  }
  .svc-item__icon {
    width: 36px;
    height: 36px;
  }

  .svc-item__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .svc-item.is-open .svc-item__inner {
    padding-bottom: 32px;
    gap: 0px;
  }
  .svc-item__media {
    aspect-ratio: 16/9;
  }
}

/* ----------------------------------------------------------------
   About
   ---------------------------------------------------------------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.about__inner:hover .about__media img {
  transform: scale(1.03);
}

.about__badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--c-gold);
  color: var(--c-black);
  padding: 10px 18px;
  font-family: var(--f-mono);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;

    @media(width<768px){
    left: 50% !important ;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
  }
}

.about__body .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.about__body h2 {
  margin-bottom: 18px;
  max-width: 500px;
}
.about__body > p {
  color: var(--c-text-soft);
  margin-bottom: 14px;

  @media (width<768px){
    text-align: center ;
  }
}

.about__values {
  margin: 26px 0 34px;
  display: grid;
  gap: 9px;
}
.about__values li {
  padding: 13px 18px 13px 46px;
  background: var(--c-cream);
  border-left: 2px solid var(--c-gold);
  border-radius: 3px;
  font-size: 0.94rem;
  position: relative;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.about__values li:hover {
  background: var(--c-cream-2);
  transform: translateX(4px);
}
.about__values li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: var(--c-gold);
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2L5.5 12.7 4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2L5.5 12.7 4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

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

/* ----------------------------------------------------------------
   Why Choose Us — Carousel (3 at a time, auto-loop)
   ---------------------------------------------------------------- */
.why-carousel {
  margin-top: 50px;

  @media(width<768px){
    margin-top: 0px;
  }
}

.why-carousel__viewport {
  overflow: hidden;
}

.why-carousel__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.why-card {
  flex: 0 0 calc(33.333% - 14px);
  padding: 40px 32px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-white);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.why-card:hover {
  border-color: rgba(212, 169, 74, 0.5);
  box-shadow: var(--shadow-md);
}

.why-card__num {
  display: block;
  font-family: var(--f-display);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--c-gold);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 12px;
  transition: opacity 0.4s var(--ease);
  letter-spacing: -0.02em;
}
.why-card:hover .why-card__num {
  opacity: 0.22;
}

.why-card__divider {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold-dark), var(--c-gold-light));
  margin-bottom: 18px;
  border-radius: 1px;
  transition: width 0.4s var(--ease-spring);
}
.why-card:hover .why-card__divider {
  width: 52px;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--c-black);
}
.why-card p {
  color: var(--c-text-soft);
  font-size: 0.91rem;
}

.why-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.why-carousel__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-line-mid);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-soft);
  cursor: pointer;
  background: var(--c-white);
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.why-carousel__btn:hover {
  border-color: var(--c-gold);
  background: var(--c-gold);
  color: var(--c-black);
}

.why-carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.why-carousel__dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-line-mid);
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.why-carousel__dots .dot.is-active {
  background: var(--c-gold-dark);
  transform: scale(1.4);
}

@media (max-width: 900px) {
  .why-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 560px) {
  .why-card {
    flex: 0 0 100%;
  }
}

/* ----------------------------------------------------------------
   Before / After
   ---------------------------------------------------------------- */
.ba-wrapper {
  margin-bottom: 72px;
}

.ba-title {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 24px;
}

.ba {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-xl);
}
.ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba__after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}
.ba__after .ba__img {
  width: 100vw;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .ba__after .ba__img {
    max-width: 100vw;
  }
}

.ba__label {
  position: absolute;
  top: 16px;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 3;
}
.ba__label--before {
  left: 16px;
}
.ba__label--after {
  right: 16px;
  background: var(--c-gold);
  color: var(--c-black);
}

.ba__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.88);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
}
.ba__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}
.ba__handle span::before,
.ba__handle span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.ba__handle span::before {
  left: 12px;
  border-right: 6px solid var(--c-black);
  transform: translateY(-50%);
}
.ba__handle span::after {
  right: 12px;
  border-left: 6px solid var(--c-black);
  transform: translateY(-50%);
}

/* ----------------------------------------------------------------
   Gallery
   ---------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.gallery__item {
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: #111;
  cursor: pointer;
  display: block;
  border: none;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
}

.gallery__item::after {
  content: '↗';
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 28px;
  text-align: center;
  opacity: 0;
  transform: scale(0.4) rotate(-45deg);

}
.gallery__item:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ----------------------------------------------------------------
   Lightbox
   ---------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s var(--ease),
    visibility 0.3s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
  cursor: pointer;
}
.lightbox__close {
  top: 24px;
  right: 24px;
}
.lightbox__nav--prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
}
.lightbox__nav--prev:hover {
  transform: translateY(-50%) translateX(-3px);
}
.lightbox__nav--next:hover {
  transform: translateY(-50%) translateX(3px);
}

@media (max-width: 768px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox__close,
  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lightbox__nav--prev {
    left: 10px;
  }
  .lightbox__nav--next {
    right: 10px;
  }
}

/* ----------------------------------------------------------------
   Night Demo
   ---------------------------------------------------------------- */
.night-demo__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.night-demo__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.night-demo__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 72% 50%,
      rgba(212, 169, 74, 0.13),
      transparent 65%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.6) 60%,
      rgba(0, 0, 0, 0.5) 100%
    );
}
.night-demo__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.night-demo__content .eyebrow {
  display: block;
  margin-bottom: 18px;
}
.night-demo__content h2 {
  color: #fff;
  margin-bottom: 18px;
}
.night-demo__content p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 34px;
}
.night-demo__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .section--demo {
    padding: 96px 0;
  }
}

/* ----------------------------------------------------------------
   Process — clean numbered steps
   ---------------------------------------------------------------- */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 72px;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.process-step__badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-black);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow:
    0 0 0 8px rgba(212, 169, 74, 0.12),
    0 0 0 16px rgba(212, 169, 74, 0.05);
  transition:
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
  flex-shrink: 0;
}
/* .process-step:hover .process-step__badge {
  box-shadow:
    0 0 0 10px rgba(212, 169, 74, 0.22),
    0 0 0 20px rgba(212, 169, 74, 0.08);
  transform: scale(1.08);
} */

.process-step h3 {
  font-size: 1.1rem;
  color: #f0f0e8;
  margin-bottom: 10px;
  line-height: 1.25;
}
.process-step p {
  color: #686860;
  font-size: 0.87rem;
  line-height: 1.6;
}

/* Arrow connectors between steps */
.process-step__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 30px; /* vertically align with badge center */
  color: rgba(212, 169, 74, 0.35);
  width: 32px;
}
.process-step__arrow svg {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .process-steps {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 169, 74, 0.1);
  }
  .process-step:last-child {
    border-bottom: none;
  }
  .process-step__badge {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .process-step__arrow {
    display: none;
  }
}

/* ----------------------------------------------------------------
   Testimonials — carousel
   ---------------------------------------------------------------- */
.testimonials-carousel {
  position: relative;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.testimonials-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  background: transparent;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.testimonials-btn:hover {
  border-color: var(--c-gold);
  background: var(--c-gold);
  color: var(--c-black);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testimonials-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.testimonials-dots .dot.is-active {
  background: var(--c-gold);
  transform: scale(1.4);
}

.testimonials-cta-row {
  text-align: center;
  margin-top: 32px;
}
.btn--gold-outline {
  border: 1px solid rgba(212, 169, 74, 0.28);
  color: var(--c-gold);
  background: rgba(212, 169, 74, 0.12);
  padding: 13px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.btn--gold-outline:hover {
  background: rgba(212, 169, 74, 0.2);
  color: #f6d985;
  border-color: rgba(212, 169, 74, 0.4);
}

.testimonial {
  flex: 0 0 100%; /* fill carousel slide */
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  transition:
    border-color 0.4s var(--ease),
    background 0.4s var(--ease),
    transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: 5.5rem;
  color: var(--c-gold);
  opacity: 0.1;
  position: absolute;
  top: -10px;
  left: 18px;
  line-height: 1;
  pointer-events: none;
}
.testimonial:hover {
  border-color: rgba(212, 169, 74, 0.28);
  background: rgba(212, 169, 74, 0.04);
}

.testimonial__stars {
  color: var(--c-gold);
  font-size: 0.88rem;
  letter-spacing: 0.26em;
  margin-bottom: 18px;
}
.testimonial p {
  color: #d0d0c0;
  font-size: 1rem;
  line-height: 1.72;
  font-style: italic;
}
.testimonial footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.testimonial__name {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  display: block;
}
.testimonial__place {
  font-size: 0.8rem;
  color: #505048;
  display: block;
  margin-top: 3px;
}
.testimonials__note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.76rem;
  color: #484840;
  font-style: italic;
}

@media (max-width:768px){
  .testimonial{
    padding: 40px 10px;
  }
}

/* ----------------------------------------------------------------
   Service Areas
   ---------------------------------------------------------------- */
.areas__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.areas__body .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.areas__body h2 {
  margin-bottom: 18px;
}
.areas__body > p {
  color: var(--c-text-soft);
}

.areas__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin: 28px 0 18px;
}
.areas__list li {
  background: var(--c-white);
  padding: 13px 16px;
  border-left: 2px solid var(--c-gold);
  border-radius: 3px;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-black);
  box-shadow: var(--shadow-xs);
  transition:
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.areas__list li:hover {
  background: var(--c-gold);
  box-shadow: var(--shadow-gold);
  transform: translateX(5px);
}
.areas__note {
  font-size: 0.9rem;
  color: var(--c-text-soft);
}

.areas__map-embed {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 169, 74, 0.2);
  box-shadow: var(--shadow-md);
}
.areas__map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .areas__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .areas__map-embed {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ----------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------- */
.faq__inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq {
  display: grid;
  gap: 10px;
}

.faq__item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.faq__item[open] {
  border-color: rgba(212, 169, 74, 0.5);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  padding: 21px 24px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 60px;
  transition: color 0.25s var(--ease);
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3E%3C/svg%3E");
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-gold-dark);
  font-size: 1.40rem;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.faq__item[open] summary {
  color: var(--c-gold-dark);
}
.faq__item[open] summary::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8'/%3E%3C/svg%3E");
  background: var(--c-gold);
  color: var(--c-black);
}
.faq__item p {
  padding: 0 24px 22px;
  color: var(--c-text-soft);
  font-size: 0.94rem;
  line-height: 1.72;
}

@media (max-width: 768px){
  .faq__item p{
    text-align: center;
  }
}
/* ----------------------------------------------------------------
   Contact
   ---------------------------------------------------------------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__body .eyebrow {
  display: block;
  margin-bottom: 18px;
}
.contact__body h2 {
  color: #fff;
  margin-bottom: 18px;
}
.contact__body > p {
  color: rgba(200, 200, 185, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;


  @media(width<768px){
    text-align: center ;
  }
}

.contact__meta {
  margin-top: 36px;
  display: grid;
  gap: 16px;

   @media(width<768px){
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.contact__meta li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b8b8a8;
  font-size: 0.94rem;
}
.contact__meta .icon {
  flex-shrink: 0;
}
.contact__meta a {
  color: var(--c-gold);
  font-weight: 500;
}
.contact__meta a:hover {
  color: var(--c-gold-light);
}

.content-form {
  background: var(--c-cream);
  color: var(--c-text);
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact__form{
  padding: 0px !important;
}
.contact__form h3 {
  margin-bottom: 28px;
  font-size: 1.75rem;
  color: var(--c-black);

   @media(width<768px){
    text-align: center ;

        max-width: 250px;
    margin-inline: auto;
  }
}

.contact__form label {
  display: block;
  margin-bottom: 16px;
}

.contact__form.contact__form--modal {
 width: 100%;
 position: relative;
} .contact__form.contact__form--modal label {
 width: 100%;
}

.contact__form label span {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 7px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: var(--c-white);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--c-text);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.contact__form textarea {
  resize: vertical;
  min-height: 108px;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 169, 74, 0.13);
  background: #fff;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact__form-note {
  text-align: center;
  margin-top: 13px;
  font-size: 0.79rem;
  color: var(--c-muted);
}

@media (max-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 560px) {
  .contact__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .content-form {
    padding: 30px 22px;
  }
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.footer {
  background: #000000;
  color: #707068;
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 0;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__col--spacer {
  /* pushes contact right */
}
.footer__col--contact {
  padding-left: 24px;
}

@media (min-width: 768px){
  .footer__col--contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.footer__col h4 {
  color: var(--c-gold);
  margin-bottom: 24px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}
.footer__col ul {
  display: grid;
  gap: 10px;
}
.footer__col ul a {
  font-size: 0.87rem;
  color: #707068;
  transition: color 0.25s var(--ease);
}
.footer__col ul a:hover {
  color: var(--c-gold);
}

.footer__col--brand p:first-of-type {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-gold);
  margin: 18px 0 8px;
  letter-spacing: 0.03em;
}
.footer__small {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #4e4e48;
  max-width: 280px;
}

.footer__contact {
  display: grid;
  gap: 10px;
}
.footer__contact li {
  font-size: 0.87rem;
}
.footer__contact a {
  color: #909088;
  transition: color 0.22s var(--ease);
}
.footer__contact a:hover {
  color: var(--c-gold);
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 169, 74, 0.22);
  border-radius: 50%;
  color: var(--c-gold);
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.footer__socials a:hover {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
}
.footer__socials .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__bottom {
  padding: 24px 0 30px;
}
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #bcbcbc;
}

.footer__bottom-inner > * {
  flex: 1;
}

.footer__bottom-inner > *:nth-child(1) {
  text-align: left;

   @media(width<768px){
    order: 2;
  }
}

.footer__bottom-inner > *:nth-child(2) {
  text-align: center;

  @media(width<768px){
    order: 1;
  }
}

.footer__bottom-inner > *:nth-child(3) {
  text-align: right;

   @media(width<768px){
    order: 3;
  }
}

.footer__bottom-inner a {
  color: #bcbcbc;
  font-weight: bold;
}
.footer__bottom-inner a:hover {
  color: var(--c-gold);
}

@media (max-width: 880px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
  }
  .footer__col--spacer {
    display: none;
  }
  .footer__col--contact {
    padding-left: 0;
  }
}

@media(max-width: 768px){
  .footer__small{
    text-align: center;
  }
}

@media (max-width: 520px) {
  .footer__col--brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__col--contact{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

/* ----------------------------------------------------------------
   Floating call button (mobile)
   ---------------------------------------------------------------- */
.float-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 30px rgba(212, 169, 74, 0.5),
    0 0 0 0 rgba(212, 169, 74, 0.5);
  z-index: 80;
  animation: float-pulse 2.5s var(--ease) infinite;
  transition: transform 0.25s var(--ease-spring);
}
.float-call:hover {
  transform: translateY(-3px) scale(1.07);
}
.float-call svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@keyframes float-pulse {
  0% {
    box-shadow:
      0 8px 30px rgba(212, 169, 74, 0.5),
      0 0 0 0 rgba(212, 169, 74, 0.5) !important;
  }
  70% {
    box-shadow:
      0 8px 30px rgba(212, 169, 74, 0.5),
      0 0 0 16px rgba(212, 169, 74, 0) !important;
  }
  100% {
    box-shadow:
      0 8px 30px rgba(212, 169, 74, 0.5),
      0 0 0 0 rgba(212, 169, 74, 0) !important;
  }
}

/* ----------------------------------------------------------------
   Scroll-reveal
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.72s var(--ease-out),
    transform 0.72s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#services .reveal.is-visible{
  height: max-content;
}

/* Stagger delays applied by JS */
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}
.reveal-delay-5 {
  transition-delay: 0.4s;
}

/* ----------------------------------------------------------------
   Selection & accessibility
   ---------------------------------------------------------------- */
/* ----------------------------------------------------------------
   Design refresh overrides
   ---------------------------------------------------------------- */
body {
  background:
    radial-gradient(circle at top, rgba(212, 169, 74, 0.08), transparent 28%),
    linear-gradient(
      180deg,
      #000000 0,
      #000000 16rem,
      var(--c-bg) 16rem,
      var(--c-bg) 100%
    );
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 75%);
}

main,
.footer {
  position: relative;
  z-index: 1;
}

.container {
  padding: 0 32px;
}

.site-top {
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.24);
}

.top-bar {
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar__inner {
  height: 34px;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(232, 232, 220, 0.62);
}

.header {
  position: relative;
  background: rgba(7, 7, 7, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header--scrolled {
  background: rgba(7, 7, 7, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.header__inner {
  height: 82px;
  gap: 32px;
}

.brand__logo {
  height: 74px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.nav {
  margin-left: auto;
  margin-right: auto;
  gap: clamp(18px, 3vw, 44px);
}

.nav a {
  font-size: 0.72rem;
  color: rgba(245, 244, 236, 0.76);
}

.nav a::after {
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold-dark), var(--c-gold-light));
}

.header__cta .btn {
  min-height: 44px;
}

.btn {
  border-radius: 999px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 80%
  );
  transform: translateX(-140%);
  transition: transform 0.65s var(--ease);
}

.btn:hover::before {
  transform: translateX(140%);
}

.btn--primary {
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost,
.btn--outline {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--dark {
  background: var(--c-black);
  color: var(--c-cream);
  border-color: var(--c-black);
}

.btn--dark:hover {
  background: #1a1a1a;
  color: var(--c-gold);
  border-color: #1a1a1a;
}

.hero {
  min-height: calc(100vh - 145px);
  padding: 76px 0 152px;
}

.hero__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.48) 0%,
      rgba(5, 5, 5, 0.32) 18%,
      rgba(5, 5, 5, 0.72) 100%
    ),
    radial-gradient(
      circle at 18% 18%,
      rgba(212, 169, 74, 0.18),
      transparent 36%
    ),
    linear-gradient(
      115deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.5) 52%,
      rgba(0, 0, 0, 0.18) 100%
    );
}

.hero__content {
  max-width: none;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.hero__main {
  max-width: 760px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 7.1vw, 6.5rem);
  margin-bottom: 24px;
}

.hero__sub {
  max-width: 640px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero__content {
  padding-left: clamp(24px, 4vw, 56px);
}

.hero__aside {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.hero-card {
  width: min(100%, 360px);
  padding: 24px 26px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 169, 74, 0.2), transparent 70%);
}

.hero-card__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-card__number {
  display: block;
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 0.92;
  font-weight: 800;
  color: #fff;
}

.hero-card__label {
  max-width: 200px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-card__title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.08;
  text-transform: none;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-gold-light);
}

.hero-card__link::after {
  content: '↗';
  font-size: 1rem;
}

.hero__stats {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.9));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stats-inner {
  gap: 12px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.hero__stat {
  border-right: none;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__scroll {
  bottom: 122px;
}

.section {
  padding: var(--section-y) 0px;
}

.section__head {
  margin-bottom: 56px;
}

.section__lede {
  font-size: 1rem;
  color: rgba(56, 56, 48, 0.78);
}

.benefits-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
  margin-bottom: 42px;
}

.benefits-intro__side {
  display: grid;
  justify-items: start;
  gap: 24px;
  padding-top: 12px;
}

.benefits-tags {
  width: 100%;
  display: grid;
  gap: 12px;
}

.benefits-tags span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.16);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.benefits-tags span::after {
  content: '+';
  color: var(--c-gold-dark);
}

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

.benefit {
  padding: 28px 28px 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.72)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.benefits-grid .benefit:first-child {
  grid-row: span 2;
  min-height: 100%;
  padding-top: 36px;
}

.benefits-grid .benefit:first-child h3 {
  font-size: 1.5rem;
  max-width: 220px;
}

.benefits-grid .benefit:first-child p {
  max-width: 240px;
}

.benefit__icon {
  border-radius: 16px;
  background: rgba(212, 169, 74, 0.08);
}

.section--dark,
.section--process,
.section--contact,
.section--testimonials {
  background:
    radial-gradient(
      circle at top left,
      rgba(212, 169, 74, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #000000, #000000);
}

.services-accordion {
  display: grid;
  gap: 18px;
  border-top: none;
  margin-top: 22px;
}

.svc-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.svc-item__trigger {
  padding: 28px 34px;
}

.svc-item__title {
  font-size: clamp(1.2rem, 2.3vw, 1.9rem);
}

.svc-item__panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.015)
  );
}

.svc-item__inner {
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 0 34px 34px;
}

.svc-item__media img {
  border-radius: 20px;
}

.about__inner,
.areas__inner,
.contact__inner {
  gap: clamp(36px, 5vw, 72px);
}

.about__media img,
.areas__map-embed,
.content-form {
  border-radius: 30px;
}

.about__badge {
  border-radius: 999px;
}


.why-card {
  border-radius: 28px;
  padding: 32px 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(255, 255, 255, 0.72)
  );
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.why-carousel__btn,
.testimonials-btn,
.lightbox__nav {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery {
  gap: 14px;
}

.gallery__item {
  border-radius: 24px;
}

.gallery__item::after {
  border-radius: 24px;
}

.ba-wrapper {
  margin-bottom: 28px;
}

.ba-title {
  margin-bottom: 18px;
}

.ba {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.section--demo {
  padding: 132px 0;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
 
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  top: 30px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(212, 169, 74, 0.35),
    rgba(255, 255, 255, 0.2)
  );
}

.process-step {
  position: relative;
  align-items: flex-start;
  text-align: left;
  padding: 72px 18px 0;

  & h3{
    transition: all .6s;
  }

  &:hover{
    h3{
      scale: 1.1;
    }
  }
}

.process-step__badge {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 20px;
  left: 18px;
  box-shadow: 0 0 0 6px rgb(255, 255, 255);
  transition: .6s all;
}

@media(width>992px){
  .process-step:hover .process-step__badge {
    scale: 2.1;
    background: var(--c-gold) !important;
    animation: float-pulse 1.2s ease-in infinite;
    color: black !important;
  }
}

.process-step h3 {
  text-transform: none;
  font-size: 1.15rem;
}

.process-step p {
  color: rgba(240, 240, 232, 0.68);
}

.process-step__arrow {
  display: none;
}

.testimonials-carousel {
  max-width: 920px;
  margin: 0 auto;
}

.testimonial {
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
}

.testimonial p {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.faq__item,
.content-form {
  border-radius: 28px;
}

.content-form {
  background: linear-gradient(180deg, #faf6ee, #f4ecdb);
}

.footer {
  background: #000000;
}

.footer__inner {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 44px;
}

@media (max-width: 1100px) {
  .hero__layout,
  .benefits-intro,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    justify-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-grid .benefit:first-child {
    grid-row: auto;
  }

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

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .header__inner {
    height: 72px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero__aside {
    grid-template-columns: 1fr;
  }

  .svc-item__inner,
  .about__inner,
  .areas__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-steps::before {
    left: 28px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .process-step {
    padding: 0 0 0 66px;
  }

  .process-step__badge {
    top: 0;
    left: 17px;
  }
}

@media (max-width: 768px) {
  .top-bar__inner {
    padding: 0 16px;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .hero__stats-inner {
    flex-wrap: wrap;
  }

  .hero__stat {
    flex: 1 1 calc(50% - 6px);
  }

  .hero__aside{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 14px;
  }

  .hero {
    padding-bottom: 190px;
  }

  .hero-card {
    padding: 20px;
    border-radius: 22px;
  }

  .benefit,
  .why-card,
  .testimonial,
  .faq__item,
  .content-form,
  .svc-item {
    border-radius: 22px;
  }
}

::selection {
  background: var(--c-gold);
  color: var(--c-black);
}

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

/* ----------------------------------------------------------------
   Global layout alignment
   ---------------------------------------------------------------- */
.container {
  max-width: calc(var(--container) + 120px);
  padding: 0;
}

.hero__main {
  max-width: 610px;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(2.6rem, 5.9vw, 5.3rem);
  line-height: 0.98;
}

.hero__sub {
  max-width: 560px;
}

.hero__stat {
  gap: 12px;
}

.hero__stat-icon {
  width: 20px;
  height: 20px;
  fill: var(--c-gold-light);
  opacity: 0.95;
  flex-shrink: 0;
}

.hero__stat-label {
  max-width: 220px;
}

/* ----------------------------------------------------------------
   Benefits
   ---------------------------------------------------------------- */
.benefits-carousel {
  position: relative;
}

.benefits-carousel__viewport {
  overflow: hidden;
}

.benefits-grid {
  display: flex;
  gap: 18px;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.benefit,
.benefits-grid .benefit:first-child {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 280px;
  grid-row: auto;
  padding: 28px;
}

.benefits-grid .benefit:first-child h3,
.benefits-grid .benefit:first-child p {
  max-width: none;
  font-size: inherit;
}

.benefit h3 {
  font-size: 1.12rem;
}

.benefits-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.benefits-carousel__btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 26, 26, 0.68);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.benefits-carousel__btn:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-black);
}

.benefits-carousel__dots {
  display: flex;
  gap: 8px;
}

.benefits-carousel__dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease);
}

.benefits-carousel__dots .dot.is-active {
  background: var(--c-gold-dark);
  transform: scale(1.35);
}

.benefits-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 0px;
}

/* ----------------------------------------------------------------
   About
   ---------------------------------------------------------------- */
.about__shell {
  display: grid;
  gap: 45px;
}

.about__inner {
  align-items: start;
}

.about__media {
  margin-top: 4px;
}

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

.about__values li {
  height: 100%;
  margin: 0;
}

.about__cta {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px){
  .about__inner{
    display: flex;
    flex-direction: column-reverse;
  }
}

/* ----------------------------------------------------------------
   Why choose us
   ---------------------------------------------------------------- */
.why-carousel__viewport {
  padding: 31px 0;
}

@media(width<768px){
  .why-carousel__viewport {
 padding: 20px 0;
}
}

.why-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 272px;
}

.why-card__num {
  margin-bottom: 18px;
}

.why-card__divider {
  margin-bottom: 18px;
}

.why-card h3,
.why-card p {
  text-align: left;
}

/* ----------------------------------------------------------------
   Projects
   ---------------------------------------------------------------- */
.ba-wrapper {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.ba {
  aspect-ratio: 16 / 7;
}

/* ----------------------------------------------------------------
   Night demo
   ---------------------------------------------------------------- */
.section--demo {
  padding: 120px 0;
}

@media (max-width: 768px){
  .section--demo {
    padding: 40px 0;
  }
}

.night-demo__video {
  display: none;
}

.night-demo__image {
      position: absolute;
    /* inset: 0; */
    background-size: cover;
    background-position: center;
    object-position: center;
    width: 100%;
    object-fit: cover;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
}

.night-demo__overlay{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  object-position: center;
}

.night-demo__overlay_pp {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
  background-position: center;
}

.night-demo__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.night-demo__content p {
  margin-left: auto;
  margin-right: auto;
}

.night-demo__cta {
  justify-content: center;
}

/* ----------------------------------------------------------------
   Process redesign
   ---------------------------------------------------------------- */
.section--process .section__head {
  position: relative;
  max-width: none;
  margin-bottom: 86px;
}

.section--process .section__head .eyebrow {
  position: absolute;
  top: 8px;
  right: 0;
  margin: 0;
}

.section--process .section__head h2 {
  max-width: 960px;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
    font-family: var(--f-display);
    font-style: italic;
}

.section--process .section__head .section__lede {
  display: none;
}

.process-steps {
  position: relative;
  display: flex;
  gap: 0;
  margin-top: 0;
  padding: 64px 0 40px;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.78);
}

.process-step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 360px;
  padding: 0 28px;
}

.process-step--upper {
  justify-content: flex-start;
  padding-bottom: 190px;
}

.process-step--lower {
  justify-content: flex-end;
  padding-top: 190px;
}

.process-step__badge {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  margin: 0;
  box-shadow: none;
  background: #fff;
}

.process-step h3 {
  margin-bottom: 12px;
  text-transform: none;
  font-size: 1rem;
  color: #f5f3eb;
}

.process-step p {
  max-width: 290px;
  color: rgba(245, 243, 235, 0.58);
  font-size: 0.95rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 41px;
  width: 1px;
  border-left: 2px dashed rgba(245, 243, 235, 0.18);
}

.process-step--upper::before {
  top: 0;
  bottom: calc(50% + 14px);
}

.process-step--lower::before {
  top: calc(50% + 14px);
  bottom: 0;
}

.process-step__arrow {
  display: none;
}

/* ----------------------------------------------------------------
   Testimonials
   ---------------------------------------------------------------- */
.testimonial::before {
  top: auto;
  left: auto;
  right: 22px;
  bottom: -34px;
  font-size: 11rem;
  opacity: 0.07;
}

/* ----------------------------------------------------------------
   Service areas
   ---------------------------------------------------------------- */
.areas__map-embed {
  overflow: hidden;
}

.areas__markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.areas__marker {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 6px 10px 6px 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.areas__marker::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(212, 169, 74, 0.18);
}

.areas__marker--dallas {
  top: 53%;
  left: 58%;
}
.areas__marker--fortworth {
  top: 50%;
  left: 32%;
}
.areas__marker--houston {
  top: 71%;
  left: 56%;
}
.areas__marker--tulsa {
  top: 17%;
  left: 52%;
}

@media(max-width: 768px){
  .areas__inner{
    gap: 0px;
  }
}

/* ----------------------------------------------------------------
   Quote modal
   ---------------------------------------------------------------- */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s var(--ease),
    visibility 0.28s var(--ease);
}

.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quote-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  color: var(--c-black);
  font-size: 0rem;
  line-height: 1;
  z-index: 2;
}

.quote-modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100vw - 28px));
}

.content-form{
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.45);

  
}

.contact__form--modal:not(.none-overflow) {
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px){

}

body.modal-open {
  overflow: hidden;
}

/* ----------------------------------------------------------------
   Final refinements
   ---------------------------------------------------------------- */
.hero__stats {
  padding: 10px 0;
}

.hero__stats-inner {
  flex-wrap: nowrap;
  justify-content: center;
}

.hero__stat {
  min-height: 62px;
  padding: 12px 18px;
  flex: 0 1 360px;
}

.hero__stat-label {
  max-width: none;
  white-space: nowrap;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
}

.benefits-carousel__btn {
  display: none;
}

.about__values li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  padding: 16px 20px;
  position: relative;
  line-height: 1.45;
}

.about__values li::before {
  content: none;
}

.about__value-icon {
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--c-gold);
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2L5.5 12.7 4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2L5.5 12.7 4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.about__value-text {
  display: block;
}

.about__values li strong {
  display: inline;
  margin-right: 6px;
}

.about__cta {
  justify-content: center;
}

.svc-item__icon {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.svc-item__icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(212, 169, 74, 0);
  transform: scale(0.82);
  opacity: 0;
  transition:
    transform 0.38s var(--ease-spring),
    opacity 0.38s var(--ease),
    border-color 0.38s var(--ease);
}

.svc-item:hover .svc-item__icon,
.svc-item__trigger:hover .svc-item__icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 24px rgba(212, 169, 74, 0.18);
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-black);
}

.svc-item:hover .svc-item__icon::after,
.svc-item__trigger:hover .svc-item__icon::after {
  opacity: 1;
  transform: scale(1.12);
  border-color: rgba(212, 169, 74, 0.42);
}

.svc-item:hover .svc-item__icon svg,
.svc-item__trigger:hover .svc-item__icon svg {
  transform: scale(1.02);
}

.why-card {
  opacity: 0;
  transform: translateY(46px) scale(0.94) rotateX(-10deg);
  transform-origin: center bottom;
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s var(--ease);
}

.why-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
}

.ba-wrapper {
  max-width: 980px;
}

.section--process .section__head {
  margin-bottom: 72px;
}

.section--process .section__head h2 {
  max-width: 1020px;
}

.process-steps {
  padding: 56px 0 10px;
}

.process-steps::before {
  top: 49.5%;
}

.process-step {
  min-height: 318px;
  padding-left: 24px;
  padding-right: 24px;
}

.process-step__badge {
  left: 24px;
}

.process-step::before {
  left: 37px;
}

.process-step--upper {
  padding-bottom: 166px;
}

.process-step--lower {
  padding-top: 166px;
}

.process-step h3 {
  max-width: 280px;
}

.process-step p {
  max-width: 250px;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 151;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s var(--ease),
    visibility 0.28s var(--ease);
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  height: 100vh;
  overflow-x: hidden;
    overflow-y: auto;
    padding: 8px 0px;
}

.service-modal__backdrop {
      position: fixed;
    /* inset: 0; */
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    overflow: visible;
}

.service-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 30px));
}

.service-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.85fr);
  gap: 18px;
}

.service-modal__info {
  background: linear-gradient(180deg, #faf6ee, #f2ead8);
  border-radius: 28px;
  padding: 34px 30px;
  min-height: 100%;
}

.service-modal__info h3 {
  font-size: 2.2rem;
  text-transform: none;
  margin-bottom: 14px;
  @media(width<768px){
    text-align: center;
  }
}


.service-modal__info p {
  color: var(--c-text-soft);

    @media(width<768px){
    text-align: center;
  }
}

.service-modal__extra {
  margin-top: 12px;
  color: rgba(26, 26, 26, 0.78);
}

.service-modal__list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.service-modal__list li {
  padding-left: 18px;
  position: relative;
  color: var(--c-text-soft);
}

.service-modal__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--c-gold-dark);
}

.service-modal__note {
  margin-top: 18px;
  color: var(--c-gold-dark);
  font-style: italic;
}

.service-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-black);
  font-size: 0px;
  line-height: normal;
  z-index: 2;

  span{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 1100px) {
  .hero__stats-inner {
    flex-wrap: wrap;
  }

  .hero__stat {
    flex: 1 1 calc(50% - 10px);
  }

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

  .process-steps::before {
    top: 50%;
  }
}

@media (max-width: 1100px) {
  .benefit,
  .benefits-grid .benefit:first-child {
    flex-basis: calc((100% - 18px) / 2);
  }

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

@media (max-width: 900px) {
  .process-steps {
    padding: 0;
    flex-direction: column;
    gap: 18px;
  }

  .process-steps::before,
  .process-step::before {
    content: none;
  }

  .process-step,
  .process-step--upper,
  .process-step--lower {
    min-height: auto;
    padding: 0 0 0 64px;
    justify-content: flex-start;
  }

  .process-step__badge {
    top: 2px;
    left: 14px;
    transform: none;
  }

  .section--process .section__head .eyebrow {
    position: static;
    margin-bottom: 14px;
  }

  .benefit,
  .benefits-grid .benefit:first-child {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.75rem);
        text-align: center ;

  }

  .hero__stats-inner {
    justify-content: stretch;
  }

  .hero__stat {
    min-height: 74px;
  }

  .hero__stat-label {
    white-space: normal;
  }

  .about__values {
    grid-template-columns: 1fr;
  }

  .quote-modal__panel {
    width: calc(100vw - 18px);
  }

  .service-modal__panel {
    width: calc(100vw - 18px);
  }

  .hero__stats{
    position: relative;
  }
}

/* ----------------------------------------------------------------
   Process final correction
   ---------------------------------------------------------------- */
.section--process .container {
  max-width: calc(var(--container) + 120px);
}

.section--process .section__head {
  position: relative;
  max-width: none;
  margin-bottom: 84px;
}

.section--process .section__head .eyebrow {
  position: absolute;
  top: 8px;
  right: 0;
  margin: 0;
  color: rgba(245, 243, 235, 0.9);
}

.section--process .section__head h2 {
  max-width: 1040px;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.section--process .section__head .title-accent {
  color: rgba(245, 243, 235, 0.34);
}

.section--process .section__head .section__lede {
  display: none;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  min-height: 560px;
  padding: 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(245, 243, 235, 0.82);
  transform: translateY(-50%);
}

.process-step__arrow {
  display: none !important;
}

.process-step {
  position: relative;
  min-height: 560px;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.process-step__badge {
  position: absolute;
  left: 22px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #f5f3eb;
  color: transparent;
  box-shadow: none;
  z-index: 2;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 35px;
  border-left: 2px dashed rgba(245, 243, 235, 0.18);
  z-index: 1;
}

.process-step--upper {
  justify-content: flex-start;
  padding-top: 0;
  padding-bottom: 320px;
}

.process-step--upper::before {
  top: 88px;
  bottom: calc(50% + 14px);
}

.process-step--lower {
  justify-content: flex-end;
  padding-top: 320px;
  padding-bottom: 0;
}

.process-step--lower::before {
  top: calc(50% + 14px);
  bottom: 88px;
}

.process-step h3 {
  max-width: 300px;
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.25;
  color: #f5f3eb;
  text-transform: none;
}

.process-step p {
  max-width: 290px;
  color: rgba(245, 243, 235, 0.58);
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .section--process .section__head .eyebrow {
    position: static;
    margin-bottom: 16px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .process-steps::before,
  .process-step::before {
    content: none;
  }

  .process-step,
  .process-step--upper,
  .process-step--lower {
    min-height: auto;
    padding: 0 0 0 64px;
    justify-content: flex-start;
  }

  .process-step__badge {
    left: 10px;
    top: 2px;
    transform: none;
  }

  .process-step h3,
  .process-step p {
    max-width: none;
  }
}

/* ----------------------------------------------------------------
   Requested refinement overrides
   ---------------------------------------------------------------- */
.header__inner {
  min-height: 0;
  height: auto;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  padding-left: 0;
  padding-right: 0;
}

.header,
.header--scrolled {
  background: #000000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand__logo {
  height: 104px;
}

.brand--footer .brand__logo {
  height: 170px;
}

.gallery-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.gallery {
  display: flex;
  align-items: stretch;
  width: max-content;

}

.gallery__item {
  flex: 0 0 272px;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-height: 250px;

}

.gallery__item img{
  transition: all .3s ease-in;
}

.gallery__item:hover img{
  scale: 1.1;
}

.gallery__item--clone {
  opacity: 1;
}

@keyframes gallery-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

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

@media (min-width: 901px) {
  .services-accordion {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-top: 28px;
    overflow: hidden;
    min-height: 620px;
  }

  .svc-item {
    position: relative;
    flex: 1 1 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    transition:
      flex 0.6s var(--ease),
      transform 0.4s var(--ease),
      border-color 0.4s var(--ease);
  }

  .svc-item:hover,
  .svc-item.is-open {
    flex: 2.3 1 0;
    border-color: rgba(212, 169, 74, 0.32);
  }

  .svc-item__trigger {
    position: absolute;
    inset: 0;
    z-index: 3;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'num icon'
      'title icon';
    align-content: start;
    gap: 10px 14px;
    padding: 28px 24px;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.14) 34%,
      rgba(0, 0, 0, 0) 60%
    );
  }

  .svc-item__num {
    grid-area: num;
    font-size: 0.9rem;
    font-family: var(--f-mono);
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.72);
    opacity: 1;
  }

  .svc-item__title {
    grid-area: title;
    max-width: 180px;
    font-size: clamp(1.05rem, 1.4vw, 1.45rem);
    color: #fff;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .svc-item__icon {
    grid-area: icon;
    align-self: start;
  }

  

  .svc-item__inner,
  .svc-item.is-open .svc-item__inner {
    position: relative;
    display: block;
    min-height: 620px;
    padding: 0;
    overflow: hidden;
  }

  .svc-item__media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .svc-item__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.16) 34%,
        rgba(0, 0, 0, 0.82) 100%
      ),
      radial-gradient(
        circle at top left,
        rgba(212, 169, 74, 0.18),
        transparent 30%
      );
  }

  .svc-item__media img,
  .svc-item.is-open .svc-item__media img {
    width: 100%;
    height: 100%;
    transform: scale(1.14);
    filter: brightness(0.66) saturate(0.86);
    transition:
      transform 0.7s var(--ease),
      filter 0.55s var(--ease);
  }

  .svc-item:hover .svc-item__media img,
  .svc-item.is-open .svc-item__media img {
    transform: scale(1.02);
    filter: brightness(0.88) saturate(1.02);
  }

  .svc-item__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px;
    gap: 14px;
    color: #fff;
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.45s var(--ease),
      transform 0.45s var(--ease);
  }

  .svc-item:hover .svc-item__content,
  .svc-item.is-open .svc-item__content {
    opacity: 1;
    transform: translateY(0);
  }

  .svc-item__content p,
  .svc-item__list li {
    color: rgba(255, 255, 255, 0.78);
  }

  .svc-item__note {
    color: var(--c-gold-light);
  }
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 72px;
  position: static;
}

.process-steps::before {
  content: none;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: static;
}

.process-step__badge {
  position: static;
  width: 60px;
  height: 60px;
  margin-bottom: 28px;
  box-shadow:
    0 0 0 8px rgba(212, 169, 74, 0.12),
    0 0 0 16px rgba(212, 169, 74, 0.05);
}

/* .process-step:hover .process-step__badge {
  box-shadow:
    0 0 0 10px rgba(212, 169, 74, 0.22),
    0 0 0 20px rgba(212, 169, 74, 0.08);
  transform: scale(1.08);
} */

.process-step h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.25;
}

.process-step p {
  color: #686860;
  font-size: 0.87rem;
  line-height: 1.6;
}

.process-step__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 30px;
  color: rgba(212, 169, 74, 0.35);
  width: 32px;
}

.process-step__arrow svg {
  width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------
   Process hard override
   ---------------------------------------------------------------- */
.section--process .process-steps {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 0 !important;
  min-height: 560px !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

/* ----------------------------------------------------------------
   Hero split-on-scroll
   ---------------------------------------------------------------- */
.hero {
  --hero-split: 0;
  --hero-fade: 1;
}

.hero__content {
  transform: translateY(calc(var(--hero-split) * -18px));
  opacity: var(--hero-fade);
  transition:
    transform 0.12s linear,
    opacity 0.12s linear;
  will-change: transform, opacity;
}

.hero__main {
  transform: translate3d(calc(var(--hero-split) * -160px), 0, 0);
  transition: transform 0.12s linear;
  will-change: transform;
}

.hero__aside {
  transform: translate3d(calc(var(--hero-split) * 180px), 0, 0);
  transition: transform 0.12s linear;
  will-change: transform;
}

.hero__stats {
  transform: translate3d(0, calc(var(--hero-split) * 36px), 0);
  opacity: calc(1 - (var(--hero-split) * 0.9));
  transition:
    transform 0.12s linear,
    opacity 0.12s linear;
  will-change: transform, opacity;
}

.hero__scroll {
  opacity: calc(1 - (var(--hero-split) * 1.6));
  transition: opacity 0.12s linear;
}

@media (max-width: 900px) {
  .hero__content,
  .hero__main,
  .hero__aside,
  .hero__stats,
  .hero__scroll {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ----------------------------------------------------------------
   Latest polish overrides
   ---------------------------------------------------------------- */
.section--contact {
  background:
    linear-gradient(
      115deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.62) 42%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url('../images/form-section.jpg') center center / cover no-repeat !important;
}

.hero__main {
  max-width: 760px !important;
}

.hero h1 {
  max-width: 760px !important;
  font-size: clamp(2.15rem, 4.6vw, 4.1rem) !important;
  line-height: 0.96 !important;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.section__head h2,
.about__body h2,
.night-demo__content h2,
.areas__body h2,
.contact__body h2 {
  font-size: clamp(1.72rem, 3.35vw, 3rem) !important;
  line-height: 0.98 !important;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(2.15rem, 10.2vw, 3.35rem) !important;
    max-width: 100% !important;
  }
  
  .hero{
    flex-direction: column;
    padding-bottom: 55px;
  }

  .section__head h2,
  .about__body h2,
  .night-demo__content h2,
  .areas__body h2,
  .contact__body h2 {
    font-size: clamp(1.52rem, 7.2vw, 2.35rem) !important;
  }
  .section__head h2{
    text-align: cenyter ;
  }
}

.section--process .process-steps::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 50% !important;
  height: 2px !important;
  background: rgba(245, 243, 235, 0.82) !important;
  transform: translateY(-50%) !important;
}

.section--process .process-step {
  position: relative !important;
  min-height: 560px !important;
  padding: 0 22px 0 78px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  flex: none !important;
  opacity: 0;
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.section--process .process-step--upper {
  padding-top: 0 !important;
  padding-bottom: 320px !important;
  transform: translateY(-40px);
}

.section--process .process-step--lower {
  padding-top: 320px !important;
  padding-bottom: 0 !important;
  justify-content: flex-end !important;
  transform: translateY(40px);
}

.section--process .process-step::before {
  content: '' !important;
  position: absolute !important;
  left: 35px !important;
  border-left: 2px dashed rgba(245, 243, 235, 0.18) !important;
}

.section--process .process-step--upper::before {
  top: 88px !important;
  bottom: calc(50% + 14px) !important;
}

.section--process .process-step--lower::before {
  top: calc(50% + 14px) !important;
  bottom: 88px !important;
}

.section--process .process-step__badge {
  position: absolute !important;
  left: 22px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: #f5f3eb !important;
  color: transparent !important;
  z-index: 2 !important;
}

/* .section--process .process-step:hover .process-step__badge {
  transform: translateY(-50%) scale(1) !important;
  box-shadow: none !important;
} */

.section--process .process-step h3 {
  max-width: 300px !important;
  margin-bottom: 12px !important;
  font-size: clamp(1rem, 1.35vw, 1.1rem) !important;
  line-height: 1.25 !important;
  color: #f5f3eb !important;
  text-transform: none !important;
}

.section--process .process-step h3::before {
  content: counter(process-step, decimal-leading-zero) ' | ';
  counter-increment: process-step;
  color: #f5f3eb !important;
  font-weight: 700 !important;
}

.section--process .process-step p {
  max-width: 290px !important;
  color: rgba(245, 243, 235, 0.58) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.section--process .process-step__arrow {
  display: none !important;
}

.section--process .process-steps {
  counter-reset: process-step;
}

.section--process.is-animated .process-step {
  opacity: 1;
  transform: translateY(0);
}

.section--process.is-animated .process-step:nth-child(1) {
  transition-delay: 0.05s;
}
.section--process.is-animated .process-step:nth-child(3) {
  transition-delay: 0.18s;
}
.section--process.is-animated .process-step:nth-child(5) {
  transition-delay: 0.31s;
}
.section--process.is-animated .process-step:nth-child(7) {
  transition-delay: 0.44s;
}
.section--process.is-animated .process-step:nth-child(9) {
  transition-delay: 0.57s;
}

@media (max-width: 1024px) {
  .section--process .process-steps {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 28px !important;
  }

  .section--process .process-steps::before,
  .section--process .process-step::before {
    content: none !important;
  }

  .section--process .process-step,
  .section--process .process-step--upper,
  .section--process .process-step--lower {
    min-height: auto !important;
    padding: 0 0 0 64px !important;
    justify-content: flex-start !important;
    transform: translateY(24px);
  }

  .section--process .process-step__badge {
    left: 10px !important;
    top: 2px !important;
    transform: none !important;
  }

  .section--process .process-step h3,
  .section--process .process-step p {
    max-width: none !important;
  }
}

@media (max-width: 900px) {
  .brand__logo {
    height: 84px;
  }

  .brand--footer .brand__logo {
    height: 116px;
  }

  .process-steps {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 169, 74, 0.1);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .process-step__badge {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process-step__arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-bar__inner {
    padding: 0 0;
  }

  .header__inner {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .brand__logo {
    height: 68px;
  }

  .hero__content {
    padding-left: 14px;
  }

  .gallery__item {
    flex-basis: 220px;
  }
}

/* ----------------------------------------------------------------
   Responsive audit fixes
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .top-bar__inner,
  .header__inner {
    max-width: none !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero {
    min-height: auto !important;
    padding-top: 44px !important;
    padding-bottom: 220px !important;
  }

  .hero__content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero__layout {
    gap: 24px !important;
  }

  .hero__main,
  .hero__aside,
  .hero-card {
    max-width: 100% !important;
  }

  .hero__sub,
  .section__lede,
  .contact__body > p,
  .night-demo__content p,
  .areas__body p {
    font-size: 0.98rem !important;

    @media(width<768px){
      text-align: center ;
    }
  }

  .hero__cta {
    width: 100%;
    gap: 10px;
  }

  .hero__cta .btn {
    min-height: 52px;
  }

  .hero__stats {
    padding: 8px 0 !important;
  }

  .hero__stats-inner {
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: stretch !important;
  }

  .hero__stat {
    flex: 1 1 calc(50% - 8px) !important;
    min-height: 72px !important;
    padding: 12px 14px !important;
  }

  .hero__stat:last-child {
    flex-basis: 100% !important;
  }

  .benefit,
  .why-card,
  .testimonial,
  .faq__item,
  .content-form,
  .quote-modal__panel,
  .service-modal__panel,
  .service-modal__info {
    border-radius: 22px !important;
  }

  .about__values {
    gap: 12px !important;
  }

  .why-carousel__nav,
  .testimonials-controls {
    gap: 12px !important;
  }

  .why-carousel__btn,
  .testimonials-btn {
    width: 42px !important;
    height: 42px !important;
  }

  .areas__map-embed {
    max-width: 100% !important;
  }

  .areas__markers {
    font-size: 0.62rem;
  }

  .footer__inner,
  .footer__bottom-inner {
    gap: 18px !important;
  }
}

@media (max-width: 768px) {
  .top-bar {
    min-height: 36px;
  }

  .top-bar__inner {
    justify-content: center !important;
    height: 36px !important;
  }

  .top-bar__item:first-child {
    display: none !important;
  }

  .top-bar__item:nth-child(2) {
    position: static !important;
    transform: none !important;
    justify-content: center;
    max-width: calc(100% - 56px);
    text-align: center;
  }

  .top-bar__socials a{
    width: auto;
    padding-inline: 8px;
    margin-top: 2px;
    gap: 8px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .top-bar__socials a.top-tel{
    display: inline-flex;
  }

  .top-bar__socials a.top-tel span{
      white-space: nowrap;
      font-weight: 800;
  }

  .top-bar__socials a:not(.top-tel){
    display: none;
  }

  .header__inner {
    gap: 10px !important;
  }

  .header__cta {
    gap: 8px !important;
  }

  .header__cta .btn--ghost {
    padding: 9px !important;
  }

  .header__cta .btn--primary {
    padding: 10px 14px !important;
    font-size: 0.72rem !important;
  }

  .brand__logo {
    height: 64px !important;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.9vw, 3rem) !important;
    line-height: 0.98 !important;
  }

  .hero__title-line {
    white-space: nowrap;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0px;
  }

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

  .hero-card {
    padding: 20px 18px !important;
    border-radius: 22px !important;
  }

  .benefits-carousel__nav,
  .why-carousel__nav,
  .testimonials-controls {
    flex-wrap: wrap;
    margin-top: 0px;
  }

  .gallery-marquee {
    mask-image: none;
  }

  .gallery {
    gap: 12px !important;
  }

  .gallery__item {
    flex-basis: 200px !important;
  }

  .ba-wrapper {
    max-width: 100% !important;
  }

  .night-demo__content {
    padding: 34px 18px !important;
  }

  .night-demo__cta {
    width: 100%;
    justify-content: center;
  }

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

  .contact__inner {
    gap: 28px !important;
  }

  .content-form{
    order: 1;
  }

  .service-modal__info{
    order: 2;
  }

  .content-form,
  .service-modal__info {
    padding: 24px 18px !important;
  }

  .contact__row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .quote-modal__panel,
  .service-modal__panel {
    width: calc(100vw - 16px) !important;
  }

  .service-modal__content {
    gap: 10px !important;
  }

  .service-modal__info h3 {
    font-size: 1.7rem !important;
  }

  .float-call {
    right: 14px !important;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important;
    width: 56px !important;
    height: 56px !important;
  }
}

@media (max-width: 560px) {
  .container,
  .top-bar__inner,
  .header__inner {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .header__cta .btn--phone {
    display: none !important;
  }

  .header__cta .btn--primary {
    min-height: 42px;
    padding: 10px 12px !important;
  }

  .hero {
    padding-top: 36px !important;
    padding-bottom: 0px !important;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 8.4vw, 2.4rem) !important;
  }

  .hero__title-line {
    white-space: normal !important;
  }

  .hero__stat,
  .hero__stat:last-child {
    flex-basis: 100% !important;
  }

  .section__head h2,
  .about__body h2,
  .night-demo__content h2,
  .areas__body h2,
  .contact__body h2 {
    font-size: clamp(1.4rem, 7vw, 2rem) !important;
    text-align: center ;
  }

  .svc-item__trigger {
    padding: 18px 16px !important;
    gap: 12px !important;
  }

  .svc-item__title {
    font-size: 0.98rem !important;
  }

  .svc-item__icon {
    width: 38px !important;
    height: 38px !important;
  }

  .why-carousel__btn,
  .testimonials-btn {
    width: 40px !important;
    height: 40px !important;
  }

  .areas__markers {
    display: none !important;
  }

  .footer__bottom-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
}

/* EC-BTN-104 + EC-NAV-121: Re-assert hero / CTA text-white on buttons & links.
   Uses class~= (word match) not class*= (substring) to avoid matching hover:text-white etc. */
button[class~='text-white/90'],
a[class~='text-white/90'] {
  color: rgba(255, 255, 255, 0.9);
}
button[class~='text-white/80'],
a[class~='text-white/80'] {
  color: rgba(255, 255, 255, 0.8);
}
button[class~='text-white/70'],
a[class~='text-white/70'] {
  color: rgba(255, 255, 255, 0.7);
}
button[class~='text-white/60'],
a[class~='text-white/60'] {
  color: rgba(255, 255, 255, 0.6);
}
button[class~='text-white/50'],
a[class~='text-white/50'] {
  color: rgba(255, 255, 255, 0.5);
}
button[class~='text-white/40'],
a[class~='text-white/40'] {
  color: rgba(255, 255, 255, 0.4);
}
button[class~='text-white'],
a[class~='text-white'] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* EC-ANIM-008b / EC-ANIM-009: carousel-only override — scroll-reveal elements animate via IO in functions.php */
.scroll-fade-up:has([aria-roledescription='carousel']),
.scroll-fade-up:has([data-wpconvert-blog-filter-bar]),
.scroll-fade-left:has([aria-roledescription='carousel']),
.scroll-fade-right:has([aria-roledescription='carousel']),
.scroll-scale-in:has([aria-roledescription='carousel']) {
  opacity: 1 !important;
  transform: none !important;
}

/* Check Policy */

.custom-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.custom-check input {
  display: none;
}

.custom-check .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}

.custom-check:hover .checkmark {
  border-color: #999;
}

.custom-check input:checked + .checkmark {
  background: #111;
  border-color: #111;
}

.custom-check .checkmark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.custom-check input:checked + .checkmark::after {
  transform: rotate(45deg) scale(1);
}

.custom-check .ppp {
  font-size: 14px;
  color: var(--c-text-soft);
  text-transform: capitalize;

  a{
    font-weight: 800;
  }
}
