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

:root {
  --blue: #0b73e8;
  --dark-blue: #061b33;
  --green: #28b34b;
  --text: #102033;
  --muted: #617185;
  --soft: #f4f8fc;
  --border: #dfe9f2;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 233, 242, 0.7);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  height: 48px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
}

.nav-menu a:hover {
  color: var(--blue);
}

/* QUOTE BUTTON */

.quote-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--blue);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(11, 115, 232, 0.25);
}

.quote-btn span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #30ff72;
  box-shadow: 0 0 0 rgba(48, 255, 114, 0.8);
  animation: greenBlink 1s infinite, greenPulse 1.6s infinite;
}

@keyframes greenBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@keyframes greenPulse {
  0% { box-shadow: 0 0 0 0 rgba(48, 255, 114, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(48, 255, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(48, 255, 114, 0); }
}

/* HERO */

.hero {
  min-height: 630px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 42%, #eaf6ff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
  min-height: 630px;
}

.hero-copy {
  padding-top: 30px;
  z-index: 2;
}

.kicker,
.section-label {
  font-size: 12px;
  letter-spacing: 1.4px;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
}

.kicker span,
.section-label span {
  color: var(--green);
}

.hero h1 {
  margin-top: 20px;
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: -2px;
  color: var(--dark-blue);
  font-weight: 900;
}

.hero h1 span,
.solutions-intro h2 span,
.ecosystem-content h2 span,
.center-title span,
.industries-intro h2 span,
.bottom-copy h2 span {
  color: var(--blue);
}

.hero-text {
  margin-top: 22px;
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.blue-btn,
.white-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.blue-btn {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(11, 115, 232, 0.22);
}

.white-btn,
.outline-btn {
  color: var(--dark-blue);
  border: 1px solid #bdd2e6;
  background: #ffffff;
}

.hero-visual {
  height: 630px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-bottom-left-radius: 26px;
}

/* STATS */

.stats-bar {
  margin-top: -85px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(6, 27, 51, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.stat-item {
  padding: 22px 28px;
  display: grid;
  gap: 7px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: 0;
}

.icon {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.stat-item small {
  font-size: 10px;
  font-weight: 900;
  color: #273b52;
}

.stat-item strong {
  font-size: 28px;
  color: var(--dark-blue);
}

/* VALUE CARDS */

.value-section {
  padding: 40px 0 70px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(6, 27, 51, 0.06);
}

.value-card {
  min-height: 190px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.value-card:last-child {
  border-right: 0;
}

.circle-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 24px;
}

.value-card h3 {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.value-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

/* SOLUTIONS */

.solutions-section {
  padding: 35px 0 80px;
}

.solutions-layout {
  display: grid;
  grid-template-columns: 31% 69%;
  gap: 40px;
}

.solutions-intro {
  padding-top: 20px;
}

.solutions-intro h2,
.ecosystem-content h2,
.industries-intro h2 {
  margin-top: 16px;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark-blue);
}

.solutions-intro h2 span,
.industries-intro h2 span {
  color: var(--green);
}

.solutions-intro p,
.ecosystem-content p,
.industries-intro p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.outline-btn {
  margin-top: 26px;
}

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

.solution-card {
  position: relative;
  height: 218px;
  border-radius: 15px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(6, 27, 51, 0.12);
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 51, 0.08), rgba(6, 27, 51, 0.92));
}

.solution-card div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 17px;
}

.solution-card h3 {
  font-size: 14px;
  font-weight: 900;
}

.solution-card p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: #dce8f3;
}

/* ECOSYSTEM */

.ecosystem-section {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

.earth-visual {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 48%;
  max-width: 720px;
}

.earth-visual img {
  width: 100%;
}

.ecosystem-content {
  position: relative;
  z-index: 2;
  padding-left: 48%;
}

.ecosystem-content h2 span {
  color: var(--green);
}

.ecosystem-icons {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ecosystem-icons div {
  font-size: 11px;
  font-weight: 900;
  color: var(--blue);
}

/* CAPABILITIES */

.capabilities-section {
  padding: 50px 0 70px;
  border-top: 1px solid #eef3f7;
  border-bottom: 1px solid #eef3f7;
}

.center {
  text-align: center;
}

.center-title {
  margin-top: 10px;
  text-align: center;
  font-size: 30px;
  color: var(--dark-blue);
}

.center-title span {
  color: var(--green);
}

.process-line {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.process-line div {
  min-height: 105px;
  padding: 18px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.process-line strong {
  color: var(--green);
  font-size: 15px;
}

.process-line p {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 800;
  color: #273b52;
  text-transform: uppercase;
}

/* INDUSTRIES */

.industries-section {
  padding: 70px 0;
}

.industries-layout {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 38px;
}

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

.industry-card {
  position: relative;
  height: 132px;
  border-radius: 14px;
  overflow: hidden;
  color: #ffffff;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 51, 0.05), rgba(6, 27, 51, 0.86));
}

.industry-card h3 {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 13px;
  font-size: 12px;
  line-height: 1.25;
}

/* INSIGHTS */

.insights-section {
  padding: 65px 0;
  background: var(--soft);
}

.insights-layout {
  display: grid;
  grid-template-columns: 76% 24%;
  gap: 24px;
}

.blog-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 125px;
  object-fit: cover;
}

.blog-card small {
  display: inline-block;
  margin: 16px 16px 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.blog-card h3 {
  margin: 10px 16px;
  font-size: 15px;
  line-height: 1.4;
}

.blog-card p {
  margin: 0 16px 18px;
  color: var(--muted);
  font-size: 12px;
}

.newsletter {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  align-self: end;
}

.newsletter h3 {
  font-size: 22px;
}

.newsletter p {
  margin: 12px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.newsletter input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0 14px;
}

.newsletter button {
  width: 100%;
  height: 46px;
  margin-top: 12px;
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
}

.newsletter small {
  display: block;
  margin-top: 12px;
  color: var(--green);
}

/* PARTNERS */

.partners-section {
  padding: 42px 0;
  background: #ffffff;
}

.partner-logos {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  gap: 18px;
  text-align: center;
}

.partner-logos span {
  font-size: 14px;
  font-weight: 900;
  color: #31506e;
}

/* BOTTOM CTA */

.bottom-cta {
  min-height: 330px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.85) 40%, rgba(234,246,255,0.8) 100%),
    url("../images/cta-bg.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.bottom-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.bottom-copy h2 {
  font-size: 40px;
  line-height: 1.1;
  color: var(--dark-blue);
}

.bottom-copy h2 span {
  color: var(--green);
}

.bottom-copy p {
  margin: 16px 0 24px;
  color: var(--muted);
  max-width: 430px;
  line-height: 1.7;
}

.contact-card {
  width: 340px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 55px rgba(6,27,51,0.12);
}

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.contact-card p {
  padding: 9px 0;
  color: #35506b;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .nav-menu {
    display: none;
  }

  .hero-grid,
  .solutions-layout,
  .industries-layout,
  .insights-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-visual {
    height: 420px;
  }

  .stats-bar {
    margin-top: 0;
    padding-top: 25px;
  }

  .value-grid,
  .stats-grid,
  .solution-cards,
  .industry-grid,
  .process-line,
  .partner-logos,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-content {
    padding-left: 0;
    padding-top: 300px;
  }

  .earth-visual {
    width: 70%;
  }
}

@media (max-width: 680px) {
  .brand img {
    height: 38px;
  }

  .quote-btn {
    padding: 11px 14px;
  }

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

  .value-grid,
  .stats-grid,
  .solution-cards,
  .industry-grid,
  .process-line,
  .partner-logos,
  .blog-grid,
  .ecosystem-icons {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .bottom-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card {
    width: 100%;
  }

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