@charset "UTF-8";

:root {
  --blue-950: #031a44;
  --blue-900: #06265f;
  --blue-800: #073b9f;
  --blue-700: #075dff;
  --blue-600: #2474ff;
  --blue-500: #4790ff;
  --blue-100: #eaf2ff;
  --blue-50: #f5f8ff;
  --cyan: #69d2ff;
  --ink: #0b1732;
  --muted: #5c6a83;
  --line: #dce6f6;
  --white: #ffffff;
  --success: #0aa66f;
  --shadow: 0 24px 70px rgba(15, 59, 130, 0.14);
  --shadow-soft: 0 12px 35px rgba(15, 59, 130, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
  position: relative;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 230, 246, 0.7);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(8, 34, 78, 0.08);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--blue-950);
}

.brand img {
  width: 42px;
  height: 42px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 750;
  color: #34415b;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -7px;
  background: var(--blue-700);
  transition: right .2s ease;
}

.main-nav > a:not(.button):hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  border: 0;
  border-radius: 12px;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(7, 93, 255, .24);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 35px rgba(7, 93, 255, .3);
  filter: brightness(1.04);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 10px;
  font-size: 13px;
}

.button-ghost {
  color: var(--blue-800);
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-outline {
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid #bdd3ff;
  box-shadow: none;
}

.hero {
  padding-top: 158px;
  min-height: 820px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 22%, rgba(76, 151, 255, .22), transparent 34%),
    radial-gradient(circle at 8% 28%, rgba(105, 210, 255, .15), transparent 28%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 72%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 93, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 93, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, .82);
  border: 1px solid #dbe7fb;
  border-radius: 999px;
  padding: 9px 14px;
  box-shadow: 0 8px 22px rgba(37, 91, 170, .08);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10c985;
  box-shadow: 0 0 0 5px rgba(16, 201, 133, .12);
}

.hero h1 {
  margin: 24px 0 22px;
  max-width: 720px;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--blue-700);
}

.hero-text {
  margin: 0;
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  font-size: 14px;
  color: var(--blue-950);
}

.hero-trust span {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card {
  position: relative;
  width: 100%;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 35px 90px rgba(16, 64, 140, .22);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(73, 145, 255, .22), transparent 26%),
    linear-gradient(145deg, transparent 45%, rgba(7, 93, 255, .045));
  pointer-events: none;
}

.dashboard-top {
  position: relative;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8d6eb;
}

.window-dots span:first-child { background: #ff8390; }
.window-dots span:nth-child(2) { background: #ffcf69; }
.window-dots span:nth-child(3) { background: #54d8a0; }

.online-label {
  font-size: 11px;
  font-weight: 850;
  color: var(--success);
  background: #eafaf4;
  border-radius: 999px;
  padding: 6px 10px;
}

.flow-canvas {
  position: relative;
  height: 342px;
  background:
    linear-gradient(rgba(7,93,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,93,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.flow-node {
  position: absolute;
  width: 154px;
  padding: 13px;
  border-radius: 13px;
  border: 1px solid #d6e3f7;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 25px rgba(29, 74, 139, .12);
  z-index: 2;
}

.flow-node small,
.flow-node strong,
.flow-node span {
  display: block;
}

.flow-node small {
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.flow-node strong {
  margin-top: 5px;
  font-size: 12px;
}

.flow-node span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.node-start { left: 28px; top: 120px; }
.node-bot { left: 205px; top: 55px; }
.node-data { right: 30px; top: 45px; }
.node-human { right: 62px; bottom: 40px; }

.flow-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), rgba(7,93,255,.15));
  transform-origin: left center;
}

.line-a {
  width: 250px;
  left: 155px;
  top: 139px;
  transform: rotate(-25deg);
}

.line-b {
  width: 220px;
  left: 333px;
  top: 95px;
  transform: rotate(34deg);
}

.message-preview {
  position: relative;
  margin: 0 18px 18px;
  padding: 15px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: start;
  border: 1px solid #d7e5fb;
  border-radius: 15px;
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
}

.message-preview strong {
  font-size: 12px;
}

.message-preview p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.check {
  align-self: end;
  color: var(--blue-700);
  font-size: 10px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow-soft);
  animation: float 5s ease-in-out infinite;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong { font-size: 11px; }
.floating-card small { color: var(--muted); font-size: 9px; }

.floating-card-one {
  left: -36px;
  top: 80px;
}

.floating-card-two {
  right: -30px;
  bottom: 72px;
  animation-delay: -2.3s;
}

.mini-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0870ff, #71c7ff);
}

.pulse-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0cc982;
  box-shadow: 0 0 0 7px rgba(12,201,130,.13);
  margin: 0 10px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
  padding: 25px 0;
}

.logo-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.logo-strip p {
  margin: 0;
  max-width: 280px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.integration-list {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #51617e;
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .02em;
}

.section-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.faq-intro h2,
.benefits-copy h2,
.project-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p,
.faq-intro p,
.benefits-copy > p,
.project-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.centered p {
  margin-top: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #bcd2fa;
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-weight: 950;
  font-size: 12px;
}

.feature-card h3 {
  margin: 24px 0 10px;
  font-size: 21px;
}

.feature-card > p {
  margin: 0;
  min-height: 76px;
  color: var(--muted);
  font-size: 14px;
}

.feature-card ul,
.price-card ul {
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.feature-card li,
.price-card li {
  position: relative;
  margin-top: 10px;
  padding-left: 23px;
  color: #40506c;
  font-size: 13px;
}

.feature-card li::before,
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-700);
  font-weight: 950;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 92% 15%, rgba(71,144,255,.22), transparent 28%),
    radial-gradient(circle at 8% 85%, rgba(105,210,255,.12), transparent 30%),
    var(--blue-950);
  overflow: hidden;
}

.section-dark::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -150px;
  bottom: -250px;
  border: 80px solid rgba(255,255,255,.025);
  border-radius: 50%;
}

.section-heading.light p {
  color: #b7c8e5;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-item {
  min-height: 250px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(12px);
}

.process-item > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(71,144,255,.18);
  color: var(--cyan);
  font-weight: 950;
}

.process-item h3 {
  margin: 50px 0 10px;
  font-size: 18px;
}

.process-item p {
  margin: 0;
  color: #b8c8e4;
  font-size: 13px;
}

.process-note {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: #b8c8e4;
  font-size: 12px;
}

.process-note p {
  margin: 0;
}

.note-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(105,210,255,.14);
  color: var(--cyan);
  font-weight: 900;
}

.pricing-grid {
  width: min(920px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(20, 62, 124, .08);
}

.price-card.featured {
  border: 2px solid var(--blue-700);
  background:
    radial-gradient(circle at 100% 0%, rgba(77,151,255,.15), transparent 28%),
    #fff;
  box-shadow: var(--shadow);
}

.popular-tag {
  position: absolute;
  top: -14px;
  right: 24px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: var(--blue-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan-name {
  display: block;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--blue-950);
  font-size: 55px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.055em;
}

.price small {
  font-size: 18px;
}

.price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.plan-description {
  min-height: 76px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.price-card ul {
  min-height: 190px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.price-card li {
  font-size: 14px;
}

.price-card .button {
  width: 100%;
  margin-top: 28px;
}

.price-note {
  display: block;
  margin-top: 15px;
  color: #7b879b;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.benefits-section {
  background: var(--blue-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 95px;
  align-items: start;
}

.benefits-copy {
  position: sticky;
  top: 110px;
}

.benefits-copy > p {
  margin-top: 22px;
}

.text-link {
  margin-top: 28px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--blue-700);
  font-weight: 900;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.benefits-list {
  border-top: 1px solid #cfdcf1;
}

.benefit-row {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  border-bottom: 1px solid #cfdcf1;
}

.benefit-row > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-700);
  background: #fff;
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(28,75,145,.08);
}

.benefit-row strong {
  font-size: 19px;
}

.benefit-row p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.faq-intro p {
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 48px 24px 0;
  list-style: none;
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-100);
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: -4px 50px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.project-section {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(77,151,255,.2), transparent 25%),
    linear-gradient(135deg, #031a44, #062c70);
  overflow: hidden;
}

.project-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.project-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.light-kicker {
  color: var(--cyan);
}

.project-copy > p {
  margin-top: 20px;
  color: #b9c9e4;
}

.contact-points {
  margin-top: 45px;
  display: grid;
  gap: 22px;
}

.contact-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  align-items: start;
}

.contact-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(255,255,255,.05);
  font-size: 10px;
  font-weight: 950;
}

.contact-points p {
  margin: 0;
  color: #b9c9e4;
  font-size: 13px;
}

.contact-points strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
}

.project-form {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
}

.form-header {
  margin-bottom: 26px;
}

.form-header span,
.form-header strong {
  display: block;
}

.form-header span {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-header strong {
  margin-top: 7px;
  font-size: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

.field label:not(.checkbox-label) {
  display: block;
  margin-bottom: 7px;
  color: #24334d;
  font-size: 12px;
  font-weight: 850;
}

.field label span {
  color: #8a95a7;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d8e2f0;
  border-radius: 11px;
  outline: none;
  background: #fbfdff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  padding: 14px;
  resize: vertical;
  min-height: 150px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7,93,255,.1);
}

.field.has-error input,
.field.has-error textarea {
  border-color: #e05266;
  box-shadow: 0 0 0 4px rgba(224,82,102,.08);
}

.field-error {
  min-height: 16px;
  display: block;
  margin-top: 5px;
  color: #cc3f54;
  font-size: 10px;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.field-meta > span {
  margin-top: 5px;
  color: #8a95a7;
  font-size: 10px;
}

.website-field {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #5a667b;
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--blue-700);
}

.submit-button {
  width: 100%;
  margin-top: 2px;
}

.button-loader {
  width: 17px;
  height: 17px;
  display: none;
  border: 2px solid rgba(255,255,255,.38);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.submit-button.loading .button-loader {
  display: inline-block;
}

.submit-button.loading .button-label {
  opacity: .75;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-footnote {
  margin: 11px 0 0;
  color: #8792a3;
  font-size: 9px;
  text-align: center;
}

.form-footnote a {
  color: var(--blue-700);
  text-decoration: underline;
}

.site-footer {
  color: #c2cee1;
  background: #020f28;
  padding: 68px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr .7fr;
  gap: 70px;
}

.footer-brand {
  color: #fff;
}

.footer-grid > div:first-child p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #93a4bf;
  font-size: 13px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
}

.footer-grid a {
  color: #93a4bf;
  font-size: 12px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #71829e;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 40, .76);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  padding: 38px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(0,0,0,.35);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--ink);
  font-size: 25px;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #05a66e, #19cb90);
  box-shadow: 0 14px 30px rgba(10,166,111,.25);
  font-size: 28px;
  font-weight: 950;
}

.modal-card h2 {
  margin: 10px 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.modal-card p {
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 14px;
}

.modal-card .button {
  min-width: 170px;
}

.legal-page {
  background: var(--blue-50);
}

.legal-hero {
  padding: 150px 0 64px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-950), #07409a);
}

.legal-hero h1 {
  margin: 14px 0 8px;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -.045em;
}

.legal-hero p {
  margin: 0;
  color: #c6d4e9;
}

.legal-content {
  width: min(880px, calc(100% - 40px));
  margin: 50px auto 90px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 14px;
}

.legal-content a {
  color: var(--blue-700);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero {
    padding-top: 135px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text,
  .hero h1 {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    text-align: left;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid,
  .faq-layout,
  .benefits-grid {
    gap: 55px;
  }

  .project-grid {
    grid-template-columns: .75fr 1.25fr;
  }

  .main-nav {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 84px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 12px;
  }

  .main-nav .button {
    margin-top: 8px;
  }

  .logo-strip .container {
    display: block;
  }

  .logo-strip p {
    max-width: none;
    text-align: center;
  }

  .integration-list {
    margin-top: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 18px;
  }

  .project-grid,
  .faq-layout,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-copy {
    position: static;
  }

  .project-copy {
    max-width: 650px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .dashboard-card {
    min-height: 410px;
  }

  .flow-canvas {
    height: 275px;
  }

  .flow-node {
    width: 128px;
    padding: 10px;
  }

  .node-start { left: 12px; top: 110px; }
  .node-bot { left: 120px; top: 35px; }
  .node-data { right: 12px; top: 95px; }
  .node-human { right: 25px; bottom: 18px; }

  .line-a,
  .line-b {
    display: none;
  }

  .floating-card-one {
    left: -5px;
    top: 5px;
  }

  .floating-card-two {
    right: -4px;
    bottom: 8px;
  }

  .message-preview {
    margin-inline: 10px;
  }

  .cards-grid,
  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card > p,
  .plan-description,
  .price-card ul {
    min-height: 0;
  }

  .price-card,
  .project-form,
  .legal-content {
    padding: 26px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 10px;
  }

  .modal-card {
    padding: 32px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
