:root {
  --blue: #075fff;
  --blue-dark: #0046dc;
  --cyan: #11b7ff;
  --teal: #11c7a6;
  --ink: #080d24;
  --muted: #536074;
  --line: #dce5f4;
  --soft: #f4f8ff;
  --green: #17c964;
  --shadow: 0 18px 55px rgba(9, 42, 91, .12);
  --shadow-soft: 0 10px 30px rgba(9, 42, 91, .08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(17,183,255,.1), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 45%, #fff 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.site-header {
  min-height: 76px;
  margin: 0;
  padding: 0 clamp(18px, 3vw, 46px);
  border-bottom: 1px solid rgba(220, 229, 244, .75);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  transition: transform .24s ease, box-shadow .24s ease;
}
.site-header.header-hidden {
  transform: translateY(-110%);
  box-shadow: none;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  font-weight: 900;
  letter-spacing: 0;
  font-size: clamp(27px, 2.6vw, 35px);
  line-height: 1;
  position: relative;
}
.brand-mark { color: #1385ee; font-style: italic; }
.brand-text { color: #45484e; margin-left: 2px; }
.main-nav {
  margin-left: clamp(28px, 4vw, 70px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.25vw, 20px);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.15;
  flex: 0 1 auto;
}
.main-nav a, .nav-group { padding: 24px 0 18px; }
.main-nav a {
  position: relative;
  white-space: nowrap;
  flex: 0 0 auto;
}
.main-nav a.active {
  color: var(--blue);
  border-bottom: 0;
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
}
.nav-group { display: inline-flex; gap: 7px; align-items: center; }
.header-cta {
  margin-left: auto;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  padding: 12px 17px;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(7,95,255,.24);
  white-space: nowrap;
  flex: 0 0 auto;
}
.nav-toggle { display: none; background: none; border: 0; width: 42px; margin-left: auto; }
.nav-toggle span { display: block; height: 3px; margin: 7px 0; background: var(--ink); border-radius: 9px; }
.mobile-nav-cta {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, .85fr) minmax(500px, 1.15fr);
  gap: clamp(30px, 4vw, 64px);
  margin: 24px clamp(18px, 3vw, 42px) 32px;
  padding: clamp(38px, 5vw, 72px) clamp(38px, 5vw, 72px) clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(220, 229, 244, .82);
  border-radius: 26px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.94), rgba(246,250,255,.86)),
    radial-gradient(circle at 76% 42%, rgba(7,95,255,.13), transparent 36%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero > * {
  min-width: 0;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: 4vw;
  top: 28px;
  background: linear-gradient(135deg, #eaf3ff, #f6fbff);
  border-radius: 50%;
  z-index: -1;
}
.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: 0;
  font-size: 13px;
}
.centered { text-align: center; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(42px, 4.7vw, 70px);
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 720px;
}
h1 span, h2 span { color: var(--blue); }
.hero-text {
  max-width: 610px;
  color: #1a2435;
  font-size: 17px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 11px;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
.btn-primary { background: var(--blue); color: white; box-shadow: 0 11px 25px rgba(7,95,255,.22); }
.btn-primary, .btn-green { transition: transform .2s ease, box-shadow .2s ease; }
.btn-primary:hover, .btn-green:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(7,95,255,.22); }
.btn-outline { border-color: rgba(7,95,255,.45); color: var(--ink); background: rgba(255,255,255,.72); }
.btn-green {
  background: linear-gradient(135deg, #ffffff 0%, #eaf3ff 100%);
  color: var(--blue-dark);
  width: auto;
  min-width: 320px;
  border: 2px solid rgba(255, 255, 255, .92);
  box-shadow: 0 14px 30px rgba(2, 31, 87, .25), inset 0 0 0 1px rgba(7, 95, 255, .12);
}
.btn-green::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(7, 95, 255, .14);
}
.trust {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  max-width: 100%;
}
.trust p {
  color: #687386;
  text-transform: uppercase;
  font-size: clamp(10px, .78vw, 12px);
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  flex-wrap: nowrap;
  min-width: 0;
  color: #1c2334;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  white-space: nowrap;
}
.trust-logos span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.trust-logos span:nth-child(4), .trust-logos span:nth-child(5) { font-size: clamp(11px, .92vw, 13px); font-weight: 900; text-transform: uppercase; }

.hero-visual { min-height: 510px; position: relative; }
.hero-visual .laptop,
.hero-visual .phone,
.hero-visual .metric-card,
.hero-visual .plant,
.hero-visual .drag-note {
  cursor: grab;
  user-select: none;
  touch-action: none;
}
.hero-visual .is-dragging {
  cursor: grabbing;
  z-index: 10;
}
.drag-note {
  position: absolute;
  right: 275px;
  top: 470px;
  z-index: 6;
  width: 104px;
  height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-5deg);
  padding: 12px;
  border-radius: 5px;
  background: #fff18a;
  color: #1b2440;
  font-family: "Bradley Hand ITC", "Segoe Print", "Comic Sans MS", cursive;
  font-size: 22px;
  font-weight: 500;
  line-height: .98;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 14px 28px rgba(73, 60, 0, .18);
  animation: noteBlink 1.25s ease-in-out infinite;
}
.drag-note::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-width: 0 0 16px 16px;
  border-style: solid;
  border-color: transparent transparent #e4ce42 transparent;
}
@keyframes noteBlink {
  0%, 100% {
    filter: brightness(1);
    transform: rotate(-5deg) scale(1);
  }
  50% {
    filter: brightness(1.15);
    transform: rotate(-5deg) scale(1.04);
  }
}
.laptop {
  width: 540px;
  max-width: 88%;
  position: absolute;
  right: 72px;
  top: 50px;
  transform: rotate(4deg);
  filter: drop-shadow(0 34px 32px rgba(9, 42, 91, .22));
}
.screen {
  background: white;
  border: 11px solid #121318;
  border-bottom-width: 22px;
  border-radius: 18px;
  padding: 22px;
  aspect-ratio: 16/10;
}
.keyboard {
  height: 96px;
  background: linear-gradient(160deg, #cdd4dd, #f7f9fb 58%, #a9b2bf);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  border-radius: 0 0 20px 20px;
  margin-top: -1px;
}
.window-title {
  font-weight: 900;
  margin-bottom: 18px;
  text-align: center;
}
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 26px; }
.mini-stats span { border: 1px solid #e8edf5; border-radius: 8px; padding: 9px; color: #6a7587; font-size: 10px; }
.mini-stats b { display: block; color: var(--ink); font-size: 15px; }
.chart-row { display: flex; align-items: center; gap: 28px; }
.donut {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: conic-gradient(#0b63ff 0 38%, #7344e7 38% 63%, #14c9a8 63% 83%, #e8edf5 83%);
  position: relative;
}
.donut::after { content: ""; position: absolute; inset: 25px; background: white; border-radius: 50%; }
.channels span { display: block; color: #4f5c6d; font-size: 13px; margin: 7px 0; }
.channels i { display: inline-block; width: 10px; height: 10px; background: var(--blue); margin-right: 8px; border-radius: 2px; }
.phone {
  position: absolute;
  right: 24px;
  top: 238px;
  width: 142px;
  border: 8px solid #15171e;
  border-radius: 25px;
  background: white;
  padding: 18px 13px;
  box-shadow: var(--shadow);
}
.phone-notch { position: absolute; width: 56px; height: 9px; background: #15171e; border-radius: 0 0 10px 10px; top: 0; left: 50%; transform: translateX(-50%); }
.phone p { font-size: 11px; color: #697386; margin: 0; }
.phone b { display: block; font-size: 22px; margin-bottom: 8px; }
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 43px; }
.bar-chart span { width: 13px; background: #0b63ff; border-radius: 4px 4px 0 0; }
.bar-chart span:nth-child(1){height:18px}.bar-chart span:nth-child(2){height:26px}.bar-chart span:nth-child(3){height:33px}.bar-chart span:nth-child(4){height:22px}.bar-chart span:nth-child(5){height:42px}
.metric-card {
  position: absolute;
  left: 18px;
  width: 162px;
  background: white;
  padding: 14px;
  border: 1px solid #dfe7f3;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.metric-card i { float: left; margin-right: 15px; }
.metric-card i { width: 34px; height: 34px; }
.metric-card strong { display: block; font-size: 22px; line-height: 1; }
.metric-card span { display: block; font-size: 11px; font-weight: 800; }
.metric-card em { display: block; clear: both; color: #0fb15d; font-size: 10px; font-style: normal; margin-top: 5px; padding-left: 41px; }
.metric-one { top: 46px; }
.metric-two { top: 182px; }
.metric-three { top: 318px; }
.plant {
  position: absolute;
  right: 70px;
  bottom: 190px;
  width: 116px;
  height: 122px;
  background: transparent;
  opacity: .82;
  filter: drop-shadow(0 12px 18px rgba(28, 64, 48, .14));
}
.plant span {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 22px;
  height: 94px;
  background: linear-gradient(135deg, rgba(49, 114, 78, .84), rgba(27, 154, 101, .55));
  border-radius: 95% 0 95% 0;
  transform-origin: bottom center;
  clip-path: ellipse(45% 50% at 50% 50%);
}
.plant span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  width: 1px;
  height: 78%;
  background: rgba(238, 255, 245, .32);
  transform: translateX(-50%);
}
.plant span:nth-child(1) {
  height: 104px;
  transform: translateX(-50%) rotate(-8deg);
}
.plant span:nth-child(2) {
  height: 92px;
  width: 21px;
  transform: translateX(-48%) rotate(-34deg);
  background: linear-gradient(135deg, rgba(64, 129, 89, .78), rgba(32, 150, 103, .52));
}
.plant span:nth-child(3) {
  height: 88px;
  width: 21px;
  transform: translateX(-52%) rotate(31deg);
  background: linear-gradient(135deg, rgba(38, 96, 68, .8), rgba(22, 136, 91, .52));
}
.plant span:nth-child(4) {
  height: 70px;
  width: 19px;
  transform: translateX(-45%) rotate(-58deg);
  background: linear-gradient(135deg, rgba(82, 144, 99, .72), rgba(37, 158, 104, .48));
}
.plant span:nth-child(5) {
  height: 68px;
  width: 19px;
  transform: translateX(-55%) rotate(56deg);
  background: linear-gradient(135deg, rgba(40, 104, 74, .74), rgba(23, 133, 91, .48));
}

.section {
  margin: 0 clamp(18px, 3vw, 42px) 38px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(220, 229, 244, .86);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}
.section-intro {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}
.section-intro p:last-child {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 0;
}
.section h2 { text-align: center; font-size: clamp(30px, 3vw, 44px); line-height: 1.14; margin-bottom: 12px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(30, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.service-card-link {
  display: block;
  color: inherit;
  height: 100%;
  grid-column: span 10;
}
.service-card-link article {
  height: 100%;
}
.service-grid article {
  grid-column: span 10;
  min-height: clamp(190px, 13vw, 220px);
}
.service-grid article, .feature-grid article, .feature-card, .case-card, .blog-card {
  border: 1px solid rgba(220, 229, 244, .95);
  border-radius: 16px;
  padding: clamp(20px, 2vw, 25px);
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 8px 22px rgba(9, 42, 91, .04);
}
.service-grid article:nth-child(n + 7) {
  grid-column: span 6;
  min-height: clamp(150px, 10vw, 176px);
  padding: clamp(17px, 1.6vw, 21px);
}
.service-grid .service-card-link:nth-child(n + 7) {
  grid-column: span 6;
}
.service-grid .service-card-link:nth-child(n + 7) article {
  min-height: clamp(150px, 10vw, 176px);
  padding: clamp(17px, 1.6vw, 21px);
}
.service-grid article:hover,
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7,95,255,.35);
  box-shadow: 0 16px 34px rgba(9, 42, 91, .09);
}
.service-grid article,
.feature-card { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-grid h3, .why-features h3 { font-size: 16px; line-height: 1.22; margin: 12px 0 8px; }
.service-grid p { font-size: 14px; line-height: 1.5; }
.service-grid article:nth-child(n + 7) h3 { font-size: 15px; }
.service-grid article:nth-child(n + 7) p { font-size: 13px; line-height: 1.45; }
.service-grid p, .why-features p, .site-footer p { color: #263244; margin-bottom: 0; }
.card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
i[data-icon] {
  width: 40px;
  height: 40px;
  display: inline-block;
  color: var(--blue);
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}
[data-icon="users"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E")}
[data-icon="chart"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M7 16V9M12 16V5M17 16v-7'/%3E%3C/svg%3E")}
[data-icon="target"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M16 8l5-5M18 3h3v3'/%3E%3C/svg%3E")}
[data-icon="megaphone"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='m3 11 18-5v12L3 13v-2Z'/%3E%3Cpath d='M7 14v5a2 2 0 0 0 4 0v-4'/%3E%3C/svg%3E")}
[data-icon="thumb"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M7 10v11H3V10h4Zm0 0 5-7 1 1v6h6a2 2 0 0 1 2 2l-2 7a3 3 0 0 1-3 2H7'/%3E%3C/svg%3E")}
[data-icon="monitor"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='12' rx='1'/%3E%3Cpath d='M8 20h8M12 16v4'/%3E%3C/svg%3E")}
[data-icon="affiliate"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='6' cy='7' r='3'/%3E%3Ccircle cx='18' cy='7' r='3'/%3E%3Cpath d='M4 21v-2a4 4 0 0 1 4-4h1M20 21v-2a4 4 0 0 0-4-4h-1'/%3E%3C/svg%3E")}
[data-icon="headset"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0v5a2 2 0 0 1-2 2h-2v-7h4M4 12h4v7H6a2 2 0 0 1-2-2v-5Z'/%3E%3C/svg%3E")}
[data-icon="pen"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M12 3C7 3 3 6.7 3 11.5S6.9 20 11.7 20h1.1c1 0 1.7-.8 1.7-1.7 0-.5-.2-.9-.5-1.2-.3-.3-.5-.7-.5-1.2 0-1 .8-1.8 1.8-1.8H17c2.2 0 4-1.8 4-4C21 6.2 17 3 12 3Z'/%3E%3Ccircle cx='7.7' cy='11' r='.9'/%3E%3Ccircle cx='10' cy='7.8' r='.9'/%3E%3Ccircle cx='14' cy='7.8' r='.9'/%3E%3Ccircle cx='16.4' cy='11' r='.9'/%3E%3C/svg%3E")}
[data-icon="play"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m10 9 5 3-5 3V9Z'/%3E%3C/svg%3E")}
[data-icon="script"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h9l3 3v15H6z'/%3E%3Cpath d='M14 3v4h4M9 11h6M9 15h6M9 19h3'/%3E%3C/svg%3E")}
[data-icon="search"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='10' cy='10' r='7'/%3E%3Cpath d='m15 15 6 6'/%3E%3C/svg%3E")}
[data-icon="dollar"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 6v12M15 9a3 3 0 0 0-3-1.5c-2 0-3 1-3 2.5s6 1 6 4-5 3-7 1'/%3E%3C/svg%3E")}
[data-icon="badge"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='m12 2 3 3 4 .5.5 4 2.5 2.5-2.5 3-.5 4-4 .5-3 2.5-3-2.5-4-.5-.5-4L2 12l2.5-2.5.5-4L9 5z'/%3E%3Cpath d='m8 12 3 3 5-6'/%3E%3C/svg%3E")}
[data-icon="user-check"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M2 21v-2a4 4 0 0 1 4-4h5M16 19l2 2 4-5'/%3E%3C/svg%3E")}
[data-icon="cart"],[data-icon="home"],[data-icon="heart"],[data-icon="cap"],[data-icon="wallet"],[data-icon="chip"],[data-icon="scale"],[data-icon="dots"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Crect x='4' y='4' width='16' height='16' rx='3'/%3E%3Cpath d='M8 12h8M12 8v8'/%3E%3C/svg%3E")}

.why-band {
  margin: 0 clamp(18px, 3vw, 42px) 42px;
  padding: clamp(34px, 4vw, 54px);
  border-radius: 26px;
  background:
    linear-gradient(120deg, #eff7ff, #f8fbff 60%, #ecf5ff);
  border: 1px solid rgba(220, 229, 244, .82);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 38px;
  align-items: start;
}
.why-copy h2 { font-size: 42px; line-height: 1.06; }
.why-copy p { color: #243044; }
.why-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-features article { padding: 10px 2px; }
.why-features i { width: 38px; height: 38px; float: left; margin-right: 12px; }
.stats-card {
  grid-column: 2;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 14px;
}
.stats-card span { display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid var(--line); font-size: 13px; }
.stats-card span:last-child { border-right: 0; }
.stats-card b { color: var(--blue); display: block; font-size: 34px; line-height: 1; }

.bottom-grid {
  display: grid;
  grid-template-columns: .95fr .9fr 1.25fr;
  gap: 24px;
  padding: 0 clamp(18px, 3vw, 42px) 46px;
  align-items: stretch;
}
.industries-card, .testimonial-card, .cta-form {
  border: 1px solid rgba(220, 229, 244, .86);
  border-radius: 22px;
  padding: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
}
.industries-card h2 { font-size: 30px; line-height: 1.16; }
.industry-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.industry-icons span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  padding: 10px;
  border-radius: 12px;
  background: #f7fbff;
}
.industry-icons i { width: 34px; height: 34px; }
blockquote { margin: 18px 0 32px; font-size: 18px; color: #172033; position: relative; padding-left: 36px; }
blockquote::before { content: "\201C"; color: var(--blue); font-size: 64px; position: absolute; left: 0; top: -22px; }
.testimonial-slider {
  min-height: 265px;
  display: flex;
  flex-direction: column;
}
.testimonial-slider blockquote {
  transition: opacity .22s ease, transform .22s ease;
}
.testimonial-slider.is-changing blockquote,
.testimonial-slider.is-changing .person {
  opacity: .25;
  transform: translateY(4px);
}
.person { display: flex; gap: 18px; align-items: center; }
.avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, var(--avatar-main, #b9c0c9) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 120%, var(--avatar-soft, #d9dde5) 0 55%, transparent 56%),
    #eef2f8;
}
.person span, .person em { display: block; font-style: normal; }
.person em { color: #ffb400; letter-spacing: 2px; }
.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}
.testimonial-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #c9d4e5;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.testimonial-dots button.active {
  width: 26px;
  background: var(--blue);
}
.testimonial-page-grid {
  padding: 42px 4vw 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.quote-card {
  border: 1px solid rgba(220, 229, 244, .92);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.quote-card blockquote {
  margin-bottom: 26px;
}
.quote-card .person {
  margin-top: auto;
}
.quote-card .avatar {
  display: none;
}
.reference-contact {
  width: 100%;
  min-height: 44px;
  margin-top: 22px;
  border: 1px solid rgba(7,95,255,.28);
  border-radius: 11px;
  background: #f7fbff;
  color: var(--blue-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.reference-contact:hover {
  transform: translateY(-2px);
  border-color: rgba(7,95,255,.5);
  box-shadow: 0 12px 28px rgba(7,95,255,.14);
}
.testimonial-metrics {
  display: grid;
  gap: 16px;
}
.testimonial-metrics span {
  display: grid;
  grid-template-columns: 42px auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.testimonial-metrics span:last-child {
  border-bottom: 0;
}
.testimonial-metrics i {
  width: 38px;
  height: 38px;
}
.testimonial-metrics b {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}
.testimonial-metrics em {
  color: #263244;
  font-style: normal;
  font-weight: 800;
}
.cta-form {
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.22), transparent 26%),
    linear-gradient(135deg, #075fff, #0349d9);
  color: white;
  border: 0;
}
#lead-form,
#strategy-call {
  scroll-margin-top: 96px;
}
.cta-form h2 { font-size: 34px; line-height: 1.1; margin-bottom: 10px; }
.cta-form h2 span { color: #a6d1ff; display: block; }
.cta-form p { font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfd8e8;
  border-radius: 10px;
  padding: 14px;
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 78px; resize: vertical; margin: 10px 0; }
.form-status { min-height: 22px; margin: 10px 0 0; color: #dfffe9; }

.footer-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
  margin-top: 4px;
  padding: 18px;
  border: 1px solid rgba(220, 229, 244, .95);
  border-radius: 16px;
  background: linear-gradient(135deg, #f7fbff, #fff);
}
.footer-form h3 {
  margin: 0;
  font-size: 18px;
  text-transform: none;
}
.footer-form p {
  color: var(--muted);
  font-size: 13px;
}
.footer-form input {
  min-height: 46px;
}
.footer-form .btn {
  min-height: 46px;
  white-space: nowrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(5, 12, 32, .58);
  backdrop-filter: blur(8px);
}
.modal-backdrop.open {
  display: grid;
}
.strategy-modal {
  width: min(560px, 100%);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(2, 31, 87, .34);
  overflow: hidden;
}
.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px 12px;
}
.modal-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}
.modal-head p {
  color: var(--muted);
  margin: 8px 0 0;
}
.modal-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f7fbff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.strategy-modal form {
  padding: 16px 28px 28px;
}
.strategy-modal .btn {
  width: 100%;
  margin-top: 10px;
}
.selected-reference {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7fbff;
  color: var(--blue-dark);
  font-weight: 900;
}
.thank-you-modal {
  position: relative;
  width: min(430px, 100%);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  padding: 34px;
  text-align: center;
  box-shadow: 0 28px 80px rgba(2, 31, 87, .34);
}
.thank-you-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
}
.thank-you-modal h2 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1;
}
.thank-you-modal p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px clamp(22px, 4vw, 54px) 22px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.55fr 1fr 1.25fr;
  gap: 42px;
}
.footer-brand { font-size: 30px; margin-bottom: 16px; }
.site-footer h3 { text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.site-footer a { display: block; color: #243044; margin: 4px 0; }
.footer-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 16px;
}
.footer-service-links a {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.3;
}
.footer-location-links {
  display: grid;
  gap: 4px;
}
.footer-location-links a {
  margin: 0;
}
.location-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.location-metrics span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7fbff;
  color: #263244;
  font-weight: 800;
}
.location-metrics b {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}
.site-footer .footer-form h3 {
  margin: 0;
  font-size: 18px;
  text-transform: none;
}
.site-footer .footer-form p {
  margin: 0;
}
.footer-form .form-status {
  grid-column: 2 / -1;
  min-height: 0;
  margin: 0;
  color: var(--blue);
}
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #b9c5d6; border-radius: 50%; color: #3a4a61; }
.copyright { color: #8a95a6; text-align: center; padding-bottom: 18px; margin: 0; }

.page-hero {
  padding: 58px 4vw 44px;
  background: linear-gradient(135deg, #f7fbff, #eaf3ff);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
}
.page-hero h1 { max-width: 850px; }
.page-hero p { max-width: 680px; color: #253249; font-size: 18px; }
.page-visual {
  min-height: 250px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 26px;
}
.page-visual > i[data-icon] {
  width: 92px;
  height: 92px;
  margin-top: 8px;
}
.about-visual {
  min-height: 0;
  display: grid;
  align-content: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.about-stats span {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7fbff;
  color: #263244;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}
.about-stats i {
  width: 34px;
  height: 34px;
}
.about-stats b {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}
.feature-grid, .case-grid, .blog-grid {
  padding: 38px 4vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-grid article h2,
.feature-card h2 { font-size: 22px; }
.feature-card {
  display: block;
  color: inherit;
}
.service-detail {
  padding: 42px 4vw 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: start;
}
.service-copy,
.service-sidebar {
  border: 1px solid rgba(220, 229, 244, .9);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 3vw, 36px);
}
.service-copy h2,
.service-sidebar h2 {
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.12;
}
.service-copy p,
.service-copy li,
.service-sidebar p {
  color: #263244;
  font-size: 16px;
}
.service-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  position: relative;
  padding-left: 26px;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(7,95,255,.12);
}
.service-sidebar {
  position: sticky;
  top: 96px;
}
.service-sidebar .btn {
  width: 100%;
  margin-top: 10px;
}
.service-pill-grid {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.service-pill-grid span {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7fbff;
  border: 1px solid var(--line);
  color: #1f2b3f;
  font-weight: 800;
}
.case-card img, .blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
  background: linear-gradient(135deg, #0b63ff, #14c9a8);
}
.split-section {
  padding: 44px 4vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 28px;
  background: white;
}
.contact-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.contact-card .form-grid { grid-template-columns: 1fr 1fr; }
.contact-card button { margin-top: 10px; }
.about-form-section {
  padding: 0 4vw 50px;
}
.about-form-section .contact-card {
  max-width: 940px;
  margin: 0 auto;
}
.about-form-section .contact-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  margin-bottom: 10px;
}
.about-form-section .contact-card > p:not(.eyebrow):not(.form-status) {
  color: var(--muted);
  max-width: 640px;
}

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 510px; }
  .service-grid article, .service-grid article:nth-child(n + 7),
  .service-grid .service-card-link, .service-grid .service-card-link:nth-child(n + 7) {
    grid-column: span 15;
    min-height: 0;
  }
  .why-band { grid-template-columns: 1fr; }
  .stats-card { grid-column: auto; }
  .bottom-grid, .site-footer { grid-template-columns: 1fr 1fr; }
  .cta-form { grid-column: 1 / -1; }
}

@media (max-width: 930px) {
  body {
    overflow-x: hidden;
  }
  .site-header {
    min-height: 74px;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 22px;
  }
  .brand {
    font-size: 30px;
  }
  .brand-mark::after {
    left: 42px;
    width: 34px;
  }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    margin-left: 0;
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 14px 14px;
    border: 1px solid rgba(220, 229, 244, .94);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 56px rgba(9, 42, 91, .18);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a, .nav-group {
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-radius: 10px;
  }
  .main-nav a.active::after {
    display: none;
  }
  .main-nav a.active {
    border-bottom: 0;
    border-left: 4px solid var(--blue);
    background: #f7fbff;
  }
  .nav-group {
    justify-content: space-between;
  }
  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    border: 0;
    border-radius: 11px;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(7,95,255,.22);
  }
  .hero {
    margin: 16px;
    padding: 30px 24px 24px;
    border-radius: 20px;
  }
  h1 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.08;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-logos {
    gap: 10px;
  }
  .trust-logos span {
    font-size: 12px;
  }
  .hero-visual {
    min-height: 340px;
    width: 100%;
    transform: none;
    overflow: hidden;
    margin-top: 12px;
  }
  .laptop {
    width: 330px;
    max-width: none;
    right: 0;
    top: 76px;
    transform: rotate(4deg);
  }
  .screen {
    padding: 14px;
    border-width: 9px;
    border-bottom-width: 18px;
  }
  .keyboard {
    height: 74px;
  }
  .metric-card {
    left: 0;
    width: 142px;
    padding: 12px;
  }
  .metric-card strong {
    font-size: 20px;
  }
  .metric-card i {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .metric-one { top: 18px; }
  .metric-two { top: 120px; }
  .metric-three { top: 222px; }
  .phone {
    width: 108px;
    right: 6px;
    top: 214px;
    border-width: 7px;
  }
  .plant {
    display: block;
    right: 22px;
    bottom: 58px;
    width: 68px;
    height: 72px;
    opacity: .58;
  }
  .plant span {
    width: 14px;
    height: 58px;
  }
  .drag-note {
    display: none;
  }
  .section, .why-band { margin-left: 16px; margin-right: 16px; padding: 28px; }
  .service-grid article,
  .service-grid article:nth-child(n + 7),
  .service-grid .service-card-link,
  .service-grid .service-card-link:nth-child(n + 7) {
    grid-column: auto;
    min-height: 0;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .why-features, .stats-card, .bottom-grid, .site-footer, .feature-grid, .case-grid, .blog-grid, .testimonial-page-grid, .split-section, .page-hero, .service-detail {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
  }
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-card span { border-right: 0; justify-content: flex-start; }
  .bottom-grid { padding-left: 16px; padding-right: 16px; }
  .form-grid, .contact-card .form-grid { grid-template-columns: 1fr; }
  .cta-form h2 {
    font-size: 32px;
  }
  .cta-form .btn-green {
    width: 100%;
    min-width: 0;
  }
  .strategy-modal {
    max-height: calc(100vh - 28px);
    overflow-y: auto;
  }
  .modal-head {
    padding: 22px 22px 10px;
  }
  .modal-head h2 {
    font-size: 27px;
  }
  .strategy-modal form {
    padding: 14px 22px 22px;
  }
  .footer-form {
    grid-template-columns: 1fr;
  }
  .footer-service-links {
    grid-template-columns: 1fr;
  }
  .location-metrics {
    grid-template-columns: 1fr;
  }
  .footer-form .form-status {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 18px;
  }
  .hero {
    margin: 12px;
    padding: 24px 18px 18px;
  }
  .hero::after {
    width: 330px;
    height: 330px;
    right: -120px;
    top: 220px;
  }
  .eyebrow {
    font-size: 12px;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.06;
  }
  .hero-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }
  .btn {
    gap: 8px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }
  .hero-actions {
    margin-bottom: 16px;
  }
  .trust {
    display: grid;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }
  .trust p {
    white-space: normal;
  }
  .trust-logos {
    flex-wrap: wrap;
    gap: 8px 12px;
    white-space: normal;
  }
  .trust-logos span,
  .trust-logos span:nth-child(4),
  .trust-logos span:nth-child(5) {
    font-size: 11px;
  }
  .section,
  .why-band,
  .industries-card,
  .testimonial-card,
  .cta-form {
    border-radius: 18px;
  }
  .service-grid article,
  .service-grid article:nth-child(n + 7),
  .service-grid .service-card-link,
  .service-grid .service-card-link:nth-child(n + 7) {
    grid-column: auto;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .industry-icons {
    grid-template-columns: 1fr;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
  }
  .stats-card span {
    display: grid;
    align-items: start;
    justify-content: stretch;
    gap: 3px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfdff;
    font-size: 12px;
    line-height: 1.25;
  }
  .stats-card span i {
    width: 30px;
    height: 30px;
  }
  .stats-card span b {
    font-size: 28px;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .testimonial-slider {
    min-height: 0;
  }
  .bottom-grid {
    gap: 18px;
  }
  .footer-form {
    padding: 16px;
  }
}
