/* TRACTĂRI AUTO VÂLCEA — layout & theme */
:root {
  --bg: #0b1120;
  --bg-soft: #111827;
  --surface: #1e293b;
  --surface-2: #243045;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #f97316;
  --accent-strong: #ea580c;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --ring: rgba(249, 115, 22, 0.45);
  --font-sans: "Instrument Sans", system-ui, sans-serif;
  --font-display: "Lexend", var(--font-sans);
  --radius: 14px;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(249, 115, 22, 0.12), transparent 55%),
    radial-gradient(900px 480px at 90% 0%, rgba(59, 130, 246, 0.09), transparent 50%),
    var(--bg);
  min-height: 100vh;
}

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

svg {
  max-width: 100%;
}

/* Poze reale: fără desene „camion” ca rezervă — doar fotografii sau mesaj clar */
@keyframes photo-shimmer {
  0% {
    background-position: 120% 50%;
  }
  100% {
    background-position: -20% 50%;
  }
}

@keyframes kb-hero {
  0% {
    transform: translate(0, 0) scale(1.06);
  }
  100% {
    transform: translate(-2.8%, -1.8%) scale(1.14);
  }
}

@keyframes kb-thumb {
  0% {
    transform: translate(0, 0) scale(1.05);
  }
  100% {
    transform: translate(2.2%, -2.5%) scale(1.09);
  }
}

@keyframes kb-gallery {
  0% {
    transform: translate(0, 0) scale(1.045);
  }
  100% {
    transform: translate(-2.6%, 1.8%) scale(1.1);
  }
}

@keyframes kb-fleet {
  0% {
    transform: translate(0, 0) scale(1.04);
  }
  100% {
    transform: translate(-1.8%, 1.2%) scale(1.085);
  }
}

.media-slot {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.media-slot__cut {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.media-slot__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  /* Nu afișăm ilustrația SVG pentru a nu induce în eroare; rămâne în DOM pentru accesibilitate tehnician */
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.media-slot--photo .media-slot__fallback {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.media-slot:not(.media-slot--photo):not(.media-slot--error) .media-slot__cut {
  background: linear-gradient(
    105deg,
    #172033 0%,
    #1e293b 35%,
    #243045 52%,
    #1e293b 68%,
    #172033 100%
  );
  background-size: 220% 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .media-slot:not(.media-slot--photo):not(.media-slot--error) .media-slot__cut {
    animation: photo-shimmer 2.4s ease-in-out infinite;
  }
}

.media-slot--error .media-slot__cut {
  animation: none !important;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 55%, #1f1418 100%) !important;
}

.media-slot.media-slot--error::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 1rem 1.15rem;
  text-align: center;
  white-space: pre-line;
  font-size: clamp(0.78rem, 2.8vw, 0.93rem);
  font-weight: 700;
  line-height: 1.45;
  color: rgba(241, 245, 249, 0.92);
  pointer-events: none;
  content: "Lipsește fotografia din computer. Copiază-o aici:\Aimages/" attr(data-photo) "\A— vezi ghidul din același folder (POZE-REDENUMIRE.txt).";
}

.media-slot.media-slot--error:not([data-photo])::after,
.media-slot.media-slot--error[data-photo=""]::after {
  content: "Lipsește fișierul imagine din folderul images/.\AVezi POZE-REDENUMIRE.txt.";
}

.media-slot__pan {
  position: absolute;
  inset: -7%;
  width: 114%;
  height: 114%;
  z-index: 1;
  transform-origin: center center;
}

.media-slot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.45s ease;
}

.media-slot__img.img-obj-center {
  object-position: center center;
}

.media-slot__img.img-obj-top {
  object-position: center 15%;
}

.media-slot__img.img-obj-bottom {
  object-position: center 82%;
}

.media-slot__img.img-obj-left {
  object-position: 18% center;
}

.media-slot__img.img-obj-right {
  object-position: 82% center;
}

.media-slot--error .media-slot__pan {
  display: none;
}

.gallery-frame > .media-slot {
  aspect-ratio: 920 / 520;
  width: 100%;
  min-height: 200px;
}

.gallery-frame > .media-slot--gallery-wide {
  max-height: 520px;
}

@media (prefers-reduced-motion: no-preference) {
  .media-slot--photo .media-slot__pan--hero {
    animation: kb-hero 22s ease-in-out infinite alternate;
  }

  .media-slot--photo .media-slot__pan--thumb {
    animation: kb-thumb 18s ease-in-out infinite alternate;
  }

  .media-slot--photo .media-slot__pan--gallery {
    animation: kb-gallery 20s ease-in-out infinite alternate;
  }

  .gallery-item:nth-child(2) .media-slot__pan--gallery {
    animation-delay: -5s;
  }

  .gallery-item:nth-child(3) .media-slot__pan--gallery {
    animation-delay: -10s;
  }

  .media-slot--photo .media-slot__pan--fleet {
    animation: kb-fleet 24s ease-in-out infinite alternate;
  }

  .fleet-grid .fleet-card:nth-child(2) .media-slot__pan--fleet {
    animation-delay: -6s;
  }

  .fleet-grid .fleet-card:nth-child(3) .media-slot__pan--fleet {
    animation-delay: -12s;
  }

  .fleet-grid .fleet-card:nth-child(4) .media-slot__pan--fleet {
    animation-delay: -9s;
  }

  .fleet-grid .fleet-card:nth-child(5) .media-slot__pan--fleet {
    animation-delay: -14s;
  }

  .fleet-grid .fleet-card:nth-child(6) .media-slot__pan--fleet {
    animation-delay: -18s;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-section.gallery-reveal-on .gallery-item:not(.is-in-view) {
    opacity: 0;
    transform: translateY(22px);
  }

  .gallery-section.gallery-reveal-on .gallery-item.is-in-view {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .gallery-section.gallery-reveal-on .gallery-item:nth-child(1).is-in-view {
    transition-delay: 0.04s;
  }

  .gallery-section.gallery-reveal-on .gallery-item:nth-child(2).is-in-view {
    transition-delay: 0.12s;
  }

  .gallery-section.gallery-reveal-on .gallery-item:nth-child(3).is-in-view {
    transition-delay: 0.2s;
  }
}



.media-slot__fallback.fleet-svg {
  transition: transform 0.45s ease;
}

.fleet-card:hover .media-slot:not(.media-slot--photo) .media-slot__fallback.fleet-svg {
  transform: scale(1.04);
}

.fleet-card:hover .media-slot--photo .media-slot__img {
  filter: brightness(1.07) saturate(1.04);
}

.gallery-item:hover .media-slot--photo .media-slot__img {
  filter: brightness(1.05);
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--accent);
  color: #111;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  z-index: 1000;
  transition: top 0.2s ease;
}

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0f172a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header[data-menu-open="true"] .nav-toggle-bar:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.site-header[data-menu-open="true"] .nav-toggle-bar:nth-child(3) {
  opacity: 0;
}

.site-header[data-menu-open="true"] .nav-toggle-bar:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-list a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.35rem 0;
}

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

.header-cta {
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0f172a;
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.25);
}

.btn-accent:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--muted);
  background: rgba(148, 163, 184, 0.08);
}

.btn-lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

.btn-light {
  background: #fef3c7;
  color: #422006;
  border-color: rgba(251, 191, 36, 0.55);
}

.btn-light:hover {
  filter: brightness(1.03);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(254, 243, 199, 0.45);
  color: #fffbeb;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(148, 163, 184, 0.3);
}

.btn-block:hover {
  background: rgba(15, 23, 42, 0.75);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.75rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      120deg,
      rgba(15, 23, 42, 0.93) 0%,
      rgba(15, 23, 42, 0.78) 38%,
      rgba(249, 115, 22, 0.1) 100%
    ),
    repeating-linear-gradient(
      -12deg,
      rgba(148, 163, 184, 0.04) 0 2px,
      transparent 2px 16px
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: start;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-size: clamp(2.05rem, 5.2vw, 3.15rem);
}

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

.lead {
  margin: 0 0 1.5rem;
  font-size: 1.06rem;
  color: var(--muted);
}

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

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

.hero-badges {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.5);
}

.hero-card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(160deg, var(--surface) 0%, #182236 55%, var(--surface-2));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: var(--shadow);
}

.pulse-dot {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.hero-card-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hero-card-value {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 3.4rem);
  letter-spacing: -0.03em;
  color: #fef3c7;
}

.hero-card-note {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: clamp(2.75rem, 6vw, 4.75rem) 0;
}

.section-alt {
  background: rgba(15, 23, 42, 0.45);
  border-block: 1px solid rgba(148, 163, 184, 0.1);
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.section-head-left {
  text-align: left;
  margin: 0 0 1.5rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.6rem, 3.8vw, 2.05rem);
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.card-wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .card-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
  }

  .card-wide .card-icon {
    grid-row: span 2;
  }
}

.card-icon {
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
  filter: saturate(1.1);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}

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

.card p strong {
  color: var(--text);
}

/* Locations */
.locations {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.location-chips {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.location-chips li {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.locations-note {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.locations-note strong {
  color: var(--text);
}

/* Split / checklist */
.split {
  display: grid;
  gap: 2rem;
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.testimonial {
  margin: 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(249, 115, 22, 0.12), rgba(30, 41, 59, 0.95));
  border: 1px solid rgba(249, 115, 22, 0.22);
  font-style: italic;
}

.testimonial p {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.88rem;
}

/* FAQ */
.faq details {
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(30, 41, 59, 0.75);
  margin-bottom: 0.65rem;
  padding: 0.85rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.98rem;
  list-style: none;
}

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

.faq details[open] summary {
  color: var(--accent);
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* CTA band */
.cta-band {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.25), transparent 45%),
    linear-gradient(135deg, #0f172a, #172554);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.cta-band h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.6rem, 3.8vw, 2.1rem);
}

.cta-band p {
  margin: 0;
  max-width: 36rem;
  color: rgba(226, 232, 240, 0.88);
}

.cta-tip {
  margin-top: 0.75rem !important;
  font-size: 0.86rem !important;
  color: rgba(226, 232, 240, 0.64) !important;
}

.cta-tip code {
  font-size: 0.82em;
  background: rgba(15, 23, 42, 0.5);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

/* Footer */
.site-footer {
  padding: 2rem 0 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 1.5rem;
}

.footer-heading {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.muted.small,
.small {
  font-size: 0.87rem;
  line-height: 1.55;
}

.footer-copy {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-copy p {
  margin: 0;
}

.footer-grid-extended {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

@media (min-width: 900px) {
  .footer-grid-extended {
    grid-template-columns: 1.1fr 1fr 0.9fr;
  }

  .footer-col-full {
    grid-column: 1 / -1;
  }
}

.footer-company-grid {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr;
  gap: 0.35rem 1rem;
  align-items: baseline;
  font-size: 0.85rem;
}

.footer-company-grid dt {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-company-grid dd {
  margin: 0;
  color: rgba(241, 245, 249, 0.9);
}

.footer-legal-strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-legal-strip a {
  font-weight: 700;
  font-size: 0.86rem;
  color: rgba(249, 115, 22, 0.95);
}

.footer-legal-strip a:hover {
  color: #fed7aa;
}

.footer-micro {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
}

.call-prep-panel {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .call-prep-panel {
    grid-template-columns: 1fr minmax(200px, 0.38fr);
    align-items: start;
  }
}

.call-prep-checklist li {
  padding-left: 0.15rem;
}

.call-prep-aside {
  padding: 1rem 1.1rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.preturi-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 1rem;
}

.preturi-card.card-lift-soft {
  padding: 1.15rem 1.35rem;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.14);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.preturi-card.card-lift-soft:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.preturi-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.legal-micro,
.testimonial-disclaimer {
  margin-top: 1rem;
  max-width: 52rem;
}

.section-legal-area {
  background: radial-gradient(900px 400px at 20% -10%, rgba(249, 115, 22, 0.07), transparent 52%),
    var(--bg);
}

.legal-page-wrap .section-head {
  margin-bottom: 1.35rem;
}

.legal-details {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(30, 41, 59, 0.5);
  margin-bottom: 0.65rem;
  padding-inline: 0.15rem;
}

.legal-details summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 0.95rem;
  list-style-position: outside;
}

.legal-details summary::-webkit-details-marker {
  color: rgba(249, 115, 22, 0.75);
}

.legal-details[open] summary {
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  margin-bottom: 0;
}

.legal-prose {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  line-height: 1.62;
}

.legal-prose p {
  margin: 0 0 0.65rem;
}

.legal-prose p:last-child {
  margin-bottom: 0;
}

.legal-prose a {
  color: rgba(249, 115, 22, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-prose a:hover {
  color: #fed7aa;
}

.cookie-consent-bar {
  position: fixed;
  z-index: 90;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  background: rgba(15, 23, 42, 0.96);
  border-top: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.cookie-consent-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.cookie-consent-text {
  flex: 1 1 220px;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.52;
  color: rgba(241, 245, 249, 0.92);
}

.cookie-consent-text a {
  color: rgba(249, 115, 22, 0.95);
}

.cookie-consent-btn {
  flex-shrink: 0;
}

.contact-footnote a,
.form-foot a {
  color: rgba(249, 115, 22, 0.92);
}

.contact-footnote a:hover,
.form-foot a:hover {
  color: #fed7aa;
}

/* Mobile nav */
@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: calc(var(--header-h) + 0.5rem);
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--radius);
    padding: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    box-shadow: var(--shadow);
  }

  .nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list a {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
  }

  .nav-list a:hover {
    background: rgba(148, 163, 184, 0.08);
  }

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

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

  .header-cta {
    font-size: 0.82rem;
    padding-inline: 0.85rem;
  }

  .ticker-inner {
    animation-duration: 28s;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ——— Ticker band ——— */
.ticker-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  overflow: hidden;
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
}

.ticker-inner {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll 32s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-inner {
    animation: none !important;
    justify-content: center;
    width: auto;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .ticker-track:nth-child(2) {
    display: none;
  }
}

.ticker-track {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.52rem 0;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(254, 243, 199, 0.85);
}

.ticker-dot {
  opacity: 0.45;
}

.ticker-track--ghost {
  opacity: inherit;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.photo-setup-banner {
  border-bottom: 1px solid rgba(249, 115, 22, 0.35);
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.12), rgba(234, 88, 12, 0.1));
}

.photo-setup-banner[hidden] {
  display: none !important;
}

.photo-setup-banner__inner {
  padding: 0.65rem 0;
}

.photo-setup-banner p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(254, 243, 199, 0.96);
}

.photo-setup-banner__code {
  font-size: 0.84em;
  padding: 0.06rem 0.32rem;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.photo-setup-banner kbd {
  font-size: 0.82em;
  padding: 0.1rem 0.38rem;
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(249, 115, 22, 0.35);
}

/* Floating orbs hero */
.floating-orbs {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orb-drift 18s ease-in-out infinite alternate;
}

.orb-1 {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.65), transparent 65%);
  top: -140px;
  right: -80px;
}

.orb-2 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.38), transparent 65%);
  bottom: -120px;
  left: -80px;
  animation-delay: -4s;
}

@keyframes orb-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-24px, 18px) scale(1.08);
  }
}

.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulse 2.2s ease-out infinite;
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  transform: translateX(-120%) rotate(12deg);
  animation: shine-sweep 6s ease-in-out infinite;
}

@keyframes shine-sweep {
  0%,
  72% {
    transform: translateX(-120%) rotate(12deg);
  }
  100% {
    transform: translateX(120%) rotate(12deg);
  }
}

/* Hero layout */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  overflow: visible;
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.55));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: var(--shadow);
}

.hero-photo-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.photo-float-soft {
  animation: photo-soft 9s ease-in-out infinite alternate;
}

@keyframes photo-soft {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5px);
  }
}

.hero-photo-main-frame {
  position: relative;
  margin: 0;
  isolation: isolate;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.hero-photo-main-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 30% 12%, rgba(249, 115, 22, 0.15), transparent 50%);
}

.hero-photo-main-frame .media-slot--hero {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: min(380px, 52vw);
  aspect-ratio: 920 / 520;
}

.hero-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0.55rem 0.85rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(254, 243, 199, 0.95);
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
}

.hero-micro-road {
  position: relative;
  height: 10px;
  border-radius: 8px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-micro-dash {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(254, 243, 199, 0.78) 0 14px,
    transparent 14px 36px
  );
  animation: dash-slide 0.85s linear infinite;
  opacity: 0.72;
}

.hero-micro-dash--fast {
  opacity: 0.35;
  animation-duration: 0.54s;
  filter: blur(0.35px);
}

@keyframes dash-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-36px);
  }
}

.hero-photo-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.hero-photo-thumbs .thumb-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hero-photo-thumbs .thumb-link:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.hero-photo-thumbs .media-slot--thumb {
  display: block;
  width: 100%;
  height: auto;
  min-height: 96px;
  aspect-ratio: 5 / 4;
}

.scene-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
  padding-inline: 0.1rem;
}

.scene-chip {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: rgba(226, 232, 240, 0.9);
  animation: chip-float 5s ease-in-out infinite;
}

.scene-chip--delay {
  animation-delay: -1.5s;
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.btn-glow {
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.45);
  animation: btn-glow-pulse 3.2s ease-out infinite;
}

@keyframes btn-glow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(249, 115, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

/* Stats */
.section-tight {
  padding: clamp(1.75rem, 4vw, 2.25rem) 0;
}

.stats-strip {
  border-block: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(15, 23, 42, 0.35);
}

.stats-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: center;
}

.stat {
  padding: 0.35rem 0.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  letter-spacing: -0.03em;
  color: #fef3c7;
}

.stat-suffix {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--accent);
  margin-left: 0.1rem;
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
}

/* Card extras */
.card-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.card-list li {
  margin-bottom: 0.25rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.card-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: rgba(254, 243, 199, 0.95);
}

.card-emergency {
  border-color: rgba(248, 113, 113, 0.35);
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.12), rgba(30, 41, 59, 0.95));
}

.card-wide-body {
  min-width: 0;
}

.card-lift {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card-lift:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Process */
.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.process-step {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.process-step:hover {
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateY(-2px);
}

.process-num {
  flex: 0 0 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.22);
}

.process-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-family: var(--font-display);
}

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

/* Road divider */
.road-divider-section {
  padding: 0;
}

.road-strip {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 0;
  background: linear-gradient(90deg, #0f172a, #1e293b 50%, #0f172a);
}

.road-strip-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(254, 243, 199, 0.16) 0 28px,
    transparent 28px 56px
  );
  animation: strip-slide 2.4s linear infinite;
  opacity: 0.45;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

@keyframes strip-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-56px);
  }
}

.road-strip-tag {
  position: relative;
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: rgba(254, 243, 199, 0.88);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

/* Flotă panel */
.split-flota {
  align-items: stretch;
}

.mega-check li {
  margin-bottom: 0.15rem;
}

.info-panel {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
  position: relative;
  overflow: hidden;
}

.panel-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.panel-highlight {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.22);
}

.panel-kpi {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fef3c7;
  letter-spacing: 0.04em;
}

.panel-kpi-caption {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.mini-trucks {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.mini-truck {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.65), transparent);
  opacity: 0.45;
  animation: mini-drive 2.4s ease-in-out infinite;
}

.mt-delay {
  animation-delay: 0.4s;
}

.mt-delay-2 {
  animation-delay: 0.8s;
}

@keyframes mini-drive {
  0%,
  100% {
    transform: translateX(-8%);
    opacity: 0.35;
  }
  50% {
    transform: translateX(8%);
    opacity: 0.85;
  }
}

.map-feature {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.map-card {
  text-align: left;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.map-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.map-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Galerie foto */
.gallery-section .gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.gallery-item-wide {
  grid-column: 1 / -1;
}

.gallery-frame {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.45);
}

.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), transparent 40%);
  pointer-events: none;
}

.gallery-item:hover .gallery-frame::after {
  opacity: 1;
}

.gallery-frame .media-slot__fallback.illus-svg--gallery,
.gallery-frame .media-slot__fallback.illus-svg--gallery-wide {
  height: 100%;
  width: 100%;
  min-height: 0;
  max-height: none;
}

@media (min-width: 900px) {
  .gallery-item-wide .gallery-frame > .media-slot--gallery-wide {
    max-height: 480px;
  }
}

.gallery-item figcaption {
  margin: 0.55rem 0 0;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Mașini / flotă foto */
.fleet-showcase {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.fleet-showcase-head {
  margin-bottom: 1.25rem;
  max-width: 46rem;
}

.fleet-showcase-head h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fleet-showcase-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.inline-code {
  font-size: 0.85em;
  padding: 0.12rem 0.4rem;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-weight: 600;
}

.nowrap {
  white-space: nowrap;
}

.fleet-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  margin: 0;
  padding: 0;
}

@media (min-width: 900px) {
  .fleet-card-wide {
    grid-column: span 2;
  }
}

.fleet-card {
  margin: 0;
}

.fleet-card-frame {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.5);
  aspect-ratio: 4 / 3;
}

.fleet-card-wide .fleet-card-frame {
  aspect-ratio: 21 / 9;
}

@media (max-width: 899px) {
  .fleet-card-wide .fleet-card-frame {
    aspect-ratio: 16 / 10;
  }
}

.fleet-card-frame > .media-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

svg.media-slot__fallback.fleet-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Dimensiuni SVG rezervă în cardurile flotei */
.fleet-card figcaption {
  margin: 0.55rem 0 0;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.45;
}

.fleet-card figcaption strong {
  color: var(--text);
}

.contact-mailto.contact-value {
  display: inline-block;
  word-break: break-all;
}

/* Contact */
.contact-section {
  background: radial-gradient(900px 420px at 15% 0%, rgba(249, 115, 22, 0.12), transparent 55%),
    radial-gradient(700px 380px at 95% 20%, rgba(59, 130, 246, 0.1), transparent 50%),
    var(--bg);
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 2rem;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.4rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(30, 41, 59, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.16);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

a.contact-card {
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.contact-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.contact-glow--wa {
  background: radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.22), transparent 55%);
}

.contact-glow--mail {
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.2), transparent 55%);
}

.contact-icon {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #fef3c7;
  margin-bottom: 0.25rem;
}

.contact-icon--wa {
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, 0.35);
}

.contact-card h3 {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.contact-value {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: #fef3c7;
}

.contact-mailto {
  text-decoration: underline;
  text-decoration-color: rgba(249, 115, 22, 0.45);
  text-underline-offset: 3px;
}

.contact-mailto:hover {
  color: #fff;
}

.contact-hint {
  position: relative;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-chip {
  position: relative;
  margin-top: 0.35rem;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: rgba(254, 243, 199, 0.95);
}

.contact-chip--wa {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.32);
  color: #dcfce7;
}

.contact-card--phone {
  border-color: rgba(249, 115, 22, 0.28);
}

.contact-card--wa {
  border-color: rgba(34, 197, 94, 0.28);
}

.contact-card--mail {
  border-color: rgba(59, 130, 246, 0.22);
}

.copy-btn {
  position: relative;
  margin-top: 0.55rem;
  align-self: flex-start;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.45);
  color: var(--text);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.copy-btn:hover {
  border-color: rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.12);
}

.copy-btn[data-copied="true"] {
  border-color: rgba(34, 197, 94, 0.45);
  color: #bbf7d0;
}

.contact-form-panel {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.55);
}

.form-intro h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.mailto-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.mailto-form label {
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.92);
}

.mailto-form input,
.mailto-form textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.65);
  color: var(--text);
}

.mailto-form input:focus,
.mailto-form textarea:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.form-grid-2 {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.contact-footnote {
  margin-top: 1.25rem;
  text-align: center;
}

.footer-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.footer-quick a {
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: var(--muted);
}

.footer-quick a:hover {
  color: var(--text);
  border-color: rgba(249, 115, 22, 0.35);
}

/* Zone foto: fundal dacă lipsește fișierul imagine */
.hero-photo-main-frame,
.hero-photo-thumbs .thumb-link,
.gallery-frame,
.fleet-card-frame {
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 55%, #1a1030 100%);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .road-strip-lines,
  .mini-truck,
  .shine::after,
  .orb,
  .btn-glow,
  .live-pulse,
  .pulse-dot,
  .scene-chip,
  .photo-float-soft,
  .hero-micro-dash,
  .hero-micro-dash--fast,
  .media-slot:not(.media-slot--photo):not(.media-slot--error) .media-slot__cut {
    animation: none !important;
  }

  .fleet-card:hover .media-slot:not(.media-slot--photo) .media-slot__fallback.fleet-svg {
    transform: none;
  }

  .fleet-card:hover .media-slot--photo .media-slot__img,
  .gallery-item:hover .media-slot--photo .media-slot__img {
    filter: none;
  }

  .media-slot--photo .media-slot__pan--hero,
  .media-slot--photo .media-slot__pan--thumb,
  .media-slot--photo .media-slot__pan--gallery,
  .media-slot--photo .media-slot__pan--fleet {
    animation: none !important;
  }

  .gallery-section.gallery-reveal-on .gallery-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .preturi-card.card-lift-soft:hover {
    transform: none;
    box-shadow: none;
  }
}
