/* =====================================================
   VOLTRA FREIGHT — Orange + Navy
   Bold editorial / freight logistics aesthetic
   ===================================================== */

:root {
  --orange: #dc2626;
  --orange-dark: #991b1b;
  --orange-soft: #fee2e2;
  --navy: #0c1c3a;
  --navy-2: #162944;
  --navy-3: #233a5c;
  --cream: #f7f4ee;
  --paper: #fbf9f5;
  --ink: #0c1c3a;
  --ink-soft: #5a6474;
  --line: #e3ded4;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: 'Anton', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 0.95;
  color: var(--navy);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Top Ticker Bar ---------- */
.ticker-bar {
  background: var(--navy);
  color: var(--cream);
  padding: 10px 0;
  font-size: 13px;
  overflow: hidden;
  border-bottom: 2px solid var(--orange);
}
.ticker-track {
  display: flex;
  gap: 50px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.ticker-track .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange);
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Navbar ---------- */
.navbar-voltra {
  background: var(--paper);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.brand-voltra {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-voltra .brand-mark {
  display: inline-block;
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 20px;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  font-weight: 700;
}
.brand-voltra sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  vertical-align: super;
  margin-left: 2px;
}

.nav-voltra {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-voltra a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
  position: relative;
}
.nav-voltra a:hover,
.nav-voltra a.active { color: var(--orange); }
.nav-voltra a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--orange);
}

.btn-voltra-primary {
  background: var(--orange);
  color: var(--paper) !important;
  padding: 12px 26px;
  border: none;
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-voltra-primary:hover {
  background: var(--navy);
  transform: translateX(3px);
  color: var(--paper) !important;
}
.btn-voltra-outline {
  background: transparent;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  padding: 10px 26px;
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  display: inline-block;
}
.btn-voltra-outline:hover {
  background: var(--navy);
  color: var(--paper) !important;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--navy);
  padding: 4px 10px;
  display: none;
}

/* ---------- Hero ---------- */
.hero-voltra {
  background: var(--paper);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-voltra::before {
  content: 'FREIGHT';
  position: absolute;
  left: -4%;
  bottom: -30px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(10rem, 30vw, 26rem);
  color: var(--orange-soft);
  line-height: 0.8;
  z-index: 0;
  letter-spacing: -0.03em;
  user-select: none;
}
.hero-voltra .container {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--orange);
}
.hero-voltra h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  margin-bottom: 28px;
}
.hero-voltra h1 .accent {
  color: var(--orange);
  display: inline-block;
  position: relative;
}
.hero-voltra h1 .strike {
  position: relative;
  display: inline-block;
}
.hero-voltra h1 .strike::after {
  content: '';
  position: absolute;
  left: -4%;
  top: 52%;
  width: 108%;
  height: 8px;
  background: var(--orange);
  transform: rotate(-2deg);
}
.hero-voltra .lede {
  font-size: 19px;
  max-width: 540px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 10px solid var(--navy);
  box-shadow: 20px 20px 0 var(--orange);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-stat-card {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: var(--navy);
  color: var(--paper);
  padding: 26px 30px;
  min-width: 220px;
  border-left: 6px solid var(--orange);
}
.hero-stat-card .num {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 4px;
}
.hero-stat-card .lbl {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---------- Marquee Brands ---------- */
.brand-marquee {
  background: var(--navy);
  color: var(--paper);
  padding: 30px 0;
  overflow: hidden;
}
.brand-marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.brand-marquee-track span {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.brand-marquee-track span:hover { opacity: 1; color: var(--orange); }
.brand-marquee-track .sep {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 1;
  flex-shrink: 0;
  align-self: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
section { padding: 90px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--orange);
}
.section-heading {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 18px;
}
.section-lede {
  color: var(--ink-soft);
  max-width: 620px;
  font-size: 17px;
}

/* ---------- Services ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 6px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(12, 28, 58, 0.08);
}
.service-card:hover::before {
  transform: scaleY(1);
}
.service-num {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--paper);
  transform: rotate(-8deg);
}
.service-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 20px;
}
.service-card .arrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s;
}
.service-card:hover .arrow { gap: 14px; }

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--navy);
  padding: 70px 0;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px; height: 300px;
  border: 2px solid rgba(220,38,38,0.3);
  border-radius: 50%;
}
.stats-strip::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 180px; height: 180px;
  background: var(--orange);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(40px);
}
.stat-item {
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-item .n {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--orange);
  line-height: 1;
}
.stat-item .l {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 10px;
}

/* ---------- About / Why Choose ---------- */
.why-wrap {
  background: var(--cream);
}
.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.why-item:last-child { border-bottom: none; }
.why-num {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}
.why-item h4 {
  font-size: 22px;
  margin-bottom: 8px;
}
.why-item p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}

/* ---------- Process / Track ---------- */
.process-wrap {
  position: relative;
}
.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.process-circle {
  width: 90px;
  height: 90px;
  background: var(--paper);
  border: 3px solid var(--orange);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--navy);
  position: relative;
  transition: all 0.35s;
}
.process-step:hover .process-circle {
  background: var(--orange);
  color: var(--paper);
  transform: rotate(-15deg);
}
.process-step h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--ink-soft);
  font-size: 14px;
}
.process-connector {
  display: none;
}
@media (min-width: 992px) {
  .process-connector {
    display: block;
    position: absolute;
    top: 75px;
    left: 60%;
    width: 80%;
    border-top: 2px dashed var(--orange);
    opacity: 0.4;
  }
}

/* ---------- Testimonials ---------- */
.testi-wrap {
  background: var(--navy);
  color: var(--paper);
}
.testi-wrap .section-heading { color: var(--paper); }
.testi-wrap .section-lede { color: rgba(247,244,238,0.7); }
.testi-card {
  background: var(--navy-2);
  border-left: 4px solid var(--orange);
  padding: 40px;
  height: 100%;
  position: relative;
}
.testi-card .quote-mark {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  color: var(--orange);
  line-height: 0.5;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: rgba(247,244,238,0.92);
}
.testi-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-card .avatar {
  width: 52px; height: 52px;
  background: var(--orange);
  color: var(--navy);
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.testi-card .name {
  font-weight: 700;
  font-size: 15px;
}
.testi-card .role {
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: var(--orange);
  color: var(--navy);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: 'MOVE →';
  position: absolute;
  right: -4%;
  top: -20px;
  font-family: 'Anton', sans-serif;
  font-size: 14rem;
  color: rgba(12, 28, 58, 0.08);
  line-height: 1;
}
.cta-strip h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.cta-strip p {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 24px;
}
.btn-cta-dark {
  background: var(--navy);
  color: var(--paper) !important;
  padding: 16px 36px;
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%);
  display: inline-block;
  transition: all 0.25s;
}
.btn-cta-dark:hover {
  background: var(--paper);
  color: var(--navy) !important;
  transform: translateX(5px);
}

/* ---------- Footer ---------- */
.footer-voltra {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0 30px;
}
.footer-voltra h5 {
  color: var(--paper);
  font-size: 17px;
  margin-bottom: 24px;
  letter-spacing: 0.15em;
}
.footer-voltra ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-voltra li {
  margin-bottom: 10px;
}
.footer-voltra a {
  color: rgba(247,244,238,0.7);
  font-size: 14px;
  transition: color 0.2s;
  text-transform: none;
  letter-spacing: 0;
}
.footer-voltra a:hover { color: var(--orange); }
.footer-voltra p {
  font-size: 14px;
  color: rgba(247,244,238,0.7);
  margin-bottom: 18px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 40px; height: 40px;
  border: 1px solid rgba(247,244,238,0.2);
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.social-row a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy);
}
.footer-bottom {
  border-top: 1px solid rgba(247,244,238,0.12);
  padding-top: 24px;
  margin-top: 50px;
  font-size: 13px;
  color: rgba(247,244,238,0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Page Hero (about/services/contact) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--paper);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-bg);
  position: absolute;
  right: -3%;
  bottom: -60px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(8rem, 18vw, 16rem);
  color: rgba(220,38,38,0.12);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 16px;
}
.page-hero .crumbs {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.page-hero .crumbs a { color: var(--paper); opacity: 0.7; }

/* ---------- Contact Page ---------- */
.contact-grid-wrap {
  padding: 90px 0;
}
.contact-info-box {
  background: var(--paper);
  border-left: 6px solid var(--orange);
  padding: 34px;
  margin-bottom: 24px;
  transition: all 0.25s;
}
.contact-info-box:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 30px rgba(12,28,58,0.08);
}
.contact-info-box .lbl {
  font-family: 'Anton', sans-serif;
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
}
.contact-info-box .val {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.3;
}

.contact-form-box {
  background: var(--navy);
  color: var(--paper);
  padding: 50px 44px;
  position: relative;
}
.contact-form-box h3 {
  color: var(--paper);
  font-size: 34px;
  margin-bottom: 10px;
}
.contact-form-box p { color: rgba(247,244,238,0.7); margin-bottom: 30px; font-size: 15px; }
.contact-form-box .form-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-form-box .form-control {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(247,244,238,0.25);
  border-radius: 0;
  padding: 10px 0;
  color: var(--paper);
  font-size: 15px;
}
.contact-form-box .form-control:focus {
  border-bottom-color: var(--orange);
  outline: none;
  box-shadow: none;
  background: transparent;
  color: var(--paper);
}
.contact-form-box .form-control::placeholder {
  color: rgba(247,244,238,0.4);
}
.contact-form-box textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.map-band iframe {
  width: 100%;
  height: 460px;
  border: 0;
  filter: grayscale(40%) contrast(1.1);
  display: block;
}

/* ---------- Services Page ---------- */
.service-row {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.service-row-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(6rem, 14vw, 12rem);
  color: var(--orange-soft);
  line-height: 0.8;
}
.service-row h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}
.service-row .feat-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.service-row .feat-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-row .feat-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .nav-voltra { display: none; }
  .menu-btn { display: inline-block; }
  .nav-voltra.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px;
    gap: 18px;
    border-top: 1px solid var(--line);
    border-bottom: 3px solid var(--orange);
  }
  .hero-stat-card { left: 20px; bottom: -30px; }
}
@media (max-width: 767px) {
  section { padding: 60px 0; }
  .hero-voltra { padding: 50px 0 80px; }
  .hero-voltra::before { font-size: 9rem; }
  .hero-image { margin-top: 40px; box-shadow: 12px 12px 0 var(--orange); border-width: 6px; }
  .hero-stat-card { position: static; margin-top: 20px; }
  .cta-strip::before { font-size: 7rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:last-child { border-bottom: none; }
  .contact-form-box { padding: 36px 24px; }
}

/* ============================================================
   REDESIGN — Home page v2 (cinematic + bento)
   ============================================================ */

/* ---------- Cinematic hero ---------- */
.hero-cinema {
  position: relative;
  min-height: 100vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-cinema .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-cinema .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}
.hero-cinema .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,28,58,0.3) 0%, rgba(12,28,58,0.85) 100%),
    linear-gradient(90deg, rgba(12,28,58,0.75) 0%, rgba(12,28,58,0.2) 60%, transparent 100%);
  z-index: 1;
}
.hero-cinema .container { position: relative; z-index: 2; }

.hero-cinema .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #ffb8b8;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-cinema .hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(220,38,38,0.7);
  animation: heroPulse 2s infinite;
}
@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

.hero-cinema h1 {
  font-size: clamp(3rem, 9vw, 8rem);
  color: var(--paper);
  line-height: 0.92;
  margin-bottom: 28px;
  max-width: 900px;
}
.hero-cinema h1 .red {
  color: var(--orange);
  display: inline-block;
  position: relative;
}
.hero-cinema h1 .red::after {
  content: '.';
  color: var(--orange);
}
.hero-cinema .hero-lede {
  font-size: 19px;
  color: rgba(247,244,238,0.85);
  max-width: 560px;
  margin-bottom: 42px;
}

.btn-red-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--paper) !important;
  padding: 16px 32px;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-red-solid:hover {
  background: var(--paper);
  color: var(--navy) !important;
  gap: 18px;
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--paper) !important;
  border: 2px solid rgba(247,244,238,0.3);
  padding: 14px 30px;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-ghost-light:hover {
  border-color: var(--orange);
  color: var(--orange) !important;
}

.hero-cta-new {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}

/* Corner meta */
.hero-meta {
  position: absolute;
  bottom: 50px;
  right: 40px;
  z-index: 3;
  text-align: right;
  color: var(--paper);
  opacity: 0.8;
}
.hero-meta .big {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-meta .sm {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--paper);
  opacity: 0.7;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--paper);
  margin: 16px auto 0;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Sticky transparent nav variant */
.nav-cinema {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent !important;
  border-bottom: 1px solid rgba(247,244,238,0.1);
  padding: 22px 0;
}
.nav-cinema .brand-voltra {
  color: var(--paper);
}
.nav-cinema .nav-voltra a {
  color: var(--paper);
}
.nav-cinema .nav-voltra a:hover,
.nav-cinema .nav-voltra a.active { color: var(--orange); }
.nav-cinema .menu-btn { color: var(--paper); }

/* ---------- Stats ribbon (on white) ---------- */
.stats-ribbon {
  background: var(--paper);
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 3;
  margin-top: -60px;
  box-shadow: 0 -30px 60px rgba(12,28,58,0.2);
}
.stats-ribbon .row {
  --bs-gutter-x: 0;
}
.stats-ribbon-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--line);
}
.stats-ribbon-item:last-child { border-right: none; }
.stats-ribbon-item .n {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--orange);
  line-height: 1;
}
.stats-ribbon-item .l {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
  font-weight: 600;
}

/* ---------- About split ---------- */
.about-split {
  padding: 110px 0;
}
.about-img-col {
  position: relative;
}
.about-img-col .main {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-img-col .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-col .patch {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: var(--orange);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--paper);
  z-index: 2;
}
.about-img-col .patch .yrs {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  line-height: 1;
}
.about-img-col .patch .txt {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-split h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 24px;
}
.about-split .body-text {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-sig .ceo-name {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  color: var(--navy);
}
.about-sig .ceo-role {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- Bento services ---------- */
.bento-wrap {
  background: var(--cream);
  padding: 100px 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.bento-card {
  background: var(--paper);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--line);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12,28,58,0.1);
  border-color: var(--orange);
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--orange-soft);
  border-radius: 0 0 0 100%;
  transition: all 0.3s;
}
.bento-card:hover::before { width: 120px; height: 120px; }
.bento-card .num {
  font-family: 'Anton', sans-serif;
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.bento-card h3 {
  font-size: 30px;
  margin-bottom: 14px;
}
.bento-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 20px;
}
.bento-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: gap 0.25s, color 0.25s;
}
.bento-card:hover .arrow { gap: 14px; color: var(--orange); }
.bento-card .svc-icon-big {
  width: 70px;
  height: 70px;
  background: var(--orange);
  color: var(--paper);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
/* Featured big card */
.bento-big {
  grid-row: span 2;
  background: var(--navy);
  color: var(--paper);
  border: none;
  background-image:
    linear-gradient(135deg, rgba(12,28,58,0.85) 0%, rgba(12,28,58,0.9) 100%),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1200&q=80');
  background-size: cover;
  background-position: center;
}
.bento-big::before {
  background: var(--orange);
}
.bento-big h3 { color: var(--paper); font-size: 44px; }
.bento-big p { color: rgba(247,244,238,0.8); font-size: 17px; }
.bento-big .num { color: var(--orange); }
.bento-big .arrow { color: var(--paper); }
.bento-big:hover .arrow { color: var(--orange); }
.bento-big .svc-icon-big {
  width: 84px; height: 84px;
}

/* ---------- Fleet showcase ---------- */
.fleet-wrap {
  padding: 110px 0;
}
.fleet-card {
  background: var(--paper);
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--line);
  height: 100%;
  position: relative;
}
.fleet-card:hover {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
  transform: translateY(-6px);
}
.fleet-card:hover h4 { color: var(--paper); }
.fleet-card:hover .spec { color: rgba(247,244,238,0.7); }
.fleet-img {
  height: 110px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--navy);
  transition: color 0.3s;
}
.fleet-card:hover .fleet-img { color: var(--orange); }
.fleet-card h4 {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--navy);
  transition: color 0.3s;
}
.fleet-tag {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.fleet-card:hover .fleet-tag {
  background: var(--orange);
  color: var(--paper);
}
.spec {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 6px 0;
  border-top: 1px dashed var(--line);
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
}
.fleet-card:hover .spec { border-color: rgba(247,244,238,0.2); }

/* ---------- Why us — alternating rows ---------- */
.why-alt {
  background: var(--cream);
  padding: 100px 0;
}
.why-alt-row {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.why-alt-row:last-child { border-bottom: none; }
.why-alt-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(6rem, 12vw, 10rem);
  color: var(--orange);
  line-height: 0.85;
  opacity: 0.3;
}
.why-alt-row h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
}
.why-alt-row p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 14px;
}
.why-alt-img {
  aspect-ratio: 4/3;
  background: var(--navy);
  overflow: hidden;
  position: relative;
  border-left: 6px solid var(--orange);
}
.why-alt-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Big testimonial ---------- */
.mega-testi {
  background: var(--navy);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.mega-testi::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 6%;
  font-family: 'Anton', sans-serif;
  font-size: 30rem;
  color: var(--orange);
  opacity: 0.15;
  line-height: 0.8;
}
.mega-testi .stars {
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 5px;
  margin-bottom: 28px;
}
.mega-testi blockquote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 40px;
  max-width: 1100px;
}
.mega-testi .author-line {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mega-testi .avatar-big {
  width: 68px; height: 68px;
  background: var(--orange);
  color: var(--navy);
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.mega-testi .who .name {
  font-weight: 700;
  font-size: 17px;
}
.mega-testi .who .role {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- Client logo strip ---------- */
.clients-strip {
  background: var(--paper);
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.clients-strip .label-line {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}
.clients-row {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.clients-row span {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: all 0.2s;
}
.clients-row span:hover {
  opacity: 1;
  color: var(--orange);
}

/* ---------- Final red CTA band ---------- */
.red-cta {
  background: var(--orange);
  color: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.red-cta::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  border: 2px solid rgba(247,244,238,0.2);
  border-radius: 50%;
}
.red-cta::after {
  content: '';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px; height: 280px;
  border: 2px solid rgba(247,244,238,0.15);
  border-radius: 50%;
}
.red-cta h2 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 20px;
}
.red-cta p {
  color: rgba(247,244,238,0.9);
  font-size: 19px;
  max-width: 520px;
  margin-bottom: 32px;
}
.btn-on-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--paper) !important;
  padding: 18px 36px;
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-on-red:hover {
  background: var(--paper);
  color: var(--navy) !important;
  gap: 18px;
}

/* ---------- Responsive for v2 ---------- */
@media (max-width: 991px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-big { grid-row: auto; }
  .hero-meta { display: none; }
  .scroll-cue { display: none; }
  .stats-ribbon { margin-top: 0; }
  .stats-ribbon-item { border-right: none; border-bottom: 1px solid var(--line); }
  .stats-ribbon-item:last-child { border-bottom: none; }
}
@media (max-width: 767px) {
  .hero-cinema { min-height: 620px; padding: 120px 0 80px; }
  .hero-cinema h1 { font-size: 3rem; }
  .about-img-col .patch { width: 100px; height: 100px; top: -15px; left: -15px; }
  .about-img-col .patch .yrs { font-size: 38px; }
  .why-alt-row { padding: 40px 0; }
  .mega-testi { padding: 70px 0; }
  .red-cta::before, .red-cta::after { display: none; }
}