:root {
  --ink: #112033;
  --muted: #5d6876;
  --line: #dce5ee;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #0070c9;
  --light-blue: #9dccf6;
  --teal: #1aa6a6;
  --green: #2e7d4f;
  --rose: #d8327b;
  --amber: #d49a2a;
  --navy: #344a5e;
  --shadow: 0 24px 60px rgba(17, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 229, 238, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand img {
  display: block;
  width: 188px;
  height: auto;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a:hover,
.header-cta:hover {
  color: var(--blue);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 760px;
  margin: 0 auto;
  padding: 54px 0 80px;
}

.hero > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 36px rgba(0, 112, 201, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.monitor {
  position: relative;
  max-width: 100%;
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  background: #2f485f;
  box-shadow: 0 34px 80px rgba(17, 32, 51, 0.24);
}

.monitor-top {
  display: flex;
  gap: 8px;
  height: 22px;
  align-items: center;
}

.monitor-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
}

.fiori-screen {
  overflow: hidden;
  min-height: 390px;
  border-radius: 10px;
  background: #f3f6fa;
  color: #20364f;
  font-size: 0.72rem;
}

.app-shell,
.app-tabs {
  display: flex;
  align-items: center;
}

.app-shell {
  gap: 22px;
  height: 38px;
  padding: 0 18px;
  border-bottom: 1px solid #d9e1eb;
  background: var(--white);
}

.app-shell span,
.app-tabs span {
  min-width: 0;
}

.app-shell strong {
  color: #0874d1;
}

.app-shell span:last-child {
  margin-left: auto;
  min-width: 150px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #6c7785;
  background: #f2f5f8;
}

.app-tabs {
  gap: 20px;
  padding: 12px 18px;
  border-bottom: 1px solid #dfe7ef;
  background: #fbfcfe;
  color: #334960;
  font-weight: 700;
  white-space: nowrap;
}

.app-tabs span:first-child {
  color: #086fc1;
}

.apps-strip {
  margin: 14px 18px;
  padding: 16px;
  border-radius: 12px;
  background: var(--white);
}

.apps-strip h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

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

.app-icons article {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  font-weight: 700;
}

.app-icons b {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--rose);
}

.app-icons article:nth-child(2) b,
.app-icons article:nth-child(3) b {
  background: var(--green);
}

.app-icons article:nth-child(4) b {
  background: #3d8bfd;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 18px;
}

.chart-card {
  min-height: 190px;
  padding: 16px;
  border: 1px solid #dce4ee;
  border-radius: 12px;
  background: var(--white);
}

.chart-card h3 {
  margin: 0 0 10px;
  color: #334960;
  font-size: 0.74rem;
}

.chart-card strong {
  display: block;
  margin-bottom: 12px;
  color: #547f68;
  font-size: 1.55rem;
  font-weight: 500;
}

.bars {
  display: flex;
  height: 98px;
  align-items: end;
  gap: 13px;
  padding-top: 14px;
  border-top: 1px solid #b5c7da;
}

.bars i {
  flex: 1;
  display: block;
  border-radius: 3px 3px 0 0;
  background: #49a0ff;
}

.bars.mixed i:nth-child(even) {
  background: #7bc96f;
}

.donut {
  width: 92px;
  height: 92px;
  margin: 18px auto 0;
  border-radius: 50%;
  background: conic-gradient(#3b91ff 0 58%, #ff7a2f 58% 78%, #21a67a 78% 100%);
  box-shadow: inset 0 0 0 28px var(--white);
}

.monitor-stand {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 34%;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 0 0 22px 22px;
  background: linear-gradient(90deg, #20364f, #526a80, #20364f);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 104px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.rich-copy p,
.contact p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.services-band {
  background: var(--navy);
  color: var(--white);
}

.services-band-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
}

.services-band .section-heading h2 {
  color: var(--white);
}

.services-band .service-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: #3d5368;
  box-shadow: none;
}

.services-band .service-card h3 {
  color: var(--white);
}

.services-band .service-card p {
  color: rgba(255, 255, 255, 0.76);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 32, 51, 0.04);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.service-card:nth-child(2) .service-icon {
  background: var(--teal);
}

.service-card:nth-child(3) .service-icon {
  background: var(--green);
}

.service-card:nth-child(4) .service-icon {
  background: var(--rose);
}

.service-card:nth-child(5) .service-icon {
  background: var(--amber);
}

.service-card h3,
.work-list h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.service-card p,
.work-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.work-list article {
  min-height: 210px;
  padding: 28px;
  background: var(--navy);
}

.work-list h3 {
  color: var(--white);
}

.work-list p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  min-height: 180px;
  padding: 28px 22px 22px;
  border-top: 4px solid var(--blue);
  border-radius: 0 0 8px 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 32, 51, 0.06);
}

.timeline li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.timeline span {
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  min-height: 360px;
  margin: 90px auto 160px;
  padding: clamp(46px, 6.5vw, 72px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 112, 201, 0.94), rgba(26, 166, 166, 0.84)),
    var(--blue);
  box-shadow: var(--shadow);
  scroll-margin-top: 108px;
}

.contact .section-kicker,
.contact p {
  color: rgba(255, 255, 255, 0.84);
}

.contact .button-primary {
  min-width: 190px;
  min-height: 56px;
  padding: 0 28px;
  color: var(--blue);
  background: var(--white);
  box-shadow: none;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.footer img {
  width: 142px;
  height: auto;
}

.footer p {
  margin: 0;
}

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

  .monitor {
    max-width: 760px;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro,
  .contact,
  .work-list {
    grid-template-columns: 1fr;
  }

  .contact .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 144px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    width: min(360px, calc(100% - 32px));
    min-height: auto;
    padding: 56px 0 72px;
  }

  .hero h1 {
    max-width: 320px;
    font-size: clamp(2.1rem, 9.4vw, 2.45rem);
    line-height: 1.02;
  }

  .hero-text {
    max-width: 300px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .monitor {
    width: 100%;
    overflow: hidden;
    padding: 10px;
    border-radius: 14px;
  }

  .fiori-screen {
    width: 100%;
    min-height: 300px;
    font-size: 0.58rem;
  }

  .app-shell {
    gap: 12px;
    padding: 0 12px;
  }

  .app-shell span:last-child {
    min-width: 92px;
    padding: 7px 10px;
  }

  .app-tabs {
    gap: 16px;
    padding: 10px 12px;
  }

  .app-tabs,
  .app-icons {
    grid-template-columns: 1fr 1fr;
  }

  .app-tabs {
    overflow: hidden;
  }

  .app-icons,
  .insights-grid,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .insights-grid article:nth-child(n + 2) {
    display: none;
  }

  .section,
  .services-band-inner {
    padding: 68px 0;
  }

  .service-card {
    min-height: auto;
  }

  .contact {
    min-height: 340px;
    margin-top: 64px;
    margin-bottom: 120px;
  }

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