/* Page Hero (inner pages) */
.page-hero {
  background: var(--color-dark);
  padding: var(--space-2xl) 0;
  border-bottom: 3px solid var(--color-red);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--color-red);
}
.page-hero__content { max-width: 700px; }
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.page-hero__subtitle {
  margin-top: var(--space-sm);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
}

/* Prose content styles */
.prose {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-gray-700);
}
.prose h1, .prose h2, .prose h3, .prose h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: -0.02em;
  margin: var(--space-xl) 0 var(--space-sm);
  line-height: 1.2;
}
.prose h2 { font-size: 1.7rem; border-left: 4px solid var(--color-red); padding-left: var(--space-sm); }
.prose h3 { font-size: 1.25rem; }
.prose p  { margin-bottom: var(--space-md); }
.prose ul, .prose ol {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}
.prose li { margin-bottom: 6px; }
.prose a  { color: var(--color-red); text-decoration: underline; text-decoration-color: rgba(226,0,26,0.3); }
.prose a:hover { text-decoration-color: var(--color-red); }
.prose strong { font-weight: 700; color: var(--color-black); }
.prose blockquote {
  border-left: 4px solid var(--color-red);
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-gray-100);
  font-style: italic;
  color: var(--color-gray-700);
}
.prose img {
  border-radius: 2px;
  margin: var(--space-lg) auto;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: var(--space-lg) 0;
}
.prose th {
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}
.prose td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-gray-700);
}
.prose tr:hover td { background: var(--color-gray-100); }

/* ── Hero Slider ── */
.hero-slider { position: relative; height: 600px; overflow: hidden; background: #111; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; z-index: 1; pointer-events: auto; }
.hero-slide__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center; }
video.hero-slide__bg { object-fit: cover; }
.hero-slide__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%); z-index: 1; }
.hero-slide__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; max-width: 650px; padding-top: 2rem; padding-bottom: 2rem; }
.hero-slider__prev, .hero-slider__next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.5rem; line-height: 1; transition: background 0.2s; }
.hero-slider__prev { left: 1.5rem; }
.hero-slider__next { right: 1.5rem; }
.hero-slider__prev:hover, .hero-slider__next:hover { background: rgba(226,0,26,0.7); }
.hero-slider__dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 0.5rem; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; padding: 0; }
.hero-dot.active { background: #E2001A; transform: scale(1.3); }

/* ── Intro Section ── */
.intro-section { padding: 5rem 0; background: #fff; }
.intro-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.intro-section__desc { color: #4A4A4A; line-height: 1.8; margin-bottom: 1rem; }
.intro-section__features { display: flex; flex-direction: column; gap: 1.5rem; }
.intro-feat { display: flex; gap: 1rem; align-items: flex-start; }
.intro-feat__icon { flex-shrink: 0; width: 44px; height: 44px; background: #FFF0F0; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #E2001A; font-size: 1.2rem; }
.intro-feat h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; color: #111; }
.intro-feat p { font-size: 0.85rem; color: #767676; line-height: 1.6; margin: 0; }

/* ── Highlights ── */
.highlights-section { padding: 5rem 0; background: #FAFAFA; }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.highlight-card { background: #fff; border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; border: 1px solid #eee; transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.highlight-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.highlight-card__img { aspect-ratio: 4/3; overflow: hidden; }
.highlight-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.highlight-card:hover .highlight-card__img img { transform: scale(1.05); }
.highlight-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.highlight-card__tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #E2001A; }
.highlight-card__body h3 { font-size: 0.95rem; font-weight: 600; line-height: 1.4; color: #111; margin: 0; }
.highlight-card__body p { font-size: 0.83rem; color: #767676; line-height: 1.6; margin: 0; flex: 1; }
.highlight-card__link { font-size: 0.82rem; font-weight: 600; color: #E2001A; margin-top: 0.5rem; }

/* ── Safety Section ── */
.safety-section { background: #F0F0F0; }
.safety-section__inner { display: grid; grid-template-columns: 1fr 1fr; }
.safety-section__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.safety-section__content { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.safety-section__content p { color: #4A4A4A; line-height: 1.8; margin-bottom: 1rem; }

/* ── Tech Section ── */
.tech-section { padding: 5rem 0; background: #111; }
.tech-section .section-eyebrow { color: #E2001A; }
.tech-section .section-title { color: #fff; }
.tech-section .section-subtitle { color: #BBBBBB; }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.tech-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 2rem; text-decoration: none; color: #fff; transition: background 0.2s, border-color 0.2s; display: flex; flex-direction: column; gap: 0.75rem; }
.tech-card:hover { background: rgba(226,0,26,0.1); border-color: #E2001A; }
.tech-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin: 0; }
.tech-card p { font-size: 0.85rem; color: #BBBBBB; line-height: 1.7; margin: 0; }

/* ── Intro section alignment fix ── */
.intro-section__inner {
  align-items: center !important;
}
.intro-section__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-section__features {
  justify-content: center;
}

/* ── Intro section button fix ── */
.intro-section__text .btn {
  align-self: flex-start !important;
  width: auto !important;
}

/* ================================================================
   TECH SLIDER & INDUSTRY SLIDER — shared base
   ================================================================ */
.tech-section {
  padding: 5rem 0;
  background: #f8f8f8 !important;
}
.tech-section .section-eyebrow { color: #E2001A; }
.tech-section .section-title { color: #111 !important; }
.tech-section .section-subtitle { color: #555 !important; }

.industries-section {
  background: #ffffff !important;
}
.industries-section .section-eyebrow { color: #E2001A; }
.industries-section .section-title { color: #111 !important; }
.industries-section .section-subtitle { color: #555 !important; }

/* Shared slider wrap */
.tech-slider-wrap,
.ind-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Shared slider track */
.tech-slider,
.ind-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding-bottom: 0.5rem;
}
.tech-slider::-webkit-scrollbar,
.ind-slider::-webkit-scrollbar { display: none; }

/* Shared slider buttons */
.tech-slider-btn,
.ind-slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #E2001A;
  color: #E2001A;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.tech-slider-btn:hover,
.ind-slider-btn:hover {
  background: #E2001A;
  color: #fff;
}

/* ── TECH CARDS ── */
.tech-slider .tech-card {
  flex: 0 0 340px;
  min-width: 340px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.tech-slider .tech-card:hover {
  box-shadow: 0 8px 24px rgba(226,0,26,0.12);
  transform: translateY(-3px);
  border-color: #E2001A;
}
.tech-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.tech-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.tech-slider .tech-card:hover .tech-card__img img { transform: scale(1.05); }
.tech-slider .tech-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111 !important;
  padding: 1rem 1.25rem 0.25rem;
  margin: 0;
}
.tech-slider .tech-card p {
  font-size: 0.85rem;
  color: #555 !important;
  line-height: 1.6;
  padding: 0 1.25rem 1.25rem;
  margin: 0;
}

/* ── INDUSTRY CARDS ── */
.ind-slider .industry-card {
  flex: 0 0 340px;
  min-width: 340px;
  height: 240px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  flex-shrink: 0;
}
.industry-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.ind-slider .industry-card:hover .industry-card__img { transform: scale(1.07); }
.industry-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.industry-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
}

/* ── Stacker crane / Shuttles page tweaks ── */
.hero-content { margin-top: 0; }
.hero-description { margin-top: 0.3rem; margin-bottom: 0.6rem; font-size: 1.05rem; }
.hero-benefits { margin-top: 0.55rem; }
.benefit-item h3 { font-size: 0.98rem; margin-bottom: 0.25rem; }
.benefit-item p { font-size: 0.92rem; }
.benefit-item p, .cta-benefit p { white-space: normal; word-break: break-word; }

.solutions-section { padding: 1rem 0; background: transparent !important; }
.solutions-section .container { max-width: 1140px; width: 100%; }
.solution-item { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-areas: "content image"; gap: 0.9rem; align-items: center; margin: 0.7rem 0; padding: 0.7rem 0; border-bottom: 1px solid #eee; }
.solution-item:last-child { border-bottom: none; }
.solution-content { grid-area: content; display: flex; flex-direction: column; justify-content: flex-start; line-height: 1.42; }
.solution-content h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.solution-content .solution-requirements h4, .solution-content .solution-details h4 { margin: 0.3rem 0 0.4rem; font-size: 0.95rem; }
.solution-content ul { margin: 0.15rem 0 0.55rem 0.8rem; padding-left: 0.8rem; }
.solution-content ul li { margin-bottom: 0.35rem; }
.solution-content p { margin: 0 0 0.45rem; }
.solution-image { grid-area: image; display: flex; align-items: center; justify-content: center; }
.solution-image img { width: 100%; min-height: 200px; max-height: 300px; object-fit: cover; border-radius: 8px; }

@media (max-width: 980px) {
  .solutions-section { width: 100%; margin: 0; padding: 1rem 0; }
  .solutions-section .container { width: 100% !important; max-width: none !important; padding: 0 0.9rem !important; margin: 0 !important; }
  .solution-item { width: 100% !important; grid-template-columns: 1fr !important; grid-template-areas: "image" "content" !important; margin: 0.7rem 0 !important; }
  .solution-image { order: -1 !important; margin-bottom: 0.5rem !important; width: 100% !important; }
  .solution-image img { max-height: none !important; height: auto !important; width: 100% !important; }
  .solution-content { width: 100% !important; order: 0 !important; }
  
  .hero-section { width: 100%; }
  .hero-section .container { width: 100% !important; max-width: none !important; padding: 0 0.9rem !important; }
  
  .cta-section { width: 100%; }
  .cta-content { width: 100% !important; max-width: none !important; padding: 0 0.9rem !important; }
  
  .hero-benefits { grid-template-columns: 1fr; }
  .cta-benefits { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
}

.hero-benefits { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.65rem; margin-top: 1rem; }
.benefit-item { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 0.8rem; display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.4; }
.benefit-item h3 { font-size: 1rem; margin: 0 0 0.3rem; }
.benefit-item p { margin: 0; color: #4d4d4d; }

.cta-section { padding: 1.5rem 0; background: #fafafa; }
.cta-content { max-width: 900px; }
.cta-benefits { margin: 1rem 0 0.6rem; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.7rem; }
.cta-benefit { background: #fff; border: 1px solid #eee; padding: 0.85rem; border-radius: 10px; text-align: left; }
.cta-benefit h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.cta-benefit p { margin: 0; }

.cta-actions { margin: 0.85rem 0 0.6rem; justify-content: center; }

@media (max-width: 980px) {
  .solution-item { grid-template-columns: 1fr; }
  .solution-image img { max-height: none; width: 100%; }
  .hero-benefits { grid-template-columns: 1fr; }
  .cta-benefits { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
 }

.cta-content { max-width: 940px; margin: 0 auto; text-align: center; }
.cta-actions { margin: 1rem 0 0.7rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; }
.cta-button { display: inline-flex; align-items: center; justify-content: center; width: calc(50% - 0.35rem); min-width: 180px; padding: 0.75rem 1.2rem; border-radius: 6px; border: 1px solid transparent; font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: all 0.2s ease; }
.cta-button.primary { background: #E2001A; color: #fff; border-color: #d10016; }
.cta-button.secondary { background: #fff; color: #E2001A; border-color: #E2001A; }
.cta-button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.cta-button.secondary:hover { background: #fee0e3; }
.cta-button .cta-icon { display: inline-flex; margin-right: 0.5rem; font-size: 1.1rem; }
.cta-button.primary .cta-icon { color: #fff; }
.cta-button.secondary .cta-icon { color: #E2001A; }
@media (max-width: 980px) {
  .cta-button { width: 100%; }
}

.cta-contact { color: #333 !important; }
.cta-contact a { color: #111 !important; text-decoration: underline; }

@media (max-width: 980px) {
  .solution-item { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
 }

}
.industry-card__title {
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.industry-card__arrow {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
}
.ind-slider .industry-card:hover .industry-card__arrow { color: #fff; }

/* ================================================================
   HERO SLIDER — permanent CSS
   ================================================================ */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #111;
  -webkit-overflow-scrolling: touch;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; pointer-events: auto; }
.hero-slide__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
video.hero-slide__bg {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-slide__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: -webkit-linear-gradient(left, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  z-index: 1;
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 650px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-slider__prev, .hero-slider__next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.5rem; line-height: 1; transition: background 0.2s; }
.hero-slider__prev { left: 1.5rem; }
.hero-slider__next { right: 1.5rem; }
.hero-slider__dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 0.5rem; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; }
.hero-dot.active { background: #E2001A; transform: scale(1.3); }

/* ================================================================
   RESPONSIVE MOBILE
   ================================================================ */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-section__inner { grid-template-columns: 1fr; gap: 2rem; }
  .intro-section__features { padding-top: 0 !important; }
  .safety-section__inner { grid-template-columns: 1fr; }
  .safety-section__image { height: 280px; }
  .safety-section__content { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
  .topbar { display: none !important; }
  .navbar__nav { display: none !important; }
  .navbar__nav.is-open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 60px !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: #fff !important;
    z-index: 9999 !important;
    padding: 1rem 1.5rem !important;
    overflow-y: auto !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
  }
  .navbar__nav.is-open .nav-item { border-bottom: 1px solid #eee !important; position: static !important; }
  .navbar__nav.is-open .nav-item > a { padding: 1rem 0 !important; display: block !important; font-size: 1rem !important; color: #111 !important; }
  .navbar__nav.is-open .mega-menu { display: none !important; }
  .navbar__toggle { display: flex !important; }
  .btn-contact { display: none !important; }

  .hero-slider { height: 420px !important; }
  .hero-slide__content { max-width: 100% !important; padding: 1.5rem !important; }
  .hero__eyebrow { font-size: 0.7rem !important; }
  .hero__title { font-size: 1.6rem !important; line-height: 1.3 !important; }
  .hero__subtitle { font-size: 0.85rem !important; display: none; }
  .hero__actions { flex-direction: row !important; gap: 0.75rem !important; flex-wrap: wrap; }
  .hero__actions .btn { font-size: 0.8rem !important; padding: 0.6rem 1rem !important; }
  .hero-slider__prev { left: 0.5rem !important; width: 36px !important; height: 36px !important; font-size: 1.2rem !important; }
  .hero-slider__next { right: 0.5rem !important; width: 36px !important; height: 36px !important; font-size: 1.2rem !important; }

  .stats-strip__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-item__number { font-size: 1.8rem !important; }

  .intro-section { padding: 2.5rem 0 !important; }
  .intro-section__inner { grid-template-columns: 1fr !important; gap: 1.5rem !important; }

  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .highlights-grid { grid-template-columns: 1fr !important; }

  .safety-section__inner { grid-template-columns: 1fr !important; }
  .safety-section__image { height: 200px !important; }
  .safety-section__content { padding: 2rem 1.25rem !important; }
  .safety-section__content .section-title { font-size: 1.5rem !important; }

  .tech-slider .tech-card { flex: 0 0 240px !important; min-width: 240px !important; }
  .ind-slider .industry-card { flex: 0 0 260px !important; min-width: 260px !important; height: 180px !important; }

  .cta-banner__inner { flex-direction: column !important; gap: 1.5rem !important; text-align: center !important; }
  .cta-banner__actions { justify-content: center !important; flex-wrap: wrap !important; }

  .container { padding-left: 1rem !important; padding-right: 1rem !important; }
  .section-title { font-size: 1.6rem !important; }
}

@media (max-width: 480px) {
  .hero-slider { height: 360px !important; }
  .hero__title { font-size: 1.3rem !important; }
  .products-grid { grid-template-columns: 1fr !important; }
  .stat-item__number { font-size: 1.5rem !important; }
  .section-title { font-size: 1.4rem !important; }
}

/* ── Safari iOS fix — hide inactive slides properly ── */
.hero-slide:not(.active) {
  visibility: hidden;
  pointer-events: none;
}
.hero-slide.active {
  visibility: visible;
}

/* Fix container trên mobile không bị overflow */
body { overflow-x: hidden; }
* { -webkit-box-sizing: border-box; box-sizing: border-box; }

/* Fix hero title không wrap lạ trên Safari */
.hero__title {
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-hyphens: none;
  hyphens: none;
}

/* Fix các section không bị chồng lên nhau */
.stats-strip,
.intro-section,
.products-section,
.highlights-section,
.safety-section,
.tech-section,
.industries-section,
.cta-banner {
  position: relative;
  z-index: 1;
}

/* ── Hero slider Safari fix ── */
.hero-slide {
  display: none !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
}
.hero-slide.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ── Final Safari fix ── */
.hero-slide__content {
  height: auto !important;
  min-height: 100% !important;
  padding: 4rem 0 !important;
}

/* Fix background-image Safari */
.hero-slide__bg[style*="background-image"] {
  -webkit-background-size: cover !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Đảm bảo hero button không float ra ngoài */
.hero__actions {
  position: relative !important;
  z-index: 3 !important;
  margin-top: 1.5rem !important;
}

/* Fix hero title overflow mobile */
@media (max-width: 768px) {
  .hero-slide__content {
    padding: 2rem 1rem !important;
  }
  .hero__title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.75rem !important;
  }
  .hero__subtitle { display: none !important; }
  .hero__eyebrow { font-size: 0.65rem !important; margin-bottom: 0.5rem !important; }
  .hero__actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }
  .hero__actions .btn {
    font-size: 0.75rem !important;
    padding: 0.5rem 0.9rem !important;
  }
  .hero-slider { height: 380px !important; }
}

/* ================================================================
   PRODUCT LIST PAGE
   ================================================================ */
.page-hero {
  background: #1C1C1C;
  padding: 4rem 0;
}
.page-hero__title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.page-hero__desc {
  color: #BBBBBB;
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.7;
}

.product-list-section {
  padding: 4rem 0;
  background: #f8f8f8;
}

.product-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-cat-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.product-cat-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: #E2001A;
}
.product-cat-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-cat-card:hover .product-cat-card__img img {
  transform: scale(1.05);
}
.product-cat-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-cat-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}
.product-cat-card__desc {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.product-cat-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #E2001A;
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .product-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-cat-grid { grid-template-columns: 1fr; }
  .page-hero__title { font-size: 1.8rem; }
}

/* ================================================================
   LIST PAGE — Cards with images
   ================================================================ */
.list-section { padding: 3rem 0 5rem; }

.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.list-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.list-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.list-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0f0f0;
}

.list-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.list-card:hover .list-card__img img { transform: scale(1.05); }

.list-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  background: #f5f5f5;
}

.list-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E2001A;
  margin: 0;
}

.list-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.4;
}

.list-card__desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.list-card__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2001A;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .list-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .list-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-hero { position:relative; height:360px; overflow:hidden; background:#111; }
.contact-hero__bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:brightness(0.4); }
.contact-hero__overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,0.7) 0%,transparent 70%); }
.contact-hero__content { position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:center; }
.contact-section { padding:4rem 0; background:#f8f8f8; }
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:3rem; align-items:start; }
.contact-info__title { font-size:1.5rem; font-weight:800; color:#111; margin-bottom:1.5rem; }
.contact-card { display:flex; gap:1rem; align-items:flex-start; background:#fff; border-radius:10px; padding:1.25rem; margin-bottom:1rem; border:1px solid #eee; }
.contact-card__icon { flex-shrink:0; width:44px; height:44px; background:#FFF0F0; border-radius:8px; display:flex; align-items:center; justify-content:center; color:#E2001A; }
.contact-card h3 { font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:#E2001A; margin:0 0 0.4rem; }
.contact-card p { font-size:0.9rem; color:#333; margin:0 0 0.2rem; line-height:1.6; }
.contact-card a { color:#333; text-decoration:none; font-weight:500; }
.contact-card a:hover { color:#E2001A; }
.contact-map { margin-top:1rem; border-radius:10px; overflow:hidden; border:1px solid #eee; }
.contact-form-wrap { background:#fff; border-radius:12px; padding:2.5rem; border:1px solid #eee; box-shadow:0 4px 24px rgba(0,0,0,0.06); }
.contact-form-wrap__subtitle { color:#666; font-size:0.9rem; margin-bottom:2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { display:flex; flex-direction:column; gap:0.4rem; margin-bottom:1rem; }
.form-group label { font-size:0.85rem; font-weight:600; color:#333; }
.required { color:#E2001A; }
.form-group input,.form-group select,.form-group textarea { padding:0.75rem 1rem; border:1.5px solid #ddd; border-radius:6px; font-family:inherit; font-size:0.9rem; color:#111; background:#fff; width:100%; box-sizing:border-box; transition:border-color 0.2s; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { outline:none; border-color:#E2001A; }
.form-group textarea { resize:vertical; min-height:120px; }
.btn--full { width:100%; justify-content:center; margin-top:0.5rem; }
.form-success { display:flex; align-items:center; gap:0.75rem; background:#f0fdf4; border:1px solid #22c55e; border-radius:8px; padding:1rem 1.25rem; color:#15803d; font-weight:500; margin-top:1rem; }
.contact-why { padding:4rem 0; background:#fff; }
.contact-why__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; }
.contact-why__item { text-align:center; padding:2rem 1.5rem; border-radius:10px; border:1px solid #eee; transition:box-shadow 0.2s,transform 0.2s; }
.contact-why__item:hover { box-shadow:0 8px 24px rgba(0,0,0,0.08); transform:translateY(-3px); }
.contact-why__icon { font-size:2.5rem; margin-bottom:1rem; }
.contact-why__item h3 { font-size:1rem; font-weight:700; margin-bottom:0.75rem; color:#111; }
.contact-why__item p { font-size:0.85rem; color:#666; line-height:1.7; margin:0; }
@media (max-width:1024px) { .contact-grid { grid-template-columns:1fr; } .contact-why__grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:768px) { .contact-hero { height:280px; } .form-row { grid-template-columns:1fr; } .contact-form-wrap { padding:1.5rem; } .contact-why__grid { grid-template-columns:1fr; } }

/* ── Safety Solutions Grid ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.solution-example {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow 0.2s, transform 0.2s;
}
.solution-example:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.solution-example img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.solution-example h3 {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem 1rem 0.25rem;
  margin: 0;
  color: #111;
}
.solution-example p {
  font-size: 0.83rem;
  color: #666;
  padding: 0 1rem 1rem;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 1024px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .solutions-grid { grid-template-columns: 1fr; } }

/* ── Safety Solutions Page ── */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}
.advantages-grid img { width: 100%; border-radius: 8px; }
.advantage-point {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  line-height: 1.6;
}
.advantage-point:last-child { border-bottom: none; }

.solution-block-img-right,
.solution-block-img-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 1.5rem 0;
}
.solution-block-img-left .solution-block-img { order: -1; }
.solution-block-img img { width: 100%; border-radius: 8px; }
.solution-block-text ul { padding-left: 1.5rem; line-height: 2; }

.solutions-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.solution-example-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow 0.2s, transform 0.2s;
}
.solution-example-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.solution-example-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.solution-example-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  margin: 0;
  color: #111;
  line-height: 1.4;
}

.process-steps { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #E2001A;
}
.process-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #E2001A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.process-step__content h3 { margin: 0 0 0.5rem; font-size: 1rem; color: #111; }
.process-step__content ul { margin: 0; padding-left: 1.25rem; }
.process-step__content li { line-height: 1.8; font-size: 0.9rem; color: #444; }

.cta-contact {
  background: #E2001A;
  color: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  text-align: center;
  margin: 2rem 0;
}
.cta-contact h2 { color: #fff; margin-bottom: 1.5rem; font-size: 1.3rem; }
.cta-contact .btn--primary {
  background: #fff;
  color: #E2001A;
  border-color: #fff;
}
.cta-contact .btn--primary:hover { background: #f0f0f0; }

@media (max-width: 1024px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .solution-block-img-right, .solution-block-img-left { grid-template-columns: 1fr; }
  .solution-block-img-left .solution-block-img { order: 0; }
  .solutions-examples-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .solutions-examples-grid { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; gap: 0.75rem; }
}

/* ================================================================
   SAFETY SOLUTIONS PAGE — Clone layout leuze.com
   ================================================================ */
.ss-banner-4col { display:grid; grid-template-columns:repeat(4,1fr); gap:0.5rem; margin:1.5rem 0 2rem; }
.ss-banner-4col img { width:100%; aspect-ratio:7/5; object-fit:cover; border-radius:4px; display:block; }

.ss-advantages { display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:center; margin:1.5rem 0; }
.ss-advantages__list ul { padding-left:1.5rem; }
.ss-advantages__list ul li { margin-bottom:0.75rem; line-height:1.6; }
.ss-advantages__img img { width:100%; border-radius:4px; }

.ss-three-col { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin:1.5rem 0; }
.ss-three-col__item h3 { font-size:1rem; font-weight:700; margin-bottom:0.75rem; }
.ss-three-col__item ul { padding-left:1.25rem; }
.ss-three-col__item ul li { margin-bottom:0.4rem; font-size:0.9rem; line-height:1.6; }
.ss-three-col--imgs .ss-three-col__item img { width:100%; aspect-ratio:7/5; object-fit:cover; border-radius:4px; display:block; }

.ss-examples-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin:1.5rem 0; }
.ss-example-card { display:block; text-decoration:none; color:inherit; border:1px solid #e5e5e5; border-radius:6px; overflow:hidden; transition:box-shadow 0.2s,transform 0.2s; }
.ss-example-card:hover { box-shadow:0 6px 20px rgba(0,0,0,0.1); transform:translateY(-3px); }
.ss-example-card img { width:100%; aspect-ratio:7/5; object-fit:cover; display:block; }
.ss-example-card__body { padding:1rem; }
.ss-example-card__body h3 { font-size:0.88rem; font-weight:600; margin:0 0 0.5rem; color:#111; line-height:1.4; }
.ss-example-card__link { font-size:0.82rem; color:#E2001A; font-weight:600; }

.ss-process-table { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin:1.5rem 0; }
.ss-process-step { margin-bottom:1rem; }
.ss-process-step__hd { background:#ffe500; padding:0.5rem 0.75rem; font-weight:700; font-size:0.9rem; }
.ss-process-step__bd { background:#dadada; padding:0.75rem 1rem; }
.ss-process-step__bd ul { margin:0; padding-left:1.25rem; }
.ss-process-step__bd ul li { font-size:0.88rem; line-height:1.7; }

.ss-experience { display:grid; grid-template-columns:1fr 1fr; gap:2rem; margin:1.5rem 0; }
.ss-experience ul { padding-left:1.5rem; }
.ss-experience ul li { margin-bottom:0.5rem; font-size:0.9rem; line-height:1.7; }

.ss-cta { margin:2.5rem 0; }
.ss-cta__card { display:flex; flex-direction:column; align-items:flex-start; gap:0.75rem; padding:2rem; background:#f8f8f8; border:1px solid #eee; border-radius:8px; max-width:480px; }
.ss-cta__card img { width:48px; height:48px; }
.ss-cta__card h3 { margin:0; font-size:1.2rem; }
.ss-cta__card p { margin:0; color:#555; font-size:0.9rem; }

@media (max-width:1024px) {
  .ss-banner-4col { grid-template-columns:repeat(2,1fr); }
  .ss-advantages { grid-template-columns:1fr; }
  .ss-three-col { grid-template-columns:1fr; }
  .ss-examples-grid { grid-template-columns:repeat(2,1fr); }
  .ss-process-table { grid-template-columns:1fr; }
  .ss-experience { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .ss-examples-grid { grid-template-columns:1fr; }
  .ss-banner-4col { grid-template-columns:1fr 1fr; }
}

/* Safety Solutions page content wrapper */
.ss-page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}
.ss-page-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  color: #111;
}
.ss-page-content h2:first-of-type {
  margin-top: 1.5rem;
}
.ss-page-content p {
  line-height: 1.8;
  color: #333;
}

/* FORCE FIX — xóa khoảng trống */
.prose--full,
.ss-page-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
  max-width: 1280px !important;
}
.prose--full > *:first-child,
.ss-page-content > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.no-list-section .list-section { display: none !important; }

/* Stacker-cranes page layout: wide + 2-column + hero title readable */
.prose {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.prose > .hero-section,
.prose > .solutions-section,
.prose > .cta-section {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 !important;
}

.hero-content h1 {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.solution-item {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 1.5rem;
  align-items: center;
}

.solution-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* ================================================================
   CONTINUOUS CONVEYORS PAGE - Enhanced Layout
   ================================================================ */

/* Hero Section */
.hero-section {
  padding: 3rem 0 4rem;
  max-width: 100%;
  margin: 0 auto;
}
.hero-section .container {
  display: block;
  width: 100%;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #333;
  margin: 0;
 }
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Benefits Section */
.benefits-section {
  padding: 2.5rem 0;
  background: #fafafa;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.benefit-item {
  padding: 1.5rem;
  background: white;
  border-radius: 4px;
  border-left: 3px solid #E2001A;
  transition: all 0.3s ease;
}
.benefit-item:hover {
  box-shadow: 0 4px 16px rgba(226,0,26,0.1);
  transform: translateY(-2px);
}
.benefit-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.benefit-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Solutions Section */
.solutions-section {
  padding: 4rem 0;
}
.solutions-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 3rem;
  border-left: 4px solid #E2001A;
  padding-left: 1rem;
  line-height: 1.2;
}
.solution-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
  padding: 0;
}
.solution-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}
.solution-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}
.solution-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 0.8rem 0;
  line-height: 1.5;
}
.solution-content strong {
  color: #111;
  font-weight: 700;
}
.solution-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: #fafafa;
  border-top: 1px solid #eee;
}
.cta-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}
.cta-section > p {
  font-size: 1rem;
  color: #666;
  margin: 0 0 2.5rem 0;
  line-height: 1.65;
  max-width: 700px;
}
.cta-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.cta-benefit {
  background: white;
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 3px solid #E2001A;
}
.cta-benefit h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.5rem 0;
}
.cta-benefit p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.btn-primary, .btn-secondary {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: #E2001A;
  color: white;
}
.btn-primary:hover {
  background: #c60016;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226,0,26,0.25);
}
.btn-secondary {
  background: white;
  color: #E2001A;
  border: 2px solid #E2001A;
}
.btn-secondary:hover {
  background: #fafafa;
  border-color: #c60016;
  color: #c60016;
}

/* ================================================================
   RESPONSIVE - Tablet
   ================================================================ */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0 3rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .benefit-item {
    padding: 1.2rem;
  }
  .solution-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cta-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   RESPONSIVE - Mobile
   ================================================================ */
@media (max-width: 640px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0 2rem;
  }
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .hero-image {
    margin-top: 1rem;
  }
  .benefits-section {
    padding: 1.5rem 0;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .benefit-item {
    padding: 1rem;
  }
  .benefit-item h3 {
    font-size: 0.95rem;
  }
  .benefit-item p {
    font-size: 0.85rem;
  }
  .solutions-section {
    padding: 2rem 0;
  }
  .solutions-section h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .solution-item {
    display: block;
    margin-bottom: 2rem;
  }
  .solution-image {
    margin-top: 1rem;
    min-height: 240px;
  }
  .solution-content h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  .solution-content p {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  .cta-section {
    padding: 2rem 0;
  }
  .cta-section h2 {
    font-size: 1.4rem;
  }
  .cta-section > p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .cta-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }
  .cta-benefit {
    padding: 1rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }
}
