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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f7fb;
  color: #0f172a;
}

.hero {
  background: linear-gradient(135deg, #071b3a, #0ea5e9);
  color: white;
  padding-bottom: 70px;
}

.navbar {
  max-width: 1280px;
  margin: auto;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.35);
}

.brand h1 {
  font-size: 26px;
}

.brand h1 span {
  color: #bae6fd;
}

.brand p {
  color: #dbeafe;
  font-size: 13px;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: #e0f2fe;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.nav-links a:hover {
  color: white;
}

.hero-content {
  max-width: 1280px;
  margin: 50px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.tag {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #e0f2fe;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero-text h2 {
  font-size: 46px;
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 850px;
}

.hero-text p {
  color: #e0f2fe;
  font-size: 17px;
  line-height: 1.7;
  max-width: 790px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  background: white;
  color: #0369a1;
}

.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  padding: 26px;
  backdrop-filter: blur(12px);
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.status-row:last-child {
  border-bottom: none;
}

.status-row span {
  color: #dbeafe;
}

.status-row strong {
  color: white;
  text-align: right;
}

.live {
  color: #86efac !important;
}

.container {
  max-width: 1280px;
  margin: -35px auto 0;
  padding: 0 32px 60px;
}

.intro-section {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 34px;
  margin-bottom: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.section-heading span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e0f2fe;
  color: #0369a1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.section-heading h2 {
  font-size: 27px;
}

.intro-text {
  color: #475569;
  line-height: 1.7;
  font-size: 16px;
  max-width: 930px;
  margin-bottom: 24px;
}

.value-grid,
.service-grid,
.cloud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.service-card,
.client-card,
.cloud-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
}

.card h3,
.service-card h3,
.client-card h3,
.cloud-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
}

.card p,
.service-card p,
.client-card p,
.cloud-card p {
  color: #475569;
  line-height: 1.6;
  font-size: 14px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}

.aws {
  border-top: 4px solid #f59e0b;
}

.azure {
  border-top: 4px solid #2563eb;
}

.gcp {
  border-top: 4px solid #22c55e;
}

.cta {
  background: linear-gradient(135deg, #0f172a, #075985);
  color: white;
  text-align: center;
  border-radius: 26px;
  padding: 46px 28px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.18);
}

.cta h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.cta p {
  color: #dbeafe;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

footer {
  padding: 26px;
  text-align: center;
  color: #64748b;
  background: white;
  border-top: 1px solid #e2e8f0;
}

footer p {
  margin: 4px 0;
}

@media (max-width: 960px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h2 {
    font-size: 34px;
  }

  .value-grid,
  .service-grid,
  .client-grid,
  .cloud-grid {
    grid-template-columns: 1fr;
  }
}