:root {
  --navy: #2B4261;
  --navy-dark: #102D49;
  --green: #A8CF45;
  --teal: #038FA7;
  --paper: #F6F9FC;
  --white: #FFFFFF;
  --text: #203247;
  --muted: #6E7E90;
  --shadow: 0 24px 70px rgba(16, 45, 73, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 96px 0; }
.hero.section-pad { padding: 68px 0 78px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 249, 252, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(43, 66, 97, .08);
}
.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 220px; }
.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: var(--navy);
}
.menu a:not(.btn) { position: relative; }
.menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transition: width .25s ease;
}
.menu a:hover::after { width: 100%; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--green));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(3, 143, 167, .24);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(3, 143, 167, .32); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: .88rem; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(43, 66, 97, .16);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(168, 207, 69, .18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(3, 143, 167, .14), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -240px;
  bottom: -260px;
  border: 70px solid rgba(43, 66, 97, .05);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: start;
}
.hero-copy { grid-column: 1; }
.hero-card { grid-column: 2; }
.hero-metrics {
  grid-column: 1 / -1;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.08; }
h1 { font-size: clamp(2.45rem, 7vw, 5.3rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.045em; }
h3 { font-size: 1.35rem; }
.lead { margin: 20px 0 0; max-width: 660px; font-size: 1.1rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.hero-metrics > span {
  min-height: 96px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.84));
  border: 1px solid rgba(43,66,97,.08);
  color: var(--muted);
  box-shadow: 0 12px 26px rgba(16,45,73,.05);
}
.metric-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(3,143,167,.14), rgba(168,207,69,.18));
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(43,66,97,.06);
}
.ui-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}
.metric-icon .ui-icon { width: 22px; height: 22px; }
.metric-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-metrics strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.08;
}
.hero-metrics small {
  display: block;
  font-size: 1rem;
  line-height: 1.22;
  color: var(--muted);
}

.hero-card {
  min-height: 470px;
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  border-radius: 44px;
  background: linear-gradient(150deg, var(--navy-dark), var(--navy));
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-logo { width: min(300px, 66%); position: relative; z-index: 2; filter: drop-shadow(0 20px 30px rgba(0,0,0,.14)); }
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  animation: float 7s ease-in-out infinite;
}
.orbit-one { width: 420px; height: 420px; }
.orbit-two { width: 260px; height: 260px; animation-delay: -2s; }
.hero-panel {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 76px;
  z-index: 3;
  padding: 24px;
  border-radius: 24px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
}
.hero-panel h2 { color: var(--white); font-size: 1.45rem; margin-bottom: 8px; }
.hero-panel p { margin: 0; }

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.about { background: var(--white); }
.about-text {
  font-size: 1.08rem;
  color: var(--muted);
  padding-left: 30px;
  border-left: 5px solid var(--green);
}
.about-text p:first-child { margin-top: 0; }

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.06rem; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 282px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(43,66,97,.08);
  box-shadow: 0 16px 40px rgba(16,45,73,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(3,143,167,.26);
}
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(16,45,73,.12);
}
.card-icon .ui-icon {
  width: 24px;
  height: 24px;
  color: var(--white);
}
.service-card p { color: var(--muted); margin-bottom: 0; }
.partner-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(246,249,252,.95);
  border: 1px solid rgba(43,66,97,.10);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 800;
}
.partner i {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  font-style: normal;
  font-size: .92rem;
  line-height: 1;
}
.partner.microsoft i {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.partner.microsoft i::before,
.partner.microsoft i::after,
.partner.suse i::before,
.partner.suse i::after { content: ""; display: block; }
.partner.microsoft i::before {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(#f25022 0 0) 0 0 / 8px 8px no-repeat,
    linear-gradient(#7fba00 0 0) 10px 0 / 8px 8px no-repeat,
    linear-gradient(#00a4ef 0 0) 0 10px / 8px 8px no-repeat,
    linear-gradient(#ffb900 0 0) 10px 10px / 8px 8px no-repeat;
}
.partner.google i { color: #4285F4; font-weight: 900; font-family: Arial, sans-serif; }
.partner.suse i {
  border-radius: 50%;
  border: 3px solid #30BA78;
  position: relative;
}
.partner.suse i::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #30BA78;
  position: absolute;
  left: 3px;
  top: 3px;
}

.differentials {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: rgba(255,255,255,.78);
}
.feature-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 54px;
  border-radius: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.feature-box h2 { color: var(--white); }
.feature-box p { max-width: 560px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.check-list li {
  position: relative;
  padding: 18px 18px 18px 54px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--green);
  font-weight: 900;
}

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-copy p { color: var(--muted); font-size: 1.06rem; }
.email-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 800;
}
.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: 34px;
  background: var(--paper);
  border: 1px solid rgba(43,66,97,.08);
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; color: var(--navy); font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(43,66,97,.12);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(3,143,167,.12);
}
textarea { resize: vertical; }
.form-status { min-height: 24px; margin: 0; color: var(--teal); font-weight: 700; }

.footer { padding: 34px 0; background: #fff; border-top: 1px solid rgba(43,66,97,.08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); }
.footer img { width: 190px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-14px) scale(1.03); } }


@media (min-width: 921px) {
  .hero-copy { padding-top: 8px; }
  .hero-card { margin-top: 4px; }
  .hero-logo { width: min(280px, 64%); transform: translateY(-18px); }
}

@media (max-width: 920px) {
  .section-pad { padding: 72px 0; }
  .hero.section-pad { padding: 56px 0 64px; }
  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(43,66,97,.12);
    border-radius: 14px;
    background: var(--white);
  }
  .menu-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 999px; }
  .menu {
    position: fixed;
    inset: 84px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .menu.is-open { display: flex; }
  .hero-grid, .split, .feature-box, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy, .hero-card, .hero-metrics { grid-column: 1; }
  .hero-card { min-height: 430px; }
  .hero-metrics > span { border-radius: 24px; min-height: 88px; }
  .hero-panel { bottom: 28px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-text { padding-left: 20px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand img { width: 180px; }
  .hero-metrics, .cards-grid { grid-template-columns: 1fr; }
  .hero-metrics > span { min-height: 76px; grid-template-columns: 46px 1fr; }
  .metric-icon { width: 46px; height: 46px; font-size: 1.05rem; }
  .hero-metrics small { font-size: .94rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .feature-box, .contact-form { padding: 26px; border-radius: 26px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
