:root {
  --ink: #0b1220;
  --muted: #667085;
  --line: #d7dfec;
  --paper: #ffffff;
  --soft: #eef4fb;
  --blue: #2f65f6;
  --cyan: #15b8d6;
  --green: #2f7d55;
  --amber: #f2b545;
  --radius: 10px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background: #edf3fa;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.boot-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0b1220;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 0;
  background: rgba(237, 243, 250, 0.72);
  border-bottom: 1px solid rgba(215, 223, 236, 0.72);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 10px;
  border: 1px solid rgba(215, 223, 236, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 32px;
  object-fit: cover;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 10px;
}

.nav-links a:hover {
  color: var(--blue);
  background: #eef4ff;
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px !important;
  border-radius: 11px !important;
  color: #fff !important;
  background: #0b1220;
}

.nav-cta:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  padding: 88px 0 70px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.95), rgba(13, 36, 58, 0.92)),
    url("IMG/NEXORAERP_WEB.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, #edf3fa);
}

.hero-bg-one,
.hero-bg-two {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.72;
}

.hero-bg-one {
  width: 340px;
  height: 340px;
  right: 8%;
  top: 12%;
  background: rgba(21, 184, 214, 0.24);
}

.hero-bg-two {
  width: 280px;
  height: 280px;
  left: 7%;
  bottom: 12%;
  background: rgba(242, 181, 69, 0.18);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.78fr);
  gap: 62px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #78e7ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy p {
  max-width: 650px;
  margin-top: 24px;
  color: #c6d2e3;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 38px rgba(47, 101, 246, 0.26);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.ghost.dark {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(47, 101, 246, 0.18);
}

.button.light {
  color: var(--ink);
  background: #fff;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.metric-strip span {
  color: #aebbd0;
  font-size: 13px;
}

.metric-strip b {
  display: block;
  color: #fff;
  font-size: 20px;
}

.hero-showcase {
  overflow: hidden;
  min-height: 560px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 900;
}

.showcase-dots {
  display: flex;
  gap: 8px;
}

.showcase-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.showcase-dots button.is-active {
  width: 30px;
  background: #78e7ff;
}

.showcase-stage {
  position: relative;
  min-height: 470px;
  margin-top: 18px;
}

.showcase-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 260px auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(11, 18, 32, 0.74);
}

.showcase-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background:
    radial-gradient(circle at 18% 16%, rgba(47, 101, 246, 0.23), transparent 34%),
    linear-gradient(135deg, #fff, #e8eef8);
}

.showcase-media img {
  max-height: 210px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.18));
}

.showcase-copy {
  padding: 26px;
}

.showcase-copy span,
.solution-body span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 99px;
  color: #0f5d70;
  background: #e8fbff;
  font-size: 12px;
  font-weight: 900;
}

.showcase-copy h2 {
  margin-top: 14px;
  color: #fff;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.showcase-copy p {
  margin-top: 10px;
  color: #c4cfdf;
}

.showcase-copy a,
.solution-body a {
  display: inline-flex;
  margin-top: 18px;
  color: #78e7ff;
  font-weight: 900;
}

.logo-strip {
  position: relative;
  z-index: 3;
  width: min(1080px, calc(100% - 40px));
  margin: -26px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.logo-strip span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f7f9fc;
}

.logo-strip img {
  max-height: 42px;
  object-fit: contain;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading .eyebrow,
.process .eyebrow,
.contact-info .eyebrow {
  color: var(--blue);
}

.section-heading h2,
.process h2,
.cta-panel h2,
.contact-info h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading p,
.cta-panel p,
.contact-info p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

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

.solution-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
}

.solution-image {
  height: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #f7f9fc;
  border-bottom: 1px solid var(--line);
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.solution-body {
  padding: 22px;
}

.solution-body h3 {
  margin-top: 14px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.solution-body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.solution-body a {
  color: var(--blue);
}

.construye-section {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: 86px 0 20px;
}

.construye-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(21, 184, 214, 0.24), transparent 30%),
    linear-gradient(135deg, #07111f, #12324b 58%, #10202f);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.construye-copy {
  align-self: center;
  padding: 16px 10px;
}

.construye-copy h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.construye-copy p {
  max-width: 650px;
  margin-top: 18px;
  color: #c7d6e8;
  font-size: 17px;
}

.construye-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.construye-product {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  overflow: hidden;
}

.construye-product img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
}

.construye-product-badge {
  position: absolute;
  left: 38px;
  bottom: 36px;
  max-width: 280px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(14px);
}

.construye-product-badge strong,
.construye-product-badge span {
  display: block;
}

.construye-product-badge span {
  margin-top: 2px;
  color: #bdd0e7;
  font-size: 13px;
}

.construye-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.construye-audience span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #183049;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.construye-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.construye-feature-grid article {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.construye-feature-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
}

.construye-feature-grid h3 {
  margin-top: 12px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.construye-feature-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.construye-packages {
  padding-top: 80px;
}

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

.package-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.package-media {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 101, 246, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fbff, #eaf3ff);
  border-bottom: 1px solid var(--line);
}

.package-media img {
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.14));
}

.package-body {
  padding: 24px;
}

.package-body h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.package-body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.module-list span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #0f4ad7;
  background: #eef4ff;
  font-size: 12px;
  font-weight: 850;
}

.renewals-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.renewals-panel h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.renewals-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.renewal-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.renewal-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr 0.8fr 0.55fr 0.7fr;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: #344054;
  font-size: 13px;
}

.renewal-row:last-child {
  border-bottom: 0;
}

.renewal-row.is-head {
  min-height: 42px;
  color: #0b1220;
  background: #eef4ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.renewal-row span:first-child {
  color: #101828;
  font-weight: 850;
}

.services {
  padding-top: 34px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-pills button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #183049;
  background: #fff;
  cursor: pointer;
  font-weight: 850;
}

.service-pills button.is-active {
  color: #fff;
  background: #0b1220;
  border-color: #0b1220;
}

.service-pills span {
  color: #78e7ff;
}

.service-summary {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.service-summary a {
  margin-left: 12px;
  color: var(--blue);
}

.process {
  padding: 92px max(20px, calc((100vw - 1180px) / 2));
  background: #fff;
  border-block: 1px solid var(--line);
}

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

.timeline article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.timeline span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
}

.timeline h3 {
  margin-top: 14px;
}

.timeline p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.cta-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 92px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(120, 231, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #0b1220, #173a4f);
}

.contact {
  padding-top: 70px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-info {
  padding: 42px;
  background: #f8fafc;
  border-right: 1px solid var(--line);
}

.contact-info a {
  display: flex;
  margin-top: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-form {
  padding: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9d4e4;
  border-radius: 9px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 101, 246, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

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

  .hero-showcase {
    max-width: 640px;
    width: 100%;
  }

  .solution-grid,
  .timeline,
  .construye-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .construye-hero,
  .renewals-panel {
    grid-template-columns: 1fr;
  }

  .construye-product {
    min-height: 360px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-info {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .nav-shell,
  .hero-shell,
  .section,
  .cta-panel,
  .footer,
  .logo-strip {
    width: calc(100% - 28px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .metric-strip,
  .logo-strip,
  .solution-grid,
  .timeline,
  .construye-feature-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .construye-section {
    width: calc(100% - 28px);
    padding-top: 58px;
  }

  .construye-hero {
    padding: 18px;
  }

  .construye-copy h2 {
    font-size: 34px;
  }

  .construye-product {
    min-height: 300px;
    padding: 12px;
  }

  .construye-product-badge {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .package-media {
    height: 220px;
  }

  .renewals-panel {
    padding: 18px;
  }

  .renewal-table {
    overflow-x: auto;
  }

  .renewal-row {
    min-width: 720px;
  }

  .hero-showcase {
    min-height: 500px;
    padding: 16px;
  }

  .showcase-stage {
    min-height: 408px;
  }

  .showcase-card {
    grid-template-rows: 190px auto;
  }

  .showcase-media img {
    max-height: 150px;
  }

  .cta-panel,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .contact-info {
    padding: 26px;
  }
}
