
:root {
  --ink: #07172d;
  --muted: #54667d;
  --line: #d7e5f3;
  --blue: #146bd1;
  --deep: #06162b;
  --teal: #06a99a;
  --violet: #6d35d8;
  --cyan: #0ea5e9;
  --emerald: #0f9f6e;
  --amber: #f59e0b;
  --bg: #f3f8fd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 4%, rgba(14, 165, 233, 0.2), transparent 26%),
    radial-gradient(circle at 10% 18%, rgba(6, 169, 154, 0.18), transparent 24%),
    var(--bg);
}
a { color: inherit; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--blue);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 13px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 22, 43, 0.94);
  color: #ffffff;
  backdrop-filter: blur(16px);
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-link img { border-radius: 12px; }
.brand-link strong,
.brand-link small {
  display: block;
  line-height: 1.05;
}
.brand-link small { color: #bde7ff; font-size: 12px; }
.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.7vw, 20px);
}
.site-header nav a {
  color: #dcecff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 780;
}
.site-header nav a:focus,
.site-header nav a:hover { color: #ffffff; }
.header-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font: inherit;
  font-weight: 870;
  cursor: pointer;
}
.header-cta,
.primary-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #1268d6, #08a994);
  box-shadow: 0 12px 26px rgba(20, 107, 209, 0.24);
}
.secondary-cta {
  color: #0857b5;
  border: 1px solid #b6d5f7;
  background: #ffffff;
}
.hero-section,
.content-section,
.breadcrumb,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.content-section { scroll-margin-top: 96px; }
.breadcrumb {
  display: flex;
  gap: 10px;
  padding-top: 26px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumb a { color: var(--blue); font-weight: 800; }
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.86fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) 0 48px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  max-width: 920px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}
h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.06;
}
h3 { font-size: 21px; }
.hero-subheading,
.content-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hero-kpis span,
.panel-card,
.use-case-grid article,
.related-links a,
.faq-section details,
.lead-form,
.roi-card,
.audit-card,
.pain-grid article,
.proof-grid article,
.pilot-steps article {
  border: 1px solid rgba(184, 208, 236, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(13, 39, 73, 0.08);
}
.hero-kpis span {
  display: grid;
  gap: 2px;
  padding: 14px;
}
.hero-kpis strong { color: var(--blue); font-size: 22px; }
.hero-kpis small { color: var(--muted); }
.hero-visual {
  position: relative;
  min-height: 500px;
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(6, 22, 43, 0.96), rgba(8, 78, 118, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(109, 53, 216, 0.42), transparent 32%);
  overflow: hidden;
}
.hero-visual > img {
  position: absolute;
  right: 22px;
  bottom: 22px;
  opacity: 0.2;
}
.product-console {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}
.console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}
.console-top span,
.phone-bar {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #35f0b6;
}
.console-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.console-grid article {
  display: grid;
  gap: 5px;
  min-height: 128px;
  padding: 14px;
  border-radius: 18px;
  color: #ffffff;
}
.console-grid .is-blue { background: linear-gradient(135deg, #176ee5, #13b8e6); }
.console-grid .is-teal { background: linear-gradient(135deg, #079683, #33d6b6); }
.console-grid .is-violet { background: linear-gradient(135deg, #6d35d8, #c026d3); }
.console-grid strong { font-size: 23px; line-height: 1; }
.console-grid em { font-style: normal; font-size: 12px; opacity: 0.92; }
.phone-preview {
  width: min(280px, 86%);
  margin: 4px auto;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 28px;
  background: #f7fbff;
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}
.phone-preview button {
  min-height: 40px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 900;
}
.console-list {
  display: grid;
  gap: 9px;
}
.console-list span {
  padding: 12px 14px;
  border-radius: 14px;
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 760;
}
.content-section { padding: 56px 0; }
.section-head {
  max-width: 840px;
  margin-bottom: 24px;
}
.pain-grid,
.proof-grid,
.use-case-grid,
.related-links,
.tool-grid,
.pilot-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pain-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof-grid article,
.pain-grid article,
.pilot-steps article,
.use-case-grid article {
  padding: 20px;
}
.proof-grid article {
  min-height: 210px;
  color: #ffffff;
  background: linear-gradient(145deg, #0e55c7, #07a99a);
}
.proof-grid article:nth-child(2n) { background: linear-gradient(145deg, #6d35d8, #0ea5e9); }
.proof-grid article:nth-child(3n) { background: linear-gradient(145deg, #06345f, #0f9f6e); }
.proof-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #06345f;
  background: #dffdf2;
  font-size: 12px;
  font-weight: 900;
}
.proof-grid p,
.tinted-section p,
.proof-grid strong { color: #ffffff; }
.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 23px;
}
.split-section,
.two-column-grid,
.contact-section,
.pilot-section,
.referral-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
}
.workflow-list {
  counter-reset: step;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.workflow-list li {
  counter-increment: step;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}
.workflow-list li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 900;
}
.panel-card { padding: 24px; }
.card-list,
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.card-list span,
.trust-list span {
  padding: 9px 11px;
  border-radius: 999px;
  color: #153653;
  background: #eef6ff;
  font-weight: 760;
  font-size: 14px;
}
.trust-list span {
  color: #064e3b;
  background: #dffdf2;
}
.tinted-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, rgba(6, 22, 43, 0.96), rgba(13, 101, 142, 0.92));
  color: #ffffff;
}
.tinted-section .eyebrow { color: #8ce7ff; }
.use-case-grid article { color: var(--ink); }
.use-case-grid article strong { color: #06162b; }
.use-case-grid article p { color: #233852; }
.tool-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}
.roi-card,
.audit-card,
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
}
.roi-card h3,
.audit-card h3,
.lead-form .wide,
.lead-form .form-notice,
.lead-form button,
.roi-card .roi-result,
.roi-card .primary-cta,
.audit-card .form-notice,
.audit-card button,
.roi-card h3,
.audit-card h3 { grid-column: 1 / -1; }
label {
  display: grid;
  gap: 6px;
  color: #233852;
  font-weight: 800;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbdcf0;
  border-radius: 13px;
  padding: 12px 13px;
  font: inherit;
  background: #ffffff;
}
.roi-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.roi-result span {
  display: grid;
  gap: 4px;
  padding: 13px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #146bd1, #06a99a);
}
.roi-result strong { font-size: 18px; }
.pilot-section {
  align-items: center;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(20, 107, 209, 0.12), rgba(16, 169, 154, 0.12));
}
.pilot-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pilot-steps article {
  display: grid;
  gap: 7px;
}
.pilot-steps strong { color: var(--blue); }
.related-links a {
  display: grid;
  gap: 5px;
  padding: 18px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 850;
}
.related-links span {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}
.faq-section details {
  margin-bottom: 12px;
  padding: 18px 20px;
}
.faq-section summary {
  cursor: pointer;
  font-weight: 850;
}
.faq-section p { margin: 12px 0 0; }
.referral-section {
  align-items: center;
  padding: 30px;
  border-radius: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #06162b, #1268d6);
}
.referral-section p,
.referral-section .eyebrow { color: #d8ecff; }
.share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.lead-form .wide,
.lead-form .form-notice,
.lead-form button { grid-column: 1 / -1; }
.form-notice {
  min-height: 20px;
  margin: 0;
  color: var(--blue);
  font-weight: 760;
}
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 34px 0 46px;
  color: var(--muted);
}
.site-footer a { color: var(--blue); font-weight: 850; }
.not-found-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 32px;
  text-align: center;
}
.not-found-page section { max-width: 680px; }
@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .site-header nav {
    justify-content: start;
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .header-cta { justify-self: start; }
}
@media (max-width: 920px) {
  .hero-section,
  .split-section,
  .two-column-grid,
  .contact-section,
  .pilot-section,
  .referral-section,
  .tool-grid {
    grid-template-columns: 1fr;
  }
  .hero-section { padding-top: 36px; }
  .hero-visual { min-height: auto; }
  h1 { font-size: clamp(38px, 11vw, 58px); }
  .hero-kpis,
  .console-grid,
  .pain-grid,
  .proof-grid,
  .use-case-grid,
  .related-links,
  .roi-card,
  .audit-card,
  .lead-form {
    grid-template-columns: 1fr;
  }
  .roi-result,
  .pilot-steps { grid-template-columns: 1fr; }
  .lead-form .wide,
  .lead-form .form-notice,
  .lead-form button,
  .roi-card h3,
  .audit-card h3,
  .roi-card .roi-result,
  .roi-card .primary-cta,
  .audit-card .form-notice,
  .audit-card button { grid-column: auto; }
  .share-actions { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .hero-section,
  .content-section,
  .breadcrumb,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }
  .site-header { padding: 12px; }
  .site-header nav a { font-size: 13px; }
  .hero-kpis strong { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
