/* ============================================================
   KLIENTO — Company site
   Uses the KLIENTO design language (tokens, Rubik, mark motif).
   ============================================================ */

:root {
  --k-50: #f0f9fd;
  --k-100: #e0f3fa;
  --k-200: #abdef2;
  --k-300: #7dcbeb;
  --k-500: #2dacdf;
  --k-600: #2691bb;
  --k-700: #1e7293;
  --ink: #16242e;
  --ink-700: #2b3a45;
  --slate: #5c6b75;
  --slate-400: #93a1ab;
  --line: #e6ecef;
  --mist: #f7fafb;
  --mist-100: #eef3f5;
  --wa: #25d366;
  --wa-dark: #1ebe57;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family:
    "Rubik",
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
::selection {
  background: #bee6f6;
}
svg.lucide {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.14em;
  stroke-width: 2;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}

@keyframes kfloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes kpulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}
@keyframes karrowIn {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.rel {
  position: relative;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}

/* ---- page-wide ring motif ---- */
.k-motif {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
body[data-motif="rings"] .k-motif {
  background-image: radial-gradient(
    circle,
    rgba(45, 172, 223, 0) 40%,
    rgba(45, 172, 223, 0.045) 41%,
    rgba(45, 172, 223, 0.045) 43%,
    rgba(45, 172, 223, 0) 44%
  );
  background-size: 60px 60px;
}

/* ---- wordmark ---- */
.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  direction: ltr;
}
.wm-text {
  font-weight: 900;
  letter-spacing: -0.04em;
}
.wm-mark {
  display: block;
  object-fit: contain;
}
.wordmark--ink .wm-text {
  color: var(--ink);
}
.wordmark--white .wm-text {
  color: #fff;
}
.wordmark .wm-text {
  font-size: 22px;
}
.wordmark .wm-mark {
  height: 22px;
}
.wordmark--xs .wm-text {
  font-size: 18px;
}
.wordmark--xs .wm-mark {
  height: 18px;
}
.wordmark--md .wm-text {
  font-size: 30px;
}
.wordmark--md .wm-mark {
  height: 30px;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    box-shadow 0.15s,
    transform 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn--primary {
  background: var(--k-500);
  color: #fff;
  box-shadow: 0 6px 18px rgba(45, 172, 223, 0.28);
}
.btn--primary:hover {
  background: var(--k-600);
  box-shadow: 0 10px 26px rgba(45, 172, 223, 0.34);
  transform: translateY(-1px);
}
.btn--secondary {
  border: 1.5px solid var(--k-500);
  background: #fff;
  color: var(--k-700);
}
.btn--secondary:hover {
  background: var(--k-50);
}
.btn--lg {
  padding: 16px 30px;
  font-size: 16px;
  border-radius: 12px;
}
.btn--block {
  width: 100%;
}
.btn--nav {
  padding: 9px 18px;
  font-size: 14px;
}
.btn--nav svg {
  width: 15px;
  height: 15px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-spacer {
  flex: 1;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate);
}
.nav-links a {
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--k-600);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: #fff;
}
.nav-mobile a {
  padding: 14px 40px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--mist-100);
}
.nav-mobile.is-open {
  display: flex;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) saturate(1.1);
  transform: scale(1.08);
  z-index: 0;
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.68) 45%,
    var(--mist) 100%
  );
}
.hero-bg {
  position: absolute;
  left: -200px;
  top: -80px;
  width: 560px;
  opacity: 0.06;
  pointer-events: none;
  animation: kfloat 9s ease-in-out infinite;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding: 84px 40px 90px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--k-600);
  margin-bottom: 24px;
}
.eyebrow-line {
  width: 26px;
  height: 1px;
  background: var(--k-500);
  display: inline-block;
}
.hero-title {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.hero-title .hl {
  color: var(--k-500);
}
.hero-sub {
  font-size: 20px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 50ch;
  margin: 0 0 34px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.hstat-n {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hstat-l {
  font-size: 13px;
  color: var(--slate);
  margin-top: 2px;
}
.hstat-div {
  width: 1px;
  height: 38px;
  background: var(--line);
}

/* hero chat mock */
.hero-mock {
  position: relative;
}
.chat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(22, 36, 46, 0.12);
  max-width: 420px;
  margin-inline: auto;
}
.chat-head {
  background: var(--k-500);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-avatar img {
  width: 23px;
  height: 23px;
}
.chat-name {
  font-weight: 700;
  font-size: 15px;
}
.chat-status {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7cffb2;
  display: inline-block;
  animation: kpulse 2s ease-in-out infinite;
}
.chat-phone {
  margin-inline-start: auto;
  display: flex;
}
.chat-body {
  padding: 20px;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 300px;
}
.msg {
  max-width: 80%;
  padding: 11px 15px;
  font-size: 14px;
  line-height: 1.45;
}
.msg--in {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
}
.msg--out {
  align-self: flex-end;
  background: var(--k-500);
  color: #fff;
  border-radius: 14px 14px 4px 14px;
}
.chat-input {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center;
}
.chat-field {
  flex: 1;
  background: var(--mist);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 13.5px;
  color: var(--slate-400);
}
.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--k-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.chat-send svg {
  width: 18px;
  height: 18px;
}

/* ============ TRUST ============ */
.trust {
  background: var(--ink);
  color: #fff;
  position: relative;
  z-index: 1;
}
.trust-inner {
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 14px;
  color: #aebdc6;
  max-width: 30ch;
}
.trust-icons {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.trust-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #d6e0e6;
}
.trust-icons svg {
  width: 17px;
  height: 17px;
  color: var(--k-300);
}

/* ============ SECTIONS ============ */
.section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}
.section--mist {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--ink {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.sec-head {
  max-width: 62ch;
  margin: 0 auto 52px;
  text-align: center;
}
.sec-kicker {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--k-600);
  margin-bottom: 16px;
}
.sec-kicker--blue {
  color: var(--k-300);
}
.h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0;
}
.lead--dim {
  color: #aebdc6;
}

/* ---- services ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.svc-card:hover {
  box-shadow: 0 18px 44px rgba(22, 36, 46, 0.08);
  border-color: var(--k-200);
  transform: translateY(-3px);
}
.svc-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--k-50);
  color: var(--k-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.svc-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}
.svc-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0 0 18px;
}
.svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.svc-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--ink-700);
}
.svc-list svg {
  width: 16px;
  height: 16px;
  color: var(--k-500);
  flex: 0 0 auto;
}

/* ---- why ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  text-align: center;
}
.why-ic {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--k-50);
  color: var(--k-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  margin: 0 auto 20px;
}
.why-title {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 10px;
}
.why-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0;
}

/* ---- how ---- */
.steps {
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.step {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
}
.step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--k-500);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.step-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.step-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
}
.step-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0;
}
.step-arrow {
  display: flex;
  align-items: center;
  color: var(--slate-400);
  font-size: 22px;
}
.step-arrow svg {
  width: 24px;
  height: 24px;
}

/* ---- proof ---- */
.proof-bg {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  opacity: 0.05;
  pointer-events: none;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.proof-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.proof-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #e6edf1;
}
.proof-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(45, 172, 223, 0.18);
  color: var(--k-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.proof-check svg {
  width: 15px;
  height: 15px;
}
.dash {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}
.dash-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.dash-icons {
  margin-inline-start: auto;
  color: var(--slate-400);
  display: flex;
  gap: 16px;
}
.dash-icons svg {
  width: 18px;
  height: 18px;
}
.dash-body {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ds {
  border-radius: 14px;
  padding: 20px;
}
.ds--ink {
  background: var(--ink);
  color: #fff;
}
.ds--blue {
  background: var(--k-50);
  border: 1px solid var(--k-100);
}
.ds-l {
  font-size: 12px;
  opacity: 0.7;
}
.ds--blue .ds-l {
  color: var(--k-700);
  opacity: 1;
}
.ds-n {
  font-size: 34px;
  font-weight: 800;
  margin-top: 6px;
}
.ds--blue .ds-n {
  color: var(--k-700);
}
.dash-chart {
  grid-column: 1/3;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.dc-l {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 14px;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 80px;
}
.bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
}
.bar--300 {
  background: var(--k-300);
}
.bar--500 {
  background: var(--k-500);
}

/* ---- contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-copy .sec-kicker {
  margin-bottom: 14px;
}
.contact-copy .h2 {
  margin-top: 0;
}
.wa-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  padding: 16px 20px;
  margin: 28px 0 22px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.3);
  transition:
    background 0.15s,
    transform 0.15s;
}
.wa-cta:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}
.wa-cta:hover .wa-arrow {
  animation: karrowIn 0.6s ease-in-out infinite;
}
.wa-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.wa-ic svg {
  width: 24px;
  height: 24px;
}
.wa-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.wa-t {
  font-weight: 700;
  font-size: 16px;
}
.wa-s {
  font-size: 13px;
  opacity: 0.9;
  font-family: "JetBrains Mono", monospace;
}
.wa-arrow {
  margin-inline-start: auto;
  width: 20px;
  height: 20px;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cm-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--slate);
  text-decoration: none;
}
.cm-item svg {
  width: 17px;
  height: 17px;
  color: var(--k-500);
}
a.cm-item:hover {
  color: var(--k-700);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 14px 40px rgba(22, 36, 46, 0.05);
}
.cf-row {
  margin-bottom: 16px;
}
.cf-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 7px;
}
.cf-input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.cf-input::placeholder {
  color: var(--slate-400);
}
.cf-input:focus {
  border-color: var(--k-500);
  box-shadow: 0 0 0 3px var(--k-50);
}
.cf-input.is-error {
  border-color: #d9534f;
}
.cf-input.is-error:focus {
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12);
}
.cf-textarea {
  resize: vertical;
  min-height: 84px;
  line-height: 1.5;
}
.cf-note {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cf-note.is-ok {
  color: #1f7a50;
}
.cf-note.is-err {
  color: #a8332f;
}
.cf-fine {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--slate-400);
  line-height: 1.5;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 64px 0 40px;
}
.footer-bg {
  position: absolute;
  left: -90px;
  bottom: -110px;
  width: 340px;
  opacity: 0.05;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand {
  max-width: 34ch;
}
.footer-tag {
  font-size: 14.5px;
  line-height: 1.7;
  color: #aebdc6;
  margin: 16px 0 18px;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.4);
  padding: 8px 16px;
  border-radius: 9px;
  transition: background 0.15s;
}
.footer-wa:hover {
  background: rgba(37, 211, 102, 0.26);
}
.footer-wa svg {
  width: 16px;
  height: 16px;
  color: var(--wa);
}
.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col-t {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.footer-col a {
  font-size: 14px;
  color: #aebdc6;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--k-300);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 12.5px;
  color: #7e8e99;
}

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.wa-float:hover {
  transform: scale(1.07);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
}
.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 64px;
    padding-bottom: 70px;
  }
  .hero-title {
    font-size: 46px;
  }
  .svc-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-direction: column;
  }
  .step-arrow {
    transform: rotate(-90deg);
    justify-content: center;
    padding: 4px 0;
  }
  .proof-grid {
    gap: 36px;
  }
}
@media (max-width: 680px) {
  .wrap,
  .nav-inner,
  .hero-inner,
  .trust-inner {
    padding-left: 22px;
    padding-right: 22px;
  }
  .nav-links,
  .btn--nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-mobile a {
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-sub {
    font-size: 18px;
  }
  .hero-stats {
    gap: 18px;
  }
  .hstat-div {
    display: none;
  }
  .h2 {
    font-size: 31px;
  }
  .lead {
    font-size: 17px;
  }
  .section {
    padding: 64px 0;
  }
  .sec-head {
    margin-bottom: 38px;
  }
  .trust-inner {
    justify-content: flex-start;
  }
  .footer-top {
    gap: 32px;
  }
  .footer-cols {
    gap: 40px;
  }
  .wa-float {
    bottom: 18px;
    left: 18px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg {
    width: 25px;
    height: 25px;
  }
}
