
:root {
  --ink: #101722;
  --muted: #617083;
  --line: #dfe6ee;
  --soft: #f5f8fb;
  --white: #ffffff;
  --navy: #0c2037;
  --blue: #1769ff;
  --blue-2: #0d55d8;
  --green: #31c48d;
  --shadow: 0 18px 50px rgba(15, 33, 52, .10);
  --radius: 20px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { width: min(calc(100% - 40px), var(--wrap)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223,230,238,.8);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; color: white; font-weight: 900; font-size: 21px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: 0 7px 18px rgba(23,105,255,.2);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { letter-spacing: .13em; font-size: 18px; }
.brand-copy small { color: var(--muted); font-size: 10px; margin-top: 5px; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) { text-decoration: none; color: #354254; font-weight: 650; font-size: 14px; }
.site-nav > a:not(.button):hover { color: var(--blue); }
.menu-toggle { display:none; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 11px; padding: 14px 20px; cursor: pointer;
  color: var(--white); background: var(--blue);
  text-decoration: none; font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 18px rgba(23,105,255,.2);
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); background: var(--blue-2); }
.button-small { padding: 10px 15px; box-shadow:none; }
.button-light { color: var(--navy); background: var(--white); box-shadow:none; }
.button-light:hover { background: #edf4ff; }

.hero {
  position: relative; overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 80% 10%, rgba(23,105,255,.12), transparent 25%),
    linear-gradient(180deg, #fbfdff, #fff);
}
.hero::after {
  content:""; position:absolute; right:-90px; top:80px; width:380px; height:380px;
  border:1px solid rgba(23,105,255,.08); border-radius:50%;
  box-shadow: 0 0 0 70px rgba(23,105,255,.025), 0 0 0 140px rgba(23,105,255,.015);
}
.hero-grid { position:relative; z-index:1; display:grid; grid-template-columns: 1.15fr .85fr; gap:70px; align-items:center; }
.eyebrow {
  display:inline-block; margin-bottom: 16px; color: var(--blue);
  text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 900;
}
.eyebrow.light { color: #9fc2ff; }
h1,h2,h3,p { margin-top:0; }
h1 { margin-bottom:22px; max-width:780px; font-size: clamp(46px, 6vw, 78px); letter-spacing:-.055em; line-height:.99; }
h1 span { color: var(--blue); }
.hero-lede { max-width:720px; color:#4e5c6e; font-size:20px; line-height:1.65; }
.hero-actions { display:flex; gap:22px; align-items:center; margin-top:32px; }
.text-link { color:var(--navy); text-decoration:none; font-weight:800; }
.text-link:hover { color:var(--blue); }
.trust-row { display:flex; flex-wrap:wrap; gap:13px 22px; margin-top:42px; color:#536174; font-size:13px; font-weight:700; }
.trust-row span::before { content:"✓"; color:var(--green); margin-right:7px; font-weight:900; }

.hero-panel {
  background:var(--navy); color:white; border-radius:26px; padding:25px;
  box-shadow: 0 35px 80px rgba(12,32,55,.24);
  transform: rotate(1deg);
}
.panel-top { display:flex; gap:10px; align-items:center; padding-bottom:18px; border-bottom:1px solid rgba(255,255,255,.12); color:#b9c8da; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.status-dot { width:8px;height:8px;border-radius:50%;background:var(--green); box-shadow:0 0 0 5px rgba(49,196,141,.12); }
.code-lines { display:grid; gap:7px; padding:20px 0; }
.code-lines span { display:flex; gap:13px; align-items:center; padding:11px 13px; border-radius:10px; background:rgba(255,255,255,.055); color:#e6eef8; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size:13px; }
.code-lines b { color:#71a3ff; font-weight:600; }
.panel-footer { padding-top:18px; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; gap:20px; font-size:13px; color:#9fb0c4; }
.panel-footer strong { color:white; }

.logo-strip { padding:27px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; }
.logo-strip .wrap { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.logo-strip p { margin:0; color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.08em; font-weight:800; }
.pill-row { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:9px; }
.pill-row span { border:1px solid var(--line); border-radius:99px; padding:7px 11px; color:#465568; font-size:11px; font-weight:800; background:#fbfcfe; }

.section { padding:95px 0; }
.section-heading { max-width:790px; margin-bottom:46px; }
.section-heading.narrow { max-width:650px; }
.section-heading h2, .split h2, .cta-inner h2, .contact-copy h2 {
  margin-bottom:18px; font-size:clamp(34px,4vw,54px); line-height:1.06; letter-spacing:-.035em;
}
.section-heading p, .contact-copy > p { color:var(--muted); font-size:18px; }

.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card {
  min-height:260px; padding:26px; border:1px solid var(--line); border-radius:var(--radius);
  background:white; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); border-color:#cbd8e7; }
.service-card.featured { grid-column: span 2; background:linear-gradient(145deg,#eef5ff,#fff); border-color:#bfd4ff; }
.service-card .icon {
  width:48px;height:48px;border-radius:12px;display:grid;place-items:center;margin-bottom:28px;
  background:#eef4ff;color:var(--blue);font-weight:900;font-size:12px;letter-spacing:-.02em;
}
.service-card.featured .icon { width:58px; }
.service-card h3 { margin-bottom:11px; font-size:21px; letter-spacing:-.02em; }
.service-card p { margin-bottom:0; color:var(--muted); }

.section-dark { color:white; background:var(--navy); }
.split { display:grid; grid-template-columns:.85fr 1.15fr; gap:90px; align-items:start; }
.split h2 { margin:0; }
.why-list { display:grid; gap:0; }
.why-list > div { padding:25px 0; border-top:1px solid rgba(255,255,255,.13); }
.why-list > div:last-child { border-bottom:1px solid rgba(255,255,255,.13); }
.why-list strong { display:block; font-size:20px; margin-bottom:7px; }
.why-list p { color:#b5c4d6; margin:0; }

.case-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.case-card { padding:30px; border-radius:var(--radius); background:var(--soft); border:1px solid #e6ecf3; }
.case-card > span { color:var(--blue); font-size:11px; font-weight:900; text-transform:uppercase; letter-spacing:.1em; }
.case-card h3 { margin:15px 0 12px; font-size:24px; line-height:1.15; letter-spacing:-.025em; }
.case-card p { color:var(--muted); }
.tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:20px; }
.tags em { font-style:normal; font-size:11px; font-weight:800; color:#4d5d70; background:white; border:1px solid var(--line); border-radius:99px; padding:5px 9px; }

.cta-band { padding:65px 0; background:linear-gradient(135deg,#155bd7,#1769ff); color:white; }
.cta-inner { display:flex; justify-content:space-between; align-items:center; gap:70px; }
.cta-inner h2 { margin-bottom:10px; }
.cta-inner p { margin:0; color:#dce8ff; max-width:700px; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; align-items:start; }
.contact-note { margin-top:30px; padding:18px; border-left:3px solid var(--blue); background:var(--soft); }
.contact-note strong { display:block; font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.08em; }
.contact-note a { color:var(--blue); font-weight:800; text-decoration:none; }
.contact-form { padding:30px; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); background:white; }
.contact-form label { display:grid; gap:7px; color:#394759; font-weight:800; font-size:13px; margin-bottom:16px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
input,select,textarea {
  width:100%; border:1px solid #ccd6e2; border-radius:10px; padding:12px 13px;
  font:inherit; color:var(--ink); background:white; outline:none;
}
input:focus,select:focus,textarea:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(23,105,255,.1); }
textarea { resize:vertical; }
.form-help { margin:12px 0 0; color:var(--muted); font-size:11px; }

.site-footer { border-top:1px solid var(--line); padding:38px 0; }
.footer-grid { display:flex; align-items:center; justify-content:space-between; gap:50px; }
.footer-copy { max-width:690px; text-align:right; color:var(--muted); font-size:11px; }
.footer-copy p { margin-bottom:5px; }
.footer-copy a { color:var(--blue); text-decoration:none; font-weight:800; }

.legal { padding:70px 0; }
.legal article { max-width:820px; }
.legal h1 { font-size:48px; }
.legal h2 { margin-top:32px; font-size:24px; }
.legal p, .legal li { color:var(--muted); }

@media (max-width: 940px) {
  .hero-grid, .split, .contact-grid { grid-template-columns:1fr; gap:45px; }
  .hero { padding-top:65px; }
  .hero-panel { transform:none; max-width:650px; }
  .service-grid { grid-template-columns:1fr 1fr; }
  .service-card.featured { grid-column:span 2; }
  .case-grid { grid-template-columns:1fr; }
  .logo-strip .wrap, .cta-inner { align-items:flex-start; flex-direction:column; }
  .pill-row { justify-content:flex-start; }
}

@media (max-width: 720px) {
  .wrap { width:min(calc(100% - 28px), var(--wrap)); }
  .nav-wrap { min-height:70px; }
  .brand-copy small { display:none; }
  .menu-toggle {
    display:block; border:1px solid var(--line); border-radius:9px; background:white; padding:8px 11px; font-weight:800;
  }
  .site-nav {
    position:absolute; left:14px; right:14px; top:70px;
    display:none; flex-direction:column; align-items:stretch; gap:0;
    background:white; border:1px solid var(--line); border-radius:14px; box-shadow:var(--shadow); padding:10px;
  }
  .site-nav.open { display:flex; }
  .site-nav > a { padding:11px; }
  .hero { padding:52px 0 55px; }
  h1 { font-size:48px; }
  .hero-lede { font-size:17px; }
  .hero-actions { align-items:flex-start; flex-direction:column; }
  .panel-footer { flex-direction:column; }
  .section { padding:70px 0; }
  .service-grid { grid-template-columns:1fr; }
  .service-card.featured { grid-column:span 1; }
  .field-row { grid-template-columns:1fr; gap:0; }
  .contact-form { padding:22px; }
  .footer-grid { align-items:flex-start; flex-direction:column; }
  .footer-copy { text-align:left; }
}


.beyond-sap {
  display:inline-block; margin-top:27px; padding:11px 14px;
  border:1px solid #d8e5f8; border-radius:10px; background:#f5f9ff;
  color:#526174; font-size:13px;
}
.beyond-sap strong { color:var(--navy); }

.custom-software {
  background:
    radial-gradient(circle at 10% 20%, rgba(23,105,255,.07), transparent 24%),
    #f8fbff;
  border-top:1px solid #e7edf5;
}
.custom-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.custom-grid h2 { margin-bottom:20px; font-size:clamp(34px,4vw,52px); line-height:1.08; letter-spacing:-.035em; }
.custom-lede { color:var(--muted); font-size:17px; margin-bottom:25px; }
.custom-list { background:white; border:1px solid var(--line); border-radius:var(--radius); padding:8px 28px 25px; box-shadow:var(--shadow); }
.custom-list article { padding:22px 0; border-bottom:1px solid var(--line); }
.custom-list article strong { display:block; margin-bottom:6px; font-size:18px; }
.custom-list article p { margin:0; color:var(--muted); }
.tech-stack { display:flex; flex-wrap:wrap; gap:8px; padding-top:22px; }
.tech-stack span { padding:6px 10px; border-radius:99px; background:#eef4ff; color:var(--blue); font-size:11px; font-weight:850; }

@media (max-width: 940px) {
  .custom-grid { grid-template-columns:1fr; gap:42px; }
}
