/* Waves Truck Repair — 3D hi-tech design system */
:root {
  --primary: #004a8f;
  --primary-light: #0066c4;
  --accent: #00ccfc;
  --accent-glow: rgba(0, 204, 252, 0.55);
  --dark: #020617;
  --surface: #0b1224;
  --surface-2: #111c36;
  --white: #ffffff;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --gold: #fbbc04;
  --radius: 12px;
  --btn-radius: 8px;
  --nav-h: 120px;
  --shadow-3d: 0 25px 50px -12px rgba(0, 0, 0, 0.65);
  --border-glow: 1px solid rgba(0, 204, 252, 0.35);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  color-scheme: dark;
  background-color: #020617;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--dark);
  width: 100%;
  max-width: 100vw;
}

h1,
h2,
h3,
.nav-brand-text,
.tagline,
.section-heading {
  font-family: 'Orbitron', 'Varela Round', sans-serif;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
}

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

/* --- Ambient background --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 74, 143, 0.45), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 204, 252, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(0, 74, 143, 0.2), transparent);
  pointer-events: none;
  z-index: -2;
}

.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 204, 252, 0.012) 2px,
    rgba(0, 204, 252, 0.012) 4px
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0.28;
}

/* --- Animations --- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px) translateZ(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
}

@keyframes shine-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollFast {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, -30px, 0) scale(1.08);
  }
}

@keyframes grid-drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 60px;
  }
}

.reveal {
  transform: translateY(40px) translateZ(-20px);
  opacity: 0;
  transition: 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* --- 3D card system --- */
.card-3d {
  perspective: 900px;
  transform-style: preserve-3d;
  transition: box-shadow 0.35s ease, filter 0.35s ease;
  border-radius: var(--radius);
}

.card-3d-inner {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.card-3d:hover,
.card-3d.is-tilted {
  box-shadow: var(--shadow-3d), 0 0 30px var(--accent-glow);
}

/* --- Navigation (stacked brand + equal link row — desktop & mobile) --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0 12px;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 204, 252, 0.18);
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}

nav.scrolled {
  background: rgba(2, 6, 23, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: var(--border-glow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 2px;
  gap: 10px;
  min-width: 0;
  width: 100%;
}

/* Side clusters retired — one centered link row everywhere */
.nav-left,
.nav-right {
  display: none !important;
}

.mobile-static-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.nav-btn {
  position: relative;
  background: rgba(0, 74, 143, 0.45);
  color: white;
  padding: 6px 12px;
  font-size: 0.82rem;
  line-height: 1.15;
  min-height: 32px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(0, 204, 252, 0.22);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 0;
  min-width: 0;
}

.nav-btn::after {
  display: none;
}

.nav-btn:hover {
  transform: translateY(-1px);
  background: rgba(0, 204, 252, 0.22);
  color: white;
  border-color: rgba(0, 204, 252, 0.45);
}

.mobile-static-menu .nav-btn[href^='tel'] {
  background: linear-gradient(145deg, #fff, #e8f4fc);
  color: var(--primary);
  border-color: rgba(0, 204, 252, 0.45);
  font-weight: 800;
}

.mobile-static-menu .nav-btn[href^='tel']:hover {
  background: linear-gradient(145deg, var(--accent), #7ae6ff);
  color: var(--dark);
}

.nav-call-full {
  display: none;
}

@media (min-width: 900px) {
  .nav-call-short {
    display: none;
  }

  .nav-call-full {
    display: inline;
  }

  .mobile-static-menu .nav-btn[href^='tel'] {
    font-size: 0.82rem;
  }
}

.logo-center {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-icon {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(0, 204, 252, 0.35));
  transition: transform 0.3s, height 0.2s;
}

.logo-center:hover .nav-icon {
  transform: scale(1.05) rotateY(8deg);
}

.nav-brand-text {
  font-size: clamp(1.05rem, 2.2vw, 1.85rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(0, 204, 252, 0.4));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* --- Hero 3D scene --- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: calc(var(--nav-h) + 32px) 20px 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(2, 6, 23, 0.28) 0%,
      rgba(0, 74, 143, 0.22) 40%,
      rgba(2, 6, 23, 0.55) 78%,
      var(--dark) 100%
    ),
    url('../images/site/shop.jpg');
  background-position: center 45%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-scene {
  position: absolute;
  inset: 0;
  perspective: 1200px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-grid-floor {
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: -10%;
  height: 55%;
  background-image:
    linear-gradient(rgba(0, 204, 252, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 204, 252, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotateX(72deg) translateZ(-80px);
  transform-origin: center bottom;
  animation: grid-drift 8s linear infinite;
  mask-image: linear-gradient(to top, black 20%, transparent 90%);
  opacity: 0.7;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb--1 {
  width: 320px;
  height: 320px;
  background: rgba(0, 74, 143, 0.22);
  top: 10%;
  left: 10%;
}

.hero-orb--2 {
  width: 240px;
  height: 240px;
  background: rgba(0, 204, 252, 0.12);
  top: 30%;
  right: 15%;
  animation-delay: -3s;
}

.hero-orb--3 {
  width: 180px;
  height: 180px;
  background: rgba(0, 74, 143, 0.15);
  bottom: 20%;
  left: 40%;
  animation-delay: -5s;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  animation: fadeInDown 1.2s ease-out;
  transform-style: preserve-3d;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.2));
  box-shadow: 0 0 60px rgba(2, 6, 23, 0.35);
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--btn-radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: var(--border-glow);
  background: rgba(0, 74, 143, 0.35);
  backdrop-filter: blur(8px);
  margin-bottom: 18px;
  box-shadow: 0 0 24px rgba(0, 204, 252, 0.2);
}

.hero h1 {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 30px var(--accent-glow);
}

.tagline {
  font-size: clamp(2rem, 6vw, 3.75rem);
  color: white;
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 74, 143, 0.5);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 28px;
  color: #c8e8f8;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub--short {
  display: none;
}

.hero-cta-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.pulse-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, #fff, #e8f4fc);
  color: var(--primary);
  padding: 11px 22px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  border-radius: var(--btn-radius);
  text-decoration: none;
  border: 2px solid var(--accent);
  box-shadow: 0 6px 20px rgba(0, 74, 143, 0.3);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Glow ring lives on a pseudo-element so it never steals clicks or fights hover */
.pulse-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--btn-radius);
  border: 2px solid rgba(0, 204, 252, 0.55);
  animation: pulse-glow 2.2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

.pulse-btn:hover {
  background: linear-gradient(145deg, var(--accent), #7ae6ff);
  color: var(--dark);
  box-shadow: 0 8px 22px rgba(0, 204, 252, 0.3);
  transform: translateY(-2px);
}

.pulse-btn:hover::before {
  animation-play-state: paused;
  opacity: 0.35;
}

.pulse-btn:active {
  transform: translateY(0);
}

.ghost-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  font-size: 0.95rem;
  line-height: 1.2;
  border-radius: var(--btn-radius);
  text-decoration: none;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 74, 143, 0.3);
  backdrop-filter: blur(8px);
  transition: 0.25s;
  cursor: pointer;
}

.ghost-btn:hover {
  border-color: var(--accent);
  background: rgba(0, 204, 252, 0.15);
  transform: translateY(-2px);
}

/* --- Page header (inner pages) --- */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 30px) 20px 60px;
  overflow: hidden;
}

.page-hero .hero-bg {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.35), rgba(0, 74, 143, 0.4), rgba(2, 6, 23, 0.65)),
    url('../images/site/shop.jpg') center / cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  z-index: 2;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.breadcrumb {
  position: relative;
  z-index: 2;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* --- Icon slider --- */
.icon-slider-section {
  background: linear-gradient(180deg, #0b1224 0%, #c5dced 22%, #f4f8fc 55%, #eef5fb 100%);
  padding: 16px 0;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.icon-slider-track {
  display: flex;
  width: max-content;
  animation: scrollFast 28s linear infinite;
  animation-play-state: paused;
}

.icon-slide {
  flex-shrink: 0;
  padding: 0 60px;
  display: flex;
  align-items: center;
}

.icon-slide img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 74, 143, 0.2));
  transition: transform 0.3s;
  pointer-events: none;
}

/* --- Sliders --- */
.slider-container {
  /* Full viewport width like the icon marquee (break out of section padding) */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 28px 0;
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 42s linear infinite;
  animation-play-state: paused;
}

/* Collapse completely while loading — no empty gap under headings */
.slider-container.is-marquee-loading,
.icon-slider-section.is-marquee-loading {
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  border-width: 0;
  pointer-events: none;
}

/* Tighten sections that only show a heading while their slide is loading */
.section-panel:has(.slider-container.is-marquee-loading) {
  padding-bottom: 1.25rem;
}

.section-panel:has(.slider-container.is-marquee-loading) .section-heading {
  margin-bottom: 0;
}

.section-panel:has(.slider-container.is-marquee-loading) .review-cta,
.section-panel:has(.slider-container.is-marquee-loading) [data-mount='review-badge'] {
  display: none;
}

.slider-container.is-marquee-ready,
.icon-slider-section.is-marquee-ready {
  visibility: visible;
  opacity: 1;
  height: auto;
  max-height: none;
  animation: marquee-fade-in 0.35s ease;
}

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

.is-marquee-ready .slider-track,
.is-marquee-ready .icon-slider-track {
  animation-play-state: running;
}

.is-marquee-ready .slider-track.is-user-paused,
.is-marquee-ready .icon-slider-track.is-user-paused,
.is-marquee-ready .slider-track:hover,
.is-marquee-ready .icon-slider-track:hover {
  animation-play-state: paused;
}

.marquee-interactive {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.marquee-interactive.is-dragging {
  cursor: grabbing;
}

.slide,
.card-slide {
  width: 300px;
  padding: 0 14px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.slider-track.is-user-paused .card-3d,
.slider-track.is-dragging .card-3d,
.slider-track.is-user-paused .service-card,
.slider-track.is-dragging .service-card,
.slider-track.is-user-paused .review-card,
.slider-track.is-dragging .review-card,
.slider-track.is-user-paused .powertrain-card,
.slider-track.is-dragging .powertrain-card {
  box-shadow: var(--shadow-3d), 0 0 30px rgba(0, 204, 252, 0.34);
}

/* --- Sections --- */
.section-panel {
  padding: 4.5rem 5%;
}

.section-panel--dark {
  background: linear-gradient(180deg, var(--dark) 0%, var(--surface) 100%);
}

.section-panel--light {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.section-heading span {
  display: block;
  color: var(--accent);
  font-size: 0.55em;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.section-heading--on-light {
  color: var(--accent);
}

.powertrain-section {
  border-bottom: 1px solid rgba(0, 204, 252, 0.15);
}

.powertrain-card {
  background: linear-gradient(145deg, #ffffff, #f0f6fb);
  border: 1px solid rgba(0, 74, 143, 0.2);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}

.powertrain-img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.powertrain-text {
  margin-top: 12px;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* --- Service cards --- */
.service-card {
  background: linear-gradient(160deg, rgba(17, 28, 54, 0.9), rgba(2, 6, 23, 0.95));
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border: var(--border-glow);
  height: 100%;
  min-height: 220px;
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}

.service-card h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Local SEO area --- */
.local-seo {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.local-seo p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-tag {
  padding: 8px 16px;
  border-radius: var(--btn-radius);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(0, 74, 143, 0.35);
  border: 1px solid rgba(0, 204, 252, 0.25);
  color: var(--accent);
}

/* --- Reviews --- */
.reviews-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--dark) 100%);
}

.review-card {
  background: linear-gradient(145deg, rgba(17, 28, 54, 0.95), rgba(11, 18, 36, 0.98));
  padding: 1.75rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  border-top: 1px solid rgba(0, 204, 252, 0.15);
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.review-card .card-3d-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.review-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  flex: 1;
  overflow: hidden;
}

.review-card.is-collapsed .review-text {
  /* Clean clip — no half-cut lines; Read more appears when clamped */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  max-height: none;
}

.review-card.is-expanded {
  z-index: 5;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  position: relative;
}

.review-card.is-expanded .review-text {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: none;
  overflow: visible;
}

.review-more {
  align-self: flex-start;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-more:hover {
  color: #7ae6ff;
}

.stars {
  color: var(--gold);
  margin-bottom: 12px;
}

.review-name {
  font-weight: 700;
  margin-top: 14px;
  color: var(--accent);
}

.review-cta {
  text-align: center;
  margin-top: 28px;
}

/* --- Careers banner --- */
.careers-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #002d57 50%, var(--dark) 100%);
  color: white;
  padding: 56px 20px;
  text-align: center;
  border-top: 4px solid var(--accent);
  box-shadow: inset 0 1px 0 rgba(0, 204, 252, 0.3);
}

.careers-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.careers-banner p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 28px;
  color: #c8e8f8;
}

/* --- Footer --- */
footer {
  background: linear-gradient(180deg, #001a33 0%, var(--dark) 100%);
  color: white;
  padding: 3rem 5%;
  border-top: var(--border-glow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-company-name {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info p {
  font-size: 1rem;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.contact-info i {
  color: var(--accent);
  width: 20px;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--accent);
}

.amvic-foot {
  background: white;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  margin-top: 14px;
}

.amvic-foot img {
  height: 48px;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-3d), 0 0 24px rgba(0, 204, 252, 0.15);
  border: 2px solid rgba(0, 204, 252, 0.3);
  transform: perspective(800px) rotateY(-2deg);
  transition: transform 0.4s;
}

.map-container:hover {
  transform: perspective(800px) rotateY(0deg) translateZ(8px);
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 24px;
  text-align: center;
}

/* --- Inner page components --- */
.features-bar,
.culture-bar {
  background: linear-gradient(145deg, rgba(17, 28, 54, 0.98), rgba(11, 18, 36, 0.99));
  margin: -48px auto 40px;
  max-width: 1400px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-3d);
  position: relative;
  z-index: 10;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  border: var(--border-glow);
}

.feature-item,
.culture-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.feature-item i,
.culture-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}

.feature-item h3,
.culture-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: white;
}

.feature-item p,
.culture-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.detail-bar {
  background: linear-gradient(145deg, rgba(17, 28, 54, 0.95), rgba(2, 6, 23, 0.98));
  border-radius: var(--radius);
  border: var(--border-glow);
  border-left: 5px solid var(--primary);
  display: flex;
  align-items: flex-start;
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.detail-bar:hover {
  transform: translateX(8px) translateZ(12px);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-3d), 0 0 24px rgba(0, 204, 252, 0.12);
}

.bar-header {
  flex: 0 0 260px;
  padding-right: 28px;
  border-right: 1px solid rgba(0, 204, 252, 0.15);
  margin-right: 28px;
}

.bar-header i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.bar-header h2 {
  font-size: 1.4rem;
  color: white;
}

.bar-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.detail-list li {
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  color: var(--text);
}

.detail-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  margin-right: 10px;
}

.seo-text {
  text-align: center;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.seo-text strong {
  color: var(--accent);
}

/* --- Careers --- */
.perks-container {
  padding: 40px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 36px;
}

.perks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.perk-item {
  background: linear-gradient(145deg, rgba(17, 28, 54, 0.95), rgba(2, 6, 23, 0.98));
  padding: 28px;
  border-radius: var(--radius);
  border: var(--border-glow);
  flex: 1 1 280px;
  max-width: 340px;
  transition: transform 0.3s;
}

.perk-item:hover {
  transform: translateY(-8px) translateZ(16px);
  box-shadow: var(--shadow-3d);
}

.perk-item i {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 10px;
}

.perk-item strong {
  display: block;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.perk-item span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.jobs-seo {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 28px 24px;
  background: rgba(15, 35, 64, 0.55);
  border: 1px solid rgba(0, 204, 252, 0.2);
  border-radius: var(--radius);
}

.jobs-seo h2 {
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 12px;
  text-align: center;
}

.jobs-seo-lead {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.jobs-seo a {
  color: var(--accent);
  text-decoration: underline;
}

.jobs-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
}

.jobs-list li {
  background: rgba(226, 238, 252, 0.08);
  border: 1px solid rgba(0, 204, 252, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.92rem;
}

.jobs-list a {
  font-weight: 700;
  text-decoration: none;
}

.jobs-list a:hover {
  text-decoration: underline;
}

.jobs-seo-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.form-section {
  background: linear-gradient(145deg, rgba(56, 90, 140, 0.92), rgba(40, 68, 110, 0.95));
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-3d);
  border: 1px solid rgba(0, 204, 252, 0.35);
  border-left: 6px solid var(--accent);
}

#apply {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.full-width {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
  color: var(--text);
  font-size: 0.85rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(0, 204, 252, 0.28);
  border-radius: 6px;
  font-size: 0.9rem;
  background: rgba(226, 238, 252, 0.92);
  color: #0f172a;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #64748b;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 204, 252, 0.25);
  background: #ffffff;
}

select {
  color: #0f172a;
}

.date-input {
  color-scheme: light;
  min-height: 34px;
  cursor: pointer;
}

.date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  padding: 4px;
  border-radius: 4px;
  background-color: rgba(0, 74, 143, 0.08);
}

.date-input::-webkit-calendar-picker-indicator:hover {
  background-color: rgba(0, 204, 252, 0.25);
}

.submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(226, 238, 252, 0.92);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 204, 252, 0.28);
  font-size: 0.85rem;
  color: #0f172a;
}

.checkbox-item input {
  appearance: none;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1px solid rgba(0, 74, 143, 0.45);
  border-radius: 4px;
  background: #ffffff;
  accent-color: var(--primary);
  display: inline-grid;
  place-content: center;
}

.checkbox-item input::before {
  content: '';
  width: 9px;
  height: 9px;
  transform: scale(0);
  transition: transform 0.12s ease;
  background: var(--primary);
  clip-path: polygon(14% 44%, 0 59%, 41% 100%, 100% 18%, 84% 4%, 38% 70%);
}

.checkbox-item input:checked::before {
  transform: scale(1);
}

.checkbox-item label {
  margin: 0;
  font-weight: normal;
  color: #0f172a;
}

.section-break {
  border-bottom: 2px solid rgba(0, 204, 252, 0.1);
  margin: 24px 0 14px;
  padding-bottom: 6px;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--btn-radius);
  cursor: pointer;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.25s, box-shadow 0.25s;
}

.submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  text-align: center;
}

.form-status--pending {
  background: rgba(0, 74, 143, 0.35);
  border: 1px solid rgba(0, 204, 252, 0.3);
  color: var(--accent);
}

.form-status--ok {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.form-status--error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.contact-details {
  text-align: center;
}

.contact-details p {
  margin: 12px 0;
}

.contact-details a {
  color: white;
  text-decoration: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.social-btn {
  background: rgba(0, 74, 143, 0.4);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: var(--btn-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  text-decoration: none;
  border: 2px solid var(--accent);
  transition: 0.25s;
}

.social-btn:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-4px);
}

.amvic-box {
  background: white;
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  margin-top: 20px;
}

.amvic-img {
  height: 58px;
}

/* --- 404 --- */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.dashboard-cluster {
  border: 3px solid rgba(0, 204, 252, 0.3);
  padding: 48px 40px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 28, 54, 0.9), rgba(2, 6, 23, 0.95));
  box-shadow: var(--shadow-3d), 0 0 60px rgba(0, 74, 143, 0.3);
  position: relative;
  max-width: 520px;
}

.engine-light {
  font-size: 5rem;
  color: #555;
  margin-bottom: 16px;
  animation: flash-warning 2s infinite;
}

@keyframes flash-warning {
  0%,
  20% {
    color: #555;
    text-shadow: none;
  }
  30%,
  100% {
    color: #ff9800;
    text-shadow: 0 0 30px #ff9800;
  }
}

.error-page h1 {
  font-size: 4rem;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-page h2 {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.diagnostic-text {
  font-family: 'Courier New', monospace;
  color: var(--accent);
  margin: 16px 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(145deg, var(--primary), #003a70);
  color: white;
  padding: 14px 32px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(0, 204, 252, 0.3);
  transition: 0.25s;
}

.home-btn:hover {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.05);
}

/* --- Feature pages / trust panels --- */
.footer-extras {
  text-align: center;
  margin: 18px auto 0;
  max-width: 900px;
  padding: 0 16px;
}

.footer-payments,
.footer-links {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.content-block {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0 20px;
}

.content-block h2 {
  color: white;
  margin-bottom: 12px;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
  line-height: 1.7;
}

.content-block ul {
  margin: 12px 0 20px 1.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.checklist-card {
  background: linear-gradient(145deg, rgba(17, 28, 54, 0.95), rgba(2, 6, 23, 0.98));
  border: var(--border-glow);
  border-radius: var(--radius);
  padding: 22px;
}

.checklist-card h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 204, 252, 0.2);
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .gallery-item img {
    height: 180px;
  }
}

.faq-item {
  background: rgba(17, 28, 54, 0.85);
  border: 1px solid rgba(0, 204, 252, 0.2);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 14px 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: white;
}

.faq-item p {
  margin-top: 10px;
  color: var(--text-muted);
}

.warranty-summary {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.warranty-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.warranty-cols h3 {
  color: var(--accent);
  margin-bottom: 8px;
}

.warranty-cols ul {
  margin-left: 1.1rem;
  color: var(--text-muted);
}

.review-rating {
  text-align: center;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.review-rating a {
  color: var(--accent);
}

.payments-title {
  color: white;
  margin-bottom: 8px;
}

.payments-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.payments-list li {
  padding: 6px 12px;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(0, 204, 252, 0.25);
  background: rgba(0, 74, 143, 0.35);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.payments-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.privacy-prose h2 {
  color: var(--accent);
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.privacy-prose p {
  margin-bottom: 12px;
}

.landing-cta {
  text-align: center;
  margin: 40px 0 60px;
}

.bg-gear {
  position: fixed;
  font-size: 22rem;
  color: rgba(0, 204, 252, 0.03);
  z-index: -1;
  animation: spin 24s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* --- Floating buttons --- */
.float-btn {
  position: fixed;
  right: 18px;
  z-index: 2000;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: var(--btn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: transform 0.25s;
}

.float-btn:hover {
  transform: scale(1.08) translateZ(8px);
}

.whatsapp-float {
  bottom: 18px;
  background: #25d366;
}

.instagram-float {
  bottom: 66px;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

/* --- Responsive --- */

@media (max-width: 1100px) {
  .scanlines {
    display: none;
  }

  nav {
    padding: 8px 0 6px;
    background: rgba(2, 6, 23, 0.92);
  }

  .nav-container {
    padding: 0 12px 4px;
    gap: 8px;
  }

  .nav-brand-text {
    font-size: clamp(0.95rem, 3.8vw, 1.25rem);
    filter: drop-shadow(0 2px 8px rgba(0, 204, 252, 0.25));
  }

  .nav-icon {
    height: clamp(34px, 8.5vw, 42px);
  }

  .mobile-static-menu {
    gap: 6px;
  }

  .mobile-static-menu .nav-btn {
    padding: 8px 4px;
    font-size: clamp(0.65rem, 2.8vw, 0.78rem);
    min-height: 34px;
  }

  .hero {
    /* Shorter hero + width-fit photo = less crop/zoom on the shop */
    min-height: 0;
    height: auto;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 0;
    padding: calc(var(--nav-h) + min(42vw, 240px)) 16px 20px;
  }

  .hero-bg {
    top: 0;
    bottom: auto;
    height: calc(var(--nav-h) + min(52vw, 300px) + 40px);
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #020617;
  }

  .hero-scene {
    opacity: 0.35;
    height: calc(var(--nav-h) + min(52vw, 300px) + 40px);
    bottom: auto;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    padding: 16px 14px 14px;
    margin: -56px auto 0;
    max-width: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.78));
    border: 1px solid rgba(0, 204, 252, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }

  .hero-badge {
    margin-bottom: 10px;
    font-size: 0.68rem;
    padding: 6px 12px;
    box-shadow: none;
  }

  .hero h1 {
    font-size: 0.9rem;
    margin-bottom: 6px;
    text-shadow: 0 0 16px rgba(0, 204, 252, 0.25);
  }

  .tagline {
    font-size: clamp(1.4rem, 6.5vw, 1.9rem);
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
  }

  .hero-sub--full {
    display: none;
  }

  .hero-sub--short {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.45;
    max-width: 340px;
  }

  .hero-cta-row {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
  }

  .ghost-btn {
    display: none !important;
  }

  /* Keep one secondary CTA visible on mobile when present */
  .hero-cta-row .ghost-btn[href='/request'] {
    display: none !important;
  }

  .pulse-btn {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding: 10px 16px;
    font-size: 0.82rem;
    gap: 8px;
    min-height: 0;
    line-height: 1.2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  }

  .pulse-btn::before {
    display: none;
  }

  .page-hero {
    min-height: 42vh;
    padding: calc(var(--nav-h) + 24px) 16px 48px;
  }

  .section-panel {
    padding: 3.25rem 4%;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .service-card i,
  .service-card .fas {
    filter: drop-shadow(0 0 6px rgba(0, 204, 252, 0.25));
  }

  /* Keep SEO in HTML for Google — hide on mobile UI */
  .local-seo,
  .seo-text {
    display: none !important;
  }

  .jobs-seo {
    margin: 0 14px 28px;
    padding: 20px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .map-container {
    transform: none;
    height: 240px;
  }

  .detail-bar {
    flex-direction: column;
    padding: 22px;
  }

  .bar-header {
    flex: auto;
    border-right: none;
    border-bottom: 1px solid rgba(0, 204, 252, 0.15);
    margin: 0 0 16px;
    padding: 0 0 16px;
    width: 100%;
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .bar-header i {
    margin-bottom: 0;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .features-bar,
  .culture-bar {
    margin: -28px 14px 28px;
    flex-direction: column;
  }

  .form-section {
    margin: 20px 14px 60px;
    padding: 24px 16px;
  }

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

  .full-width {
    grid-column: span 1;
  }

  /* Keep social floats — compact so they cover less content */
  .float-btn {
    width: 36px;
    height: 36px;
    right: 12px;
    font-size: 16px;
  }

  .instagram-float {
    bottom: 58px;
  }

  .whatsapp-float {
    bottom: 14px;
  }
}

@media (max-width: 480px) {
  .nav-brand-text {
    font-size: 0.95rem;
  }

  .nav-icon {
    height: 34px;
  }

  .slide,
  .card-slide {
    width: 240px;
  }

  .pulse-btn {
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 0;
    padding: calc(var(--nav-h) + min(40vw, 220px)) 14px 18px;
  }

  .hero-bg {
    height: calc(var(--nav-h) + min(50vw, 260px) + 36px);
    background-position: center center;
    background-size: 100% auto;
  }

  .hero-scene {
    height: calc(var(--nav-h) + min(50vw, 260px) + 36px);
  }

  .hero-content {
    margin-top: -48px;
    padding: 14px 12px 12px;
  }

  .mobile-static-menu .nav-btn {
    padding: 7px 2px;
    font-size: clamp(0.62rem, 2.6vw, 0.72rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
