/* ============================================================
   WORLDSERVE — robox.css
   ============================================================ */

/* ── HERO ── */
.robox-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
}
.robox-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.robox-hero-bg video,
.robox-hero-bg .poster {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  position: absolute; inset: 0; display: block;
}
.robox-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.65);
}
.robox-hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 60%),
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(0,0,0,0.4) 0%, transparent 60%);
}
.robox-hero-content { position: relative; z-index: 2; }

.robox-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-cond); font-size: 0.95rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.5); color: var(--gold);
  padding: 0.4rem 1rem; margin-bottom: 2rem;
}
.robox-hero-title {
  font-family: var(--font-head);
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.88; color: var(--white); letter-spacing: 0.02em;
}
.robox-hero-sub {
  font-size: 1.15rem; font-weight: 300; color: var(--off);
  max-width: 500px; line-height: 1.82; margin-top: 2rem;
}
.robox-hero-bottom {
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap;
  gap: 2rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.robox-stats { display: flex; gap: 3.5rem; }
.robox-stat { display: flex; flex-direction: column; gap: 0.5rem; }
.robox-stat-n {
  font-family: var(--font-head); font-size: 3rem;
  line-height: 1; color: var(--white);
}
.robox-stat-n.accent { color: var(--gold); }
.robox-stat-l {
  font-family: var(--font-cond); font-size: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--off);
}
.hero-video-note {
  position: absolute; bottom: 1.5rem; right: 3rem; z-index: 3;
  font-family: var(--font-cond); font-size: 0.82rem;
  letter-spacing: 0.1em; color: var(--muted);
}

/* ── WHY ROBOX ── */
.highlight-strip {
  background-color: var(--deep);
  background-image:
    /* Horizontal lines */
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    /* Vertical lines */
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    /* Larger grid */
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px),
    /* Gold dots at intersections */
    radial-gradient(circle, rgba(201,168,76,0.12) 1px, transparent 1px);
  background-size:
    30px 30px,
    30px 30px,
    150px 150px,
    150px 150px,
    30px 30px;
  background-position:
    0 0, 0 0, 0 0, 0 0, 15px 15px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 6rem 0;
  position: relative;
}
/* Fade the pattern at top and bottom edges */
.highlight-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--deep) 0%, transparent 15%, transparent 85%, var(--deep) 100%);
  pointer-events: none;
  z-index: 0;
}
.highlight-strip .container {
  position: relative;
  z-index: 1;
}
.highlight-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); margin-top: 4rem;
}
.highlight-cell {
  padding: 3rem 2rem; border-right: 1px solid var(--line);
  text-align: center; transition: background 0.3s;
}
.highlight-cell:last-child { border-right: none; }
.highlight-cell:hover { background: var(--surface); }
.highlight-icon { font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: 1.2rem; display: block; }
.highlight-title {
  font-family: var(--font-cond); font-size: 1.05rem;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.8rem;
}
.highlight-desc { font-size: 1.05rem; font-weight: 300; color: var(--off); line-height: 1.78; }

/* ══════════════════════════════════════════
   KIT LAYOUT
   Image left (or right), content right (or left)
   Alternating. Image is a fixed height panel,
   not a full-page dump.
══════════════════════════════════════════ */
.kit-section {
  border-top: 1px solid var(--line); padding: 7rem 0;
}
.kit-section:nth-child(even) { background: var(--near); }
.kit-section:nth-child(odd)  { background: var(--black); }

/* Two-column row */
.kit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
/* Flip for alternating */
.kit-row.flip { direction: rtl; }
.kit-row.flip > * { direction: ltr; }

/* Image panel — fixed height, object-fit, not full-width dump */
.kit-img {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--deep);
  border: 1px solid var(--line);
}
.kit-img::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); z-index: 1;
}
.kit-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.kit-img:hover img { transform: scale(1.04); }

/* Content panel */
.kit-body { display: flex; flex-direction: column; gap: 0; }

.kit-num {
  font-family: var(--font-head); font-size: 5rem;
  line-height: 1; color: var(--dim); display: block; margin-bottom: 0.5rem;
}
.kit-tag {
  font-family: var(--font-cond); font-size: 0.95rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem;
}
.kit-tag::before { content: ''; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }
.kit-name {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 0.92; color: var(--white); margin-bottom: 0.4rem;
}
.kit-code {
  font-family: var(--font-cond); font-size: 0.92rem;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1.5rem;
}
.kit-desc {
  font-size: 1.05rem; font-weight: 300; color: var(--off);
  line-height: 1.85; margin-bottom: 2rem;
}

/* Feature list — clean ticks, no arrows, no gold symbols */
.kit-features {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 2rem;
}
.kit-features li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem; font-weight: 300; color: var(--off);
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
}
/* Simple dot before each item */
.kit-features li::before {
  content: '';
  position: absolute; left: 0; top: 0.75rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.kit-features li strong {
  font-weight: 600; color: var(--white);
  font-family: var(--font-cond); font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.kit-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* NEW badge */
.new-badge {
  display: inline-block;
  font-family: var(--font-cond); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--gold); color: var(--black);
  padding: 0.22rem 0.65rem; margin-left: 0.8rem;
  vertical-align: middle; font-weight: 700;
}

/* ── CTA ── */
.robox-cta { padding: 9rem 0; border-top: 1px solid var(--line); text-align: center; }
.robox-cta-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.9; color: var(--white); margin-bottom: 1.5rem;
}
.robox-cta-sub {
  font-size: 1.1rem; font-weight: 300; color: var(--off);
  max-width: 500px; margin: 0 auto 3rem; line-height: 1.88;
}
.robox-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.robox-contact-row {
  display: flex; gap: 4rem; justify-content: center; flex-wrap: wrap;
  margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--line);
}
.robox-contact-item { text-align: center; }
.robox-contact-item-label {
  font-family: var(--font-cond); font-size: 0.9rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
.robox-contact-item a {
  font-family: var(--font-cond); font-size: 1.1rem;
  color: var(--white); transition: color 0.2s;
}
.robox-contact-item a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .kit-row, .kit-row.flip { grid-template-columns: 1fr; direction: ltr; gap: 3rem; }
  .kit-img { height: auto; aspect-ratio: 16/10; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .highlight-cell:nth-child(2) { border-right: none; }
  .highlight-cell:nth-child(3), .highlight-cell:nth-child(4) { border-top: 1px solid var(--line); }
  .highlight-cell:nth-child(4) { border-right: none; }
  .robox-hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-video-note { display: none; }
}
@media (max-width: 600px) {
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-cell { border-right: none !important; border-top: 1px solid var(--line); }
  .highlight-cell:first-child { border-top: none; }
  .robox-contact-row { gap: 2rem; }
  .kit-section { padding: 4rem 0; }
}

/* ── PROMO VIDEO ── */
.robox-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 3rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--deep);
}
.robox-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
