/* ========================================
   IT Oversight — Shared Landing Styles
   Modern, clean, professional
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  background: #fff;
  color: #1f1b16;
  line-height: 1.6;
}

/* Typography */
.ito-h1 { font-size: 48px; font-weight: 900; line-height: 1.1; }
.ito-h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.ito-h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.ito-h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }

.ito-text-center { text-align: center; }
.ito-text-left { text-align: left; }

/* Layout */
.ito-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ito-section {
  padding: 80px 24px;
}

.ito-section--dark {
  background: #1a1a2e;
  color: #fff;
}

.ito-section--muted {
  background: #f8f9fa;
}

/* Badge */
.ito-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.ito-badge--light {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.ito-badge--accent {
  background: #fef7e6;
  color: #d45d2e;
}

/* Buttons */
.ito-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
}

.ito-btn-primary {
  background: #d45d2e;
  color: #fff;
}

.ito-btn-primary:hover {
  background: #b8451e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,93,46,0.3);
}

.ito-btn-outline {
  background: transparent;
  color: #1f1b16;
  border: 2px solid #1f1b16;
}

.ito-btn-outline:hover {
  background: #1f1b16;
  color: #fff;
}

.ito-btn--light-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.ito-btn--light-outline:hover {
  background: #fff;
  color: #1a1a2e;
}

/* Service Cards */
.ito-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ito-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.2s;
}

.ito-card:hover {
  border-color: #d45d2e;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.ito-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Dark section cards */
.ito-section--dark .ito-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

/* Portfolio Grid */
.ito-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ito-portfolio-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: all 0.2s;
}

.ito-portfolio-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.ito-portfolio-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.ito-portfolio-item .content {
  padding: 16px;
}

/* Comparison */
.ito-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.ito-compare-header {
  padding: 20px 24px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.ito-compare-header--bad {
  background: #fff3f3;
  color: #c1121f;
}

.ito-compare-header--good {
  background: #e8f5e9;
  color: #2e7d32;
}

.ito-compare-cell {
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}

.ito-compare-cell:nth-child(odd) { background: #fef7f7; }
.ito-compare-cell:nth-child(even) { background: #f7fef9; }

/* Stats */
.ito-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  margin-top: 48px;
}

.ito-stat-item .num {
  font-size: 40px;
  font-weight: 900;
  color: #d45d2e;
}

.ito-stat-item .label {
  font-size: 15px;
  color: #6c757d;
  margin-top: 4px;
}

/* Footer */
.ito-footer {
  text-align: center;
  padding: 40px 24px;
  font-size: 14px;
  color: #6c757d;
  border-top: 1px solid #e9ecef;
}

/* Responsive */
@media (max-width: 768px) {
  .ito-h1 { font-size: 32px; }
  .ito-h2 { font-size: 28px; }
  .ito-cards { grid-template-columns: 1fr; }
  .ito-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .ito-stats { grid-template-columns: repeat(2, 1fr); }
  .ito-compare { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ito-portfolio-grid { grid-template-columns: 1fr; }
  .ito-section { padding: 48px 16px; }
}
