/* ===================== BASE ===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: #f5f7fb;
  color: #0b1f38;
  line-height: 1.75;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 46px;
}

nav a {
  margin-left: 22px;
  text-decoration: none;
  font-weight: 600;
  color: #002d62;
}

.nav-cta {
  background: #0077d8;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

/* ===================== HERO ===================== */
.nx-article-hero {
  margin-top: 80px;
  height: 520px;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background-image: url("Top 7 Digital Transformation Priorities for 2025–2027 The Strategic Roadmap for Enterprise Success.png");
  background-size: cover;
  background-position: center right;
  position: relative;
  color: #ffffff;
}

.nx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4,18,34,0.92),
    rgba(4,18,34,0.55),
    rgba(4,18,34,0.15)
  );
}

.nx-hero-content {
  position: relative;
  max-width: 720px;
}

.nx-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.nx-hero-content p {
  font-size: 20px;
  color: #cfe6ff;
}

/* ===================== ARTICLE ===================== */
main {
  padding: 60px 20px;
}

.nx-article {
  max-width: 980px;
  margin: auto;
}

.nx-article section {
  margin-bottom: 48px;
}

.nx-article h2 {
  font-size: 24px;
  color: #003c7d;
  margin-bottom: 14px;
}

.nx-article p {
  margin-bottom: 16px;
  color: #324d61;
}

.nx-article ul {
  margin-left: 22px;
}

.nx-article li {
  margin-bottom: 12px;
  color: #35566d;
}

/* Conclusion */
.conclusion {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 32px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #002d62;
  color: #ffffff;
  text-align: center;
  padding: 18px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .nx-article-hero {
    height: auto;
    padding: 80px 24px;
    background-position: center;
  }

  .nx-hero-content h1 {
    font-size: 28px;
  }

  .nx-hero-content p {
    font-size: 16px;
  }
}
