/* ============================================================
   AISOTEC — static build stylesheet
   Same design system as the original site. CSS-Module scoping
   replaced with readable component prefixes; values unchanged.
   ============================================================ */

/* ---- Self-hosted fonts (Inter body, Sora display) ---- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/sora-600.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/sora-700.woff2") format("woff2");
}

:root {
  /* ---- Brand & neutrals ---- */
  --ink: #0f1b2d;
  --ink-2: #1d2b40;
  --body: #47566b;
  --muted: #6a7a90;
  --faint: #93a1b3;

  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-tint: #eaf3fd;
  --line: #e7edf4;
  --line-2: #eef2f8;

  --brand: #1f6fe5;
  --brand-deep: #14356b;
  --brand-sky: #29abe2;
  --brand-tint: #eaf2fe;

  --gold: #f7b500;
  --gold-hover: #eca900;
  --gold-ink: #2a1f00;

  --wa: #22c55e;
  --wa-hover: #1bb055;
  --star: #f5a623;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --sh-xs: 0 1px 2px rgba(15, 27, 45, 0.05);
  --sh-sm: 0 2px 6px rgba(15, 27, 45, 0.05), 0 1px 2px rgba(15, 27, 45, 0.04);
  --sh-md: 0 10px 28px rgba(15, 27, 45, 0.08);
  --sh-lg: 0 22px 55px rgba(15, 27, 45, 0.13);
  --sh-gold: 0 10px 24px rgba(247, 181, 0, 0.32);
  --sh-brand: 0 10px 26px rgba(31, 111, 229, 0.22);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 116px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-inter: "Inter";
  --font-sora: "Sora";
  --font-sans: var(--font-inter), -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --font-display: var(--font-sora), var(--font-sans);
}

/* ---- Reset / base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img,
svg,
picture {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}
::selection {
  background: var(--brand);
  color: #fff;
}

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section-y);
}
.section--soft {
  background: var(--bg-soft);
}
.section--tint {
  background: linear-gradient(180deg, #f3f8ff, #eaf3fd);
}

/* ---- Section heading kit ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-sky), var(--brand));
}
.eyebrow--center::before {
  display: none;
}
.section-head {
  max-width: 680px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-title {
  margin-top: 16px;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
}
.section-sub {
  margin-top: 16px;
  font-size: 1.06rem;
  color: var(--muted);
}
.section-title .accent {
  color: var(--brand);
}

/* ---- Buttons ---- */
.btn {
  --btn-py: 14px;
  --btn-px: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background 0.18s var(--ease), border-color 0.18s var(--ease);
  will-change: transform;
}
.btn:active {
  transform: translateY(1px);
}
.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--gold-ink);
  box-shadow: var(--sh-gold);
}
.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(247, 181, 0, 0.4);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--sh-sm);
}
.btn--dark:hover {
  background: #17273d;
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
}
.btn--ghost:hover {
  border-color: #cdd8e6;
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.btn--wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.28);
}
.btn--wa:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
}
.btn--onDark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
}
.btn--onDark:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.btn--lg {
  --btn-py: 17px;
  --btn-px: 30px;
  font-size: 1.04rem;
  border-radius: 12px;
}
.btn--block {
  width: 100%;
}

/* ---- Chips / badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-2);
}
.badge svg {
  width: 15px;
  height: 15px;
  color: var(--wa);
}

/* ---- Card base ---- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}

/* ---- Icon tile ---- */
.icon-tile {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand);
  border: 1px solid #dbe8fd;
}
.icon-tile svg {
  width: 25px;
  height: 25px;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.no-js .reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- Focus visibility ---- */
:focus-visible {
  outline: 3px solid rgba(31, 111, 229, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Utility ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================================
   LOGO
   ===================================================================== */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.logo--light .logo-img {
  filter: brightness(0) invert(1);
}
@media (max-width: 520px) {
  .logo-img {
    height: 36px;
  }
}

/* =====================================================================
   HEADER
   ===================================================================== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(1.6) blur(12px);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.hdr.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(15, 27, 45, 0.06);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}
.hdr-brand {
  flex: none;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.hdr-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
.hdr-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transition: width 0.22s var(--ease);
}
.hdr-link:hover {
  color: var(--brand);
}
.hdr-link:hover::after {
  width: 100%;
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}
.hdr-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.hdr-call svg {
  width: 17px;
  height: 17px;
  color: var(--brand);
}
.hdr-call:hover {
  color: var(--brand);
}
.hdr-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
.hdr-burger svg {
  width: 24px;
  height: 24px;
}
.hdr-mobile {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 18px var(--gutter) 24px;
  animation: drop 0.2s var(--ease);
}
@keyframes drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hdr-mobileNav {
  display: flex;
  flex-direction: column;
}
.hdr-mobileNav a {
  padding: 14px 4px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}
.hdr-mobileActions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .hdr-nav,
  .hdr-actions {
    display: none;
  }
  .hdr-burger {
    display: inline-flex;
  }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 62%);
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(56px, 8vw, 104px);
  isolation: isolate;
}
.hero-bgWash {
  position: absolute;
  z-index: -2;
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(41, 171, 226, 0.16),
    rgba(31, 111, 229, 0.05) 45%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-bgGrid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: radial-gradient(rgba(20, 53, 107, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.hero-copy {
  max-width: 620px;
}
.hero-eyebrow {
  color: var(--brand-deep);
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}
.hero-eyebrow svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}
.hero-eyebrow::before {
  display: none;
}
.hero-title {
  margin-top: 18px;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.06;
}
.hero-accent {
  color: var(--brand);
  position: relative;
}
.hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.34em;
  background: rgba(247, 181, 0, 0.28);
  border-radius: 3px;
  z-index: -1;
}
.hero-lead {
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--body);
  max-width: 560px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-2);
}
.hero-points svg {
  width: 18px;
  height: 18px;
  color: var(--wa);
  flex: none;
}
.hero-formCol {
  position: relative;
  scroll-margin-top: 96px;
}
.hero-ratingBadge {
  position: absolute;
  top: -18px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  box-shadow: var(--sh-md);
}
.hero-ratingBadge strong {
  color: #fff;
}
.hero-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
}
.hero-stars svg {
  width: 15px;
  height: 15px;
}
@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-copy {
    max-width: 640px;
  }
  .hero-ratingBadge {
    position: static;
    transform: none;
    display: flex;
    width: fit-content;
    margin: 0 auto 14px;
  }
}
@media (max-width: 520px) {
  .hero-cta .btn {
    width: 100%;
  }
  .hero-ratingBadge {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
}

/* =====================================================================
   LEAD FORM
   ===================================================================== */
.lf-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: clamp(20px, 3vw, 30px);
}
.lf-head {
  margin-bottom: 18px;
}
.lf-title {
  font-size: 1.4rem;
}
.lf-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}
.lf-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lf-field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-2);
}
.lf-opt {
  font-weight: 400;
  color: var(--faint);
}
.lf-field input,
.lf-field textarea,
.lf-selectWrap select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fbfcfe;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.lf-field textarea {
  resize: vertical;
  min-height: 84px;
}
.lf-field input::placeholder,
.lf-field textarea::placeholder {
  color: #a9b4c3;
}
.lf-field input:focus,
.lf-field textarea:focus,
.lf-selectWrap select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 111, 229, 0.12);
}
.lf-selectWrap {
  position: relative;
}
.lf-selectWrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.lf-selectWrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.lf-invalid {
  border-color: #e5484d !important;
  background: #fff6f6 !important;
}
.lf-err {
  font-size: 0.8rem;
  color: #d3383d;
}
.lf-spin {
  width: 18px;
  height: 18px;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.lf-errorBox {
  background: #fdeff0;
  border: 1px solid #f7d3d5;
  border-radius: var(--r-sm);
  padding: 14px;
}
.lf-errorText {
  font-size: 0.9rem;
  color: #b4232a;
  margin-bottom: 12px;
}
.lf-errorActions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lf-trust {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.lf-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.lf-trust svg {
  width: 15px;
  height: 15px;
  color: var(--wa);
  flex: none;
}
.lf-successCard {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-block: clamp(28px, 4vw, 42px);
}
.lf-successIcon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f9f0;
  color: var(--wa);
  margin-bottom: 8px;
}
.lf-successIcon svg {
  width: 34px;
  height: 34px;
}
.lf-successTitle {
  font-size: 1.4rem;
}
.lf-successText {
  color: var(--muted);
  max-width: 340px;
  font-size: 0.96rem;
}
.lf-successActions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
}
.lf-successActions .btn {
  width: 100%;
}

/* =====================================================================
   STATS STRIP
   ===================================================================== */
.stats-wrap {
  background: var(--ink);
  background-image: radial-gradient(
      600px 300px at 12% -40%,
      rgba(41, 171, 226, 0.16),
      transparent 60%
    ),
    radial-gradient(600px 300px at 100% 140%, rgba(31, 111, 229, 0.16), transparent 60%);
  padding-block: clamp(34px, 5vw, 52px);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.stats-stat {
  text-align: center;
  padding: 8px clamp(6px, 2vw, 20px);
  position: relative;
}
.stats-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 46px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.stats-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: flex-start;
}
.stats-suffix {
  color: var(--gold);
  margin-left: 2px;
}
.stats-label {
  margin-top: 10px;
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  color: rgba(255, 255, 255, 0.66);
  font-weight: 500;
}
@media (max-width: 640px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 8px;
  }
  .stats-stat:nth-child(2)::after {
    display: none;
  }
}

/* =====================================================================
   SERVICES
   ===================================================================== */
.svc-grid {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--sh-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: #d6e4f8;
}
.svc-cardTitle {
  margin-top: 20px;
  font-size: 1.2rem;
}
.svc-cardDesc {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  flex: 1;
}
.svc-cardLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s;
}
.svc-cardLink svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}
.svc-card:hover .svc-cardLink {
  color: var(--brand);
}
.svc-card:hover .svc-cardLink svg {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   WHY US
   ===================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}
.why-panel {
  background: var(--ink);
  background-image: radial-gradient(
    420px 260px at 85% 0%,
    rgba(41, 171, 226, 0.2),
    transparent 62%
  );
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.6vw, 44px);
  color: #fff;
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.why-panelEyebrow {
  color: var(--brand-sky);
}
.why-panelEyebrow::before {
  background: var(--brand-sky);
}
.why-panelTitle {
  color: #fff;
  margin-top: 16px;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}
.why-panelText {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}
.why-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  margin: 28px 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
}
.why-proofItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-proofValue {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
  line-height: 1;
}
.why-proofLabel {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62);
}
.why-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--sh-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.why-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.why-benefit .icon-tile {
  width: 46px;
  height: 46px;
  flex: none;
}
.why-benefitTitle {
  font-size: 1.04rem;
}
.why-benefitDesc {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}
@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .why-benefits {
    grid-template-columns: 1fr;
  }
  .why-proof {
    grid-template-columns: 1fr 1fr;
  }
}

/* =====================================================================
   PRICING
   ===================================================================== */
.price-grid {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.price-popular {
  border: 1.5px solid var(--brand);
  box-shadow: var(--sh-lg);
  z-index: 2;
}
@media (min-width: 861px) {
  .price-popular {
    transform: scale(1.035);
  }
  .price-popular:hover {
    transform: scale(1.035) translateY(-6px);
  }
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-brand);
  white-space: nowrap;
}
.price-name {
  font-size: 1.3rem;
}
.price-blurb {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 40px;
}
.price-priceBlock {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
}
.price-priceLabel {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}
.price-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.5rem);
  color: var(--ink);
  line-height: 1.1;
  margin-top: 4px;
}
.price-priceNote {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-2);
}
.price-features svg {
  width: 19px;
  height: 19px;
  color: var(--wa);
  flex: none;
  margin-top: 1px;
}
.price-footnote {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.price-support {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
}
.price-support svg {
  width: 19px;
  height: 19px;
  color: var(--wa);
}
.price-aster {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 520px;
}
@media (max-width: 860px) {
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}

/* =====================================================================
   TECHNOLOGY
   ===================================================================== */
.tech-card {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  background: linear-gradient(120deg, #ffffff, #f4f9ff);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  padding: clamp(26px, 3.6vw, 46px);
  position: relative;
  overflow: hidden;
}
.tech-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand-sky), var(--brand));
}
.tech-title {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}
.tech-desc {
  margin-top: 14px;
  color: var(--body);
  max-width: 54ch;
}
.tech-techRow {
  list-style: none;
  padding: 0;
  margin: clamp(24px, 3vw, 32px) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 22px;
}
.tech-tech {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 68px;
}
.tech-techTile {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--sh-xs);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.tech-tech:hover .tech-techTile {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.tech-techTile img {
  max-width: 38px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.tech-techTile img[src$="wix.svg"] {
  max-height: 26px;
}
.tech-techName {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-2);
  text-align: center;
}
.tech-points {
  list-style: none;
  margin: 0;
  padding: clamp(22px, 2.6vw, 30px);
  display: grid;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.tech-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--ink-2);
  font-size: 0.98rem;
}
.tech-points svg {
  width: 20px;
  height: 20px;
  color: var(--wa);
  flex: none;
  margin-top: 1px;
}
@media (max-width: 860px) {
  .tech-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 400px) {
  .tech-techRow {
    gap: 16px 14px;
  }
  .tech-tech {
    width: 60px;
  }
  .tech-techTile {
    width: 52px;
    height: 52px;
  }
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.tst-grid {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tst-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.tst-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.tst-quoteMark {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
  color: var(--brand-tint);
}
.tst-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--star);
  margin-bottom: 16px;
}
.tst-stars svg {
  width: 18px;
  height: 18px;
}
.tst-quote {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-2);
  position: relative;
  z-index: 1;
}
.tst-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}
.tst-avatar {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--brand-sky), var(--brand));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
}
.tst-name {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
}
.tst-loc {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}
@media (max-width: 860px) {
  .tst-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* =====================================================================
   PROCESS
   ===================================================================== */
.proc-steps {
  list-style: none;
  padding: 0;
  margin: clamp(38px, 5vw, 60px) 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.proc-step {
  position: relative;
  text-align: center;
  padding: 0 6px;
}
.proc-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(50% + 44px);
  right: calc(-50% + 44px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 8px,
    transparent 8px 16px
  );
}
.proc-iconWrap {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
}
.proc-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand);
  box-shadow: var(--sh-sm);
}
.proc-icon svg {
  width: 30px;
  height: 30px;
}
.proc-num {
  position: absolute;
  top: -10px;
  right: -8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--sh-sm);
}
.proc-stepTitle {
  font-size: 1.1rem;
}
.proc-stepDesc {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}
@media (max-width: 820px) {
  .proc-steps {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }
  .proc-step:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .proc-steps {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
    text-align: left;
  }
  .proc-iconWrap {
    margin-left: 0;
  }
  .proc-step {
    padding-left: 0;
  }
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.faq-head {
  position: sticky;
  top: 100px;
}
.faq-title {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.faq-sub {
  margin-top: 16px;
  color: var(--muted);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xs);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item h3 {
  margin: 0;
}
.faq-item.is-open {
  border-color: #d6e4f8;
  box-shadow: var(--sh-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 19px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
}
.faq-chev {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--brand);
  transition: transform 0.25s var(--ease);
}
.faq-item.is-open .faq-chev {
  transform: rotate(180deg);
}
.faq-panel {
  padding: 0 22px 20px;
}
.faq-panel p {
  margin: 0;
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.62;
  max-width: 60ch;
}
@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-head {
    position: static;
  }
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.cta-wrap {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  background-image: radial-gradient(
    700px 380px at 8% 10%,
    rgba(31, 111, 229, 0.22),
    transparent 60%
  );
  padding-block: clamp(56px, 8vw, 100px);
  scroll-margin-top: 84px;
  isolation: isolate;
}
.cta-glow {
  position: absolute;
  z-index: -1;
  bottom: -200px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 171, 226, 0.16), transparent 68%);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.cta-copy {
  color: #fff;
}
.cta-eyebrow {
  color: var(--brand-sky);
}
.cta-eyebrow::before {
  background: var(--brand-sky);
}
.cta-title {
  color: #fff;
  margin-top: 16px;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  max-width: 15ch;
}
.cta-text {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
  max-width: 46ch;
}
.cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.cta-trust {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.cta-trust svg {
  width: 17px;
  height: 17px;
  color: var(--wa);
}
.cta-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
}
.cta-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}
@media (max-width: 940px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .cta-title {
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .cta-contact .btn {
    width: 100%;
  }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.ftr {
  position: relative;
  background: #0b1526;
  color: rgba(255, 255, 255, 0.7);
  padding-top: clamp(48px, 6vw, 72px);
}
.ftr-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-sky), var(--brand), var(--gold));
  opacity: 0.9;
}
.ftr-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: clamp(28px, 5vw, 60px);
  padding-bottom: 44px;
}
.ftr-about {
  margin-top: 18px;
  font-size: 0.94rem;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.6);
}
.ftr-contact {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.ftr-contact a,
.ftr-contact span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s;
}
.ftr-contact a:hover {
  color: #fff;
}
.ftr-contact svg {
  width: 18px;
  height: 18px;
  color: var(--brand-sky);
  flex: none;
}
.ftr-colTitle {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.ftr-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.ftr-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s, padding-left 0.2s;
}
.ftr-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.ftr-ctaCol .btn {
  margin-bottom: 18px;
}
.ftr-ctaCol .btn:last-child {
  margin-bottom: 0;
}
.ftr-ctaText {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}
.ftr-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}
.ftr-made {
  color: rgba(255, 255, 255, 0.42);
}
@media (max-width: 900px) {
  .ftr-bottom {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 820px) {
  .ftr-top {
    grid-template-columns: 1fr 1fr;
  }
  .ftr-brandCol {
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px) {
  .ftr-top {
    grid-template-columns: 1fr;
  }
  .ftr-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =====================================================================
   MOBILE BAR
   ===================================================================== */
.bar {
  position: fixed;
  z-index: 70;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: stretch;
  gap: 8px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15, 27, 45, 0.08);
}
.bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 48px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
}
.bar svg {
  width: 19px;
  height: 19px;
}
.bar-call {
  flex: 0 0 auto;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}
.bar-wa {
  flex: 0 0 auto;
  padding: 0 16px;
  color: #fff;
  background: var(--wa);
}
.bar-quote {
  flex: 1;
  color: var(--gold-ink);
  background: var(--gold);
  box-shadow: var(--sh-gold);
}
@media (max-width: 900px) {
  .bar {
    display: flex;
  }
}
@media (max-width: 360px) {
  .bar-call span,
  .bar-wa span {
    display: none;
  }
}

/* =====================================================================
   FLOATING WHATSAPP
   ===================================================================== */
.fab {
  position: fixed;
  z-index: 65;
  right: 26px;
  bottom: 26px;
  display: none;
  align-items: center;
  gap: 0;
  height: 58px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  background: var(--wa);
  color: #fff;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.4);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    gap 0.22s var(--ease), padding 0.22s var(--ease);
  overflow: hidden;
}
.fab svg {
  width: 28px;
  height: 28px;
  flex: none;
}
.fab-label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.95rem;
  transition: max-width 0.28s var(--ease), opacity 0.2s var(--ease),
    margin-left 0.28s var(--ease);
}
.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.48);
}
.fab:hover .fab-label {
  max-width: 140px;
  opacity: 1;
  margin-left: 10px;
}
@media (min-width: 901px) {
  .fab {
    display: inline-flex;
  }
}
