:root {
  --black: #030405;
  --black-2: #08090b;
  --panel: #0e0f12;
  --panel-soft: rgba(255, 255, 255, 0.055);
  --yellow: #ffc400;
  --yellow-soft: rgba(255, 196, 0, 0.14);
  --white: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.13);
  --line-yellow: rgba(255, 196, 0, 0.42);
  --max: 1220px;
  --gold-grad: linear-gradient(135deg, #ffd000 0%, #ff9100 100%);
  --gold-grad-hover: linear-gradient(135deg, #ffe169 0%, #ffaa00 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

html.modal-open {
  overflow: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

html.modal-open::-webkit-scrollbar {
  display: none;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  scroll-snap-align: start;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button {
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

/* Top Info Bar */
.top-info-bar {
  background: var(--black-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.top-info-wrap {
  width: min(var(--max), calc(100% - 30px));
  margin: 0 auto;
  height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-info-left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-left svg {
  width: 13px;
  height: 13px;
  color: var(--yellow);
}

.top-info-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-info-right a {
  display: flex;
  align-items: center;
  color: var(--muted);
  transition: color 0.2s ease;
}

.top-info-right a:hover {
  color: var(--yellow);
}

.top-info-right svg {
  width: 14px;
  height: 14px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(4, 5, 6, 0.65);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 30px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 292px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand mark,
h1 mark {
  background: transparent;
  color: var(--yellow);
}

.brand small {
  display: block;
  max-width: 190px;
  margin-top: 4px;
  color: #d8d8d8;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 31px;
}

.main-nav a {
  position: relative;
  padding: 27px 0 25px;
  color: #f1f1f1;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--yellow);
  transition: transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--yellow);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  height: 38px;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-nav svg {
  width: 14px;
  height: 14px;
}

.btn-nav.primary {
  background: var(--gold-grad);
  color: var(--black);
  border: 1px solid rgba(255, 196, 0, 0.3);
  box-shadow: 
    0 4px 14px rgba(255, 196, 0, 0.2), 
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-nav.primary:hover {
  background: var(--gold-grad-hover);
  transform: translateY(-1.5px);
  box-shadow: 
    0 6px 18px rgba(255, 196, 0, 0.35), 
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-nav.outline {
  border: 1px solid rgba(255, 196, 0, 0.4);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
}

.btn-nav.outline:hover {
  background: rgba(255, 196, 0, 0.08);
  border-color: var(--yellow);
  transform: translateY(-1.5px);
  box-shadow: 0 4px 15px rgba(255, 196, 0, 0.1);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  height: calc(100vh - 76px);
  overflow: hidden;
  background: #050607;
}

.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1);
  will-change: transform;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.82;
  filter: saturate(1.04) contrast(1.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.84) 38%, rgba(0, 0, 0, 0.18) 73%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.96) 100%);
  pointer-events: none;
  will-change: opacity;
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 196, 0, 0.28) 1px, transparent 1px);
  background-position: 0 0, 46px 66px;
  background-size: 96px 96px, 138px 138px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 30px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  will-change: transform, opacity;
}

.intro {
  max-width: 900px;
}

.label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 4px;
  padding: 0 14px;
  background: var(--yellow-soft);
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line-yellow);
}

h1 {
  margin-top: 16px;
  font-family: "Oswald", "Poppins", sans-serif;
  font-size: clamp(3rem, 4.82vw, 4.55rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.66);
}

.hero-kicker {
  margin-top: 12px !important;
  color: var(--yellow) !important;
  font-size: 0.92rem !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.intro p {
  max-width: 760px;
  margin-top: 16px;
  color: #eeeeee;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.58;
}

/* Hero Sticky Wrapper for video scrubbing (both desktop and mobile) */
.hero-scroll-wrapper {
  position: relative;
  height: 480vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero {
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  width: 100%;
  overflow: hidden;
  background: #050607;
}

@media (min-width: 941px) {
  /* Section 2 Desktop height constraints to fit 100% on screen */
  .section.trust-section {
    height: 100vh;
    min-height: 100vh;
    scroll-margin-top: 0; /* Snaps to very top of viewport */
    padding: 0 !important;
    overflow: hidden;
    box-sizing: border-box;
  }
  .trust-section .section-inner {
    height: 100%;
    padding-top: 76px; /* Offset content to clear the sticky glassmorphic topbar */
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* 60% content on left, 40% empty space on right */
    align-items: center;
    gap: 4vw;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
  }
  


  /* Section 3 Desktop height constraints */
  .section.services-section {
    min-height: calc(100vh - 76px);
    height: auto;
    max-height: none;
    padding: 72px 0 78px !important;
    overflow: visible;
    box-sizing: border-box;
  }
  .services-section .section-inner {
    min-height: calc(100vh - 226px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 0;
    box-sizing: border-box;
  }
  .services-section .section-heading {
    margin-bottom: 0;
  }
  .sec2-cards-grid {
    height: auto;
    gap: 20px;
    flex: 0 0 auto;
  }
  .sec2-card-content {
    inset: 3vh 20px;
  }
  .card-icon {
    width: 38px;
    height: 38px;
    padding: 8px;
  }
  .sec2-card-info h3 {
    font-size: clamp(0.82rem, 1.8vh, 1.0rem);
  }
  .sec2-card-info p {
    font-size: clamp(0.64rem, 1.3vh, 0.74rem);
    margin-top: 0.6vh;
    line-height: 1.4;
  }
  .sec2-card-action {
    margin-top: 1vh;
  }
  .sec2-main-features {
    margin-top: 4vh;
    margin-bottom: 0;
    padding-top: 4vh;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    border-radius: 0;
    gap: 20px;
  }
  .trust-col {
    background: transparent;
    padding: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 20px;
  }
  .trust-col:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.features {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 20px;
}

.features article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  min-height: 78px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 18px;
}

.features article:first-child {
  padding-left: 0;
}

.features article:last-child {
  border-right: 0;
}

.features svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
  stroke-width: 1.8;
  margin-top: 2px;
}

.features h2 {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.features p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  min-width: 220px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  padding: 0 24px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--gold-grad);
  color: var(--black);
  border: 1px solid rgba(255, 196, 0, 0.3);
  box-shadow: 
    0 10px 24px rgba(255, 196, 0, 0.18), 
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.primary:hover {
  background: var(--gold-grad-hover);
  box-shadow: 
    0 14px 30px rgba(255, 196, 0, 0.3), 
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.outline {
  border: 1px solid rgba(255, 196, 0, 0.4);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
}

.outline:hover {
  background: rgba(255, 196, 0, 0.08);
  border-color: var(--yellow);
  box-shadow: 0 8px 20px rgba(255, 196, 0, 0.1);
}

.services-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.service-card {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: #0d0e10;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.36);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 0.34s ease, opacity 0.34s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.9));
}

.service-card div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  padding: 8px;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.28);
}

.service-card h3 {
  font-size: 0.9rem;
  line-height: 1.1;
}

.service-card p {
  margin-top: 6px;
  color: #d9d9d9;
  font-size: 0.64rem;
  line-height: 1.42;
}

.highlight-card {
  border-color: rgba(255, 196, 0, 0.38);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 196, 0, 0.08);
}

.service-card:hover img {
  transform: scale(1.08);
  opacity: 0.6;
}

.info-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #07080a;
}

.hero-footer-wrap {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 30px));
  z-index: 3;
}

.info-strip article {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  padding: 16px 28px;
}

.info-strip article:last-child {
  border-right: 0;
}

.info-strip svg {
  width: 34px;
  height: 34px;
  color: var(--yellow);
  fill: rgba(255, 196, 0, 0.12);
}

.info-strip h2 {
  color: #f6f6f6;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-strip p {
  margin-top: 3px;
  color: #c7c7c7;
  font-size: 0.78rem;
  line-height: 1.4;
}

.section {
  padding: 82px 0;
  background: var(--black);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: 76px; /* Offset to clear the sticky topbar on desktop */
}

.section:nth-of-type(odd) {
  background: #08090b;
}

.section-inner {
  width: min(var(--max), calc(100% - 30px));
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-top: 10px;
  font-family: "Oswald", "Poppins", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.section-heading p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.trust-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.1), transparent 42%),
    #07080a;
}

/* Fullscreen Background Video for Section 2 */
.sec2-bg-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.sec2-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
  will-change: transform;
}

.sec2-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.85) 25%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.25) 75%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 2;
}

/* Ambient glow and breathing neon overlay */
.sec2-ambient-glow {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 75% 35%, rgba(255, 196, 0, 0.08), transparent 45%),
    radial-gradient(circle at 25% 65%, rgba(0, 240, 255, 0.05), transparent 45%);
  opacity: 0.7;
  mix-blend-mode: screen;
  animation: neonBreathe 8s ease-in-out infinite alternate;
  z-index: 3;
  pointer-events: none;
}

@keyframes neonBreathe {
  0% {
    opacity: 0.45;
    transform: scale(0.97);
  }
  100% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}

/* Floating dust particles in light rays */
.sec2-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px),
    radial-gradient(circle at 35% 85%, rgba(255, 196, 0, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 15%, rgba(255, 196, 0, 0.04) 1.5px, transparent 1.5px);
  background-size: 240px 240px;
  opacity: 0.6;
  animation: floatParticles 40s linear infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes floatParticles {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 240px -240px;
  }
}

.trust-section {
  position: relative;
  background: #030405;
  overflow: hidden;
  border-top: none;
}

.sec2-main-text {
  max-width: 650px;
  position: relative;
  z-index: 5;
}

/* Reveal on Scroll Transitions (Global) */
.sec2-main-text {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(12px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.sec2-main-text.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sec2-main-text .sec2-title {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.15s;
}
.sec2-main-text.visible .sec2-title {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sec2-main-text .sec2-desc {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}
.sec2-main-text.visible .sec2-desc {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sec2-main-text .sec2-btn-primary {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.45s;
}
.sec2-main-text.visible .sec2-btn-primary {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sec2-main-text .sec2-brand-logos-wrap {
  opacity: 0;
  transform: translateY(15px);
  filter: blur(4px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.6s;
}
.sec2-main-text.visible .sec2-brand-logos-wrap {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Premium Badge Pill */
.sec2-main-text .label {
  margin-bottom: 15px;
  background: rgba(255, 196, 0, 0.06);
  color: #ffb700;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 30px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  padding: 5px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.sec2-main-text .label::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #ffc400;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffc400;
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px #ffc400; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Premium Title and Sizing */
.sec2-title {
  font-family: "Oswald", "Poppins", sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 10px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.sec2-title mark {
  background: transparent;
  color: var(--yellow);
  text-shadow: 0 0 16px rgba(255, 196, 0, 0.2);
}

.sec2-desc {
  font-size: clamp(0.9rem, 1.7vh, 1.05rem);
  line-height: 1.68;
  color: #c7c7cc;
  margin-top: 24px;
  max-width: 600px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.sec2-desc .highlight-white {
  color: var(--white);
  font-weight: 600;
}

/* Premium Button style with Sweep Sheen and Glow */
.sec2-btn-primary {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  background: var(--gold-grad);
  color: var(--black);
  border: 1px solid rgba(255, 196, 0, 0.4);
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 8px 20px rgba(255, 196, 0, 0.18), 
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.sec2-btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: -1;
  transition: none;
}

.sec2-btn-primary svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5px;
  transition: transform 0.3s ease;
}

.sec2-btn-primary:hover {
  background: var(--gold-grad-hover);
  transform: translateY(-2.5px);
  box-shadow: 
    0 12px 26px rgba(255, 196, 0, 0.35), 
    0 0 16px rgba(255, 196, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.sec2-btn-primary:hover::after {
  left: 150%;
  transition: left 0.8s ease-in-out;
}

.sec2-btn-primary:hover svg {
  transform: translateY(3px);
}

/* Partners Logos Horizontal Elegant Strip */
.sec2-brand-logos-wrap {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 600px;
}

.sec2-logos-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #636366;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Glassmorphic dark blur container for sponsors logos image to prevent bottom edge issues and blend perfectly */
.sponsors-logos {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.sponsors-logos img {
  max-height: 22px;
  width: auto;
  filter: grayscale(1) brightness(1.2) contrast(0.9);
  transition: all 0.3s ease;
}

.sec2-brand-logos-wrap:hover .sponsors-logos img {
  filter: grayscale(0) brightness(1) contrast(1);
}

/* Divider bottom row inside main block */
.sec2-main-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: transparent;
  border: none;
  border-radius: 0;
  gap: 20px;
  overflow: visible;
  margin-bottom: 20px;
}

.trust-col {
  background: transparent;
  padding: 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-col svg {
  width: 26px;
  height: 26px;
  color: var(--yellow);
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 8px rgba(255, 196, 0, 0.3));
}

.trust-text h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.trust-text p {
  margin-top: 4px;
  font-size: 0.74rem;
  color: #a1a1aa;
  line-height: 1.4;
}

/* Bottom Cards Grid */
.sec2-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sec2-card {
  position: relative;
  min-height: 210px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%), #08090b;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5), 
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.sec2-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.sec2-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 90%);
  z-index: 2;
}

.sec2-card-content {
  position: absolute;
  inset: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.card-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sec2-card-info h3 {
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.sec2-card-info p {
  margin-top: 5px;
  font-size: 0.68rem;
  color: #d1d1d6;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.sec2-card-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.sec2-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sec2-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5px;
  transition: transform 0.3s ease;
}

/* Color-coded Card Themes (Hover details & Glow) */
.sec2-card.card-ev .card-icon {
  color: #00f0ff;
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(0, 240, 255, 0.06);
}

.sec2-card.card-lubricentro .card-icon {
  color: #22d3ee;
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(34, 211, 238, 0.07);
}
.sec2-card.card-lubricentro:hover {
  border-color: rgba(34, 211, 238, 0.36);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(34, 211, 238, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sec2-card.card-lubricentro:hover .sec2-card-arrow {
  background: #22d3ee;
  border-color: #22d3ee;
  color: var(--black);
}

.sec2-card.card-detailing .card-icon {
  color: #ffc400;
  border-color: rgba(255, 196, 0, 0.34);
  background: rgba(255, 196, 0, 0.07);
}

.sec2-card.card-detailing {
  cursor: pointer;
}

.sec2-card.card-detailing:hover {
  border-color: rgba(255, 196, 0, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(255, 196, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sec2-card.card-detailing:hover .sec2-card-arrow {
  background: #ffc400;
  border-color: #ffc400;
  color: var(--black);
}

.sec2-card.card-lubricentro .sec2-card-video {
  object-position: center 42%;
}

.sec2-card.card-detailing .sec2-card-video {
  object-position: center 50%;
}

.sec2-card.card-diagnostic .sec2-card-video {
  object-position: center 52%;
}

.sec2-card.card-inspection .sec2-card-video,
.sec2-card.card-4x4 .sec2-card-video {
  object-position: center;
}
.sec2-card.card-ev:hover {
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.65), 
    0 0 30px rgba(0, 240, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sec2-card.card-ev:hover .sec2-card-arrow {
  background: #00f0ff;
  border-color: #00f0ff;
  color: var(--black);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.45);
}

.sec2-card.card-4x4 .card-icon {
  color: #ff9f00;
  border-color: rgba(255, 159, 0, 0.3);
  background: rgba(255, 159, 0, 0.06);
}
.sec2-card.card-4x4:hover {
  border-color: rgba(255, 159, 0, 0.35);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.65), 
    0 0 30px rgba(255, 159, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sec2-card.card-4x4:hover .sec2-card-arrow {
  background: #ff9f00;
  border-color: #ff9f00;
  color: var(--black);
  box-shadow: 0 0 12px rgba(255, 159, 0, 0.45);
}

.sec2-card.card-moura .card-icon {
  color: #ffc400;
  border-color: rgba(255, 196, 0, 0.3);
  background: rgba(255, 196, 0, 0.06);
}
.sec2-card.card-moura:hover {
  border-color: rgba(255, 196, 0, 0.35);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.65), 
    0 0 30px rgba(255, 196, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sec2-card.card-moura:hover .sec2-card-arrow {
  background: #ffc400;
  border-color: #ffc400;
  color: var(--black);
  box-shadow: 0 0 12px rgba(255, 196, 0, 0.45);
}

.sec2-card.card-mats .card-icon {
  color: #2ecc71;
  border-color: rgba(46, 204, 113, 0.3);
  background: rgba(46, 204, 113, 0.06);
}
.sec2-card.card-mats:hover {
  border-color: rgba(46, 204, 113, 0.35);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.65), 
    0 0 30px rgba(46, 204, 113, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sec2-card.card-mats:hover .sec2-card-arrow {
  background: #2ecc71;
  border-color: #2ecc71;
  color: var(--black);
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.45);
}

.sec2-card.card-diagnostic .card-icon {
  color: #5ed4ff;
  border-color: rgba(94, 212, 255, 0.34);
  background: rgba(94, 212, 255, 0.07);
}
.sec2-card.card-diagnostic:hover {
  border-color: rgba(94, 212, 255, 0.38);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(94, 212, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sec2-card.card-diagnostic:hover .sec2-card-arrow {
  background: #5ed4ff;
  border-color: #5ed4ff;
  color: var(--black);
  box-shadow: 0 0 12px rgba(94, 212, 255, 0.42);
}

.sec2-card.card-inspection .card-icon {
  color: #ffd166;
  border-color: rgba(255, 209, 102, 0.34);
  background: rgba(255, 209, 102, 0.07);
}
.sec2-card.card-inspection:hover {
  border-color: rgba(255, 209, 102, 0.38);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(255, 209, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sec2-card.card-inspection:hover .sec2-card-arrow {
  background: #ffd166;
  border-color: #ffd166;
  color: var(--black);
  box-shadow: 0 0 12px rgba(255, 209, 102, 0.42);
}

/* Hover effects for bottom cards */
.sec2-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec2-card:hover {
  transform: translateY(-4px);
}

.sec2-card:hover .sec2-card-video {
  opacity: 0.65;
}

.sec2-card:hover .sec2-card-arrow svg {
  transform: translateX(3px);
}

.diagnostic-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 8px;
  padding: 22px 26px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 2% 50%, rgba(255, 196, 0, 0.16), transparent 24%),
    linear-gradient(120deg, rgba(255, 196, 0, 0.09), rgba(255, 255, 255, 0.035) 42%, rgba(94, 212, 255, 0.07)),
    rgba(9, 10, 12, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.diagnostic-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.08), transparent);
  pointer-events: none;
}

.diagnostic-highlight-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 196, 0, 0.36);
  border-radius: 8px;
  background: rgba(255, 196, 0, 0.1);
  color: var(--yellow);
}

.diagnostic-highlight-icon svg {
  width: 30px;
  height: 30px;
}

.diagnostic-highlight span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostic-highlight h3 {
  margin-top: 6px;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.diagnostic-highlight h3 mark {
  border-radius: 4px;
  padding: 0 5px;
  background: rgba(255, 196, 0, 0.16);
  color: var(--yellow);
}

.diagnostic-highlight p {
  max-width: 980px;
  margin-top: 8px;
  color: #d6d6d6;
  font-size: 0.88rem;
  line-height: 1.58;
}

.diagnostic-highlight p strong {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 0 16px rgba(255, 196, 0, 0.18);
}

.diagnostic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.diagnostic-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #eeeeee;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.diagnostic-tags svg {
  width: 15px;
  height: 15px;
  color: var(--yellow);
}

@media (min-width: 941px) {
  .services-section .sec2-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 18px;
  }

  .services-section .sec2-card {
    min-height: 218px;
  }
}

@media (max-width: 760px) {
  .diagnostic-highlight {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .diagnostic-highlight-icon {
    width: 52px;
    height: 52px;
  }
}






.gallery-contact-section {
  background: #050607;
}

.gallery-contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: stretch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: 190px;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #0f1012;
}

.contact-box h3 {
  margin-top: 16px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-box > p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.contact-list p {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #e4e4e4;
  font-size: 0.92rem;
}

.contact-list svg {
  width: 22px;
  flex: 0 0 auto;
  color: var(--yellow);
}

.footer-note {
  border-top: 1px solid var(--line);
  padding: 18px;
  background: #050506;
  color: #9f9f9f;
  font-size: 0.78rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .nav-wrap {
    grid-template-columns: 262px 1fr auto;
    gap: 18px;
  }

  .main-nav {
    gap: 22px;
  }

  .hero-content {
    padding-bottom: 26px;
  }
}

@media (max-width: 940px) {
  html {
    scroll-snap-type: y proximity; /* Gentler snap on touch devices to avoid fighting upward scroll */
  }

  .hero-scroll-wrapper {
    height: 160vh; /* Shorter track on mobile to prevent empty black space and speed up transitions */
  }

  .top-info-bar {
    display: none; /* Hide topbar info on mobile to reduce clutter */
  }

  .topbar {
    height: 70px;
  }

  .section {
    scroll-margin-top: 70px; /* Offset to clear the sticky topbar on mobile */
    height: calc(100vh - 70px);
    min-height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  .section-inner {
    width: min(100% - 30px, var(--max));
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    height: 48px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    position: relative;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s;
  }

  .menu-button span {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Compact, premium spacing: 3px gap (lines are 2px high) */
  .menu-button span:first-child {
    top: calc(50% - 6px); /* Center of first line is at 50% - 5px */
  }

  .menu-button span:nth-child(2) {
    top: calc(50% - 1px); /* Center of second line is at 50% */
  }

  .menu-button span:last-child {
    top: calc(50% + 4px); /* Center of third line is at 50% + 5px */
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scale(0.3);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  /* Premium Solid Mobile Slide-out Drawer Menu */
  .main-nav {
    position: fixed;
    top: 70px;
    right: 0 !important;
    left: auto !important;
    bottom: 0;
    width: min(280px, 80vw);
    height: calc(100vh - 70px);
    display: grid;
    grid-template-rows: repeat(4, auto);
    align-content: start;
    gap: 8px;
    padding: 30px 20px;
    margin-right: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-right: none !important;
    border-bottom: none;
    border-radius: 0; /* Clean flat panel */
    background: #030405; /* Solid premium black */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: -10px 0 45px rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  .main-nav a {
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.28s ease;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(255, 196, 0, 0.09);
    color: var(--yellow);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-buttons {
    display: none; /* Hide desktop nav buttons on mobile */
  }

  .hero {
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    opacity: 0.46;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.65) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.88) 100%);
    opacity: 1 !important;
  }

  .hero-content {
    padding-top: 20px;
    padding-bottom: 20px;
    width: min(100% - 30px, var(--max));
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px; /* Tighter layout for mobile */
  }

  .hero-content .intro p:not(.hero-kicker) {
    display: none; /* Hide redundant long description on mobile to save space */
  }

  .hero-content .intro h1 {
    margin-top: 0;
  }

  .hero-content .actions {
    width: 100%;
    margin-bottom: 0;
    gap: 10px;
  }

  .hero-scroll-indicator {
    bottom: 88px !important; /* Raised to clear mobile browser bottom navigation bars */
    font-size: 0.6rem !important;
  }

  .hero-scroll-indicator svg {
    width: 18px !important;
    height: 18px !important;
  }

  /* Fixed sponsors-logos mobile selectors */
  .sponsors-logos {
    padding: 8px 16px;
  }

  .sponsors-logos img {
    max-height: 24px; /* Increased legibility on mobile/tablets */
  }

  .sec2-card-info h3 {
    font-size: 0.82rem !important;
  }
  
  .sec2-card-info p {
    font-size: 0.66rem !important;
    line-height: 1.4 !important;
  }

  .section.trust-section {
    position: relative;
  }

  .trust-section .section-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 0 18px;
    width: 100%;
  }

  /* Hide empty visual column - desktop-only spacer */
  .sec2-empty-col {
    display: none;
  }

  /* Ambient background gradient high visibility vignette for mobile */
  .sec2-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(3, 4, 5, 0.85) 0%,
      rgba(3, 4, 5, 0.45) 50%,
      rgba(3, 4, 5, 0.92) 100%
    );
  }

  .sec2-main-text {
    max-width: 100% !important;
    width: 100%;
  }

  .sec2-title {
    font-size: clamp(1.85rem, 6vw, 2.6rem) !important;
    line-height: 1.0 !important;
  }

  .sec2-desc {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin-top: 14px !important;
    max-width: 100% !important;
  }

  .sec2-btn-primary {
    margin-top: 18px !important;
    padding: 13px 26px !important;
    font-size: 0.76rem !important;
  }

  .sec2-brand-logos-wrap {
    margin-top: 20px !important;
    padding-top: 12px !important;
    max-width: 100% !important;
  }

  .sec2-logos-label {
    font-size: 0.55rem;
    margin-bottom: 10px;
  }

  .section-heading h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
    line-height: 1.02 !important;
    margin-top: 6px !important;
  }

  .section-heading p {
    font-size: 0.8rem !important;
    margin-top: 6px !important;
    line-height: 1.45 !important;
  }

  .section-heading {
    margin-bottom: 0;
  }

  .section-heading span {
    font-size: 0.7rem;
  }

  /* Services section spacing on mobile */
  .services-section .section-inner {
    gap: 14px;
  }

  /* Swipeable cards carousel for mobile */
  .sec2-cards-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding: 6px 18px 14px 18px !important;
    margin: 0 -18px !important;
    width: calc(100% + 36px) !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sec2-cards-grid::-webkit-scrollbar {
    display: none !important;
  }

  .sec2-card {
    flex: 0 0 260px !important;
    min-height: 220px !important;
    scroll-snap-align: start !important;
  }

  .sec2-card-content {
    inset: 18px !important;
  }

  /* 2x2 grid for trust features */
  .sec2-main-features {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px 18px !important;
    margin-top: 16px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .trust-col {
    gap: 10px !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    align-items: flex-start !important;
  }

  .trust-col svg {
    width: 22px !important;
    height: 22px !important;
    margin-top: 2px;
  }

  .trust-text h3 {
    font-size: 0.74rem !important;
    line-height: 1.2 !important;
  }

  .trust-text p {
    font-size: 0.68rem !important;
    margin-top: 3px !important;
    line-height: 1.4 !important;
  }

  /* Swipeable gallery feed and contact layout */
  .gallery-contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    width: 100%;
  }

  .gallery-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding: 4px 18px !important;
    margin: 0 -18px !important;
    width: calc(100% + 36px) !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none !important;
  }

  .gallery-grid img {
    flex: 0 0 170px !important;
    height: 115px !important;
    scroll-snap-align: start !important;
    border-radius: 6px !important;
    object-fit: cover !important;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(4) {
    grid-row: auto !important;
    grid-column: auto !important;
  }

  .contact-box {
    padding: 22px !important;
    width: 100% !important;
    border-radius: 10px !important;
    background: rgba(15, 16, 18, 0.7) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
  }

  .contact-box .label {
    font-size: 0.66rem;
    padding: 0 12px;
    min-height: 26px;
  }

  .contact-box h3 {
    font-size: 1.55rem !important;
    margin-top: 10px !important;
    line-height: 1.05 !important;
  }

  .contact-box > p {
    font-size: 0.82rem !important;
    margin-top: 8px !important;
    line-height: 1.5 !important;
  }

  .contact-list {
    margin: 16px 0 !important;
    gap: 10px !important;
  }

  .contact-list p {
    font-size: 0.82rem !important;
    gap: 10px !important;
  }

  .contact-list svg {
    width: 18px !important;
    height: 18px !important;
  }

  .contact-box .btn.primary {
    min-height: 42px !important;
    font-size: 0.74rem !important;
    padding: 0 18px !important;
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 640px) {
  .hero-content,
  .section-inner {
    width: min(100% - 24px, var(--max));
  }

  .trust-section .section-inner {
    padding: 0 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    height: 42px;
  }

  .brand small {
    max-width: 150px;
  }

  h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.45rem);
    line-height: 1.05;
    margin-top: 6px;
  }

  .hero-kicker {
    font-size: clamp(0.76rem, 2.2vw, 0.86rem) !important;
    margin-top: 8px !important;
  }

  .hero-content {
    gap: 12px;
  }

  /* Stack grid columns for non-slider elements */
  .sec2-features-row-1,
  .gallery-contact-grid {
    grid-template-columns: 1fr;
  }

  /* Corrected sponsors logos height for small phones */
  .sponsors-logos img {
    max-height: 20px; /* Increased legibility for small phones */
  }

  .sec2-title-wrap::before,
  .sec2-title-wrap::after {
    width: 30px;
  }

  .sec2-main-grid {
    padding: 20px 16px;
  }

  .feature-col {
    padding: 16px;
    gap: 12px;
  }

  .sec2-card {
    flex: 0 0 240px !important;
    min-height: 210px !important;
  }

  .sec2-card-content {
    inset: 16px !important;
  }

  .sec2-card-info h3 {
    font-size: 0.78rem !important;
  }
  
  .sec2-card-info p {
    font-size: 0.64rem !important;
    line-height: 1.4 !important;
    margin-top: 4px !important;
  }

  .sec2-cards-grid {
    padding: 6px 14px 14px 14px !important;
    margin: 0 -14px !important;
    width: calc(100% + 28px) !important;
    gap: 12px !important;
  }

  .sec2-main-features {
    gap: 12px 14px !important;
  }

  .trust-text h3 {
    font-size: 0.7rem !important;
  }

  .trust-text p {
    font-size: 0.64rem !important;
  }

  .actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-width: 0;
    font-size: 0.74rem;
    padding: 0 18px;
  }

  .gallery-grid {
    padding: 4px 14px !important;
    margin: 0 -14px !important;
    width: calc(100% + 28px) !important;
    gap: 10px !important;
  }

  .gallery-grid img {
    flex: 0 0 150px !important;
    height: 100px !important;
  }

  .contact-box {
    padding: 18px !important;
    border-radius: 10px !important;
  }

  .contact-box h3 {
    font-size: 1.4rem !important;
  }

  .contact-box > p {
    font-size: 0.78rem !important;
  }

  .contact-list {
    margin: 14px 0 !important;
    gap: 8px !important;
  }

  .contact-list p {
    font-size: 0.78rem !important;
  }
}

/* ==========================================================================
   Premium Automotive Display Typography (Oxanium & Orbitron)
   ========================================================================== */

h1, 
.sec2-title, 
.section-heading h2, 
.contact-box h3 {
  font-family: "Oxanium", "Orbitron", "Oswald", sans-serif !important;
  font-weight: 850 !important;
  letter-spacing: -0.03em !important;
  font-style: italic;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.72), 0 2px 4px rgba(0, 0, 0, 0.9) !important;
  line-height: 0.98 !important;
}

/* Accent mark style for headings */
h1 mark,
.sec2-title mark,
.section-heading h2 mark {
  font-family: inherit;
  font-weight: inherit;
  color: var(--yellow) !important;
  text-shadow: 0 0 16px rgba(255, 196, 0, 0.35) !important;
  background: transparent !important;
}

/* Scroll indicator at the bottom of Hero */
.hero-scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #c7c7cc;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  will-change: transform, opacity;
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
  filter: drop-shadow(0 2px 6px rgba(255, 196, 0, 0.4));
  animation: bounceDown 1.8s infinite ease-in-out;
}

/* Mobile fix: let the services heading breathe instead of being clipped */
@media (max-width: 940px) {
  .section.services-section {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
    padding: 56px 0 64px !important;
  }

  .services-section .section-inner {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    justify-content: flex-start !important;
    overflow: visible !important;
    gap: 18px !important;
  }

  .services-section .section-heading {
    flex: 0 0 auto !important;
    margin-bottom: 2px !important;
    overflow: visible !important;
  }

  .services-section .section-heading p {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
    line-height: 1.55 !important;
  }

  .services-section .sec2-cards-grid,
  .services-section .diagnostic-highlight,
  .services-section .sec2-main-features {
    flex: 0 0 auto !important;
  }
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

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

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.booking-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 34px));
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 196, 0, 0.86) rgba(255, 255, 255, 0.055);
  scrollbar-gutter: stable;
  border: 1px solid rgba(255, 196, 0, 0.25);
  border-radius: 14px;
  padding: 28px;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 196, 0, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(26px) saturate(150%);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.68),
    0 0 64px rgba(255, 196, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}

.booking-panel::-webkit-scrollbar {
  width: 12px;
}

.booking-panel::-webkit-scrollbar-track {
  margin: 14px 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(255, 196, 0, 0.1),
    inset 0 0 14px rgba(0, 0, 0, 0.42);
}

.booking-panel::-webkit-scrollbar-thumb {
  min-height: 72px;
  border: 3px solid rgba(12, 12, 12, 0.9);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #fff1a3 0%, #ffc400 46%, #ff9500 100%);
  box-shadow:
    0 0 16px rgba(255, 196, 0, 0.52),
    0 0 30px rgba(255, 149, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -5px 10px rgba(105, 49, 0, 0.25);
}

.booking-panel::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, #fff8d1 0%, #ffd000 42%, #ffab19 100%);
  box-shadow:
    0 0 22px rgba(255, 196, 0, 0.72),
    0 0 40px rgba(255, 149, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.booking-modal.open .booking-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 13px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(300deg, rgba(255, 196, 0, 0.12), transparent 40%);
  pointer-events: none;
}

.booking-panel::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -35%;
  width: 52%;
  height: 220%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  pointer-events: none;
}

.booking-modal.open .booking-panel::after {
  animation: bookingSheen 1.15s ease 0.12s 1;
}

.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  z-index: 2;
}

.booking-close svg {
  width: 19px;
  height: 19px;
}

.booking-header {
  position: relative;
  z-index: 1;
  padding-right: 44px;
  margin-bottom: 22px;
}

.booking-header span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-header h2 {
  margin-top: 8px;
  color: #fff;
  font-family: "Oxanium", "Orbitron", "Oswald", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.booking-header p {
  margin-top: 10px;
  color: #cfcfcf;
  font-size: 0.9rem;
  line-height: 1.55;
}

.booking-form,
.booking-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.booking-form {
  gap: 15px;
}

.booking-service-picker {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 196, 0, 0.16);
  border-radius: 10px;
  padding: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 196, 0, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.booking-service-picker.switching {
  opacity: 0.18;
  transform: translateY(8px) scale(0.985);
  border-color: rgba(255, 196, 0, 0.38);
}

.booking-service-picker > span {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-service-picker p {
  margin-top: -4px;
  color: #bfbfbf;
  font-size: 0.72rem;
  line-height: 1.35;
}

.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.booking-service-grid button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 9px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.22);
  color: #ececec;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.booking-service-grid button:hover,
.booking-service-grid button.active {
  transform: translateY(-1px);
  border-color: rgba(255, 196, 0, 0.52);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 196, 0, 0.22), transparent 38%),
    rgba(255, 196, 0, 0.09);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 196, 0, 0.08);
}

.booking-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-form label > span {
  color: #f2f2f2;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 13px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  color: #fff;
  font: inherit;
  outline: 0;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: rgba(255, 196, 0, 0.62);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.1);
}

.booking-form option {
  background: #101114;
  color: #fff;
}

.booking-submit {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  margin-top: 4px;
  background: var(--gold-grad, linear-gradient(135deg, #ffc400, #f4a900));
  color: #090909;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(255, 196, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 196, 0, 0.32);
}

.booking-submit svg {
  width: 18px;
  height: 18px;
}

body.booking-open {
  overflow: hidden;
}

@keyframes bookingSheen {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(18deg);
  }

  22% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(360%) rotate(18deg);
  }
}

@media (max-width: 560px) {
  .booking-modal {
    padding: 12px;
  }

  .booking-panel {
    padding: 22px;
  }

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

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

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}
