
:root {
  --navy: #0b1f3a;
  --navy-2: #123055;
  --teal: #1ec6a7;
  --teal-dark: #16a38c;
  --slate: #4e5d72;
  --ink: #1b2838;
  --muted: #66758a;
  --bg: #f7fafc;
  --white: #ffffff;
  --border: #dfe7ef;
  --shadow: 0 18px 55px rgba(12, 31, 58, 0.10);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; border-radius: 999px;
  padding: 8px 14px; font-size: .88rem; font-weight: 700; color: var(--navy);
  background: rgba(30,198,167,0.12); border: 1px solid rgba(30,198,167,0.18);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--teal); }
.h1, h1 { font-size: clamp(2.45rem, 5vw, 4.35rem); line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 18px; color: var(--navy); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); line-height: 1.14; letter-spacing: -0.02em; margin: 0 0 16px; color: var(--navy); }
h3 { font-size: 1.22rem; line-height: 1.25; margin: 0 0 10px; color: var(--navy); }
p { margin: 0 0 18px; color: var(--slate); }
.lead { font-size: 1.1rem; color: var(--slate); max-width: 68ch; }
.center { text-align: center; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.card.soft { box-shadow: none; background: #f9fbfd; }
.button, button, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 700; cursor: pointer; transition: .25s ease; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white); box-shadow: 0 12px 28px rgba(30,198,167,.25); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--border); }
.btn-secondary:hover { background: #f5f8fb; }
.btn-dark { background: var(--navy); color: var(--white); }
.stack { display: flex; gap: 14px; flex-wrap: wrap; }
header.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(180%) blur(14px);
  background: rgba(255,255,255,0.88); border-bottom: 1px solid rgba(223,231,239,0.85);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 82px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { width: 168px; height: auto; }
.brand-mark { width: 48px; height: 48px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--navy); font-weight: 600; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-toggle { display: none; background: none; border: 0; font-size: 2rem; color: var(--navy); }
.hero {
  position: relative; overflow: hidden; padding: 82px 0 40px;
  background:
    radial-gradient(circle at top right, rgba(30,198,167,.14), transparent 33%),
    linear-gradient(180deg, #ffffff 0%, #f5fafb 100%);
}
.hero-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: center; }
.hero-copy p { max-width: 60ch; }
.hero-art {
  position: relative; min-height: 540px; border-radius: 28px; padding: 28px;
  background: linear-gradient(160deg, rgba(11,31,58,1) 0%, rgba(18,48,85,0.98) 68%, rgba(30,198,167,0.92) 140%);
  color: var(--white); box-shadow: var(--shadow); overflow: hidden;
}
.hero-art::after {
  content: ""; position: absolute; inset: auto -30px -30px auto; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 65%);
}
.dashboard {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 24px;
  padding: 20px; backdrop-filter: blur(12px);
}
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 18px 0 22px; }
.kpi {
  padding: 16px; border-radius: 18px; background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
}
.kpi strong { display: block; font-size: 1.45rem; color: var(--white); }
.kpi span { color: rgba(255,255,255,.78); font-size: .92rem; }
.progress-card, .invoice-card {
  background: rgba(255,255,255,.98); color: var(--ink); border-radius: 20px; padding: 18px; margin-top: 16px;
}
.invoice-list { display: grid; gap: 12px; margin-top: 12px; }
.invoice-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px;
  border-radius: 16px; background: #f7fafc; border: 1px solid #e5edf5;
}
.badge { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 6px 10px; font-size: .8rem; font-weight: 700; }
.badge.green { background: #e7fbf6; color: #0a7964; }
.badge.navy { background: #eaf1fb; color: var(--navy); }
.stat-bar {
  height: 10px; border-radius: 999px; background: #dbe7f3; overflow: hidden; margin-top: 10px;
}
.stat-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--teal), var(--navy)); border-radius: 999px; }
.trustbar {
  margin-top: 22px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px;
}
.trust-item {
  background: rgba(255,255,255,.82); border: 1px solid var(--border); border-radius: 18px; padding: 18px; text-align: center;
}
.trust-item strong { display:block; font-size:1.5rem; color: var(--navy); }
.trust-item span { color: var(--muted); font-size: .9rem; }
.icon-box {
  width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(30,198,167,.12), rgba(11,31,58,.10)); color: var(--teal-dark); font-size: 1.3rem; margin-bottom: 14px;
}
.process { counter-reset: step; }
.process .step {
  position: relative; padding-left: 82px; min-height: 72px;
}
.process .step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 0;
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--white);
}
.process .step::after {
  content: ""; position: absolute; left: 27px; top: 58px; width: 2px; height: calc(100% - 42px); background: #d9e7f3;
}
.process .step:last-child::after { display:none; }
.band {
  background: linear-gradient(135deg, var(--navy), #16375f); color: var(--white); border-radius: 28px; padding: 38px; position: relative; overflow: hidden;
}
.band h2, .band p { color: var(--white); }
.band::after {
  content: ""; position: absolute; width: 240px; height: 240px; right: -60px; top: -80px;
  border-radius: 50%; background: radial-gradient(circle, rgba(30,198,167,.3) 0%, rgba(30,198,167,0) 70%);
}
.logo-row { display:grid; gap:18px; grid-template-columns: repeat(5, minmax(0,1fr)); }
.logo-chip {
  border: 1px solid var(--border); border-radius: 18px; padding: 18px; min-height: 84px; display:grid; place-items:center; background:#fbfdff; font-weight:800; color:var(--navy);
}
.page-hero {
  padding: 86px 0 34px; background:
    radial-gradient(circle at top right, rgba(30,198,167,.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border-bottom: 1px solid var(--border);
}
.breadcrumbs { font-size: .92rem; color: var(--muted); margin-bottom: 12px; }
.list-check { display:grid; gap:14px; padding:0; margin: 0; list-style:none; }
.list-check li { position:relative; padding-left: 34px; }
.list-check li::before {
  content: "✓"; position:absolute; left:0; top:0; width:22px; height:22px; border-radius: 999px; display:grid; place-items:center;
  background:#e9fbf6; color:#0a826c; font-weight: 800;
}
.table-like { border: 1px solid var(--border); border-radius: 18px; overflow:hidden; }
.table-row { display:grid; grid-template-columns: 1fr 2fr; gap:0; }
.table-row > div { padding: 18px 20px; border-bottom: 1px solid var(--border); }
.table-row > div:first-child { background:#fbfdff; font-weight:700; color: var(--navy); }
.table-row:last-child > div { border-bottom:0; }
.industry-card { position: relative; overflow:hidden; }
.industry-card::after {
  content:""; position:absolute; right:-30px; bottom:-30px; width:120px; height:120px; border-radius:50%; background: radial-gradient(circle, rgba(30,198,167,.14), rgba(30,198,167,0) 70%);
}
.contact-grid { display:grid; grid-template-columns: .95fr 1.05fr; gap:24px; }
.contact-card { background:#f9fbfd; border:1px solid var(--border); border-radius:var(--radius); padding:28px; }
.contact-card dl { margin:0; }
.contact-card dt { font-weight: 800; color:var(--navy); margin-top: 18px; }
.contact-card dd { margin: 6px 0 0; color: var(--slate); }
.form-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:28px; box-shadow: var(--shadow); }
label { display:block; font-weight:700; color:var(--navy); margin: 0 0 8px; }
input, textarea, select {
  width:100%; border:1px solid #d7e3ef; border-radius: 12px; padding: 14px 15px; font: inherit; color: var(--ink);
  background:#fbfdff; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: #8ec9bf; box-shadow: 0 0 0 4px rgba(30,198,167,.12); }
textarea { min-height: 150px; resize: vertical; }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.notice { font-size: .95rem; color: var(--muted); }
.notice.success { color:#0a7c68; font-weight:700; }
footer.site-footer { background: #08182e; color: rgba(255,255,255,.9); margin-top: 40px; }
.footer-top { padding: 62px 0 30px; display:grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 30px; }
.footer-top p, .footer-top li, .footer-top a { color: rgba(255,255,255,.78); }
.footer-top h3 { color: var(--white); margin-bottom: 14px; }
.footer-brand img { width: 190px; filter: brightness(1.06); }
.footer-links { display:grid; gap:10px; }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between; gap:12px; padding: 20px 0 26px; border-top:1px solid rgba(255,255,255,.1);
  font-size:.92rem; color: rgba(255,255,255,.65);
}
.legal h1 { font-size: clamp(2rem,4.5vw,3.4rem); }
.legal h2 { font-size: 1.45rem; margin-top: 36px; }
.back-top { position: fixed; right: 18px; bottom: 18px; opacity:0; visibility:hidden; transition:.25s ease; z-index: 44; }
.back-top.show { opacity:1; visibility:visible; }
.spacer-8 { height: 8px; }
.spacer-16 { height: 16px; }
.spacer-24 { height: 24px; }
@media (max-width: 1024px) {
  .hero-wrap, .contact-grid, .footer-top, .grid-4, .grid-3, .grid-2, .logo-row, .kpi-row, .trustbar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 82px; background: rgba(255,255,255,.98); border-bottom:1px solid var(--border);
    display:none; flex-direction:column; align-items:flex-start; padding: 18px 16px 22px;
  }
  .nav-links.open { display:flex; }
  .hero-wrap, .contact-grid, .footer-top, .grid-4, .grid-3, .grid-2, .logo-row, .kpi-row, .trustbar, .form-grid, .table-row {
    grid-template-columns: 1fr;
  }
  .hero-art { min-height: auto; }
  .brand img { width: 145px; }
  .section { padding: 72px 0; }
  .page-hero { padding-top: 70px; }
  .footer-bottom { flex-direction: column; align-items:flex-start; }
}
