.it-page { padding-top: 56px; }

/* ═══ IT HERO ═══ */
.it-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
  flex-wrap: wrap;
}

.it-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.it-hero-text h1 em { font-style: italic; color: var(--accent); }

.it-hero-text p {
  color: var(--fg-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  max-width: 480px;
}

.it-back {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.it-back:hover { color: var(--fg); }

/* ═══ IT SERVICES GRID ═══ */
.it-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.it-service {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.it-service:last-child { border-right: none; }
.it-service:hover { background: var(--bg-alt); }

.it-service-icon {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  display: block;
}

.it-service-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.8rem;
}

.it-service h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.it-service p {
  color: var(--fg-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.it-features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.it-features span {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--fg-muted);
}

.it-features span::before {
  content: '\2192 ';
  color: var(--accent);
}

/* ═══ IT DETAILS ═══ */
.it-details {
  border-bottom: 1px solid var(--border);
}

.it-details-header {
  padding: 4rem 3rem 3rem;
  border-bottom: 1px solid var(--border);
}

.it-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.it-detail {
  padding: 2.5rem 3rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.it-detail:nth-child(2n) { border-right: none; }
.it-detail:nth-child(n+5) { border-bottom: none; }

.it-detail h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.it-detail p {
  color: var(--fg-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ═══ IT PRICING ═══ */
.it-pricing {
  border-bottom: 1px solid var(--border);
}

.it-pricing-header {
  padding: 4rem 3rem 3rem;
  border-bottom: 1px solid var(--border);
}

.it-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.it-price-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.it-price-card:last-child { border-right: none; }
.it-price-card:hover { background: var(--bg-alt); }

.it-price-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
}

.it-price-value {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.it-price-unit {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.it-price-desc {
  color: var(--fg-secondary);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ═══ IT CTA ═══ */
.it-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.it-cta-left {
  padding: 5rem 3rem;
  border-right: 1px solid var(--border);
}

.it-cta-left h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.it-cta-left h2 em { font-style: italic; color: var(--accent); }

.it-cta-left p {
  color: var(--fg-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 400px;
}

.it-cta-right {
  background: #2a2a30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem;
}

.it-cta-right a {
  font-family: var(--mono);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--fg-muted);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s;
  margin-bottom: 1rem;
}

.it-cta-right a:hover { border-color: var(--accent); }

.it-cta-phone {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.it-cta-phone:hover { color: var(--fg-secondary); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .it-services-grid { grid-template-columns: 1fr; }
  .it-service { border-right: none; border-bottom: 1px solid var(--border); }
  .it-service:last-child { border-bottom: none; }
  .it-detail-grid { grid-template-columns: 1fr; }
  .it-detail { border-right: none; border-bottom: 1px solid var(--border); }
  .it-detail:last-child { border-bottom: none; }
  .it-pricing-grid { grid-template-columns: 1fr; }
  .it-price-card { border-right: none; border-bottom: 1px solid var(--border); }
  .it-price-card:last-child { border-bottom: none; }
  .it-cta { grid-template-columns: 1fr; }
  .it-cta-left { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 640px) {
  .it-hero { padding: 2rem 1.2rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .it-hero-text h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .it-service { padding: 2rem 1.2rem; }
  .it-details-header, .it-pricing-header { padding: 3rem 1.2rem 2rem; }
  .it-detail { padding: 1.5rem 1.2rem; }
  .it-price-card { padding: 2rem 1.2rem; }
  .it-cta-left, .it-cta-right { padding: 3rem 1.2rem; }
  .it-cta-left .btn-primary { width: 100%; justify-content: center; }
}
