:root {
  --ink: #11182f;
  --muted: #5f687d;
  --line: #e8ebf4;
  --paper: #ffffff;
  --soft: #f7f9ff;
  --surface: #ffffff;
  --surface-soft: #f7fafd;

  --blue: #1a356f;
  --blue-dark: #1a5aa3;
  --blue-light: #eaf3fc;
  --green: #62c837;
  --green-dark: #4d2eac;
  --amber: #ffbf35;
  --coral: #f04e65;

  --radius: 10px;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);

  --font-primary: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-display: "Manrope", var(--font-primary);
}

/* ---------- Lead popup ---------- */

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.lead-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 31, 0.48);
  backdrop-filter: blur(6px);
}

.lead-popup-card {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  min-height: 430px;
  border: 1px solid #dfe7f2;
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.22);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.lead-popup.is-open .lead-popup-card {
  transform: translateY(0) scale(1);
}

.lead-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e7edf5;
  background: #fff;
  padding: 18px 20px;
}

.lead-popup-header span {
  display: block;
  margin-bottom: 4px;
  color: #5f687d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-popup-close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe7f2;
  border-radius: 50%;
  background: #f8fbff;
  color: #526079;
  cursor: pointer;
}

.lead-popup-card h2 {
  max-width: 260px;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0;
}

.lead-popup-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.lead-popup-form {
  display: grid;
  gap: 12px;
}

.lead-popup-form .field {
  min-height: 46px;
  border-radius: 10px;
  font-size: 14px;
}

.lead-popup-form .btn {
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  margin-top: 28px;
}

.lead-popup-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
}

.lead-popup-note i {
  color: #10b981;
}

.success-popup {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.success-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 31, 0.5);
  backdrop-filter: blur(6px);
}

.success-popup-card {
  position: relative;
  z-index: 1;
  width: min(100%, 310px);
  border: 1px solid #e0e7f1;
  border-radius: 12px;
  background: #fff;
  padding: 26px 22px 22px;
  text-align: center;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.22);
  transform: translateY(12px) scale(0.96);
  transition: transform 180ms ease;
}

.success-popup.is-open .success-popup-card {
  transform: translateY(0) scale(1);
  animation: success-card-pop 360ms cubic-bezier(0.16, 0.8, 0.24, 1);
}

.success-icon {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 3px solid #11b69a;
  border-radius: 50%;
  color: #11b69a;
  font-size: 40px;
  animation: success-icon-bounce 580ms ease both;
}

.success-icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--burst-color, #11b69a);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
}

.success-popup.is-open .success-icon span {
  animation: success-burst 720ms ease-out forwards;
}

.success-icon span:nth-child(2) {
  --burst-x: -34px;
  --burst-y: -34px;
  --burst-color: #11b69a;
  animation-delay: 80ms;
}

.success-icon span:nth-child(3) {
  --burst-x: 0;
  --burst-y: -44px;
  --burst-color: #2f7fd4;
  animation-delay: 120ms;
}

.success-icon span:nth-child(4) {
  --burst-x: 36px;
  --burst-y: -30px;
  --burst-color: #ffbf35;
  animation-delay: 100ms;
}

.success-icon span:nth-child(5) {
  --burst-x: -42px;
  --burst-y: 8px;
  --burst-color: #f04e65;
  animation-delay: 150ms;
}

.success-icon span:nth-child(6) {
  --burst-x: 42px;
  --burst-y: 8px;
  --burst-color: #62c837;
  animation-delay: 170ms;
}

.success-icon span:nth-child(7) {
  --burst-x: 0;
  --burst-y: 42px;
  --burst-color: #7c3aed;
  animation-delay: 130ms;
}

.success-popup-card h2 {
  margin: 0 0 8px;
  color: #1f4b9a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.success-popup-card p {
  margin: 0 auto 18px;
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
}

.success-close-btn {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: #11b69a;
  color: #fff;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  text-transform: uppercase;
}

@keyframes success-card-pop {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }
  70% {
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes success-icon-bounce {
  0% {
    transform: scale(0.72);
  }
  62% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes success-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--burst-x)), calc(-50% + var(--burst-y))) scale(1);
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 25px rgba(47, 127, 212, 0.22);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.icon-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.section {
  padding: 86px 0;
  min-height: 50vh;
  box-sizing: border-box;
}

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

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  background: var(--blue-light);
  padding: 8px 13px;
  border-radius: 999px;
  font-size:11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 780px;
  font-size: clamp(32px, 4.2vw, 38px);
  font-weight: 800;
}

h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

p {
  font-size: 16px;
  font-weight: 400;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

/* ---------- Header (kept as-is per brief) ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(221, 227, 234, 0.8);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(14px);
}

.top-ribbon {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, #1a356f 0%, #332076 46%, #6d28d9 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
/*   font-weight: 000; */
}

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

.top-ribbon-left,
.top-ribbon-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-ribbon a,
.top-ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.top-ribbon i {
  color: #72f2c2;
  font-size: 12px;
}

.top-ribbon-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-ribbon-socials a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.top-ribbon-socials a:hover {
  border-color: #65d6a4;
  background: #65d6a4;
  transform: translateY(-2px);
}

.top-ribbon-socials i {
  color: #fff;
  font-size: 10px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.site-header .brand-mark {
  width: 184px;
  height: 66px;
}

.site-header .brand-text {
  display: none;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #404653;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.3em;
  line-height: 1.3em;
}

.nav-links a .nav-link-flip {
  display: block;
  transition: transform 320ms cubic-bezier(0.16, 0.84, 0.44, 1);
}

.nav-links a .nav-link-flip span {
  display: block;
  height: 1.3em;
  line-height: 1.3em;
}

.nav-links a .nav-link-flip span:last-child {
  color: var(--blue);
}

.nav-links a:hover .nav-link-flip {
  transform: translateY(-1.3em);
}

.nav-links a:hover {
  color: var(--blue);
}

@property --shiny-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.shiny-btn-shell {
  position: relative;
  display: inline-flex;
  border-radius: 50px;
  padding: 2px;
  background: conic-gradient(from var(--shiny-angle, 0deg), var(--blue-dark), var(--green-dark), var(--coral), var(--blue-dark));
  animation: shiny-rotate 3.2s linear infinite;
  transition: animation-duration 220ms ease;
}

.shiny-btn-shell:hover {
  animation-duration: 1.1s;
}

@keyframes shiny-rotate {
  to {
    --shiny-angle: 360deg;
  }
}

.shiny-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.shiny-btn:hover {
  transform: scale(1.045);
}

.shiny-btn .shiny-btn-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1.5px);
  background-size: 8px 8px;
  opacity: 0.55;
  border-radius: inherit;
  pointer-events: none;
}

.shiny-btn span:not(.shiny-btn-dots) {
  position: relative;
  z-index: 1;
}

.shiny-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shiny-sweep 2.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shiny-sweep {
  0% {
    left: -60%;
  }
  55%,
  100% {
    left: 130%;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions .btn {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-demo-btn {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue) 0%, #216bb9 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(26, 53, 111, 0.2);
}

.nav-demo-btn:hover {
  border-color: var(--blue-dark);
  background: linear-gradient(135deg, var(--blue-dark) 0%, #2679ca 100%);
}

.nav-login-btn {
  border-color: #cfd8e7;
  background: #fff;
  color: var(--blue);
}

.nav-login-btn:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

.site-header .container {
  width: min(1680px, calc(100% - 56px));
}

/* ---------- Hero (kept as original per brief — do not restyle) ---------- */

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  padding: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 48px;
}

.hero-copy {
  display: grid;
  gap: 18px;
  max-width: 1000px;
  background: transparent;
  padding: 0 18px;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  text-align: center;
}

.hero-grid h1 {
  color: var(--green-dark);
  font-size: clamp(48px, 4.5vw, 110px);
  line-height: 1.02;
  text-shadow: none;
  white-space: nowrap;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 780px;
}

.hero-grid h1 .accent {
  background: linear-gradient(90deg, #2f7fd4 0%, #16a34a 55%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 68px;
}

@media (max-width: 980px) {
  .hero-grid h1 {
    white-space: normal;
  }
}

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

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 640 / 540;
  margin: 0 auto;
}

.hero-illustration img {
  position: absolute;
  width: auto;
  height: auto;
  filter: drop-shadow(0 14px 20px rgba(17, 24, 39, 0.12));
}

.hi-carpet {
  left: 12%;
  bottom: 2%;
  width: 62%;
  z-index: 1;
}

.hi-table {
  left: 19%;
  bottom: 8%;
  width: 56%;
  z-index: 3;
}

.hi-man {
  left: 27%;
  bottom: 16%;
  width: 40%;
  z-index: 2;
}

.hi-desktop {
  left: 39%;
  bottom: 32%;
  width: 18%;
  z-index: 4;
}

.hi-flower {
  left: 4%;
  bottom: 10%;
  width: 15%;
  z-index: 3;
}

.hi-bin {
  right: 16%;
  bottom: 3%;
  width: 11%;
  z-index: 2;
}

.hi-book {
  right: 21%;
  bottom: 28%;
  width: 13%;
  z-index: 4;
}

.hi-pen {
  left: 23%;
  bottom: 29%;
  width: 8%;
  z-index: 4;
}

.hi-cup {
  right: 27%;
  bottom: 31%;
  width: 10%;
  z-index: 4;
}

.hi-headphone {
  left: 14%;
  top: 32%;
  width: 11%;
  z-index: 5;
}

.hi-code {
  right: 10%;
  top: 24%;
  width: 15%;
  z-index: 5;
}

.hi-anim {
  opacity: 0;
  transition: opacity 800ms ease, transform 800ms ease;
}

.hero-illustration.in-view .hi-anim {
  opacity: 1;
  transform: none !important;
}

.hi-fade-down {
  transform: translateY(-46px);
}

.hi-fade-up {
  transform: translateY(46px);
}

.hi-fade-right {
  transform: translateX(-46px);
}

.hi-zoom-in {
  transform: scale(0.55);
}

@media (max-width: 620px) {
  .hero-illustration {
    max-width: 420px;
  }
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 14px 34px rgba(54, 71, 125, 0.18);
}

.hero-badge i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 14px;
}

.hero-badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
}

.hero-badge span {
  font-size: 11px;
  color: var(--muted);
}

.badge-a {
  top: 8%;
  left: 2%;
}

.badge-b {
  bottom: 4%;
  right: 1%;
}

@media (max-width: 760px) {
  .hero-badge {
    padding: 8px 12px;
  }
}

/* ---------- Hero refresh ---------- */

.hero {
  min-height: 80vh;
  background:
    radial-gradient(ellipse at 72% 38%, rgba(124, 58, 237, 0.16) 0%, rgba(124, 58, 237, 0.08) 26%, transparent 50%),
    radial-gradient(ellipse at 92% 88%, rgba(236, 72, 153, 0.1) 0%, transparent 34%),
    radial-gradient(ellipse at 2% 92%, rgba(255, 122, 24, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 16% 24%, rgba(47, 127, 212, 0.06), transparent 28%),
    linear-gradient(180deg, #fbf9ff 0%, #ffffff 42%, #fff8fd 100%),
    #fff;
  padding: 48px 0 42px;
}

.hero .container {
  width: min(1720px, calc(100% - 56px));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 43%, rgba(247, 242, 255, 0.86) 43% 100%),
    radial-gradient(ellipse at 76% 45%, rgba(124, 58, 237, 0.14), transparent 42%),
    radial-gradient(ellipse at 92% 86%, rgba(236, 72, 153, 0.08), transparent 34%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(610px, 0.82fr) minmax(780px, 1.18fr);
  align-items: center;
  justify-items: stretch;
  text-align: left;
  gap: 58px;
}

.hero-copy {
  gap: 18px;
  max-width: 710px;
  padding: 0;
  color: var(--ink);
  text-align: left;
}

.hero-mini-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #f0e8ff;
  color: #5b21b6;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
}

.hero-grid h1 {
  max-width: 760px;
  color: #091129;
  font-size: clamp(54px, 4.25vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-grid h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #6d28d9 0%, #df2f91 48%, #ff7a18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 640px;
  color: #4f5b73;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.hero-trust span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #374151;
  padding: 0;
  font-size: 11px;
  font-weight: 800;
  box-shadow: none;
}

.hero-trust i {
  color: #6d28d9;
}

.hero-illustration {
  max-width: 1080px;
  aspect-ratio: 1120 / 690;
  display: grid;
  place-items: center;
}

.hero-illustration::before {
  content: none;
}

.hero-logo-orbit {
  position: relative;
  z-index: 1;
  width: min(70%, 720px);
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-logo-orbit::before {
  content: none;
}

.hero-logo-orbit img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(89, 28, 135, 0.22));
}

.hero-badge {
  width: 176px;
  border: 1px solid rgba(47, 127, 212, 0.1);
  border-radius: 16px;
  padding: 12px 13px;
  box-shadow: 0 16px 38px rgba(54, 71, 125, 0.12);
  z-index: 3;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  will-change: transform;
}

.hero-badge div {
  display: grid;
  gap: 3px;
}

.hero-badge:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(47, 127, 212, 0.2);
  background: var(--surface);
  box-shadow: 0 22px 48px rgba(54, 71, 125, 0.18);
}

.hero-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 82px;
  height: 1px;
  background-image: linear-gradient(to right, var(--line-color, rgba(124, 58, 237, 0.45)) 45%, transparent 45%);
  background-size: 9px 1px;
  pointer-events: none;
}

.badge-a::after,
.badge-b::after,
.badge-h::after {
  left: 100%;
}

.badge-c::after,
.badge-d::after,
.badge-e::after,
.badge-f::after {
  right: 100%;
}

.badge-g::after {
  left: 50%;
  top: auto;
  bottom: 100%;
  width: 1px;
  height: 60px;
  background-image: linear-gradient(to bottom, var(--line-color, rgba(124, 58, 237, 0.45)) 45%, transparent 45%);
  background-size: 1px 9px;
}

.hero-badge i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1ecff;
  color: #7c3aed;
  font-size: 15px;
}

.badge-a i {
  --line-color: #7c3aed;
  background: #efe9ff;
  color: #7c3aed;
}

.badge-a {
  --line-color: rgba(124, 58, 237, 0.55);
}

.badge-b i {
  background: #ffe8f2;
  color: #ec4899;
}

.badge-b {
  --line-color: rgba(236, 72, 153, 0.55);
}

.badge-c i {
  background: #e7f1ff;
  color: #2563eb;
}

.badge-c {
  --line-color: rgba(37, 99, 235, 0.55);
}

.badge-d i {
  background: #e5fbf4;
  color: #10b981;
}

.badge-d {
  --line-color: rgba(16, 185, 129, 0.55);
}

.badge-e i {
  background: #fff0df;
  color: #f97316;
}

.badge-e {
  --line-color: rgba(249, 115, 22, 0.55);
}

.badge-f i {
  background: #f1e8ff;
  color: #7c3aed;
}

.badge-f {
  --line-color: rgba(124, 58, 237, 0.55);
}

.badge-g i {
  background: #e3f8ee;
  color: #059669;
}

.badge-g {
  --line-color: rgba(5, 150, 105, 0.55);
}

.badge-h i {
  background: #fff0df;
  color: #f97316;
}

.badge-h {
  --line-color: rgba(249, 115, 22, 0.55);
}

.hero-badge b {
  font-size: 12px;
  line-height: 1.2;
  margin: 0;
}

.hero-badge span {
  font-size: 9px;
  line-height: 1.08;
  margin: 0;
}

.badge-a {
  right: auto;
  bottom: auto;
  top: 12%;
  left: 13%;
}

.badge-b {
  right: auto;
  bottom: auto;
  left: 8%;
  top: 35%;
}

.badge-c {
  left: auto;
  bottom: auto;
  right: 8%;
  top: 10%;
}

.badge-d {
  left: auto;
  bottom: auto;
  right: 4%;
  top: 18%;
}

.badge-e {
  left: auto;
  bottom: auto;
  right: 3%;
  top: 42%;
}

.badge-f {
  left: auto;
  top: auto;
  right: 8%;
  bottom: 14%;
}

.badge-g {
  top: auto;
  right: auto;
  left: 42%;
  bottom: 0;
}

.badge-h {
  top: auto;
  right: auto;
  left: 8%;
  bottom: 20%;
}

.hero-stats {
  padding: 20px 0;
  background: linear-gradient(135deg, #25135f, #0756a8 54%, #0f8ac4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.stat-card {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-areas:
    "icon value"
    "icon label";
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  min-height: 92px;
  padding: 18px 22px;
  color: #fff;
  text-align: left;
}

.stat-card + .stat-card {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.stat-card-icon {
  grid-area: icon;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 15px;
}

.stat-card:nth-child(1) .stat-card-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.stat-card:nth-child(2) .stat-card-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.stat-card:nth-child(3) .stat-card-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.stat-card:nth-child(4) .stat-card-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.stat-value {
  grid-area: value;
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  grid-area: label;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.25;
}

@media (max-width: 860px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card:nth-child(odd) {
    border-left: 0;
  }

  .stat-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 620px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 82px;
    padding: 16px 18px;
    border-left: 0;
  }

  .stat-card + .stat-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}

/* ---------- Solution services + products ---------- */

.solution-services {
  padding: 76px 0 66px;
  background: var(--surface);
}

.solution-services .container {
  width: min(1500px, calc(100% - 56px));
}

.service-module-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
  border-block: 1px solid #e3e9f3;
  background: var(--surface);
}

.service-module {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  min-height: 188px;
  padding: 24px 20px 22px;
  border-right: 1px solid #e3e9f3;
  text-align: center;
}

.service-module:last-child {
  border-right: 0;
}

.service-module-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 34px;
}

.service-module:nth-child(2) .service-module-icon,
.service-module:nth-child(7) .service-module-icon {
  color: #0f9f6e;
}

.service-module:nth-child(3) .service-module-icon,
.service-module:nth-child(5) .service-module-icon {
  color: #f59e0b;
}

.service-module:nth-child(4) .service-module-icon,
.service-module:nth-child(8) .service-module-icon {
  color: #6d4fd8;
}

.service-module:nth-child(6) .service-module-icon {
  color: #e83f70;
}

.service-module h3 {
  position: relative;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-module h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.service-module p {
  max-width: 170px;
  margin-top: 8px;
  color: #44516a;
  font-size: 12px;
  line-height: 1.45;
}

.product-suite {
  padding: 70px 0 82px;
  background: var(--surface-soft);
}

.product-suite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 22px;
  max-width: 1020px;
  margin: 0 auto;
}

.product-suite-card {
  display: grid;
  grid-template-rows: 220px auto;
  justify-items: center;
  gap: 18px;
  min-height: 430px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 18px 22px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(20, 35, 70, 0.06);
}

.product-suite-media {
  width: 100%;
  height: 220px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eaf3ff;
  overflow: hidden;
}

.product-suite-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.product-suite-card:nth-child(2) .product-suite-media {
  background: #ecfdf5;
}

.product-suite-card:nth-child(3) .product-suite-media {
  background: #fff7ed;
}

.product-suite-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.product-suite-card p {
  max-width: 250px;
  margin-inline: auto;
  color: #526079;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .service-module-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-module:nth-child(4n) {
    border-right: 0;
  }

  .service-module:nth-child(n + 5) {
    border-top: 1px solid #e3e9f3;
  }

  .product-suite-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .solution-services {
    padding: 58px 0 48px;
  }

  .service-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-module {
    min-height: 174px;
    padding: 20px 12px;
  }

  .service-module:nth-child(n) {
    border-right: 1px solid #e3e9f3;
  }

  .service-module:nth-child(even) {
    border-right: 0;
  }

  .service-module:nth-child(n + 3) {
    border-top: 1px solid #e3e9f3;
  }

  .product-suite {
    padding: 56px 0 64px;
  }

  .product-suite-card {
    min-height: auto;
    gap: 14px;
    padding: 20px;
  }

  .product-suite-media {
    height: 190px;
  }

  .product-suite-card h3 {
    font-size: 19px;
  }
}

/* ---------- Services cards ---------- */

.services-cards {
  margin-top: -25px;
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(63, 76, 133, 0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(63, 76, 133, 0.1);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--blue-light);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 21px;
  font-weight: 800;
}

.icon-box.green-icon {
  color: var(--green);
  background: #eefbe5;
}

.icon-box i {
  font-size: 20px;
}

.service-card h3 {
  font-size: 17px;
  margin: 20px 0 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
}

.service-card a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

/* ---------- Process ---------- */

.process {
  padding: 90px 0 100px;
  background: var(--soft);
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-kicker {
  display: inline-block;
  color: var(--blue);
  background: var(--blue-light);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.section-heading .section-kicker {
  background: transparent;
  padding: 0;
}

.section-heading h2 {
  font-size: 35px;
  max-width: 800px;
  margin: 10px auto;
}

.section-heading h2 span {
  color: var(--blue);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(62, 76, 130, 0.04);
}

.process-step .number {
  color: #9bb0ff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
}

.process-step h3 {
  font-size: 18px;
  margin: 12px 0 8px;
}

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

/* ---------- About ---------- */

.about {
  padding: 90px 0 0;
  min-height: 50vh;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-copy .section-kicker {
  margin-bottom: 0;
}

.about h2 {
  font-size: 43px;
  margin: 14px 0 18px;
}

.about h2 span {
  color: var(--blue);
}

.about-copy > p {
  font-size: 15px;
  color: var(--muted);
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 25px;
}

.checks span::first-letter {
  color: var(--blue);
}

.mountain-art {
  height: 330px;
  position: relative;
}

.mountain {
  position: absolute;
  bottom: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.m1 {
  width: 62%;
  height: 75%;
  left: 18%;
  background: var(--blue-dark);
}

.m2 {
  width: 40%;
  height: 50%;
  left: 48%;
  background: #5aa3e0;
}

.flag {
  position: absolute;
  left: 61%;
  top: 24px;
  width: 4px;
  height: 100px;
  background: #1c3a5e;
}

.flag span {
  position: absolute;
  width: 46px;
  height: 24px;
  background: var(--blue);
  left: 4px;
  top: 0;
  clip-path: polygon(0 0, 100% 20%, 75% 100%, 0 100%);
}

.climber {
  position: absolute;
  width: 22px;
  height: 58px;
  background: #16294a;
  border-radius: 10px;
}

.c1 {
  left: 36%;
  bottom: 65px;
  transform: rotate(23deg);
}

.c2 {
  left: 48%;
  bottom: 110px;
  transform: rotate(19deg);
}

.c3 {
  left: 59%;
  bottom: 155px;
  transform: rotate(7deg);
  background: var(--blue);
}

/* ---------- Detailed services ---------- */

.detailed-services {
  padding: 110px 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.detail-list {
  display: grid;
  gap: 20px;
}

.detail-card:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.detail-card {
  min-height: 50vh;
  border: 0;
  border-radius: var(--radius);
  padding: 40px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: transparent;
  box-shadow: none;
}

.detail-card.reverse .detail-art {
  order: 2;
}

.detail-card.reverse .detail-copy {
  order: 1;
}

.detail-art {
  height: 320px;
  position: relative;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
}

.detail-art.image-art {
  height: 420px;
}

.detail-art.image-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-copy h3 {
  font-size: 32px;
  margin: 0 0 14px;
}

.detail-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
}

.detail-copy ul {
  padding: 0;
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 4px;
}

.detail-copy li {
  font-size: 14px;
  margin: 7px 0;
}

.detail-copy li::before {
  content: "\2713";
  color: var(--blue);
  font-weight: 900;
  margin-right: 8px;
}

.profile-card {
  position: absolute;
  width: 120px;
  height: 155px;
  background: var(--surface);
  border: 1px solid #dfe6f5;
  border-radius: 15px;
  left: 38%;
  top: 30px;
  box-shadow: 0 12px 28px rgba(58, 72, 125, 0.12);
}

.profile-card::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0b28a;
  left: 39px;
  top: 25px;
}

.profile-card::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 38px;
  border-radius: 25px 25px 8px 8px;
  background: var(--blue);
  left: 30px;
  top: 72px;
}

.small-person {
  position: absolute;
  width: 28px;
  height: 70px;
  border-radius: 13px;
  background: var(--blue);
  bottom: 28px;
}

.small-person::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #efb48e;
  top: -15px;
  left: 4px;
}

.p1 {
  left: 18%;
}

.p2 {
  right: 18%;
  background: #26345a;
}

.monitor {
  position: absolute;
  width: 180px;
  height: 105px;
  background: #13244b;
  border: 7px solid #233c76;
  border-radius: 8px;
  right: 17%;
  top: 30px;
}

.monitor.one::before,
.monitor.two::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: repeating-linear-gradient(180deg, #5aa3e0 0 5px, transparent 5px 14px);
}

.monitor.two {
  width: 140px;
  height: 90px;
  right: 3%;
  top: 55px;
  transform: scale(0.8);
}

.desk-person {
  position: absolute;
  width: 42px;
  height: 80px;
  border-radius: 18px;
  background: var(--blue);
  left: 25%;
  bottom: 25px;
}

.desk-person::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f2b891;
  top: -20px;
  left: 7px;
}

.marketing-art {
  background: transparent;
}

.megaphone {
  position: absolute;
  width: 120px;
  height: 78px;
  background: linear-gradient(145deg, #2f7fd4, #1a5aa3);
  clip-path: polygon(0 32%, 75% 0, 100% 14%, 100% 86%, 75% 100%, 0 68%);
  left: 38%;
  top: 65px;
  transform: rotate(-10deg);
}

.bubble {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.b1 {
  background: var(--amber);
  left: 28%;
  top: 38px;
}

.b2 {
  background: var(--coral);
  right: 26%;
  top: 45px;
}

.b3 {
  background: #2cc88b;
  left: 22%;
  bottom: 42px;
}

.laptop-screen {
  position: absolute;
  width: 220px;
  height: 135px;
  background: #123b6e;
  border: 9px solid #1c5490;
  border-radius: 10px;
  left: 25%;
  top: 42px;
}

.laptop-screen::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 16px;
  background: #304f87;
  left: -28px;
  bottom: -25px;
  border-radius: 0 0 16px 16px;
}

.screen-lines {
  position: absolute;
  inset: 18px;
  background: repeating-linear-gradient(180deg, #7ab8ec 0 6px, #123b6e 6px 15px);
}

/* ---------- Projects + testimonials ---------- */

.projects-testimonials {
  padding: 90px 0;
  background: var(--surface-soft);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.projects h2,
.testimonial h2 {
  font-size: 34px;
  margin: 12px 0 20px;
}

.outline-btn {
  display: inline-flex;
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.project-card {
  font-size: 11px;
}

.project-card b,
.project-card span {
  display: block;
}

.project-card span {
  color: var(--muted);
  margin-top: 3px;
}

.thumb {
  height: 125px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(54, 69, 126, 0.06);
  position: relative;
  overflow: hidden;
}

.thumb::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #eaf0ff, #dce7ff);
}

.t2::after {
  background: linear-gradient(135deg, #12417a, #2f7fd4);
}

.t3::after {
  background: linear-gradient(135deg, #dff5ff, #eae4ff);
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  min-height: 150px;
}

.quote-mark {
  position: absolute;
  right: 18px;
  top: 5px;
  font: 800 64px Georgia, serif;
  color: #9bb0ff;
}

.testimonial-card p {
  font-size: 14px;
  max-width: 90%;
  color: var(--ink);
}

.client {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 18px;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(#f0b894 0 40%, #2f7fd4 41%);
  flex: 0 0 auto;
}

.client b,
.client span {
  display: block;
}

.client span {
  font-size: 11px;
  color: var(--muted);
}

.dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}

.dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d6ddef;
  cursor: pointer;
}

.dots i.active {
  background: var(--blue);
}

/* ---------- Integrations ---------- */

.integrations-section {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 96px 0;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(47, 127, 212, 0.055) 58.2%, transparent 58.6%),
    linear-gradient(115deg, transparent 0 66%, rgba(98, 200, 55, 0.05) 66.2%, transparent 66.55%),
    linear-gradient(to right, rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17, 24, 39, 0.03) 1px, transparent 1px),
    #fff;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.integrations-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 48%, rgba(47, 127, 212, 0.08), transparent 34%);
  pointer-events: none;
}

.integrations-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.integrations-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.integrations-copy h2 {
  margin: 14px 0 18px;
  color: #05070d;
  font-size: clamp(36px, 3.7vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
  white-space: nowrap;
}

.integrations-copy p {
  max-width: 560px;
  color: #667085;
  font-size: 18px;
  line-height: 1.8;
}

.integration-cloud {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: grid;
  grid-template-columns: repeat(5, 72px);
  grid-auto-rows: 72px;
  gap: 0;
  justify-content: center;
  align-content: center;
}

.integration-tile {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid #ebedf3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.integration-tile:hover {
  border-color: rgba(47, 127, 212, 0.28);
  box-shadow: 0 18px 42px rgba(47, 127, 212, 0.12);
  transform: translateY(-5px);
}

.integration-tile i {
  font-size: 26px;
}

.integration-tile img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.integration-tile span {
  position: absolute;
  left: 50%;
  bottom: -28px;
  opacity: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.integration-tile:hover span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.tile-empty {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.65), rgba(249, 250, 251, 0.65));
}

.empty-a {
  grid-column: 2;
  grid-row: 1;
}

.empty-b {
  grid-column: 1;
  grid-row: 2;
}

.empty-c {
  grid-column: 1;
  grid-row: 4;
}

.facebook {
  grid-column: 4;
  grid-row: 1;
}

.instagram {
  grid-column: 2;
  grid-row: 3;
}

.whatsapp {
  grid-column: 3;
  grid-row: 2;
}

.gmail {
  grid-column: 4;
  grid-row: 3;
}

.meet {
  grid-column: 3;
  grid-row: 4;
}

.webhook {
  grid-column: 5;
  grid-row: 2;
}

.microsoft {
  grid-column: 5;
  grid-row: 4;
}

.ads {
  grid-column: 2;
  grid-row: 5;
}

.zoom {
  grid-column: 4;
  grid-row: 5;
}

/* ---------- Platform banner ---------- */

.platform-banner-section {
  position: relative;
  padding: 10px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(47, 127, 212, 0.22), transparent 30%),
    radial-gradient(circle at 28% 82%, rgba(98, 200, 55, 0.12), transparent 28%),
    linear-gradient(120deg, #07111f 0%, #0d1c2c 52%, #081421 100%);
}

.platform-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.38;
  pointer-events: none;
}

.platform-banner-section .container {
  width: min(1360px, calc(100% - 56px));
}

.platform-banner {
  position: relative;
  z-index: 1;
  min-height: 232px;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(500px, 1.1fr);
  grid-template-areas: "copy media";
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
  padding: 10px 0 8px;
  color: #fff;
  box-shadow: none;
}

.platform-banner::before {
  content: none;
}

.platform-banner-copy,
.platform-banner-media {
  position: relative;
  z-index: 1;
}

.platform-banner-copy {
  grid-area: copy;
}

.platform-banner-copy h2 {
  max-width: none;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(25px, 2.25vw, 36px);
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}

.platform-banner-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.platform-banner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 14px;
}

.platform-banner-pills span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.platform-banner-pills span:nth-child(1) {
  background: #eaf8f1;
  color: #087443;
}

.platform-banner-pills span:nth-child(2) {
  background: #fff4e5;
  color: #a15c08;
}

.platform-banner-pills span:nth-child(3) {
  background: #eef2ff;
  color: #4f46e5;
}

.platform-banner-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 18px;
}

.platform-store-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
}

.platform-store-buttons a {
  display: inline-flex;
}

.platform-store-buttons .store-badge {
  width: 126px;
  height: auto;
  max-height: 39px;
  object-fit: contain;
}

.banner-light-btn {
  background: #12b981;
  color: #fff;
  box-shadow: 0 14px 28px rgba(18, 185, 129, 0.24);
  min-width: 132px;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 600;
}

.banner-light-btn:hover {
  background: #0f9f72;
}

.banner-outline-btn {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  min-width: 124px;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 600;
}

.banner-outline-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.platform-banner-media {
  grid-area: media;
  min-height: 210px;
  align-self: center;
  display: grid;
  justify-items: center;
  align-content: center;
}

.platform-banner-media img {
  width: min(100%, 470px);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.24));
}

/* ---------- Contact form ---------- */

#contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(47, 127, 212, 0.1), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(98, 200, 55, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(17, 24, 39, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

#contact .container {
  position: relative;
  z-index: 1;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 0;
  align-items: stretch;
  max-width: 860px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(20, 35, 70, 0.08);
}

.contact-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  background: #1a356f;
  color: #fff;
  padding: 34px;
}

.contact-copy .eyebrow {
  width: fit-content;
  margin: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 650;
}

.contact-copy h2 {
  max-width: 320px;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 650;
  letter-spacing: 0;
}

.contact-copy .lead {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.contact-highlights {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.contact-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
}

.contact-highlights i {
  color: #d1d5db;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--surface);
  border: 0;
  border-radius: 0;
  padding: 34px;
  box-shadow: none;
}

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

.form-row:has(#cf-email) {
  grid-template-columns: 1fr;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  font-size: 12px;
  font-weight: 500;
  color: #344054;
}

.required-mark {
  color: #ef4444;
}

.field {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8e0ec;
  border-radius: 9px;
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field:focus {
  border-color: #9aa7bb;
  background: #fff;
  outline: none;
  box-shadow: none;
}

.field::placeholder {
  color: #8a94a6;
  font-weight: 400;
}

.lead-popup-form .field:focus {
  border-color: #cfd8e6;
  outline: none;
  box-shadow: none;
}

.field-textarea {
  min-height: 108px;
  padding: 13px 14px;
  resize: vertical;
  font-family: inherit;
}

.form-submit {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  background: #1a356f;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
}

.form-submit:hover {
  background: #020617;
}

.form-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #64748b;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.form-secure-note i {
  color: #111827;
}

@media (max-width: 620px) {
  .site-header .brand-mark {
    width: 142px;
    height: 46px;
  }

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

/* ---------- Privacy / Terms pages ---------- */

.privacy-list,
.section > .container > .section-head + .privacy-list {
  max-width: 920px;
  margin: 0 auto;
}

.section:has(.privacy-list) {
  background: var(--surface);
}

.section:has(.privacy-list) .section-head {
  max-width: 920px;
  margin: 0 auto 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e7edf5;
}

.section:has(.privacy-list) .section-head .eyebrow {
  margin-bottom: 14px;
}

.section:has(.privacy-list) .section-head h1 {
  max-width: 820px;
  font-size: clamp(30px, 3.4vw, 30px);
  letter-spacing: 0;
}

.privacy-list {
  display: grid;
  gap: 0;
}

.privacy-item {
  border-bottom: 1px solid #e7edf5;
  padding: 26px 0;
}

.privacy-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-item h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: var(--ink);
}

.privacy-item p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ---------- Standard footer for legal pages ---------- */

body > footer:not(.cinematic-footer) {
  padding: 60px 0 20px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

body > footer:not(.cinematic-footer) .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}

body > footer:not(.cinematic-footer) .footer-brand p {
  margin-top: 14px;
  max-width: 320px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

body > footer:not(.cinematic-footer) .socials {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

body > footer:not(.cinematic-footer) .socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
}

body > footer:not(.cinematic-footer) .socials a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

body > footer:not(.cinematic-footer) .footer-col h3 {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

body > footer:not(.cinematic-footer) .footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body > footer:not(.cinematic-footer) .footer-col a {
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms ease;
}

body > footer:not(.cinematic-footer) .footer-col a:hover {
  color: var(--blue);
}

body > footer:not(.cinematic-footer) .footer-col span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

body > footer:not(.cinematic-footer) .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Cinematic footer ---------- */

.cinematic-footer {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid #e7edf5;
  background: var(--surface);
  color: var(--ink);
  isolation: isolate;
  box-shadow: 0 -18px 45px rgba(17, 24, 39, 0.08);
}

.footer-aurora {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: -2;
  width: min(86vw, 980px);
  height: 58vh;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 45%, rgba(47, 127, 212, 0.32), transparent 48%),
    radial-gradient(circle at 65% 55%, rgba(98, 200, 55, 0.2), transparent 52%);
  filter: blur(76px);
  opacity: 0.95;
  transform: translate(-50%, -50%);
  animation: footer-breathe 8s ease-in-out infinite alternate;
}

.footer-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 78%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 78%, transparent);
}

.footer-giant-text {
  position: absolute;
  left: 50%;
  bottom: -4vw;
  z-index: -1;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(78px, 16vw, 270px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateX(-50%);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 66%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.footer-marquee {
  position: absolute;
  top: 64px;
  left: -5%;
  z-index: 2;
  width: 110%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 16, 31, 0.68);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transform: rotate(-2deg);
}

.footer-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
  color: rgba(248, 251, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation: footer-scroll-marquee 34s linear infinite;
}

.footer-marquee i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(98, 200, 55, 0.55);
}

.cinematic-footer-content {
  width: min(1680px, calc(100% - 56px));
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 26px;
  padding-top: 42px;
  padding-bottom: 24px;
}

.footer-brand-lockup {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand-lockup img {
  width: 66px;
  height: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 4px;
}

.footer-center {
  display: grid;
  justify-items: stretch;
  gap: 0;
  text-align: left;
}

.footer-kicker {
  color: rgba(248, 251, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-center h2 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 0 35px rgba(255, 255, 255, 0.14);
}

.footer-info-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr 1fr;
  gap: 32px;
  text-align: left;
}

.footer-info-block {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-info-block h3 {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0;
}

.footer-info-block p,
.footer-info-block a {
  color: #526079;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.footer-info-block p i {
  width: 18px;
  margin-right: 8px;
  color: var(--blue);
}

.footer-brand-inline {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.footer-brand-inline img {
  width: 168px;
  height: 52px;
  object-fit: contain;
}

.footer-brand-inline span {
  display: none;
}

.footer-info-block a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-info-block a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe7f2;
  border-radius: 50%;
  background: var(--surface-soft);
  color: #526079;
  font-size: 14px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-pill-row,
.footer-link-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-glass-pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.14), 0 18px 35px rgba(0, 0, 0, 0.18);
  color: rgba(248, 251, 255, 0.76);
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  will-change: transform;
}

.footer-primary-pill {
  min-height: 58px;
  padding: 0 34px;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 18px 40px rgba(47, 127, 212, 0.28);
}

.footer-glass-pill:hover,
.footer-top-button:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055));
  color: #fff;
}

.footer-bottom-bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  border-top: 1px solid #e7edf5;
  padding-top: 18px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-bottom-bar > span {
  text-align: center;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.footer-legal-links a {
  color: #11182f;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.footer-legal-links a:hover {
  color: var(--blue);
}

.footer-powered-by {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-powered-by a {
  color: #667085;
  font-weight: 700;
}

.footer-powered-by a:hover {
  color: var(--blue);
}

.footer-bottom-word {
  margin-top: 12px;
  overflow: hidden;
  color: rgba(17, 24, 47, 0.055);
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 220px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.45) 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.45) 58%, transparent 100%);
}

.footer-bottom-word .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 0.7s cubic-bezier(0.16, 0.8, 0.24, 1), transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
  transition-delay: calc(var(--i, 0) * 35ms);
}

.footer-bottom-word .letter.space {
  width: 0.32em;
}

.footer-bottom-word.in-view .letter {
  opacity: 1;
  transform: translateY(0);
}

.footer-top-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe7f2;
  border-radius: 50%;
  background: var(--surface-soft);
  color: #526079;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.footer-top-button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

@keyframes footer-breathe {
  from {
    opacity: 0.66;
    transform: translate(-50%, -50%) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes footer-scroll-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Scroll reveal ---------- */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 0.8, 0.24, 1), transform 0.8s cubic-bezier(0.16, 0.8, 0.24, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(36px) scale(0.98);
}

.reveal-left {
  transform: translateX(-52px);
}

.reveal-right {
  transform: translateX(52px);
}

.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.detail-card.reveal .detail-art {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.detail-card.reverse.reveal .detail-art {
  transform: translateX(40px);
}

.detail-card.reveal .detail-copy {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.detail-card.reverse.reveal .detail-copy {
  transform: translateX(-40px);
}

.detail-card.reveal.in-view .detail-art,
.detail-card.reveal.in-view .detail-copy {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Pricing (unused on this page — kept for reuse elsewhere, see commented section in index.html) ---------- */

.pricing {
  background: #0a0a0a;
  color: #fff;
}

.pricing .container {
  width: min(1440px, calc(100% - 56px));
}

.pricing-header {
  margin-bottom: 40px;
  text-align: center;
}

.pricing-header h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 850;
}

.pricing-header p {
  max-width: 560px;
  margin: 0 auto;
  color: #9a9a9a;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 36px 0 50px;
}

.pricing-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid #262626;
  border-radius: 999px;
  background: #161616;
  padding: 4px;
}

.pricing-toggle-highlight {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: var(--surface);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-toggle[data-period="yearly"] .pricing-toggle-highlight {
  transform: translateX(100%);
}

.pricing-toggle-option {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 9px 16px;
  color: #9a9a9a;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.pricing-toggle-option.active {
  color: #0a0a0a;
}

.pricing-save-badge {
  border-radius: 999px;
  background: #2a1f52;
  color: #b794f6;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

.pricing-toggle-option.active .pricing-save-badge {
  background: var(--blue-light);
  color: var(--blue);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1380px;
  margin: 80px 0 0 0 ;
  align-items: center;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  border: 1px solid #262626;
  border-radius: 16px;
  background: #121212;
  padding: 60px 28px 36px;
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.16, 0.8, 0.24, 1), transform 0.65s cubic-bezier(0.16, 0.8, 0.24, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(47, 127, 212, 0.18);
}

.pricing-card:nth-child(1) {
  transition-delay: 0.05s;
}

.pricing-card:nth-child(2) {
  transition-delay: 0.15s;
}

.pricing-card:nth-child(3) {
  transition-delay: 0.25s;
}

.pricing-card:nth-child(4) {
  transition-delay: 0.35s;
}

.pricing-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pricing-card.popular {
  min-height: 600px;
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(47, 127, 212, 0.12), #121212 60%);
  padding-top: 60px;
  padding-bottom: 36px;
  transform: translateY(26px) scale(1);
}

.pricing-card.popular:hover {
  transform: translateY(-8px) scale(1.06);
}

.pricing-card.popular.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1.06);
}

.pricing-card.popular .pricing-plan-name {
  margin-top: 0;
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: auto;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  transform: none;
}

.pricing-plan-name {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: auto;
  margin: 0 0 14px;
  color: #d4d4d4;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.pricing-plan-title {
  position: absolute;
  left: 50%;
  top: -11px;
  min-width: 88px;
  border-radius: 999px;
  background: #1f1f1f;
  padding: 2px 14px;
  font-size: 0.94rem;
  font-weight: 650;
  transform: translateX(-50%);
}

.pricing-plan-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 13px;
  color: #9a9a9a;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 0 0 4px;
}

.pricing-per-symbol {
  font-size: 1.8rem;
  font-weight: 850;
  line-height: 1;
}

.pricing-price {
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 850;
  line-height: 1;
}

.crm-plan .pricing-price {
  font-size: 2.1rem;
}

.crm-plan .pricing-per-symbol {
  font-size: 1.5rem;
}

.pricing-price.animate {
  animation: pricing-pop 0.35s ease;
}

@keyframes pricing-pop {
  0% { transform: scale(1); }
  40% { opacity: 0.6; transform: scale(1.15); }
  100% { transform: scale(1); }
}

.pricing-per {
  color: #9a9a9a;
  font-size: 0.8rem;
}

.pricing-billed {
  margin-bottom: 18px;
  color: #7a7a7a;
  font-size: 0.85rem;
  text-align: center;
}

.crm-plan .pricing-billed {
  margin-bottom: 32px;
}

.pricing-features {
  flex: 1;
  margin-bottom: 28px;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #1f1f1f;
  padding: 8px 0;
  color: #d4d4d4;
  font-size: 0.92rem;
}

.pricing-features li:last-child {
  border-bottom: 0;
}

.pricing-check {
  color: #b794f6;
  font-weight: 800;
}

.pricing-btn {
  width: 100%;
  border: 1px solid #333;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

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

.pricing-btn.primary {
  border-color: var(--blue);
  background: var(--blue);
}

.pricing-btn.primary:hover {
  background: var(--blue-dark);
}

@media (max-width: 860px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .top-ribbon-inner {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
  }

  .top-ribbon-left,
  .top-ribbon-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
  }

  .site-header .container,
  .hero .container {
    width: min(100% - 28px, 760px);
  }

  .icon-btn {
    display: inline-flex;
  }

  .nav {
    min-height: 58px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .site-header[data-open="true"] .nav {
    flex-wrap: wrap;
  }

  .site-header[data-open="true"] .nav-links,
  .site-header[data-open="true"] .nav-actions {
    display: grid;
    width: 100%;
    gap: 14px;
  }

  .site-header[data-open="true"] .nav-links {
    padding-top: 6px;
  }

  .site-header[data-open="true"] .nav-actions {
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    padding-bottom: 16px;
  }

  .site-header[data-open="true"] .nav-actions .btn {
    width: 100%;
  }

  .hero-grid,
  .about-grid,
  .project-grid,
  .integrations-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .contact-form {
    padding: 32px;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 48px;
  }

  .hero-grid {
    gap: 38px;
    text-align: center;
  }

  .hero-copy {
    max-width: 720px;
    justify-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .hero-grid h1 {
    font-size: clamp(38px, 6vw, 52px);
    white-space: normal;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-illustration {
    max-width: 680px;
  }

  .hero-badge {
    width: 145px;
  }

  .badge-a {
    left: 7%;
  }

  .badge-b {
    left: 2%;
  }

  .badge-d {
    right: 2%;
  }

  .badge-e,
  .badge-f {
    right: 2%;
  }

  .integrations-section {
    padding: 84px 0;
  }

  .integrations-copy {
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
  }

  .integrations-copy p {
    margin: 0 auto;
  }

  .platform-banner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    grid-template-areas: "copy media";
    text-align: left;
    padding: 32px 0;
  }

  .platform-banner-copy h2,
  .platform-banner-copy p {
    margin-left: 0;
  }

  .platform-banner-copy h2 {
    font-size: 28px;
  }

  .platform-banner-actions {
    justify-content: flex-start;
  }

  .platform-banner-media {
    min-height: 150px;
    max-width: 360px;
    margin: 0;
  }

  .platform-banner-media img {
    width: min(100%, 360px);
  }

  .hero-art {
    max-width: 650px;
    width: 100%;
    margin: auto;
  }

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

  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-card.reverse .detail-art,
  .detail-card.reverse .detail-copy {
    order: initial;
  }

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

  .cinematic-footer-content {
    padding-top: 38px;
  }

  .footer-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 62px 0;
  }

  .hero {
    padding: 44px 0 42px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-dashboard-card {
    border-radius: 0;
    padding: 0;
  }

  .hero-dashboard-card::before {
    content: none;
  }

  .hero-badge {
    padding: 8px 10px;
  }

  .hero-badge::after {
    display: none;
  }

  .hero-badge b {
    font-size: 13px;
  }

  .hero-badge span {
    font-size: 9px;
  }

  .badge-a {
    top: -2%;
    left: 1%;
  }

  .badge-b {
    left: auto;
    top: auto;
    right: 1%;
    bottom: -2%;
  }

  .badge-c {
    display: none;
  }

  .badge-d,
  .badge-e,
  .badge-f,
  .badge-g,
  .badge-h {
    display: none;
  }

  .hero-art {
    height: 360px;
  }

  .dashboard {
    width: 68%;
    right: 6%;
  }

  .person-c,
  .float-b {
    display: none;
  }

  .service-grid,
  .process-steps,
  .project-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about {
    padding-top: 50px;
  }

  .about h2 {
    font-size: 34px;
  }

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

  .mountain-art {
    height: 260px;
  }

  .detailed-services {
    padding: 80px 0;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .detail-card {
    padding: 18px;
  }

  .detail-art {
    height: 190px;
  }

  .contact-card {
    padding: 0;
  }

  .contact-copy,
  .contact-form {
    padding: 24px;
  }

  .integrations-section {
    min-height: auto;
    padding: 72px 0;
  }

  .integrations-grid {
    gap: 38px;
  }

  .integrations-copy h2 {
    font-size: 36px;
    white-space: normal;
  }

  .integrations-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .integration-cloud {
    min-height: 330px;
    grid-template-columns: repeat(3, 68px);
    grid-auto-rows: 68px;
  }

  .integration-tile {
    width: 68px;
    height: 68px;
  }

  .platform-banner-section {
    padding: 10px 0 18px;
  }

  .platform-banner {
    min-height: auto;
    padding: 22px 18px 18px;
    border-radius: 10px;
    gap: 20px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
    text-align: center;
  }

  .platform-banner-copy h2 {
    font-size: 23px;
    white-space: normal;
  }

  .platform-banner-copy p {
    font-size: 14px;
  }

  .platform-banner-actions {
    justify-content: center;
  }

  .platform-banner-pills,
  .platform-store-buttons {
    justify-content: center;
  }

  .platform-banner-pills {
    gap: 6px;
  }

  .platform-banner-pills span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 9px;
  }

  .platform-store-buttons .store-badge {
    width: 112px;
    height: auto;
    max-height: 35px;
  }

  .platform-banner-media {
    min-height: 160px;
    width: 100%;
    margin: 0 auto;
  }

  .platform-banner-media img {
    width: min(100%, 310px);
  }

  .integration-tile i {
    font-size: 24px;
  }

  .integration-tile img {
    width: 26px;
    height: 26px;
  }

  .facebook {
    grid-column: 2;
    grid-row: 1;
  }

  .instagram {
    grid-column: 1;
    grid-row: 2;
  }

  .whatsapp {
    grid-column: 2;
    grid-row: 2;
  }

  .gmail {
    grid-column: 3;
    grid-row: 2;
  }

  .meet {
    grid-column: 2;
    grid-row: 3;
  }

  .webhook {
    grid-column: 3;
    grid-row: 3;
  }

  .microsoft {
    grid-column: 1;
    grid-row: 3;
  }

  .ads {
    grid-column: 1;
    grid-row: 4;
  }

  .zoom {
    grid-column: 3;
    grid-row: 4;
  }

  .empty-a {
    grid-column: 1;
    grid-row: 1;
  }

  .empty-b {
    grid-column: 3;
    grid-row: 1;
  }

  .empty-c {
    grid-column: 2;
    grid-row: 4;
  }

  .footer-marquee {
    top: 46px;
  }

  .footer-marquee-track {
    gap: 18px;
    padding: 12px 0;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .cinematic-footer-content {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 22px;
  }

  .footer-brand-lockup {
    margin: 0 auto;
    font-size: 13px;
  }

  .footer-brand-lockup img {
    width: 52px;
  }

  .footer-center {
    gap: 20px;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-info-block {
    justify-items: start;
    text-align: left;
  }

  .footer-center h2 {
    font-size: 42px;
  }

  .footer-pill-row,
  .footer-link-pills {
    width: 100%;
    gap: 10px;
  }

  .footer-glass-pill {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .footer-primary-pill {
    width: 100%;
    max-width: 290px;
    min-height: 52px;
  }

  .footer-bottom-bar {
    gap: 16px;
    font-size: 10px;
  }

  .footer-bottom-word {
    font-size: clamp(44px, 18vw, 92px);
  }
}
