:root {
  --blue-950: #06172d;
  --blue-900: #08294d;
  --blue-800: #004b85;
  --blue-700: #005796;
  --blue-600: #096eb8;
  --blue-500: #155ddd;
  --green-500: #86c83d;
  --green-400: #a6d36c;
  --cyan-400: #32bfd5;
  --ink: #102033;
  --muted: #637286;
  --line: #dce7f1;
  --soft: #f4f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 23, 45, .15);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(220,231,241,.92);
  backdrop-filter: blur(18px);
}
.nav { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 236px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; color: #365068; font-size: 14px; font-weight: 800; }
.nav-links a:not(.btn):hover { color: var(--blue-600); }
.mobile-toggle { display: none !important; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue-500), var(--cyan-400)); box-shadow: 0 16px 34px rgba(21,93,221,.22); }
.btn-ghost { color: var(--blue-900); background: rgba(255,255,255,.86); border-color: var(--line); }
.btn-small { min-height: 38px; padding: 0 16px; font-size: 13px; }
.ghost-on-dark { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 78px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(50,191,213,.28), transparent 28%),
    radial-gradient(circle at 15% 20%, rgba(134,200,61,.22), transparent 34%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}
.hero:before {
  position: absolute;
  inset: auto -12% -34% auto;
  width: 620px;
  height: 620px;
  content: "";
  border-radius: 50%;
  background: rgba(134,200,61,.11);
}
.hero:after {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -90px;
  height: 180px;
  content: "";
  border-radius: 50% 50% 0 0;
  background: rgba(255,255,255,.08);
  transform: rotate(-3deg);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 54px; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green-400);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow:before, .kicker:before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(134,200,61,.14);
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.04em; }
h1 { max-width: 840px; font-size: clamp(42px, 6vw, 76px); }
h2 { color: var(--blue-950); font-size: clamp(30px, 4vw, 48px); }
h3 { color: var(--blue-900); font-size: 21px; }
.lead { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.82); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 32px;
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-card h2 { color: #fff; font-size: 34px; }
.hero-card p { color: rgba(255,255,255,.78); }
.hero-logo { width: 310px; max-width: 92%; margin: 0 0 28px; filter: drop-shadow(0 16px 28px rgba(0,0,0,.18)); }
.metric-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 26px; }
.metric { min-height: 112px; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.08); }
.metric strong { display: block; color: #fff; font-size: 28px; letter-spacing: -.04em; }
.metric span { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 800; }

.section { padding: 88px 0; }
.section-soft { background: linear-gradient(180deg, #f7fbfd, #fff); }
.section-head { max-width: 820px; margin-bottom: 34px; }
.section-head p { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.sticky-copy { position: sticky; top: 104px; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(6,23,45,.06);
}
.card p { margin: 12px 0 0; color: var(--muted); }
.icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: 16px; background: linear-gradient(135deg, rgba(134,200,61,.18), rgba(50,191,213,.18)); font-size: 24px; }

.band { overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--blue-950), var(--blue-800)); }
.band h2, .band h3 { color: #fff; }
.band p, .band .card p { color: rgba(255,255,255,.76); }
.band .card { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.07); box-shadow: none; }
.band .kicker { color: var(--cyan-400); }
.neftis-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.neftis-grid > div > p { margin: 18px 0 0; font-size: 19px; color: rgba(255,255,255,.78); }
.compact-grid .card { padding: 24px; }

.flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; counter-reset: flow; }
.flow-item { position: relative; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.flow-item:before { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; margin-bottom: 16px; counter-increment: flow; content: counter(flow); color: #fff; border-radius: 50%; background: linear-gradient(135deg,var(--blue-500),var(--cyan-400)); font-weight: 900; }
.flow-item p { margin: 10px 0 0; color: var(--muted); }
.service-card { display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.service-card a { color: var(--blue-600); font-weight: 900; }
.panel { padding: 34px; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: 0 18px 48px rgba(6,23,45,.08); }
.quote-panel { background: linear-gradient(135deg,#fff,#f6fbff); }
.quote-panel p { margin: 0; color: var(--blue-900); font-size: clamp(26px, 3vw, 38px); font-weight: 900; line-height: 1.12; letter-spacing: -.04em; }
.quote-panel span { display: block; margin-top: 18px; color: var(--muted); font-weight: 800; }

.cta { padding: 0 0 88px; }
.cta-box { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: 42px; color: #fff; border-radius: 32px; background: linear-gradient(135deg,var(--blue-950),var(--blue-800)); box-shadow: var(--shadow); }
.cta-box h2 { color: #fff; }
.cta-box p { margin: 14px 0 0; color: rgba(255,255,255,.76); font-size: 18px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.footer { padding: 28px 0; color: #6b7b8f; border-top: 1px solid var(--line); background: #fff; font-size: 14px; }
.footer strong { color: var(--blue-900); }
.footer a { color: var(--blue-600); font-weight: 900; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }

@media (max-width: 960px) {
  .mobile-toggle { display: inline-flex !important; }
  .brand-logo { width: 190px; }
  .nav-links { position: absolute; top: 78px; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .hero-grid, .split, .neftis-grid, .cta-box { grid-template-columns: 1fr; }
  .grid-3, .flow { grid-template-columns: repeat(2,1fr); }
  .sticky-copy { position: static; }
  .hero { padding-top: 66px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1140px); }
  .grid-2, .grid-3, .flow, .metric-grid { grid-template-columns: 1fr; }
  .hero-card, .cta-box, .panel { padding: 26px; }
  .section { padding: 64px 0; }
  .nav { min-height: 70px; }
  .nav-links { top: 70px; }
  .brand-logo { width: 172px; }
  .hero-logo { width: 250px; }
}
