/* ============================================
   MECÁNICA FERRETERA - Dark Industrial Theme
   ============================================ */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Primary Colors - Indsutrial Red (Bosch Pure) */
  --primary-50: #fff0f0;
  --primary-100: #ffdede;
  --primary-200: #ffc2c2;
  --primary-300: #ff8f8f;
  --primary-400: #ff4d4d;
  --primary-500: #ff1f1f;
  --primary-600: #E20613;
  /* Bosch Red */
  --primary-700: #b8000b;
  --primary-800: #96050e;
  --primary-900: #7d0a11;

  /* Neutrals - Graphite & Steel */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #0F1115;
  /* Solid Graphite */

  /* Functional Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --whatsapp: #25D366;
  --whatsapp-hover: #128C7E;

  /* Surfaces */
  --bg-main: var(--gray-950);
  --bg-card: #16191f;
  /* Lighter Graphite */
  --bg-input: #1c2129;

  /* Borders */
  --border-color: var(--gray-700);
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-full: 9999px;

  /* Typography */
  --font-family: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Transitions */
  --transition: 200ms ease-out;
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--gray-200);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gray-50);
  line-height: 1.2;
  font-weight: 900;
}

.gradient-text {
  color: var(--primary-600);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 17, 21, 0.95);
  /* #0F1115 with slight transparency */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  /* Remove padding to let container handle spacing */
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  /* Increased height for 85px logo */
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.nav-link {
  color: var(--gray-300);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--primary-500);
}

.nav-cta {
  background: var(--primary-600);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--primary-700);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  color: var(--gray-50);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100px;
    /* Fixed: Matches nav-container height */
    left: 0;
    right: 0;
    background: var(--bg-main);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 100px);
    /* Prevent scrolling issues */
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Add shadow for depth */
  }

  .nav-toggle {
    display: block;
  }
}

/* Hero Section */
/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  padding-top: 120px;
  /* Safe space for navbar */
}

/* ... existing styles ... */

.hero-logo {
  max-width: 380px;
  /* Bigger logo */
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  /* Smaller padding */
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid var(--primary-900);
  color: var(--primary-400);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  font-size: 0.75rem;
  /* Smaller font */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  /* Reduced min size from 2.5rem */
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  /* Tighter line height for mobile */
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary-600);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gray-600);
  color: var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--primary-500);
  color: var(--primary-400);
  background: rgba(225, 29, 72, 0.05);
}

.hero-stats {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  flex-wrap: wrap;
  /* Fixed: Allow wrapping on mobile */
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 1.5rem;
    flex-direction: column;
    /* Stack stats on mobile */
    align-items: center;
  }

  .stat-divider {
    display: none;
    /* Hide dividers in stack mode */
  }

  /* Adjust Hero Spacing for Mobile */
  .hero {
    padding-top: 110px;
    padding-bottom: 4rem;
    min-height: auto;
    /* Allow auto height on mobile */
  }

  .hero-logo {
    max-width: 280px;
    /* Smaller logo on mobile */
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray-500);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Sections General */
section {
  padding: var(--space-16) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  color: var(--primary-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-400);
  font-size: 1.125rem;
}

/* Services */
.services {
  background: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary-600);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.5s;
}

.service-img-filter {
  filter: brightness(0.75);
}

.service-card:hover .service-img-filter {
  filter: brightness(1);
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.9), transparent);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-600);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-content {
  padding: 1.5rem;
  position: relative;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--bg-main);
  border: 1px solid var(--primary-600);
  color: var(--primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-top: -3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.card-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.card-description {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-300);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.card-features li [data-lucide] {
  color: var(--primary-500);
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.card-price {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-label {
  color: var(--gray-500);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.price-value {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Fleet CTA */
.fleet-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-600);
  padding: 2rem;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.fleet-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.fleet-content [data-lucide] {
  width: 48px;
  height: 48px;
  color: var(--primary-500);
  min-width: 48px;
}

.fleet-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.fleet-text p {
  color: var(--gray-400);
}

/* Calculator */
.calculator-section {
  background: var(--bg-input);
  /* Slightly lighter than main bg */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .calculator-wrapper {
    grid-template-columns: 1fr;
  }
}

.calculator-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.calculator-benefits {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-300);
}

.benefit-item [data-lucide] {
  color: var(--primary-500);
  min-width: 24px;
}

.calculator-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

.calculator-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.calculator-header [data-lucide] {
  color: var(--primary-500);
  width: 24px;
  height: 24px;
}

.calculator-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.calc-option {
  position: relative;
  cursor: pointer;
}

.calc-option input {
  position: absolute;
  opacity: 0;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.calc-option input:checked+.option-content {
  border-color: var(--primary-600);
  background: rgba(225, 29, 72, 0.05);
}

.option-icon {
  color: var(--gray-400);
  display: flex;
  align-items: center;
}

.option-icon [data-lucide] {
  width: 24px;
  height: 24px;
}

.calc-option input:checked+.option-content .option-icon {
  color: var(--primary-500);
}

.option-info {
  flex: 1;
}

.option-title {
  display: block;
  font-weight: 600;
  color: white;
}

.option-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.option-price {
  font-weight: 700;
  color: white;
}

.calculator-result {
  background: var(--bg-card);
  padding: 1.5rem;
  border: 1px dashed var(--border-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.result-label {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.result-price {
  display: block;
  color: var(--primary-500);
  font-size: 2rem;
  font-weight: 800;
}

.result-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

.result-note [data-lucide] {
  width: 14px;
  height: 14px;
}

/* Brands */
.brands-section {
  background: white;
  padding: 4rem 0;
}

/* Keep white for logos */
.brands-section .section-title {
  color: var(--gray-900);
}

.brands-section .section-subtitle {
  color: var(--gray-600);
}

.brands-marquee {
  overflow: hidden;
  white-space: nowrap;
  margin: 3rem 0;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll 60s linear infinite;
  padding: 2rem 0;
  width: max-content;
  /* Ensure container spans full width of content */
}

.brand-badge {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 10rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  /* Prevent items from shrinking */
}

.brand-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.brand-badge img {
  max-height: 3rem;
  max-width: 100%;
  transition: transform 0.3s;
}

.brand-badge:hover img {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.trust-card {
  text-align: center;
}

.trust-icon {
  margin: 0 auto 1rem;
  width: 3rem;
  height: 3rem;
  color: var(--primary-600);
  background: var(--gray-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon [data-lucide] {
  width: 24px;
  height: 24px;
}

.trust-card h3 {
  color: var(--gray-900);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.trust-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-sm);
}

.testimonial-stars {
  color: #F59E0B;
  margin-bottom: 1rem;
  display: flex;
  gap: 2px;
}

.testimonial-stars [data-lucide] {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  display: block;
  font-weight: 600;
  color: white;
}

.author-role {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* FAQ */
.faq-section {
  background: var(--bg-main);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--gray-200);
}

.faq-question [data-lucide] {
  transition: transform 0.3s;
  width: 20px;
  height: 20px;
}

.faq-question[aria-expanded="true"] [data-lucide] {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.25rem;
}

.faq-question[aria-expanded="true"]+.faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(3, 7, 18, 0.95), rgba(3, 7, 18, 0.95)), url('assets/img/service-tools.webp');
  background-size: cover;
  background-position: center;
  border-image: fill 0 linear-gradient(#0003, #000);
  text-align: center;
  padding: 6rem 0;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
}

.footer-logo [data-lucide] {
  color: var(--primary-600);
  width: 24px;
  height: 24px;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--primary-500);
  border-color: var(--primary-500);
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

.footer-contact h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.footer-contact [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--primary-600);
  margin-top: 2px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Utils */
.hidden {
  display: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Logo Utilities */
.object-contain {
  object-fit: contain;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Hero Watermark */
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  width: 80vw;
  max-width: 700px;
}

.hero-watermark img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  /* Make it a pure silhouette if possible */
}

/* Force Hero Context */
.hero {
  position: relative !important;
}

.hero-content {
  position: relative;
  z-index: 2;
}