:root {
  --navy-950: #0a0f1e;
  --navy-900: #0f1729;
  --navy-800: #16213a;
  --navy-700: #1f2c4a;
  --ink: #0b1220;
  --slate-600: #4b5768;
  --slate-400: #8695a8;
  --slate-200: #e4e9f0;
  --slate-100: #f2f5f9;
  --white: #ffffff;
  --accent: #2f6fed;
  --accent-600: #1f56c9;
  --accent-100: #e8f0fe;
  --teal: #14b8a6;
  --amber: #f5a524;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 41, 0.06), 0 1px 1px rgba(15, 23, 41, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 41, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 41, 0.14);
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-100);
  padding: 6px 12px;
  border-radius: 999px;
}
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 38px); margin-top: 14px; }
.section-head p { color: var(--slate-600); font-size: 17px; margin-top: 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 6px 16px rgba(47, 111, 237, 0.28); }
.btn-primary:hover { background: var(--accent-600); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.28); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
.btn-outline { background: var(--white); color: var(--ink); border-color: var(--slate-200); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* Header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
#site-header.scrolled { background: rgba(10, 15, 30, 0.92); box-shadow: var(--shadow-md); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; font-size: 18px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 15px;
}
.brand-sub { display: block; font-size: 11px; font-weight: 500; color: var(--slate-400); letter-spacing: 0.03em; }
#nav-menu { display: flex; align-items: center; gap: 32px; }
#nav-menu a { color: rgba(255, 255, 255, 0.82); font-size: 14.5px; font-weight: 500; transition: color 0.15s ease; }
#nav-menu a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
#nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
#nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }

@media (max-width: 860px) {
  #nav-toggle { display: flex; }
  #nav-menu {
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--navy-900); flex-direction: column; align-items: stretch;
    gap: 0; max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  #nav-menu.open { max-height: 420px; }
  #nav-menu a { padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-actions.desktop-only { display: none; }
}

/* Hero */
.hero {
  background: radial-gradient(1200px 600px at 15% -10%, rgba(47, 111, 237, 0.35), transparent 60%),
              radial-gradient(900px 500px at 100% 0%, rgba(20, 184, 166, 0.25), transparent 55%),
              linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
  color: var(--white);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(34px, 5vw, 54px); margin-top: 18px; }
.hero .accent-text { background: linear-gradient(90deg, #7db2ff, #5fe3d1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: rgba(255, 255, 255, 0.72); font-size: 18px; margin-top: 20px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-trust div strong { display: block; font-size: 24px; color: var(--white); }
.hero-trust div span { font-size: 13px; color: var(--slate-400); }

.hero-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  color: var(--ink);
}
.hero-card .row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--slate-100); }
.hero-card .row:last-of-type { border-bottom: none; }
.hero-card .row .label { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; }
.hero-card .row .value { color: var(--teal); font-weight: 700; font-size: 14px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,166,0.15); }

/* Logos / trust strip */
.trust-strip { padding: 40px 0; border-bottom: 1px solid var(--slate-200); }
.trust-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-strip p { color: var(--slate-400); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.trust-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-badges span { color: var(--slate-600); font-weight: 600; font-size: 14.5px; display: flex; align-items: center; gap: 8px; }

/* Service cards */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-100); color: var(--accent); margin-bottom: 18px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p.desc { color: var(--slate-600); font-size: 14.5px; flex-grow: 1; }
.card .price { margin: 18px 0 6px; font-size: 26px; font-weight: 800; }
.card .price span { font-size: 13px; font-weight: 500; color: var(--slate-400); }
.card .from-note { font-size: 12.5px; color: var(--slate-400); margin-bottom: 18px; }
.feature-list { margin: 14px 0 20px; display: flex; flex-direction: column; gap: 9px; }
.feature-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--slate-600); }
.feature-list svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }

.bg-slate { background: var(--slate-100); }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { display: flex; gap: 16px; }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.why-item h4 { font-size: 16.5px; margin-bottom: 6px; }
.why-item p { color: var(--slate-600); font-size: 14.5px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--slate-200); }
.step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy-900); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; margin-bottom: 16px;
}
.step h4 { font-size: 16.5px; margin-bottom: 8px; }
.step p { color: var(--slate-600); font-size: 14.5px; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-radius: 22px;
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h3 { font-size: 26px; max-width: 480px; }
.cta-band p { color: rgba(255,255,255,0.7); margin-top: 10px; max-width: 480px; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px; cursor: pointer; font-weight: 600; font-size: 16px;
}
.faq-question .chev { transition: transform 0.2s ease; color: var(--slate-400); flex-shrink: 0; }
.faq-item.open .faq-question .chev { transform: rotate(180deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-answer { max-height: 260px; }
.faq-answer p { color: var(--slate-600); font-size: 14.5px; padding: 0 4px 22px; }

/* Disclosure banner */
.disclosure {
  background: #fff7e6;
  border-top: 1px solid #f4dfa8;
  border-bottom: 1px solid #f4dfa8;
  padding: 12px 0;
}
.disclosure p { font-size: 13px; color: #7a5c14; text-align: center; }

/* Footer */
footer { background: var(--navy-950); color: rgba(255,255,255,0.6); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-grid h5 { color: var(--white); font-size: 14px; margin-bottom: 16px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 11px; }
.footer-grid a { font-size: 14px; transition: color 0.15s ease; }
.footer-grid a:hover { color: var(--white); }
.footer-brand p { font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px;
}

.reveal { opacity: 0; transform: translateY(14px); }

/* Dashboard table */
.table-wrap { border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; }
table.orders { width: 100%; border-collapse: collapse; font-size: 14px; }
table.orders th, table.orders td { padding: 14px 18px; text-align: left; }
table.orders thead th { background: var(--slate-100); font-weight: 600; color: var(--slate-600); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.03em; }
table.orders tbody tr { border-top: 1px solid var(--slate-200); }
.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.badge-active { background: #e6f9f4; color: #0d9488; }
.badge-pending, .badge-provisioning { background: #fff7e6; color: #b45309; }
.badge-failed { background: #fff1f0; color: #a8071a; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--slate-600); }
