/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESET & TOKENS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] { display: none !important; }

:root {
  --accent:        #e8a230;
  --accent-glow:   rgba(232, 162, 48, 0.28);
  --accent-dim:    rgba(232, 162, 48, 0.12);
  --accent-border: rgba(232, 162, 48, 0.30);

  --text-hi:  #f0ede8;
  --text-mid: #9a9690;
  --text-lo:  #5a5753;

  --bg:       #0c0b09;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-hi);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAV
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: var(--nav-h);
  background: linear-gradient(
    to bottom,
    rgba(12, 11, 9, 0.88) 0%,
    rgba(12, 11, 9, 0.00) 100%
  );
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* Solid nav once user scrolls past hero */
.nav.is-scrolled {
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(240, 237, 232, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-hi);
}

/* Active section highlight â€” matches logo gold gradient */
.nav-links a.nav-active {
  color: var(--accent);
}

.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(to right, #b07908, #f4db76, #b07908);
  border-radius: 2px;
  transform-origin: left center;
  animation: underlineIn 0.4s var(--ease-out-expo) forwards;
}

@keyframes underlineIn {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent-border);
  padding: 0.45rem 1.25rem;
  border-radius: 7px;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--accent);
  color: #000 !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-hi);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* â”€â”€ Mobile services inline sub-menu â”€â”€ */
.mobile-srv-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  width: 100%;
  flex-basis: 100%;
}
.nav-has-dropdown.is-mob-open .mobile-srv-menu {
  max-height: 260px;
}
/* Hide on desktop â€” only for mobile nav */
@media (min-width: 769px) {
  .mobile-srv-menu { display: none !important; }
}
.mobile-srv-menu li a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem 0.65rem 0.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s ease;
}
.mobile-srv-menu li:last-child a { border-bottom: none; }
.mobile-srv-menu li a:hover { color: var(--accent); }
.mobile-srv-menu li a svg { color: var(--accent); flex-shrink: 0; }

/* Rotate chevron when sub-menu open */
.nav-has-dropdown.is-mob-open .nav-chevron {
  transform: rotate(180deg);
}

/* â”€â”€ Mobile nav open state â”€â”€ */
.nav.is-nav-open .nav-links {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: absolute;
  top: var(--nav-h, 64px);
  left: 0;
  right: 0;
  background: rgba(12,11,9,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.5rem 1.5rem 1.5rem;
  z-index: 999;
  backdrop-filter: blur(12px);
}

.nav.is-nav-open .nav-links > li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav.is-nav-open .nav-links > li:last-child {
  border-bottom: none;
  padding-top: 0.5rem;
}

/* Regular links */
.nav.is-nav-open .nav-links > li > a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
}

/* Services row: keep flex but allow sub-menu to wrap below */
.nav.is-nav-open .nav-has-dropdown {
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: none;
}

.nav.is-nav-open .nav-services-link {
  flex: 1;
  padding: 0.35rem 0;
  font-size: 1rem;
}

/* Valuate + Book Now â€” compact, not full-width */
.nav.is-nav-open .nav-evaluate {
  font-size: 0.82rem !important;
  padding: 0.5rem 1rem !important;
  width: auto;
  display: inline-flex;
}

.nav.is-nav-open .nav-cta {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Burger â†’ clean X */
.nav.is-nav-open .nav-burger span:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}
.nav.is-nav-open .nav-burger span:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO SHELL
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  /* body content fills center, strip + cue anchor to bottom */
  grid-template-rows: 1fr auto;
  overflow: hidden;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   VIDEO BACKGROUND
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Start invisible, animate in */
  opacity: 0;
  transform: scale(1.06);
  animation: videoReveal 2.2s var(--ease-out-expo) 0.05s forwards;
}

/* Directional overlay: heavy on the left (where text lives), softer on right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* left fade for text contrast */
    linear-gradient(
      100deg,
      rgba(12, 11, 9, 0.93) 0%,
      rgba(12, 11, 9, 0.78) 38%,
      rgba(12, 11, 9, 0.40) 65%,
      rgba(12, 11, 9, 0.20) 100%
    ),
    /* bottom vignette for strip readability */
    linear-gradient(
      to top,
      rgba(12, 11, 9, 0.85) 0%,
      rgba(12, 11, 9, 0.00) 35%
    ),
    /* top vignette for nav */
    linear-gradient(
      to bottom,
      rgba(12, 11, 9, 0.55) 0%,
      rgba(12, 11, 9, 0.00) 22%
    );
}

/* Film grain texture via SVG filter */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO BODY (copy)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-body {
  position: relative;
  z-index: 10;
  align-self: center;
  padding: calc(var(--nav-h) + 3rem) 3rem 0;
  max-width: 700px;
}

/* Badge pill */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 0.38rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.75rem;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2.4s ease-in-out infinite;
}

/* Heading */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 8.5vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text-hi);
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

/* Sub */
.hero-sub {
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 2.5rem;
}

/* CTA row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent);
  color: #060504;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.9rem;
  border-radius: 9px;
  text-decoration: none;
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px var(--accent-glow);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.00);
}

.btn-ghost {
  color: rgba(240, 237, 232, 0.8);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: rgba(240, 237, 232, 0.35);
  transition: background 0.2s ease;
}

.btn-ghost:hover { color: var(--accent); }

.btn-ghost:hover::after {
  background: var(--accent);
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO STRIP (stats)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-strip {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2.25rem;
  padding: 2.5rem 3rem 2.75rem;
}

.strip-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.strip-icon {
  color: var(--accent);
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}

.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-hi);
  letter-spacing: 0.01em;
}

.stat-label {
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(232,162,48,0.6);
}

.strip-rule {
  width: 1px;
  height: 44px;
  background: rgba(240, 237, 232, 0.1);
  flex-shrink: 0;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SCROLL CUE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.scroll-cue {
  position: absolute;
  bottom: 2.75rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-lo);
  writing-mode: vertical-rl;
}

.scroll-track {
  width: 1px;
  height: 56px;
  background: rgba(240, 237, 232, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.scroll-thumb {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 1px;
  animation: scrollDrop 2s ease-in-out infinite;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   STAGGERED ENTRANCE ANIMATIONS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stagger-1,
.stagger-2,
.stagger-3,
.stagger-4,
.stagger-5 {
  opacity: 0;
  transform: translateY(22px);
}

/* Triggered once video starts */
.hero-body .stagger-1 { animation: fadeUp 0.8s var(--ease-out-expo) 0.55s forwards; }
.hero-body .stagger-2 { animation: fadeUp 0.8s var(--ease-out-expo) 0.75s forwards; }
.hero-body .stagger-3 { animation: fadeUp 0.8s var(--ease-out-expo) 0.92s forwards; }
.hero-body .stagger-4 { animation: fadeUp 0.8s var(--ease-out-expo) 1.08s forwards; }
.hero-strip          { animation: fadeUp 0.8s var(--ease-out-expo) 1.20s forwards; }
.scroll-cue          { animation: fadeUp 0.8s var(--ease-out-expo) 1.35s forwards; }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   KEYFRAMES
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes videoReveal {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.7); }
}

@keyframes scrollDrop {
  0%   { top: -100%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAV â€” SERVICES (link + chevron)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-has-dropdown {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

/* The text link â€” same style as other nav links */
.nav-services-link {
  color: rgba(240, 237, 232, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.2s ease;
}

.nav-services-link:hover { color: var(--text-hi); }

/* Reuse the same active gold + underline as Diagnostic */
.nav-services-link.nav-active {
  color: var(--accent);
}

.nav-services-link.nav-active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(to right, #b07908, #f4db76, #b07908);
  border-radius: 2px;
  transform-origin: left center;
  animation: underlineIn 0.4s var(--ease-out-expo) forwards;
}

/* Chevron-only button */
.nav-chevron-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 2px 0;
  display: grid;
  place-items: center;
  color: rgba(240, 237, 232, 0.5);
  transition: color 0.2s ease;
}

.nav-chevron-btn:hover,
.nav-chevron-btn[aria-expanded="true"] {
  color: var(--text-hi);
}

.nav-chevron {
  transition: transform 0.25s var(--ease-out-expo);
}

.nav-chevron-btn[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SERVICES DROPDOWN PANEL
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-dropdown {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 190;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
  pointer-events: none;

  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.28s var(--ease-out-expo),
    transform 0.28s var(--ease-out-expo);
}

.services-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sd-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  background-color: rgba(10, 9, 7, 0.82);
  max-width: 900px;
  width: 100%;
  margin-top: 0.75rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
}

.sd-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--text-hi);
  background: transparent;
  position: relative;
  transition: background 0.2s ease;
}

.sd-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232, 162, 48, 0.06);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sd-card:hover::after { opacity: 1; }
.sd-card-active::after { opacity: 1; }
.sd-card-active .sd-title { color: var(--accent); }

.sd-card:hover .sd-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.sd-card:hover .sd-icon {
  color: var(--accent);
  border-color: var(--accent-border);
}

.sd-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--text-mid);
  transition: color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.sd-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.sd-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-hi);
  letter-spacing: 0.01em;
}

.sd-desc {
  font-size: 0.775rem;
  color: var(--text-mid);
  line-height: 1.5;
  font-weight: 300;
}

.sd-arrow {
  color: var(--text-lo);
  align-self: flex-end;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-spring), color 0.2s ease;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BOOKING MODAL
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6, 5, 4, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: relative;
  background: #141210;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 580px;
  max-height: 90dvh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);

  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--ease-out-expo);
}

.modal-backdrop.is-open .modal {
  transform: translateY(0) scale(1);
}

/* scrollbar */
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text-mid);
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-hi);
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: var(--text-hi);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
}

/* â”€â”€ Form â”€â”€ */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.label-opt {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-lo);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-hi);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-lo);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-border);
  background: rgba(232, 162, 48, 0.04);
}

/* date input color fix for dark */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 88px;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select-wrap select option {
  background: #1a1814;
  color: var(--text-hi);
}

.select-chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-lo);
}

.form-submit {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #060504;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 1rem 2rem;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  width: 100%;
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease,
    background 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--accent-glow);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit:disabled {
  opacity: 0.75;
  pointer-events: none;
}

/* Booking form -- inline field errors */
.b-err {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  color: #ff6b7a;
  line-height: 1.3;
}
.b-err-general {
  margin-top: 0;
  padding: 0.55rem 0.75rem;
  background: rgba(220,53,69,0.08);
  border: 1px solid rgba(220,53,69,0.25);
  border-radius: 6px;
  font-size: 0.78rem;
}
.form-group input.input-error,
.form-group textarea.input-error,
.form-group select.input-error {
  border-color: rgba(220,53,69,0.6);
  background: rgba(220,53,69,0.05);
}
.form-group input.input-error:focus,
.form-group select.input-error:focus {
  border-color: rgba(220,53,69,0.8);
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAV â€” EVALUATE BUTTON
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-evaluate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  padding: 0.42rem 0.9rem;
  cursor: pointer;
  color: rgba(240, 237, 232, 0.75);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nav-evaluate:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-dim);
}

.nav-evaluate-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: #060504;
  padding: 0.1rem 0.38rem;
  border-radius: 4px;
  line-height: 1.4;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SHARED SECTION BADGE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 0.32rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.section-badge-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PAGE-IN ANIMATION (shared)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-left, .about-right,
.contact-head, .cinfo-card, .contact-form {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.about-right  { transition-delay: 0.15s; }
.cinfo-card:nth-child(2) { transition-delay: 0.08s; }
.cinfo-card:nth-child(3) { transition-delay: 0.16s; }
.cinfo-card:nth-child(4) { transition-delay: 0.24s; }
.contact-form { transition-delay: 0.1s; }

.page-in { opacity: 1 !important; transform: translateY(0) !important; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   ABOUT SECTION
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-section {
  position: relative;
  padding: 7rem 3rem 8rem;
  background: #0e0d0b;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,162,48,0.2), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Left */
.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-hi);
  margin-bottom: 1.5rem;
}

.about-title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.about-desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.about-values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.av-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-value strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-hi);
  margin-bottom: 0.2rem;
}

.about-value span {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Right */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.astat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.75rem 1.5rem;
  background: rgba(10,9,7,0.7);
}

.astat:hover { background: rgba(232,162,48,0.04); }

.astat-icon {
  display: block;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.astat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-hi);
  margin-bottom: 0.3rem;
}

.astat-desc {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

.about-quote {
  border-left: 2px solid var(--accent-border);
  padding-left: 1.25rem;
  margin: 0;
}

.about-quote p {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.6rem;
  font-weight: 300;
}

.about-quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

.about-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,162,48,0.3);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s ease, gap 0.2s ease;
}
.about-readmore:hover { border-color: var(--accent); gap: 0.75rem; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CONTACT SECTION
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-section {
  position: relative;
  padding: 7rem 3rem 8rem;
  background: var(--bg);
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,162,48,0.15), transparent);
}

.contact-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 4rem;
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-hi);
}

.contact-title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

/* Info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-right: 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cinfo-card:hover {
  border-color: var(--accent-border);
  background: var(--accent-dim);
}

.cinfo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cinfo-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-hi);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.cinfo-card span {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.55;
}

/* Contact form reuses existing .form-* classes */
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOOTER
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  background: #080706;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem 3rem;
  align-items: start;
}

/* Brand col */
.footer-logo {
  height: 38px;
  width: auto;
  mix-blend-mode: lighten;
  margin-bottom: 0.85rem;
  display: block;
}

.footer-tagline {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-lo);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.fsocial {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--text-lo);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.fsocial:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-dim);
}

/* Links grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-hi);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-lo);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* App store buttons */
.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-apps-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-hi);
  margin-bottom: 0.25rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 11px;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  color: var(--text-hi);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease-spring);
}

.store-btn:hover {
  border-color: var(--accent-border);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.store-btn div {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.store-btn span {
  font-size: 0.62rem;
  color: var(--text-lo);
  letter-spacing: 0.04em;
}

.store-btn strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-hi);
  letter-spacing: 0.01em;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-lo);
  font-weight: 300;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SERVICES SECTION
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.srv-section {
  position: relative;
  padding: 7rem 3rem 8rem;
  background: var(--bg);
  overflow: hidden;
}

/* Warm ambient glow centred behind the grid */
.srv-ambient {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 162, 48, 0.06) 0%,
    transparent 68%
  );
  pointer-events: none;
}

/* â”€â”€ Section header â”€â”€ */
.srv-head {
  max-width: 640px;
  margin: 0 auto 5rem;
  text-align: center;

  /* initial hidden state */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.srv-head.srv-in {
  opacity: 1;
  transform: translateY(0);
}

.srv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 0.32rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.srv-badge-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

.srv-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-hi);
  margin-bottom: 1.25rem;
}

/* Word reveal â€” each word clips in on scroll */
.srv-word {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.7s var(--ease-out-expo);
}

.srv-head.srv-in .srv-word:nth-child(1) { clip-path: inset(0 0% 0 0); transition-delay: 0.05s; }
.srv-head.srv-in .srv-word:nth-child(2) { clip-path: inset(0 0% 0 0); transition-delay: 0.18s; }
.srv-head.srv-in .srv-word:nth-child(3) { clip-path: inset(0 0% 0 0); transition-delay: 0.31s; }

.srv-word-accent {
  color: var(--accent);
}

.srv-intro {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}

/* â”€â”€ Grid â”€â”€ */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* â”€â”€ Card â”€â”€ */
.srv-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  cursor: default;

  /* Spotlight layer tracks mouse via CSS vars */
  isolation: isolate;

  /* Initial hidden state */
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Stagger each card */
.srv-card:nth-child(1) { transition-delay: 0.05s; }
.srv-card:nth-child(2) { transition-delay: 0.15s; }
.srv-card:nth-child(3) { transition-delay: 0.25s; }
.srv-card:nth-child(4) { transition-delay: 0.35s; }

.srv-card.srv-in {
  opacity: 1;
  transform: translateY(0);
}

/* Mouse-tracking spotlight pseudo-element */
.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(232, 162, 48, 0.09),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.srv-card:hover::before { opacity: 1; }

.srv-card:hover {
  border-color: rgba(232, 162, 48, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-5px);
}

/* Override transform transition on hover so lift feels spring-like */
.srv-card:hover {
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.35s var(--ease-spring),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

/* Faded large number in top-right */
.srv-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(240, 237, 232, 0.04);
  letter-spacing: 0.02em;
  user-select: none;
  transition: color 0.3s ease;
  z-index: 0;
}

.srv-card:hover .srv-num {
  color: rgba(232, 162, 48, 0.08);
}

/* Icon box */
.srv-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.srv-card:hover .srv-icon {
  background: rgba(232, 162, 48, 0.2);
  box-shadow: 0 0 20px rgba(232, 162, 48, 0.2);
}

/* Card title */
.srv-card-title {
  position: relative;
  z-index: 1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: var(--text-hi);
  margin-bottom: 0.75rem;
  line-height: 1;
}

/* Card description */
.srv-card-desc {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
}

/* CTA link */
.srv-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-lo);
  transition: color 0.2s ease, gap 0.2s var(--ease-spring);
}

.srv-card-link svg {
  transition: transform 0.25s var(--ease-spring);
}

.srv-card:hover .srv-card-link {
  color: var(--accent);
  gap: 0.7rem;
}

.srv-card:hover .srv-card-link svg {
  transform: translateX(3px);
}

/* Horizontal rule divider between sections */
.srv-section::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto;
  margin-top: 6rem;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   DIAGNOSTIC SECTION
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Tall section â€” gives scroll room for video scrubbing */
.diag-section {
  position: relative;
  height: 500vh;
  background: var(--bg);
}

/* Sticky viewport-height container */
.diag-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
}

/* Video â€” covers full sticky container */
.diag-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: contents;
}

/* Dark overlay â€” heavy right-to-left so right side shows video clearly */
.diag-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 9, 7, 0.96) 0%,
      rgba(10, 9, 7, 0.82) 35%,
      rgba(10, 9, 7, 0.45) 60%,
      rgba(10, 9, 7, 0.15) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(10, 9, 7, 0.50) 0%,
      transparent 18%,
      transparent 78%,
      rgba(10, 9, 7, 0.70) 100%
    );
}

.diag-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* â”€â”€ Scan line â”€â”€ */
.diag-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 20;
  opacity: 0;
  will-change: transform;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.diag-scanline-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(232, 162, 48, 0.12) 15%,
    rgba(232, 162, 48, 0.9) 50%,
    rgba(232, 162, 48, 0.12) 85%,
    transparent 100%
  );
  box-shadow: 0 0 18px 3px rgba(232, 162, 48, 0.35);
}

/* â”€â”€ Top progress bar â”€â”€ */
.diag-pbar-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.06);
  z-index: 30;
}

.diag-pbar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--accent), #f4d06f);
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(232, 162, 48, 0.5);
}

/* â”€â”€ Left intro â”€â”€ */
.diag-intro {
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  z-index: 20;
  max-width: 360px;
}

.diag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 0.32rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.diag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: dotPulse 1.6s ease-in-out infinite;
  animation-play-state: paused;
}

.diag-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text-hi);
  margin-bottom: 1.25rem;
}

.diag-heading em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.diag-sub {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

/* Percentage counter */
.diag-pct {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

#diag-pct-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.diag-pct-sym {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.7;
}

.diag-pct-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lo);
  align-self: center;
}

/* â”€â”€ Right panels â”€â”€ */
.diag-panels {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 300px;
}

/* Individual data card */
.dp-card {
  background: rgba(10, 9, 7, 0.72);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.5s var(--ease-out-expo),
    transform 0.5s var(--ease-out-expo);
}

.dp-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger each card's transition slightly */
.dp-card:nth-child(1) { transition-delay: 0s; }
.dp-card:nth-child(2) { transition-delay: 0.06s; }
.dp-card:nth-child(3) { transition-delay: 0.12s; }
.dp-card:nth-child(4) { transition-delay: 0.18s; }

/* Card header row */
.dp-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.dp-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dp-icon.ok   { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.dp-icon.warn { background: rgba(234, 179, 8, 0.15);  color: #facc15; }

.dp-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-hi);
  flex: 1;
  letter-spacing: 0.03em;
}

.dp-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  text-transform: uppercase;
}

.dp-badge.ok   { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.dp-badge.warn { background: rgba(234,179,8,0.12);  color: #facc15; border: 1px solid rgba(234,179,8,0.25); }

/* Metric row */
.dp-metrics {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.dp-m {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.45rem 0.5rem;
}

.dp-ml {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-lo);
}

.dp-mv {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-hi);
  font-variant-numeric: tabular-nums;
}

.dp-mv.warn { color: #facc15; }

/* Bar */
.dp-bar-track {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}

.dp-bar {
  height: 100%;
  width: var(--w, 0%);
  border-radius: 99px;
  transition: width 0.8s var(--ease-out-expo) 0.2s;
}

.dp-card:not(.is-visible) .dp-bar { width: 0 !important; }

.dp-bar.ok   { background: linear-gradient(to right, #16a34a, #4ade80); }
.dp-bar.warn { background: linear-gradient(to right, #a16207, #facc15); }

/* Tyre grid */
.dp-tyre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.dp-tyre {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dp-tyre-pos {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lo);
}

.dp-tyre-val {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-hi);
}

/* â”€â”€ Complete banner â”€â”€ */
.diag-complete {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 25;
  display: flex;
  justify-content: center;
  padding: 0 2rem 2rem;

  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
  pointer-events: none;
}

.diag-complete.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.diag-complete-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(10, 9, 7, 0.82);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0.9rem 1.4rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-wrap: wrap;
  justify-content: center;
}

.diag-complete-icon {
  color: #4ade80;
  display: flex;
  flex-shrink: 0;
}

.diag-complete-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
}

.warn-text { color: #facc15; }

.diag-complete-cta {
  background: var(--accent);
  color: #060504;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
  flex-shrink: 0;
}

.diag-complete-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-body {
    padding: calc(var(--nav-h) + 2rem) 1.5rem 0;
    max-width: 100%;
  }

  .hero-strip {
    padding: 2rem 1.5rem 2.25rem;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .scroll-cue {
    display: none;
  }

  /* About mobile */
  .about-section, .contact-section { padding: 5rem 1.5rem 6rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Contact mobile */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info { padding-right: 0; border-right: none; }
  .contact-form { padding: 1.5rem; }

  /* Footer mobile */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-links-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1rem 1.5rem; }
  .footer-apps { flex-direction: row; flex-wrap: wrap; }

  /* Nav evaluate â€” hide text on small screens */
  .nav-evaluate { font-size: 0; padding: 0.45rem 0.7rem; }
  .nav-evaluate-badge { font-size: 0.6rem; }

  /* Services mobile layout */
  .srv-section { padding: 5rem 1.5rem 6rem; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .srv-head { margin-bottom: 3.5rem; }

  /* Diagnostic mobile layout */
  .diag-section { height: 600vh; }

  .diag-intro {
    top: auto;
    bottom: auto;
    left: 1.5rem;
    right: 1.5rem;
    top: 5rem;
    transform: none;
    max-width: 100%;
  }

  .diag-heading { font-size: 2.8rem; }

  .diag-panels {
    top: auto;
    bottom: 5rem;
    right: 1.5rem;
    left: 1.5rem;
    width: auto;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dp-card { flex: 1 1 calc(50% - 0.4rem); }

  .sd-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .modal {
    padding: 1.75rem 1.25rem;
  }

  /* On mobile, overlay is more even since content is centered */
  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(12, 11, 9, 0.60) 0%,
        rgba(12, 11, 9, 0.55) 40%,
        rgba(12, 11, 9, 0.80) 100%
      );
  }
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   EVALUATE â€” MULTI-STEP PLATE VALUATION
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Progress bar */
.eval-progress {
  display: flex;
  align-items: center;
  margin-bottom: 2.25rem;
}

.eval-prog-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out-expo);
}

.eval-prog-dot.active {
  background: var(--accent);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--accent-glow);
}

.eval-prog-dot.done {
  background: rgba(232,162,48,0.4);
}

.eval-prog-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 6px;
}

/* Panel animation */
.eval-panel {
  animation: fadeUp 0.38s var(--ease-out-expo) both;
}

/* Step header */
.eval-ph {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.eval-pnum {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: rgba(232,162,48,0.3);
  line-height: 1;
  flex-shrink: 0;
}

.eval-ptitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--text-hi);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.eval-psub {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 300;
}

/* Plate input row */
.eval-plate-row {
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  gap: 0.75rem;
}
.ev-code-num-row {
  grid-template-columns: 1fr 1.3fr;
  margin-bottom: 1.25rem;
}

/* Error */
.eval-err {
  font-size: 0.8rem;
  color: #f87171;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
  border-radius: 8px;
}

.eval-free-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-lo);
  margin-top: 0.85rem;
  letter-spacing: 0.03em;
}

/* Scanning step */
.eval-scan-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 2rem auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eval-scan-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(232,162,48,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: evalSpin 0.85s linear infinite;
}

@keyframes evalSpin { to { transform: rotate(360deg); } }

.eval-scan-icon { color: var(--accent); opacity: 0.75; }

.eval-scan-label {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-hi);
  margin-bottom: 0.35rem;
}

.eval-scan-sub {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-lo);
  font-weight: 300;
}

/* UAE Plate visual */
.uae-plate-card {
  display: flex;
  align-items: stretch;
  background: #f8f7f5;
  border: 3px solid #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.3);
}

.uae-flag-strip {
  width: 9px;
  background: linear-gradient(to bottom,
    #00732F 0%, #00732F 33.33%,
    #fff    33.33%, #fff 66.66%,
    #FF0000 66.66%, #FF0000 100%
  );
  flex-shrink: 0;
}

.uae-plate-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 18px 13px;
  gap: 3px;
}

.uae-emirate-name {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
}

.uae-plate-nums {
  display: flex;
  align-items: center;
  gap: 10px;
}

.uae-pcode,
.uae-pnum-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: #111;
  line-height: 1;
}

.uae-divider {
  width: 1.5px;
  height: 38px;
  background: #bbb;
  border-radius: 1px;
}

/* Result badge */
.eval-badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.eval-match-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--badge-color, var(--accent));
  background: var(--badge-bg, var(--accent-dim));
  border: 1px solid var(--badge-border, var(--accent-border));
  padding: 0.28rem 0.8rem;
  border-radius: 99px;
}

/* Price block */
.eval-price-block {
  text-align: center;
  margin-bottom: 1.5rem;
}

.eval-price-lbl {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lo);
  margin-bottom: 0.4rem;
}

.eval-price-val {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.03em;
  text-shadow: 0 0 40px rgba(232,162,48,0.2);
}

.eval-price-range {
  display: block;
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 0.35rem;
  font-weight: 300;
}

.eval-disclaimer {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-lo);
  margin-top: 0.85rem;
  line-height: 1.55;
}

/* Back button */
.eval-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  padding: 0.42rem 0.9rem;
  color: var(--text-mid);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  margin-bottom: 1.5rem;
}

.eval-back-btn:hover {
  border-color: rgba(255,255,255,0.22);
  color: var(--text-hi);
}

/* Offer ask / yes-no */
.eval-offer-ask {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 1rem;
}

.eval-offer-btns {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}

.eval-skip-btn {
  background: none;
  border: none;
  color: var(--text-lo);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.4rem;
  transition: color 0.2s ease;
}

.eval-skip-btn:hover { color: var(--text-mid); }

/* Mobile (single-column eval panels) */
@media (max-width: 480px) {
  .ev-code-num-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .eval-price-val { font-size: 2.4rem; }
  .uae-pcode, .uae-pnum-val { font-size: 2rem; }
  .ev-emirate-grid { grid-template-columns: repeat(3, 1fr); }
}

/* â”€â”€ Two-column evaluate modal â”€â”€ */
.eval-modal-wide {
  max-width: 880px;
  width: min(94vw, 880px);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
}

.eval-left {
  padding: 3.5rem 2.5rem 2.5rem;
  overflow-y: auto;
  max-height: 88dvh;
}

.eval-left::-webkit-scrollbar { width: 3px; }
.eval-left::-webkit-scrollbar-track { background: transparent; }
.eval-left::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 2px; }

.eval-right {
  background: linear-gradient(155deg, #0f0e0c 0%, #171510 60%, #0c0b09 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem 2rem;
  border-left: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.eval-right::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: 320px;
  height: 280px;
  background: radial-gradient(ellipse at 50% 60%, rgba(232,162,48,0.10) 0%, transparent 68%);
  pointer-events: none;
}

.eval-preview-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-lo);
  margin-bottom: 1.25rem;
  text-align: center;
  position: relative;
}

.eval-car-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  position: relative;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.6));
}

.eval-car-hint {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,162,48,0.35);
  margin-top: 1.25rem;
  text-align: center;
  position: relative;
}

@media (max-width: 660px) {
  .eval-modal-wide {
    grid-template-columns: 1fr;
    min-height: unset;
    width: 95vw;
  }
  .eval-right { display: none; }
  .eval-left { padding: 3rem 1.5rem 2rem; max-height: 92dvh; }
}

/* â”€â”€ Emirate tile selector â”€â”€ */
.ev-emirate-group { margin-bottom: 1.25rem; }

.ev-sect-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lo);
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.ev-emirate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.ev-emirate-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 0.3rem 0.55rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  color: var(--text-lo);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.ev-emirate-tile:hover {
  border-color: rgba(232,162,48,0.28);
  color: var(--text-mid);
  background: rgba(232,162,48,0.04);
}

.ev-emirate-tile.active {
  border-color: var(--accent);
  background: rgba(232,162,48,0.09);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(232,162,48,0.12);
}

.ev-eicon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* â”€â”€ Right-column emirate badge â”€â”€ */
.ev-emirate-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  position: relative;
}

.ev-emirate-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(232,162,48,0.08);
  border: 1px solid rgba(232,162,48,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.ev-emirate-badge svg { color: var(--accent); }

.ev-emirate-badge-name {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* â”€â”€ Evaluate modal v2 â€” two-column layout â”€â”€ */
.eval-modal-v2 {
  max-width: 880px;
  width: min(94vw, 880px);
  padding: 0;
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: 460px;
  overflow: hidden;
}

.eval-v2-left {
  padding: 2.5rem 2.25rem 2rem;
  overflow-y: auto;
  max-height: 88dvh;
  background: #131210;
}

.eval-v2-left::-webkit-scrollbar { width: 3px; }
.eval-v2-left::-webkit-scrollbar-track { background: transparent; }
.eval-v2-left::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 2px; }

.eval-v2-right {
  background: linear-gradient(155deg, #0f0e0c 0%, #171510 60%, #0c0b09 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.eval-v2-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(232,162,48,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.eval-v2-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.eval-v2-field {
  margin-bottom: 0.8rem;
}

.eval-v2-field input,
.eval-v2-field .form-select-wrap select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.72rem 0.95rem;
  color: var(--text-hi);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.18s ease, background 0.18s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.eval-v2-field input::placeholder { color: var(--text-lo); }

.eval-v2-field input:focus,
.eval-v2-field .form-select-wrap select:focus {
  border-color: var(--accent-border);
  background: rgba(255,255,255,0.06);
}

.eval-v2-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.88rem 1.5rem;
  background: var(--accent);
  color: #0c0b09;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}

.eval-v2-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.eval-v2-another {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  margin-top: 0.6rem;
  color: var(--text-mid);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.eval-v2-another:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text-hi);
}

.eval-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  color: var(--text-mid);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.25rem;
  transition: color 0.18s ease;
}

.eval-back-btn:hover { color: var(--text-hi); }

.eval-free-note {
  font-size: 0.75rem;
  color: var(--text-lo);
  text-align: center;
  margin-top: 0.75rem;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.eval-disclaimer {
  font-size: 0.72rem;
  color: var(--text-lo);
  text-align: center;
  margin-top: 0.8rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.5;
}

@media (max-width: 660px) {
  .eval-modal-v2 {
    grid-template-columns: 1fr;
    min-height: unset;
    width: 95vw;
  }
  .eval-v2-right { display: none; }
  .eval-v2-left { padding: 2rem 1.5rem 1.75rem; max-height: 92dvh; }
}

/* â”€â”€ WhatsApp floating widget â”€â”€ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-direction: row;
}

.wa-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease;
  flex-shrink: 0;
  text-decoration: none;
  color: #fff;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 3px 10px rgba(0,0,0,0.4);
}

/* Pulse ring */
.wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Tooltip */
.wa-tooltip {
  background: #1a1915;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #f0ede8;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.wa-widget:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .wa-widget { bottom: 20px; left: 18px; }
  .wa-tooltip { display: none; }
}

/* â”€â”€ Contact form inline field errors â”€â”€ */
.field-error {
  display: block;
  font-size: 0.78rem;
  color: #ff6b7a;
  margin-top: 0.35rem;
  line-height: 1.4;
  min-height: 0;
}
.field-error:empty { display: none; }

.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: rgba(220,53,69,0.55) !important;
  box-shadow: 0 0 0 2px rgba(220,53,69,0.12);
}
.form-group input.is-invalid:focus,
.form-group textarea.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220,53,69,0.18);
}

/* â”€â”€ Honeypot field â€” off-screen, invisible to humans â”€â”€ */
#hp-website {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

/* â”€â”€ Contact form feedback states â”€â”€ */
.form-msg {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.form-msg.is-error {
  display: block;
  background: rgba(220,53,69,0.10);
  border: 1px solid rgba(220,53,69,0.30);
  color: #ff6b7a;
}

.form-submit.is-loading {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

/* reCAPTCHA badge hidden â€” disclosure text shown instead */
.grecaptcha-badge { visibility: hidden !important; }

.recaptcha-notice {
  font-size: 0.72rem;
  color: var(--text-lo);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.recaptcha-notice a {
  color: var(--text-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SHARED â€” Brand-grid section (home + car-services)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.cs-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.cs-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.cs-label-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.cs-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text-hi);
  margin-bottom: 1rem;
}

.cs-h2 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.cs-intro {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cs-brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.cs-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.25rem 1.25rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  color: rgba(240,237,232,0.28);
  cursor: default;
  transition:
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.cs-brand-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,162,48,0.4);
  background: rgba(232,162,48,0.05);
  color: var(--accent);
  box-shadow: 0 16px 48px rgba(232,162,48,0.13), 0 0 0 1px rgba(232,162,48,0.08);
}

.cs-brand-logo {
  width: 72px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-brand-logo svg {
  max-width: 100%;
  max-height: 100%;
  overflow: visible;
}

.cs-brand-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lo);
  transition: color 0.3s ease;
  text-align: center;
}

.cs-brand-card:hover .cs-brand-name {
  color: var(--text-hi);
}

.logo-real path, .logo-real rect, .logo-real circle,
.logo-real ellipse, .logo-real polygon, .logo-real use {
  fill: currentColor !important;
  stroke: none !important;
}
.logo-real g { fill: currentColor; }

@media (max-width: 1024px) {
  .cs-brands-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .cs-section { padding: 4rem 1.5rem; }
  .cs-brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .cs-brands-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ─────────────────────────────────────────────
   NAV — CONTACT BUTTON
───────────────────────────────────────────── */
.nav-contact-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(240, 237, 232, 0.75);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s ease;
}
.nav-contact-btn:hover { color: var(--accent); }
.footer-col .nav-contact-btn {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-lo);
}
.footer-col .nav-contact-btn:hover { color: var(--accent); }

/* ─────────────────────────────────────────────
   CONTACT MODAL
───────────────────────────────────────────── */
.cm-modal {
  max-width: 880px;
  width: 95vw;
  padding: 0;
  overflow: hidden;
}
.cm-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
}
.cm-info {
  padding: 3.5rem 1.75rem 2.5rem;
  background: rgba(232, 162, 48, 0.04);
  border-right: 1px solid rgba(232, 162, 48, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  overflow-y: auto;
}
.cm-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  color: var(--text-hi);
  line-height: 1;
  margin: 0.2rem 0 0;
}
.cm-sub {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 0.25rem;
}
.cm-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 237, 232, 0.06);
}
.cm-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.cm-card-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(232, 162, 48, 0.09);
  border: 1px solid rgba(232, 162, 48, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.cm-card > div {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.cm-card strong {
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-lo);
  font-weight: 600;
}
.cm-card span,
.cm-card a {
  font-size: 0.82rem;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}
.cm-card a:hover { color: var(--accent); }
.cm-form {
  padding: 3.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow-y: auto;
}
.form-msg.is-success {
  display: block;
  background: rgba(42, 125, 79, 0.12);
  border: 1px solid rgba(42, 125, 79, 0.35);
  color: #4ade80;
}
@media (max-width: 720px) {
  .cm-inner { grid-template-columns: 1fr; }
  .cm-modal { overflow-y: auto; }
  .cm-info {
    overflow-y: visible;
    border-right: none;
    border-bottom: 1px solid rgba(232, 162, 48, 0.12);
    padding: 2.5rem 1.5rem 1.75rem;
  }
  .cm-form { overflow-y: visible; padding: 1.75rem 1.5rem 2rem; }
  .cm-cards { padding-top: 1.25rem; }
}