/* ===== Specs Page ===== */

/* خلفية الفيديو */
.specs-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.specs-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.specs-bg-video.active { opacity: 1; }

.specs-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 14, 26, 0.65) 0%,
      rgba(10, 14, 26, 0.5) 40%,
      rgba(10, 14, 26, 0.85) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 14, 26, 0.35) 100%);
}

/* المحتوى فوق الخلفية */
.nav { z-index: 10; }

.specs-main {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 9rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.specs-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.specs-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.specs-hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* ===== المربعين الكبار ===== */
.specs-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.specs-box {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.4s ease;
  isolation: isolate;
}

.specs-box::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.specs-box::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(10, 14, 26, 0.35) 0%,
    rgba(10, 14, 26, 0.65) 60%,
    rgba(10, 14, 26, 0.95) 100%);
  transition: background 0.4s ease;
}

.box-outdoor::before {
  background-image: url('../assets/images/specs-outdoor.jpg');
  background-size: cover;
  background-position: center;
}

.box-indoor::before {
  background-image: url('../assets/images/specs-indoor.jpg');
  background-size: cover;
  background-position: center;
}

.specs-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.specs-box:hover::before {
  transform: scale(1.08);
}

.specs-box-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}

.specs-box-icon {
  position: absolute;
  top: 2rem;
  inset-inline-end: 2rem;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: white;
  transition: transform 0.4s ease;
}

.specs-box:hover .specs-box-icon {
  transform: scale(1.08) rotate(-5deg);
}

.specs-box-inner h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.specs-box-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.specs-box-arrow {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1rem;
  transition: gap 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.specs-box:hover .specs-box-arrow {
  background: white;
  color: #0a0e1a;
  transform: translateX(-6px);
}

/* ===== Pitch Options (3 خيارات بالعرض) ===== */
.pitch-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pitch-card {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), border-color 0.3s, box-shadow 0.3s, background 0.3s;
  overflow: hidden;
  isolation: isolate;
}

.pitch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.pitch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 25px 50px -15px rgba(0, 212, 255, 0.35);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.06), rgba(255,255,255,0.01));
}

.pitch-card:hover::before { opacity: 1; }

.pitch-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.pitch-name {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Inter', sans-serif;
}

.pitch-tag {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.pitch-gob {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(67, 233, 123, 0.12);
  border: 1px solid rgba(67, 233, 123, 0.35);
  color: #43e97b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pitch-gob i { font-size: 0.7rem; }

.gob-note {
  max-width: 700px;
  margin: 1.25rem auto 0;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: rgba(67, 233, 123, 0.08);
  border: 1px solid rgba(67, 233, 123, 0.25);
  color: #d8dde6;
  font-size: 0.95rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.gob-note i { color: #43e97b; }
.gob-note strong { color: #43e97b; font-weight: 900; letter-spacing: 0.05em; }

.sub-boxes.single {
  grid-template-columns: 1fr;
  max-width: 420px;
}

.pitch-section-badge.gob-badge {
  background: rgba(67, 233, 123, 0.12);
  border-color: rgba(67, 233, 123, 0.35);
  color: #43e97b;
}
.pitch-section-badge.gob-badge i { margin-inline-end: 0.25rem; }

.pitch-arrow {
  margin-top: 0.5rem;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.95rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.pitch-card:hover .pitch-arrow {
  background: var(--gradient);
  color: #001020;
  border-color: transparent;
  transform: translateY(4px);
}

/* أنيميشن نبض ناعم للسهم */
.pitch-arrow i {
  animation: arrowBob 2s ease-in-out infinite;
}
@keyframes arrowBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ===== Modal (بوب اب الكابينة + الجهاز المشغل) ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.modal.open { opacity: 1; visibility: visible; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0.75);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-window {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #131826 0%, #0a0e1a 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.modal.open .modal-window { transform: translateY(0) scale(1); }

.cabinet-modal { border-color: rgba(255, 138, 0, 0.3); }
.player-modal { border-color: rgba(0, 212, 255, 0.3); }

.modal-close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.modal-close:hover {
  background: rgba(255, 80, 80, 0.18);
  color: #ff6b6b;
  transform: rotate(90deg);
}

.modal-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
}

.modal-head h2 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.modal-head p { color: var(--muted); font-size: 0.9rem; }

.modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-list li {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.modal-list h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.3rem; }
.modal-list p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

.modal-list-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

/* ===== Feature Sections (مواصفات الكابينة + الجهاز المشغل) ===== */
.feature-section {
  margin: 0 auto 4rem;
  padding: 3rem;
  background: rgba(19, 24, 38, 0.55);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  scroll-margin-top: 160px;
}

.feature-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.feature-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.cabinet-badge {
  background: rgba(255, 138, 0, 0.12);
  color: #ff8a00;
  border: 1px solid rgba(255, 138, 0, 0.3);
}
.player-badge {
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.feature-section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.feature-section-head p {
  color: var(--muted);
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-item {
  background: rgba(10, 14, 26, 0.55);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1rem;
}
.cabinet-ico { background: linear-gradient(135deg, #ff8a00, #ff3d6e); }
.player-ico { background: var(--gradient); color: #001020; }

.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Sticky Pitch Tabs (توب بار P3/P4/P5) ===== */
.pitch-tabs {
  position: sticky;
  top: 80px;
  z-index: 50;
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.5rem;
  margin: 1rem auto 2.5rem;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
  align-self: center;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.6);
  /* center via flex on parent */
  display: flex;
  justify-content: center;
}

.specs-main { display: flex; flex-direction: column; }

.pitch-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  min-width: 60px;
  text-align: center;
}
.pitch-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.pitch-tab.active {
  background: var(--gradient);
  color: #001020;
  box-shadow: 0 6px 20px -6px rgba(0, 212, 255, 0.55);
}

/* Adjust scroll-margin so sticky tabs don't cover section headings */
.pitch-section { scroll-margin-top: 160px; }

/* ===== Sub Boxes (مربعين فرعيين داخل كل قسم) ===== */
.sub-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 850px;
  margin: 3rem auto 2.5rem;
}

.sub-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1.25rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s, background 0.3s;
  overflow: hidden;
  isolation: isolate;
}

.sub-box::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sub-cabinet::before { background: radial-gradient(circle at 50% 0%, rgba(255, 138, 0, 0.18), transparent 60%); }
.sub-player::before { background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.18), transparent 60%); }

.sub-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.5);
}
.sub-cabinet:hover { border-color: rgba(255, 138, 0, 0.45); }
.sub-player:hover { border-color: rgba(0, 212, 255, 0.45); }
.sub-box:hover::before { opacity: 1; }

.sub-box-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}
.sub-cabinet .sub-box-icon { background: linear-gradient(135deg, #ff8a00, #ff3d6e); }
.sub-player .sub-box-icon { background: var(--gradient); color: #001020; }

.sub-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}

.sub-box-arrow {
  margin-top: 0.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.sub-cabinet:hover .sub-box-arrow {
  background: linear-gradient(135deg, #ff8a00, #ff3d6e);
  color: white;
  border-color: transparent;
  transform: translateY(3px);
}
.sub-player:hover .sub-box-arrow {
  background: var(--gradient);
  color: #001020;
  border-color: transparent;
  transform: translateY(3px);
}

.sub-box-arrow i { animation: arrowBob 2s ease-in-out infinite; }

/* ===== Pitch Sections (المواصفات تحت المربعات) ===== */
.pitch-section {
  scroll-margin-top: 100px;
  margin-top: 5rem;
  padding: 3rem;
  background: rgba(19, 24, 38, 0.55);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.pitch-section-head {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pitch-section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.pitch-section-head h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.5rem;
}

.pitch-section-head p {
  color: var(--muted);
  font-size: 1rem;
}

.pitch-section-body {
  min-height: 200px;
  display: grid;
  place-items: center;
}

.pitch-placeholder {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 2rem;
  border: 2px dashed var(--border);
  border-radius: 14px;
  text-align: center;
  width: 100%;
}

.pitch-section-head code {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-family: 'Inter', monospace;
  font-size: 0.85rem;
}

/* ===== Spec Highlights (4 ابرز المواصفات) ===== */
.spec-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.spec-stat {
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.spec-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.45);
}

.spec-stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  background: var(--gradient);
  color: #001020;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.spec-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.spec-stat-num span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
  margin-top: 0.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.spec-stat-label {
  margin-top: 0.5rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== Spec Groups (4 جداول) ===== */
.spec-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.25rem;
}

.spec-group {
  background: rgba(10, 14, 26, 0.55);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.spec-group-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}

.spec-group-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  background: var(--gradient);
  color: #001020;
  flex-shrink: 0;
}
.spec-group-ico.cabinet { background: linear-gradient(135deg, #ff8a00, #ff3d6e); color: white; }
.spec-group-ico.display { background: linear-gradient(135deg, #7d5fff, #00d4ff); color: white; }
.spec-group-ico.env { background: linear-gradient(135deg, #43e97b, #38f9d7); color: #001020; }

.spec-group-head h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}

.spec-table {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spec-table li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.88rem;
  border-top: 1px dashed var(--border);
}
.spec-table li:first-child { border-top: none; }
.spec-table li:nth-child(odd) { background: rgba(255,255,255,0.015); }
.spec-table span { color: var(--muted); font-weight: 600; }
.spec-table b {
  color: var(--text);
  font-weight: 700;
  text-align: end;
  direction: ltr;
  font-family: 'Inter', 'Cairo', sans-serif;
}

/* ===== CTA bottom of section ===== */
.spec-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.spec-cta .btn { padding: 1rem 1.75rem; font-size: 1rem; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .pitch-options { grid-template-columns: 1fr; gap: 1rem; }
  .pitch-card { padding: 2.25rem 1.25rem; }
  .sub-boxes { grid-template-columns: 1fr; }
  .specs-boxes {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .specs-box { aspect-ratio: 4 / 3; }
  .specs-box-icon { width: 58px; height: 58px; font-size: 1.5rem; top: 1.5rem; inset-inline-end: 1.5rem; }
  .specs-box-inner { padding: 1.75rem; }
  .specs-main { padding: 7rem 1rem 3rem; }
}
