:root {
  --ink: #071735;
  --ink-soft: #263853;
  --muted: #66758c;
  --line: #e3e9f2;
  --line-strong: #d6dfeb;
  --soft: #f7f9fc;
  --soft-blue: #edf6ff;
  --brand: #1268ff;
  --brand-dark: #0b3fcd;
  --cyan: #00c8e8;
  --violet: #3f28ff;
  --success: #09956a;
  --white: #ffffff;
  --shadow-sm: 0 12px 34px rgba(7, 23, 53, .07);
  --shadow-lg: 0 30px 80px rgba(7, 23, 53, .12);
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 18px;
  top: -90px;
  padding: 12px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 11px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(227, 233, 242, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 56%, var(--cyan));
  box-shadow: 0 14px 34px rgba(18, 104, 255, .22);
}

.btn-primary:hover {
  box-shadow: 0 19px 42px rgba(18, 104, 255, .28);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: 0 8px 22px rgba(7, 23, 53, .04);
}

.btn-secondary:hover {
  border-color: #b9c7da;
}

.header-cta {
  min-height: 44px;
  padding-inline: 17px;
}

.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.icon-btn span,
.icon-btn::before,
.icon-btn::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

.icon-btn span {
  top: 20px;
}

.icon-btn::before {
  top: 14px;
}

.icon-btn::after {
  top: 26px;
}

.icon-btn[aria-expanded="true"] span {
  opacity: 0;
}

.icon-btn[aria-expanded="true"]::before {
  top: 20px;
  transform: rotate(45deg);
}

.icon-btn[aria-expanded="true"]::after {
  top: 20px;
  transform: rotate(-45deg);
}

.btn:focus-visible,
.icon-btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(18, 104, 255, .22);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 88px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 200, 232, .10), transparent 24%),
    radial-gradient(circle at 96% 69%, rgba(63, 40, 255, .055), transparent 22%),
    #fff;
}

.hero::before {
  content: "";
  position: absolute;
  right: -170px;
  top: 70px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(18, 104, 255, .07);
  border-radius: 50%;
  box-shadow:
    0 0 0 68px rgba(18, 104, 255, .022),
    0 0 0 136px rgba(18, 104, 255, .014);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(470px, 1.06fr);
  align-items: center;
  gap: 62px;
}

.hero-content {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -.038em;
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  font-size: clamp(44px, 5.3vw, 72px);
  font-weight: 880;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(105deg, var(--brand-dark), var(--violet) 50%, var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 21px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row b {
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18, 104, 255, .08);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 22px 0 38px;
}

.hero-visual > img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 28px 54px rgba(7, 23, 53, .09));
}

.visual-glow {
  position: absolute;
  inset: 10% 8%;
  background: radial-gradient(circle, rgba(0, 200, 232, .15), transparent 68%);
  filter: blur(20px);
}

.hero-chip {
  position: absolute;
  z-index: 2;
  min-width: 225px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hero-chip strong,
.hero-chip small {
  display: block;
}

.hero-chip strong {
  font-size: 11px;
}

.hero-chip small {
  color: var(--muted);
  font-size: 9px;
}

.chip-mark {
  width: 33px;
  height: 33px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  border-radius: 10px;
  font-weight: 900;
}

.chip-top {
  top: 12px;
  right: -18px;
}

.chip-bottom {
  bottom: 0;
  left: -12px;
}

.solution-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.solution-strip-grid > div {
  min-height: 105px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.solution-strip-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.solution-strip-grid strong,
.solution-strip-grid span {
  display: block;
}

.solution-strip-grid strong {
  margin-bottom: 2px;
  font-size: 15px;
}

.solution-strip-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 108px 0;
  background: #fff;
}

.section-bordered {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 46px;
}

.section-head h2,
.section-intro h2,
.systems-copy h2,
.benefits-copy h2,
.contact-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 870;
}

.section-head > p,
.section-intro > p,
.systems-copy > p,
.benefits-copy > p,
.contact-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-head > p {
  margin: 0;
}

.problem-section {
  padding-top: 116px;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
  align-items: start;
  gap: 90px;
}

.problem-list {
  border-top: 1px solid var(--line);
}

.problem-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.problem-list article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: var(--soft-blue);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
}

.problem-list h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.problem-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 104, 255, .22);
  box-shadow: var(--shadow-sm);
}

.service-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 95% 0, rgba(0, 200, 232, .21), transparent 34%),
    linear-gradient(145deg, #071735, #0b2f78);
  border-color: transparent;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 52px;
}

.service-number {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: var(--soft-blue);
  border-radius: 13px;
  font-size: 12px;
  font-weight: 900;
}

.featured .service-number {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.service-label {
  padding: 6px 10px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.featured .service-label {
  color: #c8dbff;
  background: rgba(255, 255, 255, .08);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.service-card > p {
  min-height: 68px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.featured > p {
  color: #c9d6e9;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.featured ul {
  border-color: rgba(255, 255, 255, .12);
}

.service-card li {
  position: relative;
  padding-left: 17px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.featured li {
  color: #e5edf9;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  border-radius: 50%;
}

.systems-grid {
  display: grid;
  grid-template-columns: minmax(470px, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: 82px;
}

.systems-visual {
  position: relative;
}

.systems-visual::before {
  content: "";
  position: absolute;
  inset: 12% 6%;
  background: radial-gradient(circle, rgba(0, 200, 232, .14), transparent 70%);
  filter: blur(30px);
}

.systems-window {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.window-header {
  min-height: 52px;
  display: grid;
  grid-template-columns: 75px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  color: var(--muted);
  background: #fbfcfe;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
}

.window-header b {
  padding: 5px 9px;
  color: var(--success);
  background: rgba(9, 149, 106, .08);
  border-radius: 999px;
  font-size: 9px;
}

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

.window-dots i {
  width: 7px;
  height: 7px;
  background: #d7e0eb;
  border-radius: 50%;
}

.window-content {
  min-height: 430px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

.window-content aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 17px 0;
  background: var(--ink);
}

.window-content aside strong {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  border-radius: 9px;
  font-size: 14px;
}

.window-content aside i {
  width: 18px;
  height: 5px;
  background: rgba(255, 255, 255, .20);
  border-radius: 999px;
}

.window-content aside i.active {
  background: var(--cyan);
}

.window-main {
  min-width: 0;
  padding: 21px;
  background: #f7f9fc;
}

.mock-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.mock-title small,
.mock-title strong {
  display: block;
}

.mock-title small {
  color: var(--muted);
  font-size: 8px;
}

.mock-title strong {
  margin-top: 2px;
  font-size: 14px;
}

.mock-title > span {
  padding: 5px 8px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 8px;
}

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.mock-metrics > div,
.mock-chart,
.mock-bottom {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 12px;
}

.mock-metrics > div {
  padding: 13px;
}

.mock-metrics small,
.mock-metrics strong,
.mock-metrics span {
  display: block;
}

.mock-metrics small {
  color: var(--muted);
  font-size: 8px;
}

.mock-metrics strong {
  margin: 3px 0;
  font-size: 21px;
}

.mock-metrics span {
  color: var(--success);
  font-size: 7px;
  font-weight: 900;
}

.mock-chart {
  margin-top: 10px;
  padding: 14px 14px 10px;
}

.chart-head strong,
.chart-head small {
  display: block;
}

.chart-head strong {
  font-size: 10px;
}

.chart-head small {
  color: var(--muted);
  font-size: 8px;
}

.bars {
  height: 145px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 7px;
  padding: 16px 4px 3px;
  background: repeating-linear-gradient(to bottom, transparent 0 34px, #eef2f7 35px);
  border-bottom: 1px solid #e7edf5;
}

.bars i {
  flex: 1;
  height: var(--bar);
  min-height: 10px;
  background: linear-gradient(180deg, var(--cyan), var(--brand) 66%, var(--violet));
  border-radius: 4px 4px 1px 1px;
}

.mock-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  overflow: hidden;
}

.mock-bottom > div {
  padding: 12px;
  border-right: 1px solid #e8edf4;
}

.mock-bottom > div:last-child {
  border-right: 0;
}

.mock-bottom span,
.mock-bottom b {
  display: block;
}

.mock-bottom span {
  color: var(--muted);
  font-size: 7px;
}

.mock-bottom b {
  margin-top: 2px;
  font-size: 12px;
}

.system-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.system-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.system-list > div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: var(--soft-blue);
  border-radius: 10px;
  font-size: 9px;
  font-weight: 900;
}

.system-list p,
.system-list b {
  display: block;
}

.system-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.system-list b {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.campaign-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.campaign-grid article {
  min-height: 235px;
  padding: 28px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.campaign-grid article:hover {
  background: #fbfcfe;
}

.campaign-grid article > span {
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 900;
}

.campaign-grid h3 {
  margin: 45px 0 12px;
  font-size: 22px;
}

.campaign-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.process-grid article {
  min-height: 255px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-grid article > span {
  display: block;
  margin-bottom: 58px;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr);
  align-items: start;
  gap: 88px;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.benefits-list > div {
  min-height: 155px;
  display: flex;
  gap: 13px;
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefits-list > div > span {
  width: 29px;
  height: 29px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
}

.benefits-list p,
.benefits-list b {
  display: block;
}

.benefits-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.benefits-list b {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}

.contact-section {
  padding-top: 96px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 0 100%, rgba(0, 200, 232, .07), transparent 30%),
    #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  align-items: start;
  gap: 74px;
}

.contact-highlight {
  display: grid;
  gap: 17px;
  margin-top: 36px;
}

.contact-highlight > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-highlight > div > strong {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--brand-dark);
  background: var(--soft-blue);
  border-radius: 10px;
  font-size: 9px;
}

.contact-highlight span,
.contact-highlight b {
  display: block;
}

.contact-highlight b {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.contact-highlight span {
  color: var(--muted);
  font-size: 13px;
}

.contact-form {
  position: relative;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-heading {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading small {
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 5px 0 0;
  font-size: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 14px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa6b8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: rgba(18, 104, 255, .55);
  box-shadow: 0 0 0 4px rgba(18, 104, 255, .08);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 22px;
}

.form-message {
  min-height: 20px;
  margin-right: auto;
  color: var(--muted);
  font-size: 12px;
}

.form-message.success {
  color: #087552;
}

.form-message.error {
  color: #b42318;
}

.consent {
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

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

.site-footer {
  padding: 43px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  align-items: center;
  gap: 36px;
}

.footer-brand img {
  width: 135px;
}

.footer-brand p {
  max-width: 400px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-nav a {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.footer-copy {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.floating-admin {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(7, 23, 53, .22);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
}

/* Popup e seletores de Web Push preservados */
.push-consent-modal[hidden] {
  display: none !important;
}

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

.push-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 53, .58);
  backdrop-filter: blur(7px);
}

.push-consent-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: 36px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 26px;
  box-shadow: 0 35px 100px rgba(7, 23, 53, .28);
}

.push-consent-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--soft);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.push-consent-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--soft-blue);
  border-radius: 17px;
  font-size: 27px;
}

.push-consent-dialog h2 {
  margin: 15px 0 10px;
  font-size: 31px;
}

.push-consent-dialog p {
  margin-bottom: 24px;
  color: var(--muted);
}

.push-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.push-consent-status {
  min-height: 20px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
}

.push-consent-status.success {
  color: #087552;
}

.push-consent-status.error {
  color: #b42318;
}

body.push-modal-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .94fr) minmax(410px, 1.06fr);
    gap: 38px;
  }

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

  .problem-grid,
  .systems-grid,
  .benefits-grid,
  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 135px;
  }

  .icon-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 3px;
    margin: 0;
    padding: 13px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .main-nav a:hover {
    background: var(--soft);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 76px 0 72px;
  }

  .hero-grid,
  .problem-grid,
  .systems-grid,
  .benefits-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .section-intro,
  .systems-copy,
  .benefits-copy,
  .contact-copy {
    max-width: 720px;
  }

  .hero-visual,
  .systems-visual,
  .contact-form {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

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

  .solution-strip-grid > div:nth-child(2) {
    border-right: 0;
  }

  .solution-strip-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 84px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-head > p {
    margin: 0;
  }

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

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

  .footer-copy {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding: 58px 0 60px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(38px, 12vw, 54px);
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-chip {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
  }

  .solution-strip-grid {
    grid-template-columns: 1fr;
  }

  .solution-strip-grid > div,
  .solution-strip-grid > div:first-child,
  .solution-strip-grid > div:nth-child(2) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .solution-strip-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2,
  .section-intro h2,
  .systems-copy h2,
  .benefits-copy h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .section-head > p,
  .section-intro > p,
  .systems-copy > p,
  .benefits-copy > p,
  .contact-copy > p {
    font-size: 15px;
  }

  .services-grid,
  .campaign-grid,
  .process-grid,
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .campaign-grid article,
  .process-grid article {
    min-height: 0;
  }

  .service-card > p {
    min-height: 0;
  }

  .systems-window {
    border-radius: 18px;
  }

  .window-header {
    grid-template-columns: 55px 1fr;
  }

  .window-header b {
    display: none;
  }

  .window-content {
    min-height: 380px;
    grid-template-columns: 42px 1fr;
  }

  .window-main {
    padding: 11px;
  }

  .mock-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .mock-metrics > div:last-child {
    display: none;
  }

  .mock-chart {
    padding: 11px;
  }

  .bars {
    height: 120px;
    gap: 5px;
  }

  .mock-bottom {
    grid-template-columns: 1fr;
  }

  .mock-bottom > div {
    display: flex;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid #e8edf4;
  }

  .mock-bottom > div:last-child {
    border-bottom: 0;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 22px;
  }

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

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

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

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

  .footer-nav {
    gap: 10px 16px;
  }

  .push-consent-modal {
    align-items: end;
    padding: 14px;
  }

  .push-consent-dialog {
    padding: 28px 22px 22px;
    border-radius: 24px 24px 18px 18px;
  }

  .push-consent-actions {
    flex-direction: column;
  }

  .push-consent-actions .btn {
    width: 100%;
  }
}

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

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