:root {
  --navy: #06185a;
  --navy-deep: #041343;
  --blue: #0639d8;
  --blue-bright: #075cff;
  --cyan: #29c9ff;
  --coral: #ff4b3d;
  --coral-dark: #f5382b;
  --ink: #071755;
  --muted: #52618e;
  --line: #dce4f6;
  --soft: #f5f8ff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

.form-success.error {
  color: #8a1f19;
  background: #fff0ef;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 39, 151, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0;
}

.brand > span:last-child {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 19px;
  line-height: 1.1;
}

.brand small {
  font-size: 13px;
  opacity: 0.82;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
}

.brand-mark span {
  position: absolute;
  top: 5px;
  width: 11px;
  height: 30px;
  background: linear-gradient(180deg, var(--cyan), #1975ff);
  transform: skew(28deg);
  border-radius: 2px;
}

.brand-mark span:first-child { left: 4px; }
.brand-mark span:nth-child(2) { left: 18px; }
.brand-mark i {
  position: absolute;
  right: 1px;
  top: 5px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 13px solid var(--coral);
}

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

.main-nav > a:not(.nav-cta) {
  opacity: 0.84;
  transition: opacity 0.2s, color 0.2s;
}

.main-nav > a:not(.nav-cta):hover {
  opacity: 1;
  color: var(--cyan);
}

.nav-cta {
  padding: 13px 19px;
  border-radius: 9px;
  background: var(--coral);
  box-shadow: 0 8px 28px rgba(255, 75, 61, 0.26);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 750px;
  padding: 86px 0 155px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 35%, rgba(21, 104, 255, 0.45), transparent 30%),
    linear-gradient(125deg, #0428ae 0%, #053edb 42%, #0628a5 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow b {
  color: #fff;
}

.eyebrow.blue {
  color: var(--blue);
}

.hero h1 {
  max-width: 630px;
  margin: 0;
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 580px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 19px;
  line-height: 1.65;
}

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

.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.button span {
  font-size: 24px;
  font-weight: 400;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff553f, #ff3d30);
  box-shadow: 0 14px 28px rgba(255, 64, 48, 0.24);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(5, 30, 116, 0.2);
}

.button-outline {
  color: var(--blue);
  border-color: #b7c9fa;
  background: #fff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

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

.trust-row i {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: rgba(42, 202, 255, 0.25);
  border: 1px solid rgba(42, 202, 255, 0.65);
  border-radius: 50%;
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.dashboard {
  position: absolute;
  left: 11%;
  top: 13%;
  width: 78%;
  height: 365px;
  overflow: hidden;
  border: 8px solid #08216f;
  border-radius: 20px;
  background: #eef5ff;
  box-shadow: 0 28px 60px rgba(0, 11, 74, 0.42);
  transform: perspective(900px) rotateY(-4deg) rotateX(1deg);
}

.browser-bar {
  height: 34px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-bottom: 1px solid #d7e2f9;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  background: #6ba1ff;
  border-radius: 50%;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  height: calc(100% - 34px);
}

.dashboard-body aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  color: #fff;
  background: #0b2e91;
}

.dashboard-body aside b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #1f72ff;
  font-size: 11px;
}

.dashboard-body aside span {
  width: 20px;
  height: 4px;
  border-radius: 5px;
  background: #729be5;
}

.dashboard-content {
  padding: 23px;
}

.mini-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mini-heading span {
  width: 31%;
  height: 8px;
  background: #c8d6f3;
  border-radius: 10px;
}

.mini-heading span:last-child { width: 16%; }

.chart-box {
  position: relative;
  height: 156px;
  overflow: hidden;
  border: 1px solid #d7e4fd;
  border-radius: 11px;
  background: #fff;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#edf2fd 1px, transparent 1px),
    linear-gradient(90deg, #edf2fd 1px, transparent 1px);
  background-size: 38px 31px;
}

.chart-line {
  position: absolute;
  inset: 0;
}

.chart-line::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 8%;
  bottom: 25%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(100deg, #2ecaff, #0061ff);
  transform: skewY(-17deg);
  box-shadow: 0 16px 35px rgba(0, 97, 255, 0.3);
}

.chart-line i {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
}

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

.metric-grid div {
  padding: 12px;
  display: grid;
  gap: 3px;
  border-radius: 9px;
  background: #fff;
}

.metric-grid b { color: var(--blue); }
.metric-grid span { color: #7b87a6; font-size: 10px; }

.phone {
  position: absolute;
  left: 1%;
  bottom: 20px;
  width: 128px;
  height: 245px;
  z-index: 4;
  padding: 9px;
  border: 7px solid #062575;
  border-radius: 25px;
  background: #eaf2ff;
  box-shadow: 0 20px 35px rgba(2, 17, 88, 0.4);
}

.phone-notch {
  width: 50px;
  height: 8px;
  margin: -6px auto 12px;
  border-radius: 0 0 8px 8px;
  background: #062575;
}

.phone-screen {
  display: grid;
  gap: 12px;
}

.phone-screen span { height: 54px; border-radius: 7px; background: linear-gradient(135deg, #1d72ff, #1532ad); }
.phone-screen b { height: 7px; width: 80%; border-radius: 4px; background: #88a8e9; }
.phone-screen i { height: 6px; border-radius: 4px; background: #c3d1ee; }
.phone-screen button { border: 0; border-radius: 5px; padding: 8px; color: #fff; background: var(--coral); font-size: 9px; }

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfe7fa;
  border-radius: 13px;
  box-shadow: 0 15px 30px rgba(4, 19, 91, 0.22);
}

.floating-card svg { width: 24px; height: 24px; color: var(--blue); }
.search-card { right: 0; top: 2%; padding: 14px 18px; font-size: 13px; }
.growth-card { right: 1%; bottom: 38px; padding: 14px 17px; }
.growth-card strong, .growth-card small { display: block; }
.growth-card strong { color: var(--coral); }
.growth-card small { font-size: 10px; color: var(--muted); }

.target-badge {
  position: absolute;
  right: 6%;
  top: 37%;
  z-index: 5;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 10px solid #fff;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, var(--coral) 0 12px, #fff 13px 21px);
  box-shadow: 0 16px 30px rgba(2, 15, 80, 0.25);
}

.target-badge span { color: #fff; font-size: 39px; font-weight: 800; }

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(43, 201, 255, 0.45);
  border-radius: 50%;
}

.orbit-one { width: 480px; height: 480px; right: -140px; top: 90px; }
.orbit-two { width: 320px; height: 320px; left: -180px; bottom: 20px; }

.dots {
  position: absolute;
  width: 90px;
  height: 90px;
  opacity: 0.34;
  background-image: radial-gradient(var(--cyan) 2px, transparent 2px);
  background-size: 15px 15px;
}

.dots-one { right: 3%; bottom: 14%; }

.hero-wave {
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -91px;
  height: 150px;
  border-radius: 50% 50% 0 0;
  background: #fff;
}

.services-section {
  padding: 82px 0 105px;
  background:
    radial-gradient(circle at 8% 20%, rgba(9, 83, 255, .08), transparent 22%),
    #fff;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.service-card {
  min-height: 315px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #e0e7f6;
  border-bottom: 3px solid var(--coral);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(5, 28, 107, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 45px rgba(5, 28, 107, 0.13);
}

.service-card.featured {
  color: #fff;
  border-color: var(--coral);
  background: linear-gradient(145deg, #ff5842, #ff3d31);
}

.service-icon {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  color: var(--coral);
  border-radius: 50%;
  background: #f4f7ff;
}

.service-icon svg { width: 34px; height: 34px; }
.service-card h3 { margin: 23px 0 10px; font-size: 22px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card a { margin-top: auto; padding-top: 23px; color: var(--blue); font-size: 14px; font-weight: 800; }
.service-card a span { margin-left: 10px; font-size: 20px; }
.service-card.featured p, .service-card.featured a { color: rgba(255, 255, 255, .9); }
.service-card.featured .service-icon { color: #fff; background: rgba(255, 255, 255, .14); }

.solution-section {
  padding: 115px 0;
  color: #fff;
  background:
    radial-gradient(circle at 22% 45%, rgba(21, 99, 255, 0.55), transparent 30%),
    linear-gradient(135deg, #063bd0, #051d78);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-visual {
  position: relative;
  min-height: 470px;
}

.website-device {
  position: absolute;
  left: 3%;
  top: 8%;
  width: 85%;
  height: 340px;
  padding-bottom: 18px;
  border: 7px solid #061e70;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 32px 60px rgba(1, 10, 57, .38);
}

.website-device::after {
  content: "";
  position: absolute;
  width: 43%;
  height: 55px;
  left: 28%;
  bottom: -60px;
  border-radius: 0 0 18px 18px;
  background: #c8d9fb;
}

.device-top {
  height: 31px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #edf3ff;
}

.device-top i { width: 6px; height: 6px; border-radius: 50%; background: #6b9dff; }

.device-hero {
  height: 170px;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(135deg, #0b57ee, #08249a);
}

.device-hero div { width: 58%; display: grid; gap: 12px; align-content: center; }
.device-hero span, .device-hero b, .device-hero i { height: 8px; border-radius: 5px; background: rgba(255,255,255,.8); }
.device-hero b { width: 70%; }
.device-hero i { width: 40%; height: 23px; background: var(--coral); }
.device-hero em { align-self: center; font-size: 65px; font-style: normal; color: var(--cyan); }

.device-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 18px; }
.device-cards span { height: 74px; border-radius: 8px; background: #edf3ff; }

.mini-device {
  position: absolute;
  right: -1%;
  bottom: 10px;
  width: 130px;
  height: 255px;
  z-index: 4;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 35px 13px 16px;
  border: 7px solid #062472;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 23px 40px rgba(1, 10, 57, .38);
}

.mini-device span { height: 84px; border-radius: 7px; background: linear-gradient(145deg, #337eff, #1738bb); }
.mini-device b, .mini-device i { height: 7px; border-radius: 5px; background: #afc3ec; }
.design-chip {
  position: absolute;
  left: 1%;
  top: 0;
  width: 78px;
  height: 78px;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 18px 30px rgba(255, 65, 49, .3);
  font-size: 27px;
  font-weight: 800;
}

.solution-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(37px, 4.3vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.solution-copy > p:not(.eyebrow),
.about-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 25px;
}

.feature-list div {
  min-height: 83px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  background: rgba(0, 23, 104, 0.21);
}

.feature-list svg { width: 30px; min-width: 30px; color: var(--coral); }
.feature-list span { font-size: 13px; line-height: 1.4; }
.feature-list b { display: block; color: #fff; font-size: 14px; }

.about-section {
  padding: 115px 0;
  background: #f7f9ff;
}

.about-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: center;
}

.about-copy > p:not(.eyebrow) { color: var(--muted); }

.about-highlights {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.about-highlights span {
  padding-left: 16px;
  border-left: 3px solid var(--coral);
  color: var(--muted);
  font-size: 13px;
}

.about-highlights b { display: block; color: var(--blue); font-size: 21px; }

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

.about-cards article {
  min-height: 285px;
  padding: 27px 22px;
  text-align: center;
  border: 1px solid #dfe6f6;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(8, 34, 115, .08);
}

.about-cards article:nth-child(2) {
  transform: translateY(-25px);
  color: #fff;
  background: linear-gradient(145deg, #0a56ee, #06258e);
}

.about-cards svg {
  width: 61px;
  height: 61px;
  margin: 0 auto 20px;
  padding: 14px;
  color: var(--coral);
  border-radius: 50%;
  background: #f0f5ff;
}

.about-cards h3 { font-size: 19px; }
.about-cards p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.about-cards article:nth-child(2) p { color: rgba(255,255,255,.78); }

.process-section {
  padding: 105px 0;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 103, 255, .45), transparent 30%),
    var(--navy-deep);
}

.section-heading.light { color: #fff; }
.section-heading.light h2 { max-width: 680px; margin: 0 auto; }

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

.process-grid article {
  position: relative;
  min-height: 235px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 17px;
  background: rgba(255,255,255,.05);
}

.process-grid article::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -35px;
  bottom: -35px;
  border: 1px solid rgba(42, 202, 255, .32);
  border-radius: 50%;
}

.process-grid span {
  display: block;
  color: var(--cyan);
  font-size: 34px;
  font-weight: 800;
}

.process-grid h3 { font-size: 20px; }
.process-grid p { color: rgba(255,255,255,.67); font-size: 13px; line-height: 1.65; }

.contact-section {
  padding: 110px 0 145px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 45%, rgba(0, 108, 255, .55), transparent 28%),
    linear-gradient(135deg, #063bc8, #031760);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 30px;
}

.contact-items div {
  min-height: 105px;
  padding: 17px;
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  background: rgba(2, 27, 113, .25);
}

.contact-items svg { width: 27px; color: var(--coral); }
.contact-items span { font-size: 12px; }
.contact-items b { display: block; margin-bottom: 4px; font-size: 14px; }

.contact-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-promise span {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  background: rgba(255,255,255,.09);
  font-size: 12px;
}

.contact-promise svg { width: 20px; color: var(--cyan); }

.contact-form {
  padding: 38px;
  color: var(--ink);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 9, 57, .3);
}

.form-heading { text-align: center; margin-bottom: 25px; }
.form-heading span { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.form-heading h3 { margin: 8px 0 5px; font-size: 30px; }
.form-heading p { margin: 0; color: var(--muted); font-size: 13px; }

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid #cfd9ef;
  border-radius: 9px;
  outline: none;
  background: #fbfcff;
  font-size: 13px;
  transition: border .2s, box-shadow .2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(7, 92, 255, .12);
}

.contact-form textarea { resize: vertical; }

.contact-form .form-consent {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 500;
}

.form-consent input {
  width: 18px;
  height: 18px;
}

.form-submit { width: 100%; border: 0; }

.form-success {
  margin: 14px 0 0;
  padding: 12px;
  text-align: center;
  color: #11643a;
  border-radius: 8px;
  background: #e9fff2;
  font-size: 13px;
}

.form-privacy {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #74809d;
  font-size: 11px;
}

.form-privacy svg { width: 16px; }

.site-footer {
  position: relative;
  padding-top: 1px;
  color: #fff;
  background: linear-gradient(140deg, #041449, #06226e);
}

.footer-cta {
  position: relative;
  z-index: 2;
  margin-top: -70px;
  padding: 39px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 65% 30%, rgba(27, 117, 255, .5), transparent 28%),
    linear-gradient(130deg, #063ed0, #08269b);
  box-shadow: 0 25px 50px rgba(0, 9, 52, .28);
}

.footer-cta .eyebrow { margin-bottom: 10px; }
.footer-cta h2 { margin: 0; font-size: 34px; }
.footer-cta p:last-child { margin: 9px 0 0; color: rgba(255,255,255,.75); }

.footer-grid {
  padding: 78px 0 58px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 55px;
}

.footer-grid > div:not(:first-child) {
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.15);
}

.footer-grid h3 {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 18px;
}

.footer-grid p {
  max-width: 280px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid > div:not(:first-child) a {
  margin: 11px 0;
  display: block;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.footer-grid .footer-link-button {
  margin-top: 20px !important;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 8px;
  color: #fff !important;
}

.footer-bottom {
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255,255,255,.57);
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: 11px;
}

@media (max-width: 1050px) {
  .main-nav { gap: 17px; }
  .hero-grid, .solution-grid, .about-grid, .contact-grid { gap: 45px; }
  .hero { min-height: 700px; }
  .hero-visual { transform: scale(.9); transform-origin: center; }
  .about-cards { grid-template-columns: 1fr; }
  .about-cards article { min-height: 0; text-align: left; }
  .about-cards article:nth-child(2) { transform: none; }
  .about-cards svg { margin: 0 0 8px; }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; cursor: pointer; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    max-height: 0;
    padding: 0 24px;
    display: grid;
    gap: 0;
    overflow: hidden;
    opacity: 0;
    background: #06258e;
    transition: max-height .3s, opacity .3s, padding .3s;
  }
  .main-nav.open { max-height: 500px; padding: 15px 24px 24px; opacity: 1; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .main-nav .nav-cta { margin-top: 10px; padding: 14px; text-align: center; border: 0; }

  .hero { padding-top: 68px; min-height: auto; }
  .hero-grid, .solution-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { width: min(650px, 100%); margin: 20px auto 0; transform: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { gap: 70px; }
  .solution-copy { text-align: center; }
  .feature-list { text-align: left; }
  .solution-copy .hero-actions { justify-content: center; }
  .about-grid { gap: 55px; }
  .about-copy { text-align: center; }
  .about-highlights { justify-content: center; text-align: left; }
  .about-cards { grid-template-columns: repeat(3, 1fr); }
  .about-cards article { text-align: center; }
  .about-cards svg { margin: 0 auto 8px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-copy { text-align: center; }
  .contact-items, .contact-promise { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:not(:first-child) { border-left: 0; padding-left: 0; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 520px); }
  .header-inner { min-height: 68px; }
  .main-nav { top: 68px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 11px; }
  .brand-mark { width: 34px; height: 34px; transform: scale(.85); }

  .hero { padding: 55px 0 120px; }
  .hero h1 { font-size: clamp(39px, 12vw, 54px); }
  .hero-lead { font-size: 16px; line-height: 1.6; }
  .eyebrow { font-size: 10px; letter-spacing: .19em; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; justify-items: center; gap: 10px; }
  .hero-visual { min-height: 410px; margin-top: 25px; }
  .dashboard { left: 8%; top: 15%; width: 88%; height: 285px; border-width: 5px; }
  .dashboard-body { grid-template-columns: 42px 1fr; }
  .dashboard-body aside { gap: 16px; }
  .dashboard-content { padding: 13px; }
  .chart-box { height: 110px; }
  .metric-grid div { padding: 7px; }
  .metric-grid b { font-size: 11px; }
  .phone { width: 92px; height: 180px; left: 0; bottom: 0; border-width: 5px; }
  .phone-screen span { height: 37px; }
  .search-card { right: 0; padding: 10px; font-size: 10px; }
  .growth-card { right: 0; bottom: 0; padding: 9px; }
  .target-badge { width: 57px; height: 57px; border-width: 7px; right: 1%; top: 39%; }
  .target-badge span { font-size: 25px; }
  .hero-wave { bottom: -110px; }

  .services-section, .solution-section, .about-section, .process-section { padding: 82px 0; }
  .section-heading h2, .solution-copy h2, .about-copy h2, .contact-copy h2 { font-size: 35px; }
  .section-heading > p:last-child { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }

  .solution-grid { gap: 35px; }
  .solution-visual { min-height: 350px; }
  .website-device { width: 88%; height: 265px; left: 0; }
  .device-hero { height: 125px; padding: 22px; }
  .device-cards { padding: 11px; gap: 7px; }
  .device-cards span { height: 51px; }
  .mini-device { width: 92px; height: 188px; right: -1%; padding: 28px 9px 12px; border-width: 5px; }
  .mini-device span { height: 60px; }
  .design-chip { width: 59px; height: 59px; font-size: 19px; }
  .feature-list { grid-template-columns: 1fr; }

  .about-highlights { display: grid; gap: 15px; }
  .about-cards { grid-template-columns: 1fr; }
  .about-cards article { text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 200px; }

  .contact-section { padding: 80px 0 130px; }
  .contact-items { grid-template-columns: 1fr; }
  .contact-items div { min-height: 85px; text-align: left; grid-template-columns: 35px 1fr; align-items: center; }
  .contact-form { padding: 25px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-cta { margin-top: -65px; padding: 30px 22px; display: grid; text-align: center; }
  .footer-cta h2 { font-size: 29px; }
  .footer-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; padding-top: 60px; }
  .footer-grid > div { text-align: center; }
  .footer-grid p { margin-left: auto; margin-right: auto; }
  .footer-brand { justify-content: center; }
  .footer-bottom { display: grid; text-align: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
