/* ─── INDEX PAGE ─── */

/* HERO — FULL-SCREEN VIDEO, SPREAD LAYOUT */
.hero {
  position: relative; overflow: hidden;
  height: 100vh; min-height: 600px;
  display: flex; flex-direction: column;
}
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.55) 40%,
    rgba(0,0,0,.3) 70%,
    rgba(0,0,0,.2) 100%
  );
  z-index: 1;
}

/* TOP — label pinned top-left */
.hero-top {
  position: relative; z-index: 2;
  padding: 100px 48px 0;
}
.hero .section-label { color: var(--blue); }

/* CENTER — headline dominates the middle */
.hero-center {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center;
  padding: 0 48px;
}
.hero-h1 {
  font-size: clamp(42px, 6vw, 80px); font-weight: 800;
  line-height: 1.02; letter-spacing: -2px;
  color: #fff; max-width: 900px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero-h1 em { font-style: italic; color: var(--blue); }

/* BOTTOM — desc+CTAs left, stats right */
.hero-bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 48px 48px; gap: 40px;
}
.hero-bottom-left { max-width: 480px; }
.hero-desc {
  font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.7;
  margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn-secondary {
  border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.75);
  backdrop-filter: blur(8px); background: rgba(255,255,255,.05);
}
.hero-actions .btn-secondary:hover {
  border-color: rgba(255,255,255,.5); color: #fff;
}
.hero-bottom-right {
  display: flex; gap: 32px; align-items: flex-end;
}
.hero-stat { text-align: right; }
.hero-stat-val {
  font-size: 36px; font-weight: 800; color: #fff; line-height: 1;
}
.hero-stat-val span { color: var(--blue); }
.hero-stat-lbl {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.4); margin-top: 4px;
}
/* PRODUCT LINEUP SLIDESHOW */
.lineup {
  position: relative; overflow: hidden;
  background: #000;
}
.lineup-slider {
  position: relative; width: 100%; height: 75vh; min-height: 500px; max-height: 800px;
}
.lineup-slides {
  display: flex; width: 100%; height: 100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.lineup-slide {
  position: relative; flex: 0 0 100%; width: 100%; height: 100%;
  display: block; overflow: hidden;
}
.lineup-slide-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 65%;
  transition: transform 6s ease;
}
.lineup-slide.active .lineup-slide-bg { transform: scale(1.05); }
.lineup-slide-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.1) 100%);
}
.lineup-slide-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 60px 80px;
}
.lineup-slide-cat {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.lineup-slide-name {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  color: #fff; line-height: 1.05; letter-spacing: -1px; margin-bottom: 8px;
}
.lineup-slide-tag {
  font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 16px;
}
.lineup-slide-cta {
  font-size: 14px; font-weight: 600; color: #fff;
  display: inline-flex; align-items: center; gap: 4px;
  opacity: .7; transition: opacity .2s;
}
.lineup-slide:hover .lineup-slide-cta { opacity: 1; }

/* ARROWS */
.lineup-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lineup-arrow:hover { background: rgba(255,255,255,.2); }
.lineup-prev { left: 24px; }
.lineup-next { right: 24px; }

/* DOTS */
.lineup-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.lineup-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  transition: background .2s, width .2s;
}
.lineup-dot.active {
  width: 24px; border-radius: 4px; background: #fff;
}

/* INDUSTRIES */
.industries { padding: 96px 0; background: var(--bg); }
.industries-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 48px;
}
.ind-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.ind-card {
  position: relative; border-radius: var(--rl); overflow: hidden;
  display: flex; min-height: 280px; cursor: pointer;
}
.ind-card-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s ease;
}
.ind-card:hover .ind-card-bg { transform: scale(1.06); }
.ind-card-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.15) 100%);
}
.ind-card-content {
  position: relative; z-index: 1; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  width: 100%;
}
.ind-card-name {
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.ind-card-desc {
  font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 12px;
}
.ind-card-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.ind-tag {
  font-size: 10px; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  padding: 3px 9px; border-radius: 3px;
}

/* FEATURED PRODUCTS */
.featured { padding: 96px 0; }
.featured-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 48px; flex-wrap: wrap;
}
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.f-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: border-color .2s, box-shadow .2s; display: block;
}
.f-card:hover {
  border-color: rgba(0,102,255,.25);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.f-card-img {
  background: var(--bg); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.f-card-placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); height: 100%;
}
.f-card-placeholder span { font-size: 11px; font-family: monospace; opacity: .4; }
.f-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
}
.f-card-body { padding: 20px; }
.f-card-name {
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px; letter-spacing: -.3px;
}
.f-card-desc {
  font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px;
}
.f-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.f-card-tags span {
  font-size: 11px; font-weight: 500; color: var(--gray-500);
  background: var(--bg); padding: 3px 10px; border-radius: 100px;
}

/* CTA BAND */
.cta-band {
  background: var(--navy); padding: 80px 0; text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 36px); font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 14px;
}
.cta-band p {
  font-size: 16px; color: rgba(255,255,255,.5); line-height: 1.7;
  margin-bottom: 28px;
}
.cta-actions {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}

/* FINANCING */
.financing { padding: 96px 0; background: var(--bg); }
.fin-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start; margin-top: 48px;
}
.roi-list { display: flex; flex-direction: column; }
.roi-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.roi-item:first-child { padding-top: 0; }
.roi-item:last-child { border-bottom: none; padding-bottom: 0; }
.roi-val {
  font-size: 32px; font-weight: 800; color: var(--blue);
  line-height: 1; flex-shrink: 0; min-width: 100px;
}
.roi-title {
  font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.roi-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.fin-cards { display: flex; flex-direction: column; gap: 16px; }
.fin-heading {
  font-size: 24px; font-weight: 700; color: var(--navy);
  margin-bottom: 4px; letter-spacing: -.3px;
}
.fin-sub {
  font-size: 15px; color: var(--gray-500); line-height: 1.7;
  margin-bottom: 16px;
}
.fin-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 24px;
  border-left: 3px solid var(--blue);
}
.fin-card h4 {
  font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.fin-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* GUARANTEES */
.guarantees { padding: 96px 0; }
.guarantees-header { text-align: center; margin-bottom: 48px; }
.guarantees-header .section-label { display: block; text-align: center; }
.guarantees-header .section-title { margin-left: auto; margin-right: auto; }
.g-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.g-card {
  background: var(--navy); border-radius: var(--rl); padding: 32px 28px;
}
.g-card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 20px;
}
.g-card h3 {
  font-size: 18px; font-weight: 700; color: var(--white);
  margin-bottom: 8px; letter-spacing: -.2px;
}
.g-card p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials { padding: 96px 0; background: var(--bg); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.t-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 28px;
}
.t-stars {
  color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px;
}
.t-text {
  font-size: 15px; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 20px;
}
.t-author { font-size: 13px; font-weight: 700; color: var(--navy); }
.t-role { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-bottom-right { gap: 24px; }
  .hero-stat { text-align: left; }
  .industries-header { flex-direction: column; align-items: flex-start; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .g-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-top { padding: 90px 20px 0; }
  .hero-center { padding: 0 20px; }
  .hero-h1 { font-size: 38px; letter-spacing: -1px; }
  .hero-bottom { padding: 0 20px 32px; gap: 28px; }
  .hero-bottom-right { flex-wrap: wrap; gap: 20px; }
  .hero-stat-val { font-size: 28px; }
  .industries, .guarantees, .testimonials { padding: 72px 0; }
  .ind-grid { grid-template-columns: 1fr; gap: 12px; }
  .ind-card { min-height: 220px; }
  .lineup-slider { height: 50vh; min-height: 350px; }
  .lineup-slide-content { padding: 32px 24px; }
  .lineup-slide-name { font-size: 32px; }
  .lineup-arrow { width: 36px; height: 36px; }
  .lineup-prev { left: 12px; }
  .lineup-next { right: 12px; }
}
