@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap");

:root {
  --bg: #eef3f7;
  --paper: #ffffff;
  --paper-2: #f7fafc;
  --ink: #142033;
  --muted: #617086;
  --line: #dfe7ef;
  --dark: #091321;
  --dark-2: #101d2e;
  --dark-3: #182941;
  --brand: #14643f;
  --brand-2: #24a66b;
  --cyan: #4bb7c7;
  --gold: #b98535;
  --soft: #e8f5ee;
  --max: min(1280px, calc(100% - 32px));
  --commercial-font: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(16, 29, 46, .13);
  --shadow-dark: 0 32px 90px rgba(4, 10, 19, .34);
  --scroll: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 440px at 8% -10%, rgba(36, 166, 107, .13), transparent 62%),
    radial-gradient(620px 320px at 100% 0%, rgba(75, 183, 199, .10), transparent 66%),
    linear-gradient(180deg, var(--bg), #fff 42%, #edf3f7);
  font-family: var(--commercial-font);
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font: 400 16px/1.55 var(--commercial-font);
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--cyan), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  inset: 16px 18px auto;
  z-index: 70;
  min-height: 68px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 36px rgba(20, 32, 48, .12);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  transition: box-shadow .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(20, 32, 48, .10);
  box-shadow: 0 16px 44px rgba(20, 32, 48, .18);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #36465b;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--brand);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--dark-3);
  font-size: 14px;
  font-weight: 900;
}

.header-link:hover {
  background: var(--paper-2);
}

.button {
  --mag-x: 0px;
  --mag-y: 0px;
  position: relative;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 900;
  transform: translate(var(--mag-x), var(--mag-y));
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, .36) 48%, transparent 66% 100%);
  transform: translateX(-120%);
  animation: buttonSheen 6s ease-in-out infinite;
  pointer-events: none;
}

.button:hover {
  transform: translate(var(--mag-x), calc(var(--mag-y) - 1px));
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 32px rgba(20, 100, 63, .24);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(20, 100, 63, .34);
}

.button-dark {
  color: #fff;
  background: var(--dark-3);
}

.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 128px 0 36px;
  overflow: hidden;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .22;
  filter: saturate(.95) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 27, .98) 0%, rgba(8, 15, 27, .88) 46%, rgba(8, 15, 27, .72) 100%),
    radial-gradient(620px 280px at 70% 22%, rgba(36, 166, 107, .26), transparent 70%),
    radial-gradient(420px 220px at 88% 58%, rgba(75, 183, 199, .20), transparent 72%),
    radial-gradient(340px 190px at 26% 82%, rgba(185, 133, 53, .16), transparent 70%),
    linear-gradient(180deg, rgba(8, 15, 27, .10) 0%, rgba(8, 15, 27, .18) 58%, #eef3f7 100%);
}

.geo-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.geo {
  position: absolute;
  display: block;
  opacity: .7;
}

.geo-square {
  width: 110px;
  height: 110px;
  right: 9%;
  top: 20%;
  border: 1px solid rgba(189, 249, 215, .28);
  transform: rotate(18deg);
  animation: geoFloat 12s ease-in-out infinite;
}

.geo-ring {
  width: 180px;
  height: 180px;
  right: 23%;
  bottom: 19%;
  border: 1px solid rgba(75, 183, 199, .24);
  border-radius: 50%;
  animation: geoPulse 9s ease-in-out infinite;
}

.geo-line {
  width: 240px;
  height: 1px;
  left: 5%;
  bottom: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  animation: geoSlide 10s ease-in-out infinite;
}

.geo-dot {
  width: 12px;
  height: 12px;
  right: 38%;
  top: 32%;
  border-radius: 50%;
  background: #bdf9d7;
  box-shadow: 0 0 32px rgba(189, 249, 215, .72);
  animation: geoFloat 8s ease-in-out infinite reverse;
}

.geo-triangle {
  width: 118px;
  height: 118px;
  left: 48%;
  top: 18%;
  opacity: .36;
  background:
    linear-gradient(135deg, transparent 49%, rgba(233, 189, 120, .42) 50%, transparent 52%),
    linear-gradient(45deg, transparent 49%, rgba(233, 189, 120, .24) 50%, transparent 52%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  animation: geoSpin 18s linear infinite;
}

.geo-grid {
  width: 240px;
  height: 180px;
  right: -32px;
  top: 54%;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .26) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: rotate(-9deg);
  animation: geoSlide 12s ease-in-out infinite reverse;
}

.geo-hex {
  width: 92px;
  height: 92px;
  left: 8%;
  top: 20%;
  opacity: .44;
  border: 1px solid rgba(75, 183, 199, .42);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  animation: geoFloat 11s ease-in-out infinite;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  --size: 6px;
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: rgba(189, 249, 215, .86);
  box-shadow: 0 0 24px rgba(189, 249, 215, .44);
  opacity: .5;
  animation: heroParticleFloat var(--particle-speed, 12s) ease-in-out infinite;
}

.hero-particles span:nth-child(1) { left: 7%; top: 32%; --particle-speed: 10s; animation-delay: -1s; }
.hero-particles span:nth-child(2) { left: 17%; top: 67%; --size: 4px; --particle-speed: 13s; animation-delay: -6s; }
.hero-particles span:nth-child(3) { left: 31%; top: 21%; --size: 5px; background: rgba(233, 189, 120, .82); animation-delay: -3s; }
.hero-particles span:nth-child(4) { left: 45%; top: 78%; --size: 8px; --particle-speed: 15s; animation-delay: -8s; }
.hero-particles span:nth-child(5) { right: 33%; top: 16%; --size: 4px; background: rgba(75, 183, 199, .84); animation-delay: -2s; }
.hero-particles span:nth-child(6) { right: 23%; top: 34%; --particle-speed: 11s; animation-delay: -5s; }
.hero-particles span:nth-child(7) { right: 8%; top: 25%; --size: 5px; background: rgba(233, 189, 120, .74); animation-delay: -9s; }
.hero-particles span:nth-child(8) { right: 15%; bottom: 22%; --size: 7px; --particle-speed: 16s; animation-delay: -7s; }
.hero-particles span:nth-child(9) { left: 54%; bottom: 30%; --size: 5px; background: rgba(75, 183, 199, .82); animation-delay: -4s; }
.hero-particles span:nth-child(10) { left: 6%; bottom: 18%; --size: 4px; animation-delay: -10s; }
.hero-particles span:nth-child(11) { right: 44%; top: 48%; --size: 3px; --particle-speed: 9s; animation-delay: -5s; }
.hero-particles span:nth-child(12) { right: 4%; bottom: 44%; --size: 6px; --particle-speed: 14s; animation-delay: -11s; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(300px, .87fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.helpdesk-section .eyebrow,
.contact-section .eyebrow {
  color: #e9bd78;
}

.hero h1,
.section-heading h2,
.sticky-heading h2,
.web-email-copy h2,
.helpdesk-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--commercial-font);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  max-width: 760px;
  font-size: clamp(36px, 4.7vw, 64px);
  line-height: 1.03;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .36);
}

.hero-text {
  margin: 20px 0 0;
  max-width: 710px;
  color: rgba(255, 255, 255, .80);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.68;
}

.hero-actions,
.helpdesk-actions,
.contact-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-product {
  --parallax-y: 0px;
  position: relative;
  min-height: 468px;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform: translateY(var(--parallax-y));
}

.product-orbit {
  position: relative;
  width: min(470px, 100%);
  min-height: 468px;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform-style: preserve-3d;
}

.product-orbit::before,
.product-orbit::after {
  content: "";
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  transform: rotate(-10deg);
  opacity: .68;
}

.product-orbit::after {
  inset: 86px 42px;
  border-color: rgba(75, 183, 199, .22);
  transform: rotate(18deg);
  animation: orbitBreathe 7s ease-in-out infinite;
}

.logo-float {
  position: relative;
  z-index: 3;
  width: 188px;
  min-height: 188px;
  padding: 24px 18px 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(189, 249, 215, .24), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
  box-shadow: 0 28px 74px rgba(4, 10, 19, .34), inset 0 1px 0 rgba(255, 255, 255, .24);
  backdrop-filter: blur(18px) saturate(142%);
  -webkit-backdrop-filter: blur(18px) saturate(142%);
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  animation: logoFloat 5.8s ease-in-out infinite;
}

.logo-halo {
  position: absolute;
  inset: -22px;
  border-radius: 34px;
  background:
    conic-gradient(from 90deg, rgba(36, 166, 107, .08), rgba(75, 183, 199, .34), rgba(233, 189, 120, .22), rgba(36, 166, 107, .08));
  filter: blur(10px);
  opacity: .82;
  z-index: -1;
  animation: haloSpin 12s linear infinite;
}

.logo-float img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .28));
}

.logo-float strong {
  margin-top: 12px;
  color: #fff;
  font-family: var(--commercial-font);
  font-size: 19px;
  font-weight: 900;
}

.logo-float small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.orbit-line {
  position: absolute;
  z-index: 1;
  width: 270px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 249, 215, .56), transparent);
  opacity: .54;
  transform: rotate(24deg);
}

.orbit-line-b {
  width: 210px;
  background: linear-gradient(90deg, transparent, rgba(233, 189, 120, .46), transparent);
  transform: rotate(-38deg);
}

.product-badge {
  position: absolute;
  z-index: 4;
  max-width: 286px;
  min-height: 58px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 8px;
  background: rgba(8, 13, 23, .74);
  color: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px) saturate(142%);
  -webkit-backdrop-filter: blur(16px) saturate(142%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.32;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(4, 10, 19, .28);
  transform: translate3d(0, 0, 0);
  animation: badgeLayerFloat var(--badge-speed, 8s) ease-in-out infinite;
  transition: opacity .2s ease, filter .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.product-badge svg {
  width: 20px;
  height: 20px;
  color: #9ee7c0;
  flex: 0 0 auto;
}

.product-badge--main {
  right: 0;
  top: 28px;
  --badge-speed: 7.2s;
}

.product-badge--workflow {
  left: 0;
  top: 105px;
  --badge-speed: 8.4s;
  animation-delay: -2.4s;
}

.product-badge--data {
  right: 2px;
  bottom: 88px;
  --badge-speed: 9.2s;
  animation-delay: -4.8s;
}

.product-badge--agenda {
  left: 28px;
  bottom: 52px;
  max-width: 232px;
  --badge-speed: 7.8s;
  animation-delay: -3.2s;
}

.product-badge--test {
  left: 50%;
  top: 0;
  max-width: 220px;
  --badge-speed: 8.9s;
  animation-delay: -5.4s;
}

.product-badge--api {
  right: 26px;
  top: 174px;
  max-width: 224px;
  --badge-speed: 8.1s;
  animation-delay: -6.2s;
}

.product-badge--workflow svg,
.product-badge--api svg {
  color: #e9bd78;
}

.product-badge--data svg,
.product-badge--agenda svg {
  color: #8de7f3;
}

.product-orbit:has(.product-badge:hover) .product-badge:not(:hover),
.product-orbit:has(.product-badge:focus-visible) .product-badge:not(:focus-visible) {
  z-index: 1;
  opacity: .36;
  filter: blur(.4px) saturate(.82);
}

.product-badge:hover,
.product-badge:focus-visible {
  z-index: 40;
  background: rgba(13, 27, 44, .92);
  box-shadow: 0 24px 64px rgba(4, 10, 19, .42), 0 0 0 1px rgba(189, 249, 215, .18);
  outline: 0;
  transform: translate3d(0, -8px, 80px) scale(1.06);
  animation: none;
}

.hero-metrics {
  position: relative;
  z-index: 3;
  width: var(--max);
  margin: 44px auto 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 250, 252, .94));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.metric-card {
  position: relative;
  min-height: 154px;
  padding: 21px 22px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(36, 166, 107, .10), transparent 42%),
    rgba(255, 255, 255, .40);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--brand-2), var(--cyan), var(--gold));
  opacity: 0;
  transform: scaleX(.5);
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}

.metric-card:hover,
.metric-card:focus-visible {
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(36, 166, 107, .15), rgba(75, 183, 199, .10) 58%, rgba(233, 189, 120, .10)),
    #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(16, 29, 46, .12);
  outline: 0;
}

.metric-card:hover::after,
.metric-card:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(20, 100, 63, .22);
}

.metric-icon--gold {
  background: linear-gradient(135deg, #9b6a24, var(--gold));
  box-shadow: 0 12px 26px rgba(185, 133, 53, .20);
}

.metric-icon--cyan {
  background: linear-gradient(135deg, #247988, var(--cyan));
  box-shadow: 0 12px 26px rgba(75, 183, 199, .20);
}

.metric-icon svg {
  width: 21px;
  height: 21px;
}

.metric-card:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.hero-metrics span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.hero-metrics small {
  display: block;
  margin-top: 8px;
  color: rgba(97, 112, 134, .86);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-light {
  background:
    radial-gradient(620px 300px at 100% 2%, rgba(36, 166, 107, .09), transparent 72%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}

.tailored-section {
  overflow: hidden;
  background:
    radial-gradient(520px 280px at 12% 18%, rgba(233, 189, 120, .12), transparent 70%),
    radial-gradient(720px 320px at 96% 12%, rgba(36, 166, 107, .14), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
}

.tailored-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 32, 51, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 51, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.tailored-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.tailored-bg span {
  position: absolute;
  display: block;
  border: 1px solid rgba(20, 100, 63, .18);
  opacity: .52;
  animation: tailoredShapeFloat 12s ease-in-out infinite;
}

.tailored-bg span:nth-child(1) {
  width: 160px;
  height: 160px;
  right: 8%;
  top: 18%;
  border-radius: 50%;
}

.tailored-bg span:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 7%;
  bottom: 14%;
  transform: rotate(16deg);
  animation-delay: -4s;
}

.tailored-bg span:nth-child(3) {
  width: 240px;
  height: 1px;
  right: 30%;
  bottom: 24%;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(75, 183, 199, .34), transparent);
  animation-delay: -7s;
}

.section-inner {
  width: var(--max);
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading h2,
.sticky-heading h2,
.helpdesk-copy h2,
.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
}

.section-heading span,
.sticky-heading p,
.web-email-copy p,
.helpdesk-copy p,
.contact-copy p {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.64;
}

.tailored-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(310px, .68fr) minmax(0, 1.08fr);
}

.tailored-copy {
  padding-top: 8px;
}

.tailored-panel {
  margin-top: 28px;
  border: 1px solid rgba(20, 100, 63, .14);
  border-radius: 8px;
  background:
    radial-gradient(220px 120px at 12% 0%, rgba(36, 166, 107, .12), transparent 72%),
    rgba(255, 255, 255, .76);
  box-shadow: 0 24px 60px rgba(16, 29, 46, .10);
  padding: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.tailored-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 100, 63, .24);
  background:
    radial-gradient(240px 130px at 12% 0%, rgba(36, 166, 107, .16), transparent 72%),
    rgba(255, 255, 255, .86);
  box-shadow: 0 30px 72px rgba(16, 29, 46, .14);
}

.tailored-panel__top {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid rgba(223, 231, 239, .86);
  padding-bottom: 12px;
}

.tailored-panel__top span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.tailored-panel__top strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.tailored-flow {
  position: relative;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tailored-flow::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 25px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-2), var(--cyan), var(--gold));
  opacity: .34;
}

.tailored-flow div {
  position: relative;
  z-index: 1;
  min-height: 112px;
  padding: 12px 10px;
  border: 1px solid rgba(223, 231, 239, .88);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  display: grid;
  align-content: start;
  gap: 5px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.tailored-flow div:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 100, 63, .22);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 29, 46, .10);
}

.tailored-flow svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 22px rgba(20, 100, 63, .16);
}

.tailored-flow div:nth-child(2) svg {
  background: linear-gradient(135deg, #247988, var(--cyan));
}

.tailored-flow div:nth-child(3) svg {
  background: linear-gradient(135deg, #9b6a24, var(--gold));
}

.tailored-flow span {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.tailored-flow strong {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.tailored-signal {
  margin-top: 12px;
  padding: 11px 12px;
  border-radius: 8px;
  color: #25405f;
  background: rgba(232, 245, 238, .78);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 900;
}

.tailored-signal svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex: 0 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.service-stack {
  display: grid;
  gap: 14px;
}

.tailored-section .service-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 18px;
  align-items: start;
  padding-top: 6px;
}

.service-card,
.feature-card,
.timeline-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 40px rgba(20, 32, 48, .07);
  padding: 24px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, opacity .22s ease, filter .22s ease;
}

.tailored-section .service-card {
  --card-x: 82%;
  --card-y: 18%;
  min-height: 258px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(247, 250, 252, .90));
  isolation: isolate;
  will-change: transform;
}

.tailored-section .service-card:nth-child(1),
.tailored-section .service-card:nth-child(4) {
  margin-top: 0;
}

.tailored-section .service-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(36, 166, 107, .11), transparent 52%),
    rgba(255, 255, 255, .92);
}

.tailored-section .service-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(75, 183, 199, .11), transparent 52%),
    rgba(255, 255, 255, .92);
}

.service-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.service-card__head span {
  color: rgba(20, 32, 51, .26);
  font-family: var(--commercial-font);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.service-card__head svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 28px rgba(20, 100, 63, .18);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.tailored-section .service-card:nth-child(2) .service-card__head svg {
  background: linear-gradient(135deg, #9b6a24, var(--gold));
  box-shadow: 0 14px 28px rgba(185, 133, 53, .16);
}

.tailored-section .service-card:nth-child(3) .service-card__head svg {
  background: linear-gradient(135deg, #247988, var(--cyan));
  box-shadow: 0 14px 28px rgba(75, 183, 199, .16);
}

.service-card__meta {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.service-card__meta small {
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brand);
  background: var(--soft);
  font-size: 12px;
  font-weight: 900;
}

.service-card__meta svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(20, 32, 51, .06);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.service-card::before,
.feature-card::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(20, 100, 63, .10), transparent 44%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.tailored-section .service-card::before {
  background:
    radial-gradient(260px circle at var(--card-x) var(--card-y), rgba(36, 166, 107, .22), transparent 48%),
    linear-gradient(110deg, rgba(75, 183, 199, .12), transparent 46%);
}

.tailored-section .service-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-2), var(--cyan), var(--gold));
  opacity: 0;
  transform: scaleX(.42);
  transform-origin: left center;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}

.tailored-section .service-stack:has(.service-card:hover) .service-card:not(:hover),
.tailored-section .service-stack:has(.service-card:focus-visible) .service-card:not(:focus-visible) {
  opacity: .58;
  filter: saturate(.72);
  transform: scale(.975);
}

.service-card:hover,
.service-card:focus-visible,
.feature-card:hover,
.timeline-item:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 100, 63, .26);
  box-shadow: 0 20px 54px rgba(20, 32, 48, .12);
}

.tailored-section .service-card:hover,
.tailored-section .service-card:focus-visible {
  z-index: 3;
  border-color: rgba(20, 100, 63, .34);
  box-shadow: 0 28px 74px rgba(20, 32, 48, .18), 0 0 0 1px rgba(36, 166, 107, .08);
  transform: translateY(-10px) scale(1.018);
  outline: 0;
}

.tailored-section .service-card:nth-child(1):hover,
.tailored-section .service-card:nth-child(1):focus-visible,
.tailored-section .service-card:nth-child(4):hover,
.tailored-section .service-card:nth-child(4):focus-visible {
  transform: translateY(-10px) scale(1.018);
}

.service-card:hover::before,
.service-card:focus-visible::before,
.feature-card:hover::before,
.timeline-item:hover::before {
  opacity: 1;
}

.tailored-section .service-card:hover::after,
.tailored-section .service-card:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.tailored-section .service-card:hover .service-card__head svg,
.tailored-section .service-card:focus-visible .service-card__head svg {
  transform: rotate(-4deg) scale(1.08);
  box-shadow: 0 18px 34px rgba(20, 100, 63, .24);
}

.service-card:hover .service-card__meta svg,
.service-card:focus-visible .service-card__meta svg {
  color: #fff;
  background: var(--brand);
  transform: translate(3px, -3px);
}

.service-card svg,
.feature-card svg {
  width: 30px;
  height: 30px;
  color: var(--brand);
}

.tailored-section .service-card__head svg {
  width: 42px;
  height: 42px;
  color: #fff;
}

.tailored-section .service-card__meta svg {
  width: 34px;
  height: 34px;
  color: var(--ink);
}

.service-card h3,
.feature-card h3,
.timeline-item h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.service-card p,
.feature-card p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.web-email-section {
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(520px 260px at 0% 12%, rgba(36, 166, 107, .10), transparent 70%),
    radial-gradient(620px 300px at 100% 20%, rgba(75, 183, 199, .11), transparent 72%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.web-email-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 32, 51, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 51, .04) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  pointer-events: none;
}

.web-email-section .section-inner {
  position: relative;
  z-index: 1;
}

.web-email-head {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 24px;
  align-items: end;
}

.web-email-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--commercial-font);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.web-email-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.client-domain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.client-domain-grid--featured {
  margin-top: 4px;
}

.client-domain {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(223, 231, 239, .94);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 166, 107, .08), transparent 52%),
    rgba(255, 255, 255, .90);
  box-shadow: 0 16px 42px rgba(20, 32, 48, .08);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.client-domain span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(20, 100, 63, .18);
}

.client-domain strong {
  min-width: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.client-domain svg {
  width: 19px;
  height: 19px;
  color: var(--muted);
  transition: transform .18s ease, color .18s ease;
}

.client-domain:hover {
  background: #fff;
  border-color: rgba(20, 100, 63, .28);
  box-shadow: 0 22px 56px rgba(20, 32, 48, .13);
  transform: translateY(-3px);
}

.client-domain:hover svg {
  color: var(--brand);
  transform: translate(2px, -2px);
}

.web-email-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.web-email-tags span {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(20, 100, 63, .14);
  border-radius: 8px;
  color: #25405f;
  background: rgba(255, 255, 255, .76);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}

.web-email-tags svg {
  width: 17px;
  height: 17px;
  color: var(--brand);
}

.helpdesk-section {
  color: #f4f8ff;
  background:
    radial-gradient(760px 340px at 82% 0%, rgba(36, 166, 107, .17), transparent 72%),
    radial-gradient(520px 280px at 4% 72%, rgba(75, 183, 199, .10), transparent 70%),
    linear-gradient(180deg, var(--dark), var(--dark-2));
  overflow: hidden;
}

.helpdesk-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}

.helpdesk-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .66fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: start;
}

.helpdesk-copy {
  position: sticky;
  top: 112px;
}

.helpdesk-copy h2,
.contact-copy h2 {
  color: #fff;
}

.helpdesk-copy p,
.contact-copy p {
  color: rgba(226, 235, 247, .74);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bdf9d7;
  font-weight: 900;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform .18s ease;
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 218px;
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .065);
  box-shadow: none;
}

.feature-card:hover {
  border-color: rgba(189, 249, 215, .34);
  background: rgba(255, 255, 255, .09);
}

.feature-card svg {
  color: #9ee7c0;
}

.feature-card h3 {
  color: #fff;
}

.feature-card p {
  color: rgba(226, 235, 247, .74);
}

.product-bridge {
  grid-column: 1 / -1;
  position: relative;
  min-height: 96px;
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(189, 249, 215, .18);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(280px 150px at 86% 0%, rgba(75, 183, 199, .22), transparent 72%),
    linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
  box-shadow: 0 28px 78px rgba(4, 10, 19, .28);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.product-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(189, 249, 215, .16) 50%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: buttonSheen 5.6s ease-in-out infinite;
  pointer-events: none;
}

.product-bridge span,
.product-bridge em,
.product-bridge svg {
  position: relative;
  z-index: 1;
}

.product-bridge small {
  display: block;
  color: #9ee7c0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-bridge strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-family: var(--commercial-font);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
}

.product-bridge em {
  padding: 8px 10px;
  border-radius: 999px;
  color: #bdf9d7;
  background: rgba(189, 249, 215, .10);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.product-bridge svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  color: var(--dark);
  background: #bdf9d7;
  animation: bridgeArrow 1.8s ease-in-out infinite;
}

.product-bridge:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 249, 215, .36);
  box-shadow: 0 34px 92px rgba(4, 10, 19, .38);
}

.gallery-section {
  color: var(--ink);
  background:
    radial-gradient(620px 300px at -8% 18%, rgba(36, 166, 107, .16), transparent 68%),
    radial-gradient(660px 320px at 108% 10%, rgba(75, 183, 199, .14), transparent 70%),
    linear-gradient(180deg, #f8fbfd, #edf4f8 58%, #ffffff);
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 32, 51, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 51, .045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, #000 0 13%, transparent 30% 70%, #000 87% 100%);
  opacity: .9;
  pointer-events: none;
}

.gallery-section::after {
  content: "";
  position: absolute;
  inset: 52px auto 70px 0;
  width: 170px;
  background:
    linear-gradient(135deg, transparent 0 43%, rgba(20, 100, 63, .18) 43% 44%, transparent 44% 100%),
    linear-gradient(45deg, transparent 0 55%, rgba(75, 183, 199, .16) 55% 56%, transparent 56% 100%);
  background-size: 42px 42px;
  opacity: .8;
  pointer-events: none;
}

.gallery-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.gallery-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 24px rgba(36, 166, 107, .38);
  opacity: .28;
  animation: galleryParticle 12s ease-in-out infinite;
}

.gallery-particles span:nth-child(1) { left: 4%; top: 24%; animation-delay: -1s; }
.gallery-particles span:nth-child(2) { left: 10%; top: 76%; width: 5px; height: 5px; animation-delay: -4s; }
.gallery-particles span:nth-child(3) { left: 17%; top: 13%; width: 6px; height: 6px; animation-delay: -7s; }
.gallery-particles span:nth-child(4) { right: 6%; top: 21%; background: var(--cyan); animation-delay: -2s; }
.gallery-particles span:nth-child(5) { right: 12%; bottom: 17%; width: 5px; height: 5px; background: var(--gold); animation-delay: -8s; }
.gallery-particles span:nth-child(6) { right: 18%; bottom: 48%; width: 7px; height: 7px; animation-delay: -5s; }

.gallery-section .section-inner {
  position: relative;
  z-index: 2;
}

.gallery-heading {
  position: relative;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.gallery-heading h2 {
  color: var(--ink);
}

.gallery-heading span {
  color: var(--muted);
}

.product-story-section {
  min-height: var(--story-height, 270vh);
  padding: 0;
}

.product-story-section .section-inner {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 100vh;
  padding: 112px 0 18px;
  display: grid;
  align-content: start;
  overflow: hidden;
}

.product-story-heading {
  max-width: none;
  margin-bottom: 18px;
}

.product-story-heading h2 {
  max-width: 880px;
  font-size: clamp(30px, 4vw, 50px);
}

.story-counter {
  min-width: 128px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 100, 63, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 46px rgba(20, 32, 48, .08);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.story-counter strong {
  color: var(--brand);
  font: 800 38px/1 var(--commercial-font);
}

.story-counter span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.product-story-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(540px, 1.12fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: stretch;
}

.product-story-copy {
  position: relative;
  min-height: clamp(360px, 54vh, 560px);
}

.product-story-step {
  position: absolute;
  inset: 0;
  visibility: hidden;
  min-height: 0;
  padding: 24px;
  border: 1px solid rgba(223, 231, 239, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 46px rgba(20, 32, 48, .07);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(42px) scale(.975);
  transition: opacity .28s ease, transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.product-story-step.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  border-color: rgba(20, 100, 63, .26);
  background:
    radial-gradient(320px 170px at 100% 0%, rgba(36, 166, 107, .12), transparent 72%),
    rgba(255, 255, 255, .94);
  box-shadow: 0 28px 70px rgba(20, 32, 48, .12);
}

.story-step-num {
  color: rgba(20, 32, 51, .22);
  font: 800 40px/1 var(--commercial-font);
}

.product-story-step small {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-story-step h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.08;
}

.product-story-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.story-step-variants {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-step-variants span {
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #25405f;
  background: rgba(232, 245, 238, .86);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
}

.story-step-variants svg {
  width: 15px;
  height: 15px;
  color: var(--brand);
}

.product-story-stage {
  position: relative;
  top: auto;
  min-width: 0;
}

.story-browser {
  position: relative;
  height: 100%;
  border: 1px solid rgba(20, 32, 48, .12);
  border-radius: 8px;
  background:
    radial-gradient(420px 220px at 88% 0%, rgba(36, 166, 107, .14), transparent 72%),
    linear-gradient(180deg, #ffffff, #f3f8fb);
  box-shadow: 0 26px 74px rgba(20, 32, 48, .15);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(280px, 1fr) auto auto;
}

.story-browser::before {
  content: "";
  position: absolute;
  inset: 58px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 100, 63, .26), transparent);
  pointer-events: none;
}

.story-browser-bar {
  min-height: 54px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(20, 32, 48, .09);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.story-browser-bar strong {
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-image-wrap {
  height: auto;
  min-height: 0;
  padding: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(20, 32, 51, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 51, .045) 1px, transparent 1px),
    #f8fbfd;
  background-size: 36px 36px;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(20, 32, 48, .10);
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  box-shadow: 0 22px 64px rgba(20, 32, 48, .16);
  opacity: 0;
  transform: translateY(18px) scale(.985);
  transition: opacity .26s ease, transform .32s ease, object-position .32s ease;
}

.story-image-wrap img.is-ready {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.story-image-wrap.is-variant-detail img {
  object-fit: cover;
  object-position: 50% 26%;
  transform: scale(1.08);
}

.story-image-wrap.is-variant-flow img {
  object-fit: cover;
  object-position: 72% 52%;
  transform: scale(1.14);
}

.story-stage-caption {
  padding: 14px 18px 4px;
}

.story-stage-caption span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.story-stage-caption h3 {
  margin: 5px 0 7px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.16;
}

.story-stage-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.story-variant-controls {
  padding: 12px 18px 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.story-variant-controls button {
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid rgba(20, 32, 48, .10);
  border-radius: 8px;
  color: #25405f;
  background: rgba(255, 255, 255, .72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.story-variant-controls button svg {
  width: 16px;
  height: 16px;
}

.story-variant-controls button:hover,
.story-variant-controls button.is-active {
  color: #fff;
  border-color: rgba(20, 100, 63, .22);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  transform: translateY(-2px);
}

.legacy-gallery[hidden] {
  display: none !important;
}

.gallery-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 158px);
  gap: 10px;
}

.gallery-kpis {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(180px 110px at 100% 0%, rgba(36, 166, 107, .13), transparent 72%),
    #fff;
  box-shadow: 0 20px 54px rgba(20, 32, 48, .10);
}

.gallery-kpis--video {
  background:
    radial-gradient(180px 110px at 100% 0%, rgba(75, 183, 199, .16), transparent 72%),
    linear-gradient(180deg, #fff, #f7fbfd);
}

.gallery-kpis strong {
  display: block;
  color: var(--brand);
  font: 800 38px/1 var(--commercial-font);
}

.gallery-kpis--video strong {
  color: #247988;
}

.gallery-kpis span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.screen-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: stretch;
}

.screen-gallery::before,
.screen-gallery::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  width: 96px;
  border: 1px solid rgba(20, 100, 63, .12);
  opacity: .76;
  pointer-events: none;
  z-index: 0;
}

.screen-gallery::before {
  left: -126px;
  background:
    linear-gradient(135deg, rgba(36, 166, 107, .12) 0 1px, transparent 1px 100%),
    linear-gradient(45deg, rgba(75, 183, 199, .12) 0 1px, transparent 1px 100%);
  background-size: 28px 28px;
  transform: skewY(-7deg);
}

.screen-gallery::after {
  right: -126px;
  background:
    radial-gradient(circle at 50% 18%, rgba(36, 166, 107, .16) 0 7px, transparent 8px),
    radial-gradient(circle at 50% 58%, rgba(75, 183, 199, .14) 0 6px, transparent 7px),
    linear-gradient(180deg, transparent, rgba(185, 133, 53, .10), transparent);
  background-size: 100% 86px, 100% 112px, 100% 100%;
  transform: skewY(7deg);
}

.gallery-showcase {
  position: relative;
  min-width: 0;
  z-index: 1;
}

.gallery-orbit {
  position: absolute;
  inset: -38px -64px auto auto;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(20, 100, 63, .18);
  border-radius: 50%;
  animation: geoPulse 8s ease-in-out infinite;
}

.gallery-orbit::before,
.gallery-orbit::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(75, 183, 199, .22);
  border-radius: inherit;
}

.gallery-orbit::after {
  inset: 68px;
  background: rgba(36, 166, 107, .10);
  box-shadow: 0 0 38px rgba(36, 166, 107, .20);
}

.gallery-stage {
  position: relative;
  min-height: 640px;
  border: 1px solid rgba(20, 32, 48, .12);
  border-radius: 8px;
  background:
    radial-gradient(520px 260px at 12% 0%, rgba(36, 166, 107, .10), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 253, .96));
  box-shadow: 0 30px 90px rgba(20, 32, 48, .18);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.gallery-toolbar {
  min-height: 54px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(20, 32, 48, .10);
  background: rgba(255, 255, 255, .82);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.gallery-toolbar strong {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-dots {
  display: flex;
  gap: 7px;
}

.gallery-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.gallery-dots span:nth-child(2) {
  background: #f59e0b;
}

.gallery-dots span:nth-child(3) {
  background: #22c55e;
}

.gallery-tools {
  display: flex;
  gap: 6px;
}

.gallery-tools button,
.gallery-tools a,
.image-modal-bar button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(20, 32, 48, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: var(--dark-3);
  display: inline-grid;
  place-items: center;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.gallery-tools button:hover,
.gallery-tools a:hover,
.image-modal-bar button:hover {
  border-color: rgba(20, 100, 63, .28);
  background: var(--soft);
  transform: translateY(-1px);
}

.gallery-tools svg,
.image-modal-bar svg {
  width: 18px;
  height: 18px;
}

.gallery-mode-strip {
  min-height: 52px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(20, 32, 48, .08);
  background:
    linear-gradient(90deg, rgba(232, 245, 238, .78), rgba(255, 255, 255, .78));
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gallery-mode-strip span {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(20, 100, 63, .12);
  border-radius: 999px;
  color: #25405f;
  background: rgba(255, 255, 255, .72);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
}

.gallery-mode-strip span:nth-child(2) {
  color: #247988;
  border-color: rgba(75, 183, 199, .22);
}

.gallery-mode-strip svg {
  width: 15px;
  height: 15px;
}

.gallery-image-wrap {
  position: relative;
  height: 484px;
  padding: 18px;
  display: grid;
  place-items: center;
}

.gallery-image-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    #07101c;
  background-size: 38px 38px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.gallery-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: .55;
  transform: translateY(10px) scale(.985);
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, .34));
  transition: opacity .28s ease, transform .38s ease;
}

.gallery-image-wrap img.is-ready {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  max-width: 680px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 32, 48, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 50px rgba(20, 32, 48, .18);
  backdrop-filter: blur(15px);
}

.gallery-caption span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gallery-caption h3 {
  margin: 3px 0 5px;
  color: var(--ink);
  font-size: 19px;
}

.gallery-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.46;
}

.gallery-sidebar {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.gallery-status {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  display: grid;
  gap: 10px;
}

.gallery-status span {
  color: var(--brand);
  font: 800 26px/1 var(--commercial-font);
}

.gallery-status div {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.gallery-status svg {
  width: 17px;
  height: 17px;
  color: var(--brand);
}

.gallery-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.gallery-tabs button {
  width: 100%;
  min-height: 74px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.gallery-tabs button:hover,
.gallery-tabs button.is-active {
  border-color: rgba(20, 100, 63, .28);
  background: var(--soft);
  box-shadow: 0 14px 32px rgba(20, 32, 48, .10);
}

.gallery-tabs button:hover {
  transform: translateX(-3px);
}

.gallery-tabs button.is-active {
  box-shadow: inset 3px 0 0 var(--brand-2), 0 14px 32px rgba(20, 32, 48, .10);
}

.gallery-tabs button span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.video-showcase {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, .7fr));
  gap: 14px;
}

.video-card {
  position: relative;
  min-height: 240px;
  border: 1px solid rgba(20, 32, 48, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(247, 250, 252, .88));
  box-shadow: 0 18px 48px rgba(20, 32, 48, .10);
  overflow: hidden;
  padding: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(260px 130px at 18% 0%, rgba(36, 166, 107, .14), transparent 70%),
    radial-gradient(220px 130px at 100% 10%, rgba(75, 183, 199, .12), transparent 68%);
  opacity: .9;
  pointer-events: none;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 100, 63, .24);
  box-shadow: 0 24px 62px rgba(20, 32, 48, .14);
}

.video-frame {
  position: relative;
  min-height: 148px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    radial-gradient(260px 160px at 30% 16%, rgba(36, 166, 107, .32), transparent 70%),
    linear-gradient(135deg, #07101c, #12243a);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .10);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding: 18px;
  overflow: hidden;
}

.video-card--primary .video-frame {
  min-height: 190px;
  background:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    radial-gradient(330px 180px at 24% 20%, rgba(36, 166, 107, .36), transparent 70%),
    radial-gradient(260px 160px at 84% 80%, rgba(185, 133, 53, .22), transparent 70%),
    linear-gradient(135deg, #07101c, #12243a);
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(189, 249, 215, .22);
  border-radius: 50%;
  animation: orbitBreathe 7s ease-in-out infinite;
}

.video-play {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #07101c;
  background: #bdf9d7;
  box-shadow: 0 18px 38px rgba(36, 166, 107, .26);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: transform .2s ease, background .2s ease;
}

.video-card:hover .video-play {
  transform: scale(1.08);
  background: #fff;
}

.video-play svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.video-frame div {
  position: relative;
  z-index: 1;
  min-width: 0;
  color: #fff;
  text-align: right;
}

.video-frame small {
  display: block;
  color: #e9bd78;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.video-frame strong {
  display: block;
  margin-top: 4px;
  font-family: var(--commercial-font);
  font-size: 19px;
  line-height: 1.15;
}

.video-card p {
  position: relative;
  z-index: 1;
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
  font-weight: 700;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 22px;
}

.image-modal.is-open {
  display: grid;
  place-items: center;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 13, .82);
  backdrop-filter: blur(12px);
}

.image-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  max-height: calc(100vh - 44px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: #07101c;
  box-shadow: 0 36px 110px rgba(0, 0, 0, .56);
  overflow: hidden;
}

.image-modal-bar {
  min-height: 58px;
  padding: 10px 12px 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 17, 31, .94);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.image-modal-bar div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.image-modal-bar span {
  color: #9ee7c0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.image-modal-bar strong {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.image-modal-panel img {
  width: 100%;
  max-height: calc(100vh - 104px);
  object-fit: contain;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    #08111f;
  background-size: 42px 42px;
}

body.modal-open {
  overflow: hidden;
}

.process-section {
  background:
    radial-gradient(620px 280px at 0% 5%, rgba(75, 183, 199, .10), transparent 72%),
    linear-gradient(180deg, #f6f9fc, #fff);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  min-height: 150px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-item strong {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.timeline-item h3 {
  margin-top: 0;
}

.contact-section {
  background:
    radial-gradient(760px 340px at 50% 0%, rgba(36, 166, 107, .18), transparent 72%),
    linear-gradient(145deg, var(--dark-2), #08111f);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 330px;
}

.contact-copy {
  max-width: 760px;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 34px max(16px, calc((100vw - 1200px) / 2)) 22px;
  background:
    linear-gradient(180deg, #08111f 0%, #07101c 100%);
  color: rgba(255, 255, 255, .74);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.footer-brand-block {
  max-width: 390px;
}

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

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .20));
}

.footer-brand span {
  display: grid;
  line-height: 1.08;
}

.footer-brand strong {
  color: #fff;
  font-family: var(--commercial-font);
  font-size: 18px;
  font-weight: 900;
}

.footer-brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-brand-block p {
  margin: 14px 0 0;
  max-width: 42ch;
  color: rgba(226, 235, 247, .56);
  font-size: 14px;
  line-height: 1.62;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}

.footer-nav div {
  min-height: 0;
  padding: 0;
  border-top: 0;
}

.footer-nav h2 {
  margin: 0 0 9px;
  color: rgba(233, 189, 120, .70);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-nav a {
  min-height: 30px;
  padding: 5px 0;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  transition: color .18s ease, transform .18s ease;
}

.footer-nav a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  opacity: .18;
  transform: rotate(45deg);
  transition: opacity .18s ease, transform .18s ease;
}

.footer-nav a:hover {
  color: rgba(189, 249, 215, .90);
  transform: translateX(3px);
}

.footer-nav a:hover::after {
  opacity: .9;
  transform: translateX(2px) rotate(45deg);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .075);
  color: rgba(255, 255, 255, .38);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  font-weight: 800;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.whatsapp-float,
.whatsapp-chat {
  pointer-events: auto;
}

.whatsapp-float {
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #128c4a, #20c36b);
  box-shadow: 0 18px 50px rgba(18, 140, 74, .32);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-chat {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(372px, calc(100vw - 24px));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: #f0f2ed;
  box-shadow: 0 28px 90px rgba(3, 7, 13, .32);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.96);
  transform-origin: bottom right;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.whatsapp-widget.is-open .whatsapp-chat {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-widget.is-open .whatsapp-float {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.94);
}

.whatsapp-chat__bar {
  min-height: 72px;
  padding: 12px 12px;
  color: #fff;
  background: linear-gradient(135deg, #075e54, #128c4a);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.whatsapp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: grid;
  place-items: center;
}

.whatsapp-avatar svg {
  width: 20px;
  height: 20px;
}

.whatsapp-chat__bar strong,
.whatsapp-chat__bar span {
  display: block;
}

.whatsapp-chat__bar strong {
  font-size: 15px;
  font-weight: 900;
}

.whatsapp-chat__bar span {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}

.whatsapp-chat__bar button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
}

.whatsapp-chat__bar button svg {
  width: 18px;
  height: 18px;
}

.whatsapp-chat__body {
  position: relative;
  min-height: 250px;
  padding: 18px 14px;
  background:
    linear-gradient(135deg, rgba(7, 94, 84, .04) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(225deg, rgba(7, 94, 84, .04) 25%, transparent 25%) 0 0 / 28px 28px,
    #e8eee7;
  display: grid;
  align-content: start;
  gap: 9px;
}

.wa-bubble {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 8px;
  color: #142033;
  background: #fff;
  box-shadow: 0 3px 12px rgba(20, 32, 51, .08);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.wa-bubble--in {
  border-top-left-radius: 2px;
}

.wa-quick {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wa-quick button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(18, 140, 74, .18);
  border-radius: 999px;
  color: #075e54;
  background: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 900;
}

.wa-quick button:hover {
  background: #fff;
}

.whatsapp-compose {
  min-height: 62px;
  padding: 10px;
  background: #f7f8f5;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
}

.whatsapp-compose input {
  min-width: 0;
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(20, 32, 48, .10);
  border-radius: 999px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
}

.whatsapp-compose input:focus {
  border-color: rgba(18, 140, 74, .38);
}

.whatsapp-compose button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: #128c4a;
  display: grid;
  place-items: center;
}

.whatsapp-compose button svg {
  width: 18px;
  height: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s ease var(--reveal-delay, 0ms);
}

.reveal.is-visible,
.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero .hero-product.reveal {
  transform: translateY(var(--parallax-y));
}

@keyframes buttonSheen {
  0%,
  68% {
    transform: translateX(-120%);
  }
  84%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes geoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(18deg);
  }
  50% {
    transform: translateY(-18px) rotate(28deg);
  }
}

@keyframes geoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: .35;
  }
  50% {
    transform: scale(1.08);
    opacity: .75;
  }
}

@keyframes geoSlide {
  0%,
  100% {
    transform: translateX(0);
    opacity: .25;
  }
  50% {
    transform: translateX(46px);
    opacity: .72;
  }
}

@keyframes geoSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tailoredShapeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(18px, -18px, 0) rotate(9deg);
  }
}

@keyframes heroParticleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .28;
  }
  42% {
    opacity: .78;
  }
  50% {
    transform: translate3d(18px, -34px, 0) scale(1.24);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, -14px, 22px) rotate(1.5deg);
  }
}

@keyframes haloSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitBreathe {
  0%,
  100% {
    opacity: .32;
    transform: rotate(18deg) scale(.98);
  }
  50% {
    opacity: .72;
    transform: rotate(24deg) scale(1.05);
  }
}

@keyframes badgeLayerFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  33% {
    transform: translate3d(8px, -10px, 18px);
  }
  66% {
    transform: translate3d(-8px, 7px, -10px);
  }
}

@keyframes galleryParticle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .24;
  }
  38% {
    opacity: .72;
  }
  50% {
    transform: translate3d(18px, -26px, 0) scale(1.18);
  }
}

@keyframes bridgeArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    height: auto;
    padding: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-product {
    min-height: 440px;
  }

  .tailored-copy {
    padding-top: 0;
  }

  .product-orbit {
    margin: 8px auto 0;
  }

  .hero-inner,
  .split-section,
  .helpdesk-grid,
  .product-story-layout,
  .screen-gallery,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .sticky-heading,
  .helpdesk-copy,
  .product-story-stage {
    position: relative;
    top: auto;
  }

  .product-story-section {
    min-height: auto;
    padding: 96px 0;
  }

  .product-story-section .section-inner {
    position: relative;
    min-height: 0;
    padding: 0;
  }

  .product-story-copy {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .product-story-step {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .web-email-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

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

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

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

  .gallery-stage {
    min-height: 600px;
  }

  .story-image-wrap {
    height: 520px;
  }

  .gallery-image-wrap {
    height: 470px;
  }

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

  .video-card--primary {
    grid-column: 1 / -1;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --max: min(1280px, calc(100% - 24px));
  }

  .site-header {
    inset: 10px 10px auto;
    gap: 10px;
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    justify-self: end;
  }

  .brand small,
  .header-link,
  .header-actions .button {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 148px;
  }

  .hero h1 {
    max-width: min(100%, 360px);
    font-size: clamp(31px, 9.4vw, 42px);
    line-height: 1.08;
  }

  .hero-text {
    max-width: min(100%, 360px);
    font-size: 15px;
  }

  .hero-actions,
  .helpdesk-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions .button,
  .helpdesk-actions .button,
  .contact-actions .button {
    width: 100%;
  }

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

  .product-bridge em {
    display: none;
  }

  .hero-product {
    min-height: auto;
    margin-top: 10px;
  }

  .product-orbit {
    width: 100%;
    min-height: auto;
    display: grid;
    gap: 10px;
    place-items: stretch;
  }

  .product-orbit::before,
  .product-orbit::after,
  .orbit-line {
    display: none;
  }

  .logo-float {
    width: 162px;
    min-height: 162px;
    justify-self: center;
    margin-bottom: 6px;
    border-radius: 20px;
  }

  .logo-float img {
    width: 68px;
    height: 68px;
  }

  .product-badge,
  .product-badge--main,
  .product-badge--workflow,
  .product-badge--data,
  .product-badge--agenda,
  .product-badge--test,
  .product-badge--api {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: none;
    min-height: 54px;
    animation: none;
    transform: none;
  }

  .hero-metrics,
  .tailored-section .service-stack,
  .feature-grid,
  .client-domain-grid,
  .gallery-tabs {
    grid-template-columns: 1fr;
  }

  .client-domain {
    min-height: 92px;
    padding: 15px;
  }

  .client-domain strong {
    font-size: 15px;
  }

  .web-email-tags {
    display: grid;
  }

  .web-email-tags span {
    width: 100%;
  }

  .tailored-panel {
    padding: 14px;
  }

  .tailored-panel__top,
  .tailored-flow {
    grid-template-columns: 1fr;
  }

  .tailored-panel__top {
    display: grid;
  }

  .tailored-flow::before {
    left: 23px;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--brand-2), var(--cyan), var(--gold));
  }

  .tailored-flow div {
    min-height: 82px;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    align-items: center;
  }

  .tailored-flow div strong {
    grid-column: 2;
  }

  .tailored-section .service-card,
  .tailored-section .service-card:nth-child(1),
  .tailored-section .service-card:nth-child(4) {
    min-height: 0;
    margin-top: 0;
    transform: none;
  }

  .tailored-section .service-card:hover,
  .tailored-section .service-card:focus-visible,
  .tailored-section .service-card:nth-child(1):hover,
  .tailored-section .service-card:nth-child(1):focus-visible,
  .tailored-section .service-card:nth-child(4):hover,
  .tailored-section .service-card:nth-child(4):focus-visible {
    transform: translateY(-3px);
  }

  .gallery-heading {
    grid-template-columns: 1fr;
  }

  .product-story-heading {
    margin-bottom: 24px;
  }

  .story-counter {
    width: 100%;
    justify-content: flex-start;
  }

  .product-story-step {
    min-height: auto;
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .story-step-num {
    font-size: 32px;
  }

  .story-image-wrap {
    min-height: 280px;
    height: 360px;
    padding: 10px;
  }

  .story-browser-bar {
    grid-template-columns: auto 1fr;
  }

  .story-browser-bar .gallery-tools {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .story-stage-caption {
    padding: 15px 15px 4px;
  }

  .story-variant-controls {
    padding: 14px 15px 16px;
    grid-template-columns: 1fr;
  }

  .gallery-kpi-grid,
  .video-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-kpis {
    min-height: 108px;
  }

  .metric-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-card:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .gallery-stage {
    min-height: 0;
  }

  .gallery-toolbar {
    grid-template-columns: auto 1fr;
  }

  .gallery-tools {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .gallery-tools button,
  .gallery-tools a {
    width: 100%;
  }

  .gallery-mode-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-image-wrap {
    height: min(420px, 72vw);
    min-height: 280px;
    padding: 12px;
  }

  .gallery-image-wrap::before {
    inset: 12px;
  }

  .gallery-caption {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: 0 12px 12px;
    box-shadow: none;
  }

  .gallery-tabs button {
    min-height: 66px;
  }

  .video-card,
  .video-card--primary {
    min-height: 0;
  }

  .video-frame,
  .video-card--primary .video-frame {
    min-height: 152px;
  }

  .video-frame {
    align-items: flex-end;
  }

  .image-modal {
    padding: 10px;
  }

  .image-modal-panel {
    max-height: calc(100vh - 20px);
  }

  .image-modal-panel img {
    max-height: calc(100vh - 86px);
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 52px;
    padding-bottom: 96px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-nav div {
    min-height: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-widget {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-float {
    width: 56px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-chat {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 28px);
  }

  .whatsapp-chat__body {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Product timeline carousel */
.product-story-section {
  min-height: 0;
  padding: 96px 0;
}

.product-story-section .section-inner {
  position: relative;
  top: auto;
  min-height: 0;
  padding: 0;
  display: block;
  overflow: visible;
}

.product-story-heading {
  margin-bottom: 30px;
}

.product-story-heading h2 {
  max-width: 900px;
}

.product-story-shell {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 14px;
  align-items: center;
}

.product-story-layout {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
}

.story-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(20, 100, 63, .18);
  border-radius: 50%;
  color: var(--brand);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 46px rgba(20, 32, 48, .10);
  display: grid;
  place-items: center;
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.story-arrow svg {
  width: 24px;
  height: 24px;
}

.story-arrow:hover {
  color: #fff;
  border-color: rgba(20, 100, 63, .28);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 22px 58px rgba(20, 100, 63, .18);
  transform: translateY(-2px);
}

.product-story-copy {
  position: relative;
  min-height: 430px;
}

.product-story-step {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(.985);
}

.product-story-step.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.story-browser {
  min-height: 560px;
  height: 100%;
}

.story-image-wrap {
  min-height: 330px;
}

.story-timeline {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.story-timeline button {
  min-height: 56px;
  padding: 9px 10px;
  border: 1px solid rgba(20, 32, 48, .10);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .78);
  display: grid;
  gap: 2px;
  text-align: left;
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.story-timeline button span {
  color: rgba(20, 32, 51, .32);
  font-family: var(--commercial-font);
  font-size: 18px;
  line-height: 1;
}

.story-timeline button:hover,
.story-timeline button.is-active {
  color: var(--ink);
  border-color: rgba(20, 100, 63, .26);
  background:
    radial-gradient(160px 80px at 100% 0%, rgba(36, 166, 107, .13), transparent 70%),
    #fff;
  box-shadow: 0 14px 34px rgba(20, 32, 48, .10);
  transform: translateY(-2px);
}

.story-timeline button.is-active span {
  color: var(--brand);
}

@media (max-width: 1080px) {
  .product-story-shell {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
  }

  .story-arrow {
    width: 46px;
    height: 46px;
  }

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

  .product-story-copy {
    min-height: 330px;
  }

  .story-browser {
    min-height: 0;
  }

  .story-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .product-story-section {
    padding: 64px 0;
  }

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

  .product-story-layout {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .story-arrow {
    grid-row: 2;
    width: 100%;
    border-radius: 8px;
  }

  .story-arrow--prev {
    grid-column: 1;
  }

  .story-arrow--next {
    grid-column: 2;
  }

  .product-story-copy {
    min-height: 390px;
  }

  .story-image-wrap {
    min-height: 260px;
  }

  .story-timeline {
    grid-template-columns: 1fr;
  }
}
