/* ============================================
   LOBO EXECUTIVE PROTECTION
   Premium Dark Theme Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #1E1E1E;
  --bg-elevated: #252525;
  --bg-input: #161616;

  --red-deep: #6B1520;
  --red-primary: #8B1A1A;
  --red-accent: #C41E3A;
  --red-bright: #E63946;
  --red-glow: rgba(196, 30, 58, 0.12);
  --red-glow-strong: rgba(196, 30, 58, 0.25);

  --text-primary: #F0F0F0;
  --text-secondary: #B0B0B0;
  --text-muted: #888888;
  --text-accent: #C41E3A;

  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-medium: rgba(255, 255, 255, 0.18);
  --border-red: rgba(196, 30, 58, 0.3);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

picture {
  display: block;
  width: 100%;
  height: 100%;
}

picture img {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--red-deep);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red-primary);
}

/* --- Grain Overlay --- */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 80px;
  height: auto;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-line {
  width: 120px;
  height: 2px;
  background: var(--bg-elevated);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: var(--red-accent);
  animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes loaderSlide {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* --- Typography --- */
.display-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
}

h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red-accent);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--red-accent);
}

/* --- Layout --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-secondary);
}

/* --- Reveal Animation Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
}

.stagger-item {
  opacity: 0;
  transform: translateY(30px);
}

.line-reveal {
  transform: scaleX(0);
  transform-origin: left;
}

.char-reveal .char {
  opacity: 0;
  transform: translateY(100%);
  display: inline-block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--red-accent);
  color: #fff;
  border: 1px solid var(--red-accent);
}

.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 8px 32px rgba(196, 30, 58, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-outline:hover {
  border-color: var(--red-accent);
  color: var(--red-accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 0;
  letter-spacing: 0.15em;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-ghost:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-ghost .arrow {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-ghost:hover .arrow {
  transform: translateX(6px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s var(--ease-out-expo);
  display: flex;
  align-items: center;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  height: 70px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  font-weight: 500;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red-accent);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .blackline-link {
  color: var(--red-accent);
  font-weight: 600;
}

.nav-links .blackline-link:hover {
  color: var(--red-bright);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta .btn {
  padding: 12px 24px;
  font-size: 0.75rem;
}

.nav-phone {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px 0;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu a:hover {
  color: var(--red-accent);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.75) 40%,
    rgba(8, 8, 8, 0.85) 70%,
    rgba(8, 8, 8, 0.95) 100%
  );
}

.hero-wolf-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 80%);
}

.hero-wolf-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 40px;
}

.hero-label {
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
}

.hero-accent-line {
  width: 80px;
  height: 3px;
  background: var(--red-accent);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-accent), transparent);
  opacity: 0.4;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  color: var(--red-accent);
}

.trust-item-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-primary);
}

.trust-item-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* --- About / Value Prop --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-red);
  z-index: 1;
  pointer-events: none;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-feature .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-glow);
  border: 1px solid var(--red-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature .check svg {
  width: 10px;
  height: 10px;
  color: var(--red-accent);
}

/* --- Services --- */
.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-header h2 {
  margin-bottom: 16px;
}

.services-header p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--red-accent);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--red-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.3s var(--ease-out-expo);
}

.service-card:hover .service-link {
  gap: 14px;
}

/* --- Cinematic Wolf Divider --- */
.wolf-divider {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--bg-primary);
}

.wolf-divider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wolf-divider-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35) contrast(1.1);
}

.wolf-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--red-glow) 0%, transparent 70%);
}

.wolf-divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.wolf-divider-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.wolf-divider-content cite {
  display: block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --- Blackline Teaser --- */
.blackline-teaser {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #0A0408 50%, var(--bg-primary) 100%);
}

.blackline-teaser::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-accent), transparent);
  opacity: 0.3;
}

.blackline-teaser::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-accent), transparent);
  opacity: 0.3;
}

.blackline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.blackline-content .label {
  margin-bottom: 16px;
}

.blackline-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.blackline-content h2 span {
  color: var(--red-accent);
}

.blackline-content p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.blackline-features-list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blackline-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.blackline-features-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.blackline-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.blackline-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.blackline-image::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid var(--border-red);
  z-index: 1;
  pointer-events: none;
}

.blackline-image .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--red-accent);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 2;
}

/* --- Why Choose --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 4px;
  padding: 48px 40px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.why-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 40px var(--red-glow);
}

.why-card-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--red-accent);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Image Gallery / Showcase --- */
.showcase {
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.showcase-track {
  display: flex;
  gap: 20px;
  animation: showcaseScroll 30s linear infinite;
}

.showcase-track img {
  width: 400px;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
  flex-shrink: 0;
}

.showcase-track img:hover {
  filter: grayscale(0%);
}

@keyframes showcaseScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-420px * 4)); }
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--red-glow);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red-accent);
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-text .detail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-detail-text .detail-value {
  font-size: 1rem;
  color: var(--text-primary);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 48px;
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red-accent);
  box-shadow: 0 0 0 3px var(--red-glow);
}

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

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.visible {
  display: block;
}

.form-success .success-icon {
  width: 60px;
  height: 60px;
  background: var(--red-glow);
  border: 2px solid var(--red-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--red-accent);
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-error {
  color: var(--red-bright);
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--red-bright);
}

.form-group.error .form-error {
  display: block;
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-brand .footer-logo-lockup img {
  height: 52px;
  width: auto;
}

.footer-brand .footer-logo-lockup .footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-brand .footer-logo-lockup .footer-logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: var(--text-primary);
}

.footer-brand .footer-logo-lockup .footer-logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-primary);
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--red-accent);
  color: var(--red-accent);
}

.footer-social a svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   BLACKLINE PAGE SPECIFIC STYLES
   ============================================ */

.blackline-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #080808;
}

.blackline-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.blackline-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.1);
}

.blackline-hero .hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.88) 0%,
    rgba(8, 8, 8, 0.7) 40%,
    rgba(8, 8, 8, 0.8) 70%,
    rgba(8, 8, 8, 0.92) 100%
  );
}

.blackline-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blackline-hero-content .label {
  margin-bottom: 20px;
}

.blackline-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 24px;
}

.blackline-hero-content h1 span {
  color: var(--red-accent);
}

.blackline-hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* How It Works */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.how-it-works-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, var(--border-subtle), var(--red-accent), var(--border-subtle));
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--red-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--red-accent);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Service Options */
.service-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.option-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.option-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--red-accent);
}

.option-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.option-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Vehicle Classes */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.vehicle-card:hover {
  border-color: var(--border-red);
}

.vehicle-card h4 {
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.vehicle-card p {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.vehicle-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--red-accent);
}

/* Protection Options */
.protection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.protection-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.protection-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 40px var(--red-glow);
}

.protection-card.featured {
  border-color: var(--red-accent);
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.06) 0%, var(--bg-card) 100%);
}

.protection-card.featured::before {
  content: 'MOST REQUESTED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-accent);
  color: #fff;
  padding: 4px 16px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.protection-card h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.protection-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.protection-card ul li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.protection-card ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--red-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Booking Form */
.booking-section {
  background: var(--bg-secondary);
}

.booking-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 56px;
}

.booking-form-wrap h3 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.booking-form-wrap > p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  color: var(--red-accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--text-muted);
  transition: transform 0.3s var(--ease-out-expo);
}

.faq-icon::before {
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Performance --- */
img {
  content-visibility: auto;
}

.hero-bg img,
.about-image img,
.blackline-image img {
  will-change: transform;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .container, .container-narrow {
    padding: 0 24px;
  }

  .section {
    padding: 72px 0;
  }

  .about-grid,
  .blackline-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .how-it-works-grid::before {
    display: none;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  /* --- Nav Mobile --- */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .nav-logo img {
    height: 36px;
  }

  .nav-logo-title {
    font-size: 0.95rem;
  }

  .nav-logo-sub {
    font-size: 0.5rem;
  }

  /* --- Hero Mobile --- */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 20px;
  }

  .display-text {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    text-align: center;
    width: 100%;
  }

  .hero-scroll-indicator {
    bottom: 24px;
  }

  .hero-wolf-bg {
    display: none;
  }

  /* --- Trust Bar Mobile --- */
  .trust-bar {
    padding: 40px 0;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .trust-item-value {
    font-size: 1.5rem;
  }

  .trust-item-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  /* --- About Mobile --- */
  .about-image img {
    height: 280px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  /* --- Services Mobile --- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .services-header h2,
  .section-header-animate h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  /* --- Wolf Divider Mobile --- */
  .wolf-divider {
    padding: 80px 0;
  }

  .wolf-divider-content blockquote {
    font-size: clamp(1.3rem, 4vw, 2rem);
  }

  /* --- Blackline Teaser Mobile --- */
  .blackline-teaser {
    padding: 60px 0;
  }

  .blackline-content h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .blackline-image img {
    height: 300px;
  }

  /* --- Image Showcase Mobile --- */
  .showcase {
    padding: 60px 0;
  }

  .showcase-track img {
    width: 280px;
    height: 180px;
  }

  /* --- Why Grid Mobile --- */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 32px 24px;
  }

  .why-card-number {
    font-size: 2.2rem;
  }

  /* --- Contact Mobile --- */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-wrap,
  .booking-form-wrap {
    padding: 28px 20px;
  }

  .contact-info h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  /* Form inputs - bigger tap targets on mobile */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 16px;
    font-size: 16px; /* prevents iOS zoom */
  }

  /* --- Service Options Mobile --- */
  .service-options-grid,
  .protection-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .option-card {
    padding: 28px 24px;
  }

  .protection-card {
    padding: 32px 24px;
  }

  .protection-card.featured {
    order: -1; /* Move featured card to top on mobile */
  }

  /* --- Vehicle Grid Mobile --- */
  .vehicle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .vehicle-card {
    padding: 24px 16px;
  }

  /* --- How It Works Mobile --- */
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }

  .step-card .step-number {
    margin: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  /* --- FAQ Mobile --- */
  .faq-question {
    padding: 20px 0;
    font-size: 0.9rem;
    gap: 12px;
  }

  /* --- Footer Mobile --- */
  .footer {
    padding: 60px 0 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-brand .footer-logo-lockup img {
    height: 42px;
  }

  /* --- Blackline Hero Mobile --- */
  .blackline-hero {
    min-height: 100svh;
    padding: 120px 0 80px;
  }

  .blackline-hero-content h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .blackline-hero-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container, .container-narrow {
    padding: 0 16px;
  }

  .section {
    padding: 50px 0;
  }

  .display-text {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .trust-item-icon {
    width: 28px;
    height: 28px;
  }

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

  .btn {
    padding: 14px 24px;
    font-size: 0.8rem;
    width: 100%;
  }

  .section-label::before {
    width: 24px;
  }

  .label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  /* Tighten card padding for small screens */
  .service-card,
  .option-card,
  .why-card {
    padding: 24px 20px;
  }

  .about-image img {
    height: 220px;
  }

  .blackline-image img {
    height: 240px;
  }

  .showcase-track img {
    width: 220px;
    height: 150px;
  }

  .contact-detail-text .detail-value {
    font-size: 0.9rem;
    word-break: break-all;
  }

  .wolf-divider {
    padding: 60px 0;
  }

  .step-card .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* Fix for iOS safe areas */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer-bottom {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-menu {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

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

  .showcase-track {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .stagger-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
