body.datait-page {
  background: radial-gradient(circle at 16% 20%, #141f41, #050814 70%);
  color: var(--brand-white);
  animation: dataitPageFade 0.7s ease both;
}

body.datait-page header {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 70;
  backdrop-filter: blur(16px);
}

@keyframes dataitPageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.datait-page main {
  padding: 0 0 110px;
}

.datait-page [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  will-change: opacity, transform, filter;
}

.datait-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.datait-page section {
  padding: 82px 20px;
}

.datait-page .section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.datait-page .section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.datait-page h1,
.datait-page h2,
.datait-page h3 {
  margin: 14px 0;
  color: var(--brand-white);
}

.datait-page p {
  color: var(--text-muted);
  line-height: 1.68;
}

.datait-page main a:not(.hero-cta) {
  color: var(--brand-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.datait-page main a:not(.hero-cta):hover,
.datait-page main a:not(.hero-cta):focus-visible {
  color: var(--brand-white);
}

.datait-hero {
  position: relative;
  overflow: hidden;
  padding: 145px 20px 98px;
  background: linear-gradient(135deg, #030614, #051536 60%, #062d6b);
}

.datait-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/home-wifi-upgrade.jpeg') center center / cover no-repeat;
  opacity: 0.2;
  transform: scale(1.04);
}

.datait-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(84, 210, 255, 0.35), transparent 52%),
    radial-gradient(circle at 85% 0%, rgba(12, 93, 255, 0.45), transparent 60%),
    linear-gradient(to bottom, rgba(4, 7, 19, 0.58), rgba(4, 7, 19, 0.84));
}

.datait-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.hero-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-copy h1 {
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  line-height: 1.14;
  margin: 14px 0 16px;
}

.hero-subtitle {
  font-size: 1.08rem;
  margin: 0 0 22px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.hero-metrics article {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(2, 10, 32, 0.42);
}

.metric-value {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-white);
}

.metric-label {
  margin: 6px 0 0;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.datait-page .hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 24px 0 18px;
  flex-wrap: wrap;
}

.datait-page .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 25px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.datait-page .hero-cta.phone {
  background: var(--brand-white);
  color: var(--brand-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.datait-page .hero-cta.quote {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--brand-white);
}

.datait-page .hero-cta.outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-white);
}

.datait-page .hero-cta:hover {
  transform: translateY(-2px);
}

.hero-checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-checklist li {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 8, 28, 0.4);
}

.hero-proof {
  background: rgba(8, 12, 30, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.proof-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.82rem;
  margin: 0 0 14px;
  color: var(--text-muted);
}

.hero-proof ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
}

.hero-proof figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.hero-proof figcaption {
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(1, 7, 24, 0.8);
}

.datait-services,
.datait-testimonials,
.datait-faq {
  background: #0a1025;
}

.datait-packages {
  background: radial-gradient(circle at 15% 20%, rgba(12, 93, 255, 0.25), transparent 55%), #050b19;
}

.service-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.service-grid article {
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.service-grid h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.service-grid p {
  margin: 0;
}

.pricing-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.pricing-card {
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured {
  background: linear-gradient(150deg, rgba(12, 93, 255, 0.3), rgba(84, 210, 255, 0.2));
  border-color: rgba(84, 210, 255, 0.7);
}

.pricing-tag {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.pricing-value {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--brand-white);
}

.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.pricing-card li {
  padding-left: 16px;
  position: relative;
}

.pricing-card li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-cyan);
  position: absolute;
  left: 0;
  top: 10px;
}

.datait-cta {
  background: linear-gradient(140deg, #030614, #051536 62%, #0c5dff);
}

.cta-inner {
  text-align: center;
  max-width: 820px;
}

.cta-inner h2 {
  margin-bottom: 8px;
}

.cta-inner .hero-actions {
  justify-content: center;
  margin-top: 26px;
}

@media (max-width: 980px) {
  .datait-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .datait-page section {
    padding: 70px 16px;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .datait-page .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .datait-page [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
