:root {
  --bg-deep: #07111f;
  --accent-orange: #f97316;
  --accent-blue: #2d7dd2;
  --accent-glow: #5ba4f5;
  --text-primary: #eef3ff;
  --text-muted: #7a8fad;
  --text-green: #5fd98a;
  --text-red: #ff8585;
  --border: rgba(255,255,255,0.07);
}

.why-page {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ── FULL IMAGE BANNER ── */
.hero-banner {
  width: 100%;
  display: block;
  line-height: 0;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── MAIN SECTION ── */
.why-page .why-section {
  padding: 100px 40px;
  background:
    radial-gradient(ellipse 900px 500px at 5% 10%, rgba(45,125,210,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 700px 500px at 95% 90%, rgba(249,115,22,0.06) 0%, transparent 65%),
    var(--bg-deep);
}

.why-page .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
}

/* Section header */
.why-page .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-page .section-badge {
  display: inline-block;
  padding: 7px 20px;
  background: rgba(45,125,210,0.12);
  border: 1px solid rgba(45,125,210,0.3);
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--accent-glow);
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 26px;
}

.why-page .section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.why-page .section-header h2 span {
  color: var(--accent-orange);
}

.why-page .section-header p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
}

/* ── TABLE ── */
.why-page .table-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 4px 60px rgba(0,0,0,0.5),
    0 0 80px rgba(45,125,210,0.06);
}

.why-page table {
  width: 100%;
  border-collapse: collapse;
  min-width: 960px;
}

.why-page thead {
  background: rgba(45,125,210,0.08);
  border-bottom: 1px solid rgba(45,125,210,0.2);
}

.why-page thead th {
  padding: 20px 28px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: left;
}

.why-page thead th:nth-child(1) { width: 22%; }
.why-page thead th:nth-child(2) { width: 32%; color: var(--text-red); }
.why-page thead th:nth-child(3) { width: 46%; color: var(--text-green); }

.why-page .col-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-page .dot-bad  { width:8px; height:8px; border-radius:50%; background:#ef4444; flex-shrink:0; }
.why-page .dot-good { width:8px; height:8px; border-radius:50%; background:#22c55e; flex-shrink:0; }

.why-page tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.why-page tbody tr:last-child { border-bottom: none; }
.why-page tbody tr:hover { background: rgba(45,125,210,0.05); }
.why-page tbody tr:nth-child(odd) { background: rgba(255,255,255,0.015); }
.why-page tbody tr:nth-child(odd):hover { background: rgba(45,125,210,0.05); }

.why-page td {
  padding: 20px 28px;
  vertical-align: top;
  font-size: 14.5px;
  line-height: 1.7;
}

.why-page td:first-child {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.why-page td:nth-child(2) {
  color: var(--text-red);
  font-size: 14px;
  font-weight: 400;
}

.why-page td:nth-child(3) {
  color: var(--text-green);
  font-size: 14px;
  font-weight: 400;
}

.why-page td:nth-child(2)::before {
  content: '✕  ';
  color: #ef4444;
  font-size: 10px;
  font-weight: 800;
  opacity: 0.7;
}

.why-page td:nth-child(3)::before {
  content: '✓  ';
  color: #22c55e;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.85;
}

/* ── CTA STRIP ── */
.why-page .cta-strip {
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(249,115,22,0.07) 0%, rgba(45,125,210,0.07) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.why-page .cta-strip h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.why-page .cta-strip h3 span { color: var(--accent-orange); }

.why-page .cta-strip p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.why-page .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  background: var(--accent-orange);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(249,115,22,0.3);
}

.why-page .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249,115,22,0.5);
  color: #fff;
}

.why-page .cta-btn svg { width:17px; height:17px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .why-page .why-section { padding: 60px 20px; }
  .why-page .cta-strip { padding: 60px 20px; }
  .why-page .table-wrapper { overflow-x: auto; }
}
