:root {
  --navy: #04134f;
  --navy-2: #10256b;
  --blue: #2789e6;
  --teal: #17c0cb;
  --purple: #6b4ef6;
  --slate-950: #060b1a;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f8fafc;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(2, 8, 23, 0.06);
  --shadow-md: 0 20px 60px rgba(2, 8, 23, 0.12);
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--slate-900);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,.95);
  box-shadow: 0 10px 32px rgba(2, 8, 23, 0.04);
  overflow: visible;
}
.site-header::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -34px; height: 34px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,0));
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0 4px; min-height: 112px; position: relative;
}
.brand { display: flex; align-items: center; gap: 0; flex: 0 0 auto; position: relative; z-index: 2; }
.brand-logo {
  height: 150px; width: auto; object-fit: contain;
  transform: translateY(28px);
  margin-bottom: -54px;
  filter: drop-shadow(0 18px 30px rgba(4,19,79,.10));
  transition: transform .25s ease, filter .25s ease;
}
.brand:hover .brand-logo { transform: translateY(24px) scale(1.015); filter: drop-shadow(0 22px 38px rgba(4,19,79,.14)); }
.nav { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav a { font-size: 15px; color: var(--slate-700); font-weight: 800; padding: 10px 13px; border-radius: 999px; transition: .22s ease; }
.nav a:hover, .nav a.active { color: var(--navy); background: rgba(39,137,230,.08); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 14px 24px; font-size: 15px; font-weight: 800;
  border: 1px solid transparent; transition: .25s ease; cursor: pointer;
}
.btn-primary { background: linear-gradient(90deg, var(--navy), var(--blue)); color: #fff; box-shadow: 0 14px 30px rgba(39,137,230,.22); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { background: #fff; border-color: var(--slate-300); color: var(--slate-800); }
.btn-outline:hover { border-color: var(--teal); color: var(--navy); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn-ghost:hover, .btn-light:hover { transform: translateY(-2px); }
.hero {
  position: relative; overflow: hidden; padding: 116px 0 76px;
  background:
    radial-gradient(circle at top left, rgba(23,192,203,.16), transparent 30%),
    radial-gradient(circle at top right, rgba(107,78,246,.10), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-mark { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-mark img { height: 60px; width: auto; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px;
  border: 1px solid rgba(23,192,203,.25); background: #ecfeff; color: #117d85; font-size: 14px; font-weight: 800;
}
.hero h1, .page-hero h1 { margin: 0; font-size: clamp(42px, 6vw, 68px); line-height: 1.03; letter-spacing: -.05em; font-weight: 900; color: var(--slate-950); }
.hero p, .page-hero p { margin: 22px 0 0; font-size: 19px; color: var(--slate-600); max-width: 700px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.stats-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; max-width: 620px; }
.mini-card {
  border: 1px solid var(--slate-200); background: rgba(255,255,255,.85); border-radius: 20px; padding: 18px; box-shadow: var(--shadow-sm);
}
.mini-card strong { display: block; color: var(--navy); font-size: 15px; }
.mini-card span { display: block; margin-top: 6px; color: var(--slate-500); font-size: 14px; }
.dashboard-shell { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-2xl); padding: 20px; box-shadow: var(--shadow-md); }
.dashboard { background: var(--slate-950); border-radius: 28px; color: #fff; padding: 20px; }
.dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 16px; background: rgba(255,255,255,.05); border-radius: 20px; font-size: 14px; color: rgba(255,255,255,.85); }
.dashboard-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; margin-top: 18px; }
.metric-main {
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--teal));
  border-radius: 24px; padding: 24px; box-shadow: 0 18px 36px rgba(4,19,79,.28);
}
.metric-main .label, .dash-stat .label { font-size: 14px; color: rgba(255,255,255,.8); }
.metric-main .value { margin-top: 10px; font-size: 54px; line-height: 1; font-weight: 900; }
.metric-main .text { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.82); }
.dash-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }
.dash-stat { background: rgba(255,255,255,.06); border-radius: 22px; padding: 18px; }
.dash-stat .value { margin-top: 8px; font-size: 34px; font-weight: 800; }
.workflow-card { background: #fff; border-radius: 24px; padding: 20px; color: var(--slate-800); }
.workflow-title { color: var(--slate-500); font-size: 14px; font-weight: 800; }
.workflow-list { display: grid; gap: 12px; margin-top: 18px; }
.workflow-item { display: flex; gap: 12px; align-items: flex-start; background: var(--slate-100); border-radius: 18px; padding: 14px; font-size: 14px; font-weight: 700; color: var(--slate-700); }
.dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 5px; background: var(--teal); flex: 0 0 auto; }
.section { padding: 92px 0; }
.section-light { background: var(--slate-100); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.eyebrow { color: var(--teal); text-transform: uppercase; letter-spacing: .22em; font-size: 13px; font-weight: 900; }
.section-head h2, .split-copy h2, .cta-box h2 { margin: 14px 0 0; font-size: clamp(34px,4vw,48px); line-height: 1.08; letter-spacing: -.04em; font-weight: 900; color: var(--slate-950); }
.section-head p, .split-copy p, .cta-box p { margin: 18px 0 0; font-size: 18px; color: var(--slate-600); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card, .module, .benefit, .price-card, .contact-card, .about-card, .form-shell {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 28px; padding: 28px; box-shadow: var(--shadow-sm);
}
.card:hover, .module:hover, .benefit:hover, .price-card:hover, .about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card, .module, .benefit, .price-card, .about-card { transition: .25s ease; }
.icon-box { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy), var(--blue), var(--teal)); color: #fff; border-radius: 18px; font-weight: 900; box-shadow: 0 16px 28px rgba(39,137,230,.16); }
.card h3, .module h3, .price-card h3, .about-card h3 { margin: 18px 0 0; font-size: 28px; line-height: 1.15; letter-spacing: -.03em; }
.card p, .module p, .about-card p, .price-card p { margin: 14px 0 0; color: var(--slate-600); font-size: 16px; }
.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: start; }
.tag-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.tag { padding: 10px 16px; border-radius: 999px; background: #ecfeff; color: #117d85; font-size: 14px; font-weight: 800; }
.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.module-num { color: var(--teal); font-size: 14px; font-weight: 900; }
.benefit-list { display: grid; gap: 16px; }
.benefit { display: flex; align-items: center; gap: 16px; padding: 22px; }
.check { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; font-weight: 900; flex: 0 0 auto; }
.benefit strong { font-size: 20px; color: var(--slate-800); }
.cta-wrap { padding-bottom: 92px; }
.cta-box { border-radius: var(--radius-2xl); padding: 48px; background: linear-gradient(90deg, var(--navy), var(--blue), var(--teal)); color: #fff; box-shadow: 0 24px 60px rgba(23,192,203,.18); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; }
.cta-box .eyebrow { color: rgba(255,255,255,.82); }
.cta-box h2, .cta-box p { color: #fff; }
.page-hero { padding: 112px 0 52px; background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); }
.page-hero .hero-mark img { height: 64px; }
.content-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.price-card .price { margin-top: 14px; font-size: 42px; line-height: 1; font-weight: 900; color: var(--navy); }
.price-card ul { margin: 18px 0 0; padding-left: 18px; color: var(--slate-600); }
.price-card li + li { margin-top: 10px; }
.price-highlight { border: 2px solid rgba(23,192,203,.45); box-shadow: 0 24px 60px rgba(23,192,203,.14); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.contact-card h3, .form-shell h3 { margin: 0; font-size: 30px; letter-spacing: -.03em; }
.contact-list { display: grid; gap: 14px; margin-top: 18px; color: var(--slate-700); }
.contact-list strong { display: block; color: var(--navy); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 22px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 14px; font-weight: 800; color: var(--slate-700); }
input, textarea, select {
  width: 100%; border: 1px solid var(--slate-300); border-radius: 16px; padding: 14px 16px; font: inherit; color: var(--slate-900); background: #fff;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 2px solid rgba(39,137,230,.22); border-color: var(--blue); }
.notice {
  margin-top: 18px; padding: 14px 16px; border-radius: 16px; font-size: 14px; font-weight: 700;
}
.notice.success { background: #ecfdf5; color: #166534; border: 1px solid #bbf7d0; }
.notice.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.site-footer { background: var(--slate-950); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; padding: 64px 0; }
.footer-logo { height: 46px; width: auto; }
.footer-copy p { margin: 20px 0 0; max-width: 560px; color: var(--slate-300); }
.footer-copy .small { margin-top: 16px; color: var(--slate-400); font-size: 14px; }
.footer-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.footer-title { color: #67e8f9; text-transform: uppercase; letter-spacing: .22em; font-size: 13px; font-weight: 900; margin-bottom: 18px; }
.footer-links, .footer-contact { display: grid; gap: 12px; color: var(--slate-300); }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; color: var(--slate-400); border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 14px; }
.menu-toggle { display: none; }
@media (max-width:1100px) {
  .hero-grid, .split-grid, .cta-grid, .footer-grid, .contact-grid, .dashboard-grid { grid-template-columns: 1fr; }
  .card-grid, .content-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:860px) {
  .nav { display: none; }
  .header-inner { min-height: 104px; }
  .brand-logo { height: 132px; transform: translateY(24px); margin-bottom: -46px; }
  .brand:hover .brand-logo { transform: translateY(22px) scale(1.01); }
  .menu-toggle { display: inline-flex; }
  .stats-mini, .card-grid, .module-grid, .footer-columns, .content-grid-2, .form-grid, .dash-stats { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .header-inner { flex-wrap: wrap; }
}
@media (max-width:560px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero, .page-hero { padding-top: 64px; }
  .section, .cta-wrap { padding-bottom: 72px; }
  .section { padding-top: 72px; }
  .cta-box, .dashboard-shell, .card, .module, .benefit, .price-card, .contact-card, .about-card, .form-shell { padding: 22px; }
  .brand-logo { height: 108px; transform: translateY(20px); margin-bottom: -40px; }
}

/* Final responsive refinements */
.site-header { isolation: isolate; }
.header-inner { padding-top: 14px; padding-bottom: 0; }
.brand-logo { max-width: 340px; }
.menu-toggle {
  display: none;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.contact-card, .form-shell {
  border-radius: 34px;
  border-color: rgba(203,213,225,.85);
}
.contact-card {
  background:
    radial-gradient(circle at top left, rgba(23,192,203,.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.contact-intro, .form-intro {
  margin: 10px 0 0;
  color: var(--slate-600);
  font-size: 16px;
}
.contact-list div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(226,232,240,.85);
}
.form-shell {
  padding: 34px;
  box-shadow: 0 24px 65px rgba(2,8,23,.09);
}
.form-grid { gap: 18px; }
input, textarea, select {
  min-height: 56px;
  border-radius: 18px;
  border-color: #cbd5e1;
  background: rgba(255,255,255,.98);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
textarea { min-height: 170px; }
input:hover, textarea:hover, select:hover { border-color: #94a3b8; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(39,137,230,.12);
}
.hidden-field { display:none !important; }
button[disabled] { opacity: .72; cursor: wait; transform: none !important; }
.notice { font-size: 15px; line-height: 1.55; }
@media (max-width: 860px) {
  .site-header { position: sticky; }
  .header-inner { min-height: 108px; align-items: flex-start; }
  .brand-logo { height: 132px; max-width: 260px; transform: translateY(22px); margin-bottom: -48px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .header-inner > .btn { display: none; }
  .nav {
    display: none;
    order: 10;
    width: 100%;
    margin: 46px 0 0;
    padding: 14px;
    border: 1px solid var(--slate-200);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-sm);
  }
  .nav.nav-open { display: grid; gap: 8px; }
  .nav a { border-radius: 16px; padding: 14px 16px; }
  .page-hero { padding-top: 86px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-shell, .contact-card { padding: 24px; border-radius: 26px; }
}
@media (max-width: 560px) {
  .brand-logo { height: 112px; max-width: 230px; transform: translateY(20px); margin-bottom: -42px; }
  .page-hero h1, .hero h1 { font-size: clamp(34px, 11vw, 48px); }
  .page-hero p, .hero p { font-size: 17px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-card h3, .form-shell h3 { font-size: 26px; }
  .btn { padding: 15px 18px; }
}
