:root {
  --ink: #0b2f66;
  --ink-2: #244a7a;
  --paper: #f5faff;
  --paper-2: #e7f3ff;
  --white: #ffffff;
  --lime: #20d5f5;
  --lime-deep: #0ea5ff;
  --green: #1167f5;
  --orange: #ff8a5b;
  --line: rgba(17, 103, 245, 0.15);
  --muted: #607a9c;
  --shadow: 0 28px 80px rgba(17, 103, 245, 0.14);
  --font-display: "Manrope", "Arial", sans-serif;
  --font-body: "DM Sans", "Arial", sans-serif;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--lime), var(--orange));
  box-shadow: 0 0 16px rgba(32, 213, 245, 0.65);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition:
    height 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.scrolled,
.site-header.menu-visible {
  height: 72px;
  border-bottom-color: var(--line);
  background: rgba(245, 250, 255, 0.9);
  box-shadow: 0 8px 32px rgba(17, 103, 245, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  display: block;
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid rgba(17, 103, 245, 0.14);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(17, 103, 245, 0.16);
  object-fit: cover;
  transition: transform 280ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 280ms ease;
}

.brand:hover .brand-logo {
  box-shadow: 0 14px 30px rgba(17, 103, 245, 0.24);
  transform: rotate(-6deg) scale(1.06);
}

.brand-name {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-name span {
  color: var(--green);
  margin-left: 1px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 200ms ease,
    transform 200ms ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.nav-cta span {
  font-size: 17px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 830px;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(32, 213, 245, 0.2), transparent 28%),
    radial-gradient(circle at 8% 34%, rgba(255, 138, 91, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 78%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 78%);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  top: var(--glow-y, 8%);
  right: var(--glow-x, 6%);
  border: 1px solid rgba(17, 103, 245, 0.12);
  border-radius: 50%;
  background: rgba(32, 213, 245, 0.22);
  filter: blur(90px);
  pointer-events: none;
  transition: top 1.2s ease-out, right 1.2s ease-out;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 60px;
}

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

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  display: inline-flex;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--green);
  border-radius: inherit;
  content: "";
  animation: status-pulse 2s ease-out infinite;
}

.hero h1 {
  max-width: 770px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6.7vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--green);
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: -1%;
  bottom: 5px;
  left: 0;
  height: 18%;
  background: var(--lime);
  content: "";
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.button::before {
  position: absolute;
  top: -55%;
  left: -48%;
  width: 25%;
  height: 210%;
  background: rgba(255, 255, 255, 0.38);
  content: "";
  pointer-events: none;
  transform: rotate(18deg);
  transition: left 520ms ease;
}

.button:hover::before {
  left: 125%;
}

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

.button span {
  font-size: 19px;
  transition: transform 220ms ease;
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 13px 28px rgba(17, 103, 245, 0.22);
}

.button-primary:hover {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 38px rgba(17, 103, 245, 0.28);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span {
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -3;
  width: 475px;
  height: 475px;
  border-radius: 42% 58% 62% 38% / 48% 36% 64% 52%;
  background: linear-gradient(145deg, #1167f5 8%, #20d5f5 72%, #b7f3ff);
  box-shadow: var(--shadow);
  content: "";
  transform: translate(calc(var(--pointer-x, 0) * 8px), calc(var(--pointer-y, 0) * 8px)) rotate(9deg);
  transition: transform 350ms ease-out;
}

.hero-visual::after {
  position: absolute;
  z-index: -2;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  content: "";
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px dashed rgba(17, 103, 245, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 430px;
  height: 430px;
  animation: orbit 30s linear infinite;
}

.orbit-two {
  width: 510px;
  height: 510px;
  border-color: rgba(255, 255, 255, 0.14);
  animation: orbit 42s linear infinite reverse;
}

.phone-shell {
  position: relative;
  width: 270px;
  height: 545px;
  padding: 8px;
  overflow: hidden;
  border: 2px solid #294941;
  border-radius: 42px;
  background: #071814;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transform: rotate(1.8deg);
  animation: phone-float 6s ease-in-out infinite;
}

.phone-shell::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  content: "";
  pointer-events: none;
}

.phone-top {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  width: 86px;
  height: 22px;
  background: #071814;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-top span {
  position: absolute;
  top: 8px;
  right: 13px;
  width: 6px;
  height: 6px;
  background: #203c35;
  border-radius: 50%;
}

.hero-video {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 60% 30%, rgba(212, 255, 114, 0.24), transparent 28%),
    linear-gradient(155deg, #1f7a5a, #071814);
  object-fit: cover;
}

.video-control {
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 20px;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(7, 24, 20, 0.72);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.video-control:hover {
  background: var(--green);
}

.float-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 253, 248, 0.9);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(7, 24, 20, 0.2);
  backdrop-filter: blur(14px);
}

.float-card span {
  display: flex;
  flex-direction: column;
}

.float-card b {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.float-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.float-card-order {
  top: 108px;
  left: -12px;
  animation: card-float 5.6s ease-in-out infinite;
}

.float-card-payment {
  right: -25px;
  bottom: 118px;
  animation: card-float 6.4s 1s ease-in-out infinite;
}

.float-icon {
  display: inline-flex !important;
  width: 33px;
  height: 33px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border-radius: 10px;
  font-size: 14px;
}

.payment-pulse {
  width: 9px;
  height: 9px;
  background: var(--lime-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(181, 237, 66, 0.18);
}

.visual-note {
  position: absolute;
  right: -12px;
  top: 62px;
  color: var(--white);
  transform: rotate(4deg);
}

.visual-note span {
  display: block;
  width: 28px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--lime);
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.visual-note p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 38px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 24px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.scroll-cue i::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--green);
  border-radius: 2px;
  content: "";
  transform: translateX(-50%);
  animation: scroll-drop 2s ease-in-out infinite;
}

.signal-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  border-block: 1px solid rgba(17, 103, 245, 0.32);
  background: linear-gradient(90deg, #86eaff, var(--lime), #b9f3ff);
  transform: rotate(-1deg) scale(1.02);
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.signal-track i {
  font-style: normal;
}

.section-kicker span {
  display: inline-flex;
  min-width: 36px;
  align-items: center;
  gap: 8px;
}

.section-kicker span::after {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-kicker.light {
  color: var(--lime);
}

.problem {
  padding-top: 155px;
}

.problem-heading,
.process-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  margin-bottom: 66px;
}

.problem-heading h2,
.section-intro h2,
.process-heading h2,
.pricing-copy h2,
.faq-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5.1vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.01;
}

.problem-heading p,
.section-intro > p,
.process-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
}

.problem-media {
  position: relative;
  min-height: 610px;
  padding: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--green), var(--lime));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.problem-media video {
  width: 100%;
  height: 100%;
  min-height: 586px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 35% 25%, rgba(32, 213, 245, 0.2), transparent 25%),
    #0b2f66;
  object-fit: cover;
}

.problem-media::after {
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  background: linear-gradient(to top, rgba(7, 24, 20, 0.8), transparent 45%);
  content: "";
  pointer-events: none;
}

.problem-video-control {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 30px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(11, 47, 102, 0.2);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 200ms ease, background-color 200ms ease;
}

.problem-video-control:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.problem-video-control span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.problem-video-control b {
  font-size: 11px;
  font-weight: 800;
}

.media-caption {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 35px;
  left: 38px;
  color: var(--white);
}

.media-caption span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.media-caption p {
  max-width: 260px;
  margin: 7px 0 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.before-after {
  position: relative;
  display: grid;
  min-height: 610px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
}

.compare-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 42px;
}

.compare-before {
  background: linear-gradient(145deg, #efebe1, #f9f7f1);
  border-right: 1px solid var(--line);
}

.compare-after {
  background:
    radial-gradient(circle at 100% 0, rgba(212, 255, 114, 0.35), transparent 45%),
    var(--white);
}

.compare-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 35px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-after .compare-label {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.compare-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-column li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  line-height: 1.5;
}

.compare-column li:last-child {
  border-bottom: 0;
}

.compare-column i {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  color: #876b60;
  background: #eadfd8;
  border-radius: 50%;
  font-style: normal;
  font-weight: 800;
}

.compare-after i {
  color: var(--white);
  background: var(--green);
}

.compare-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--white);
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 21px;
  transform: translate(-50%, -50%);
}

.features {
  background: var(--white);
}

.section-intro {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.48fr;
  gap: 90px;
  margin-bottom: 70px;
}

.section-intro > p {
  max-width: 460px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-lg);
  transition:
    transform 350ms cubic-bezier(0.2, 0.75, 0.3, 1),
    box-shadow 350ms ease,
    border-color 350ms ease;
}

.feature-card:hover {
  border-color: rgba(31, 122, 90, 0.34);
  box-shadow: 0 24px 58px rgba(16, 40, 36, 0.12);
  transform: translateY(-7px);
}

.feature-number {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 27px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.feature-copy > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-copy h3 {
  max-width: 500px;
  margin: 9px 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.feature-copy p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-large {
  min-height: 680px;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 12%, rgba(32, 213, 245, 0.36), transparent 33%),
    linear-gradient(145deg, #e5f3ff, #f8fcff 70%);
}

.feature-large .feature-number,
.feature-large .feature-copy > span {
  color: var(--lime);
}

.feature-large .feature-copy p {
  color: var(--muted);
}

.mini-store {
  width: 88%;
  margin: 22px auto 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #f5f1e5;
  border-radius: 18px;
  box-shadow: 0 32px 55px rgba(17, 103, 245, 0.2);
  transform: perspective(1000px) rotateX(3deg) rotateY(-5deg) rotateZ(1deg);
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.feature-large:hover .mini-store {
  transform: perspective(1000px) rotateX(0) rotateY(0) rotateZ(0) translateY(-5px);
}

.mini-browser {
  display: flex;
  height: 33px;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  color: #697873;
  background: #fffdf8;
  border-bottom: 1px solid rgba(16, 40, 36, 0.1);
  font-size: 7px;
}

.mini-browser i {
  width: 5px;
  height: 5px;
  background: #d8d2c5;
  border-radius: 50%;
}

.mini-browser span {
  margin-left: 8px;
}

.mini-hero {
  display: grid;
  min-height: 245px;
  align-items: center;
  grid-template-columns: 1fr 0.8fr;
  padding: 25px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 50%, rgba(31, 122, 90, 0.2), transparent 32%),
    #e9dfc8;
}

.mini-hero div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mini-hero small {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-hero b {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.mini-hero em {
  margin-top: 20px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--ink);
  border-radius: 20px;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}

.mini-product {
  position: relative;
  display: block;
  width: 135px;
  height: 190px;
  justify-self: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 30%),
    var(--green);
  border-radius: 60px 60px 22px 22px;
  box-shadow: -18px 22px 35px rgba(16, 40, 36, 0.24);
  transform: rotate(10deg);
}

.mini-product::before {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 55px;
  height: 30px;
  background: var(--ink);
  border-radius: 10px 10px 4px 4px;
  content: "";
  transform: translateX(-50%);
}

.mini-product::after {
  position: absolute;
  top: 60px;
  right: 25px;
  left: 25px;
  height: 50px;
  border-block: 2px solid var(--lime);
  content: "";
}

.feature-payment {
  background:
    radial-gradient(circle at 100% 0, rgba(32, 213, 245, 0.36), transparent 38%),
    var(--paper);
}

.payment-demo {
  width: min(100%, 330px);
  margin: 55px auto 60px;
  padding: 23px;
  border: 1px solid rgba(16, 40, 36, 0.1);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 26px 45px rgba(16, 40, 36, 0.12);
  transform: rotate(2deg);
  transition: transform 350ms ease;
}

.feature-payment:hover .payment-demo {
  transform: rotate(0) translateY(-5px);
}

.pay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.pay-row b {
  color: var(--ink);
  font-size: 16px;
}

.pay-option {
  display: grid;
  align-items: center;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  padding: 14px;
  margin: 16px 0;
  border: 1px solid var(--green);
  background: #edf8ff;
  border-radius: 12px;
}

.pay-option > i {
  width: 25px;
  height: 25px;
  background: #16a9e8;
  border-radius: 8px;
}

.pay-option span {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 700;
}

.pay-option small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.pay-option b {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 9px;
}

.pay-button {
  padding: 12px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 11px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.feature-whatsapp {
  background:
    linear-gradient(150deg, rgba(17, 103, 245, 0.06), rgba(32, 213, 245, 0.18)),
    var(--paper);
}

.chat-demo {
  width: min(100%, 370px);
  margin: 45px auto 55px;
  padding: 20px;
  background: #e8f4ff;
  border-radius: 22px;
  box-shadow: 0 22px 40px rgba(16, 40, 36, 0.11);
  transform: rotate(-2deg);
}

.chat-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.chat-top i {
  width: 30px;
  height: 30px;
  background: var(--green);
  border-radius: 50%;
}

.chat-top span {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 700;
}

.chat-top small {
  color: var(--green);
  font-size: 8px;
}

.chat-demo p,
.chat-demo > div:last-child {
  max-width: 84%;
  padding: 9px 11px;
  margin: 14px 0 7px auto;
  background: var(--white);
  border-radius: 12px 12px 3px 12px;
  font-size: 9px;
  line-height: 1.4;
}

.chat-demo > div:last-child {
  margin: 7px auto 0 0;
  background: #d7f5bb;
  border-radius: 12px 12px 12px 3px;
}

.feature-support {
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, rgba(32, 213, 245, 0.38), transparent 34%),
    linear-gradient(145deg, #dceeff, #f4fbff);
}

.feature-support .feature-number,
.feature-support .feature-copy > span {
  color: var(--lime);
}

.feature-support .feature-copy p {
  color: var(--muted);
}

.support-visual {
  position: relative;
  width: min(100%, 370px);
  height: 210px;
  margin: 45px auto 30px;
}

.avatar {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 84px;
  height: 84px;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--green);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 800;
}

.avatar-one {
  top: 15px;
  left: 45px;
  color: var(--ink);
  background: var(--lime);
}

.avatar-two {
  top: 15px;
  right: 45px;
  color: var(--green);
  background: var(--white);
}

.support-line {
  position: absolute;
  top: 56px;
  right: 105px;
  left: 105px;
  border-top: 2px dashed rgba(255, 255, 255, 0.5);
}

.support-visual p {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.support-visual b {
  font-family: var(--font-display);
  font-size: 17px;
}

.support-visual small {
  color: var(--muted);
  font-size: 11px;
}

.work {
  color: var(--ink);
  background: linear-gradient(180deg, #eaf5ff 0%, #f9fcff 100%);
}

.work::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(17, 103, 245, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 103, 245, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.work .container {
  position: relative;
}

.work-intro h2 em {
  color: var(--green);
  font-style: normal;
}

.work-intro > p {
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px 24px;
}

.project-card {
  display: block;
  min-width: 0;
}

.project-theme {
  --scene: #ece3d4;
  --scene-deep: #cdbda5;
  --brand-ink: #241f1a;
  --accent: #a9784f;
  display: flex;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 85% 12%, color-mix(in srgb, var(--accent) 42%, transparent), transparent 30%),
    linear-gradient(145deg, var(--scene), var(--scene-deep));
}

.store-preview {
  width: 100%;
  overflow: hidden;
  color: var(--brand-ink);
  background: #fffdf8;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 17px;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateX(2deg) rotateY(-3deg) rotateZ(-0.6deg);
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.project-card:nth-child(even) .store-preview {
  transform: perspective(1000px) rotateX(2deg) rotateY(3deg) rotateZ(0.6deg);
}

.project-card:hover .store-preview {
  transform: perspective(1000px) rotateX(0) rotateY(0) rotateZ(0) scale(1.025);
}

.store-chrome {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  color: #87908c;
  background: #f4f3ef;
  border-bottom: 1px solid rgba(16, 40, 36, 0.1);
  font-size: 6px;
}

.store-chrome i {
  width: 5px;
  height: 5px;
  background: #d1cec6;
  border-radius: 50%;
}

.store-chrome i:first-child {
  background: #f18b72;
}

.store-chrome i:nth-child(2) {
  background: #e7bf5b;
}

.store-chrome i:nth-child(3) {
  background: #72bd83;
}

.store-chrome span {
  max-width: 60%;
  padding: 2px 14px;
  margin-left: 5px;
  overflow: hidden;
  background: #fff;
  border-radius: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-nav {
  display: flex;
  height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  color: var(--brand-ink);
  background: #fffdf8;
  border-bottom: 1px solid rgba(16, 40, 36, 0.08);
}

.store-nav b {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.store-nav span {
  overflow: hidden;
  color: color-mix(in srgb, var(--brand-ink) 62%, transparent);
  font-size: 6px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-hero {
  display: grid;
  min-height: 245px;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 34%),
    color-mix(in srgb, var(--scene) 72%, white);
}

.store-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-hero-copy small {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.store-hero-copy strong {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 31px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.store-hero-copy em {
  padding: 7px 11px;
  margin-top: 18px;
  color: #fff;
  background: var(--brand-ink);
  border-radius: 999px;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
}

.store-art {
  position: relative;
  width: 100%;
  height: 170px;
}

.store-art i {
  position: absolute;
  display: block;
  background: var(--accent);
  box-shadow: 0 18px 26px color-mix(in srgb, var(--brand-ink) 22%, transparent);
}

.store-art i:first-child {
  right: 35%;
  bottom: 15px;
  width: 42%;
  height: 110px;
  border-radius: 48px 48px 15px 15px;
  transform: rotate(-7deg);
}

.store-art i:nth-child(2) {
  right: 5%;
  bottom: 8px;
  width: 38%;
  height: 135px;
  background: var(--brand-ink);
  border-radius: 55px 55px 18px 18px;
  transform: rotate(8deg);
}

.store-art i:nth-child(3) {
  top: 16px;
  right: 12%;
  width: 52px;
  height: 52px;
  background: color-mix(in srgb, var(--accent) 52%, white);
  border-radius: 50%;
  box-shadow: none;
}

.theme-sillones {
  --scene: #e7d8c5;
  --scene-deep: #9a7658;
  --brand-ink: #3b281d;
  --accent: #b7825e;
}

.theme-sillones .store-art i:first-child {
  right: 9%;
  bottom: 36px;
  width: 82%;
  height: 70px;
  border-radius: 23px 23px 14px 14px;
  transform: none;
}

.theme-sillones .store-art i:nth-child(2) {
  right: 2%;
  bottom: 20px;
  width: 96%;
  height: 40px;
  border-radius: 13px;
  transform: none;
}

.theme-sillones .store-art i:nth-child(3) {
  top: 42px;
  right: 12%;
  width: 70%;
  height: 45px;
  background: #d1a782;
  border-radius: 18px;
}

.theme-yanibal {
  --scene: #ede7d9;
  --scene-deep: #ac9b74;
  --brand-ink: #2e3026;
  --accent: #8d743c;
}

.theme-yanibal .store-art i {
  border-radius: 10px;
}

.theme-yanibal .store-art i:first-child {
  height: 116px;
}

.theme-yanibal .store-art i:nth-child(2) {
  height: 92px;
  background: #d1b974;
}

.theme-alma {
  --scene: #e9ddd2;
  --scene-deep: #773743;
  --brand-ink: #35141b;
  --accent: #8e3042;
}

.theme-alma .store-art i:first-child,
.theme-alma .store-art i:nth-child(2) {
  bottom: 9px;
  width: 25%;
  height: 138px;
  border-radius: 18px 18px 9px 9px;
  transform: rotate(-4deg);
}

.theme-alma .store-art i:first-child::before,
.theme-alma .store-art i:nth-child(2)::before {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 16px;
  height: 38px;
  background: inherit;
  border-radius: 5px 5px 0 0;
  content: "";
  transform: translateX(-50%);
}

.theme-alma .store-art i:nth-child(2) {
  right: 17%;
  height: 116px;
  background: #e2c9a6;
  transform: rotate(6deg);
}

.theme-vera {
  --scene: #f1dfdd;
  --scene-deep: #dc655d;
  --brand-ink: #492023;
  --accent: #e65357;
}

.theme-vera .store-art i:first-child {
  height: 145px;
  background: #ff796c;
  border-radius: 70px 18px 28px 18px;
}

.theme-vera .store-art i:nth-child(2) {
  height: 120px;
  background: #59395e;
  border-radius: 24px 70px 18px 28px;
}

.theme-metalsuar {
  --scene: #272a29;
  --scene-deep: #080d0c;
  --brand-ink: #171a19;
  --accent: #eb6d32;
}

.theme-metalsuar .store-hero {
  color: #fff;
  background:
    radial-gradient(circle at 78% 65%, rgba(235, 109, 50, 0.4), transparent 29%),
    #151918;
}

.theme-metalsuar .store-hero-copy em {
  color: #171a19;
  background: #eb6d32;
}

.theme-metalsuar .store-art i:first-child {
  right: 8%;
  bottom: 26px;
  width: 78%;
  height: 70px;
  border: 9px solid #343a37;
  background: repeating-linear-gradient(90deg, #343a37 0 4px, transparent 4px 12px);
  border-radius: 4px;
  transform: perspective(200px) rotateX(50deg);
}

.theme-metalsuar .store-art i:nth-child(2) {
  right: 32%;
  bottom: 5px;
  width: 40%;
  height: 80px;
  background: radial-gradient(circle at 50% 80%, #ffbf4a, #eb6d32 55%, transparent 58%);
  border-radius: 50%;
  box-shadow: none;
  transform: none;
}

.theme-bruno {
  --scene: #dae9f4;
  --scene-deep: #327eb6;
  --brand-ink: #102e48;
  --accent: #168ad2;
}

.theme-bruno .store-art i:first-child {
  height: 110px;
  background: #f2f6f8;
  border: 7px solid #168ad2;
  border-radius: 20px;
}

.theme-bruno .store-art i:nth-child(2) {
  width: 42%;
  height: 142px;
  background: linear-gradient(160deg, #eef4f7, #92a6b3);
  border-radius: 45px 45px 16px 16px;
}

.theme-okb {
  --scene: #f1e6df;
  --scene-deep: #bf8e79;
  --brand-ink: #2b2020;
  --accent: #d77f78;
}

.theme-okb .store-art i:first-child {
  height: 145px;
  background: #d88482;
  clip-path: polygon(35% 0, 65% 0, 75% 26%, 100% 100%, 0 100%, 25% 26%);
  border-radius: 0;
}

.theme-okb .store-art i:nth-child(2) {
  height: 132px;
  background: #2b2020;
  clip-path: polygon(35% 0, 65% 0, 75% 26%, 100% 100%, 0 100%, 25% 26%);
  border-radius: 0;
}

.theme-simplex {
  --scene: #dbe8ea;
  --scene-deep: #3f7d83;
  --brand-ink: #0b2830;
  --accent: #26a3a7;
}

.theme-simplex .store-art i:first-child {
  right: 24%;
  bottom: 35px;
  width: 65%;
  height: 84px;
  border: 10px solid #fff;
  background: #253d43;
  border-radius: 28px;
  transform: rotate(-7deg);
}

.theme-simplex .store-art i:first-child::after {
  position: absolute;
  inset: 15px auto auto 50%;
  width: 35px;
  height: 35px;
  border: 6px solid #26a3a7;
  background: #0b1c22;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.theme-simplex .store-art i:nth-child(2) {
  right: 11%;
  bottom: 15px;
  width: 26%;
  height: 75px;
  background: #fff;
  border-radius: 12px;
}

.project-image {
  position: relative;
  aspect-ratio: 1.35;
  overflow: hidden;
  background: #d9edff;
  border-radius: 28px;
}

.project-card.project-wide .project-image {
  aspect-ratio: 1.55;
}

.project-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-card:nth-child(even) {
  margin-top: 84px;
}

.project-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 4px 0;
}

.project-info > div:last-child {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 9px;
}

.project-info span {
  color: rgba(11, 47, 102, 0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 3px 0 0;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.project-info small {
  display: block;
  max-width: 270px;
  margin-top: 2px;
  overflow: hidden;
  color: rgba(11, 47, 102, 0.48);
  font-size: 10px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-info > b {
  color: var(--green);
  font-size: 12px;
}

.project-info > div:last-child > b {
  color: var(--green);
  font-size: 12px;
}

.project-info em {
  color: rgba(11, 47, 102, 0.65);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.project-card:hover .project-info em {
  opacity: 1;
  transform: translateX(0);
}

.work-note {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  padding: 34px 0 0;
  margin-top: 75px;
  border-top: 1px solid var(--line);
}

.work-note > span {
  color: var(--green);
  font-size: 30px;
}

.work-note p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.work-note p b {
  color: var(--ink);
}

.work-note a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.process {
  background:
    radial-gradient(circle at 5% 20%, rgba(32, 213, 245, 0.2), transparent 25%),
    var(--paper);
}

.process-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-item {
  display: grid;
  align-items: center;
  grid-template-columns: 56px 76px 1fr auto;
  gap: 28px;
  padding: 34px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding 280ms ease, background-color 280ms ease;
}

.process-item:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(255, 253, 248, 0.64);
}

.process-index {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.process-icon {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  transition: transform 280ms ease, background-color 280ms ease;
}

.process-item:hover .process-icon {
  background: var(--lime);
  transform: rotate(-7deg);
}

.process-item h3 {
  margin: 0 0 5px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.process-item p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

.process-status {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing {
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 20%, rgba(32, 213, 245, 0.28), transparent 29%),
    linear-gradient(145deg, #e4f2ff, #f8fcff 62%, #e1fbff);
}

.pricing::after {
  position: absolute;
  right: -120px;
  bottom: -270px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(17, 103, 245, 0.16);
  border-radius: 50%;
  content: "";
}

.pricing-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.pricing-copy h2 {
  margin-bottom: 28px;
}

.pricing-copy > p {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
}

.price-meta {
  padding-top: 28px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.price-meta span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-meta p {
  margin: 5px 0 0;
  font-size: 16px;
}

.price-card {
  position: relative;
  padding: 44px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(17, 103, 245, 0.18);
  background: linear-gradient(145deg, #ffffff, #e5f7ff);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 80px rgba(17, 103, 245, 0.2);
}

.price-card::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 55px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.price-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.price-top i {
  padding: 6px 10px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.price small {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 800;
}

.price strong {
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 7vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.085em;
}

.price span {
  align-self: flex-end;
  margin: 0 0 12px 10px;
  font-size: 12px;
  font-weight: 800;
}

.price-sub {
  padding-bottom: 28px;
  margin: 6px 0 28px;
  border-bottom: 1px solid rgba(16, 40, 36, 0.18);
  font-size: 16px;
  font-weight: 600;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.included-list span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 10px;
}

.button-light {
  width: 100%;
  color: var(--white);
  background: var(--green);
}

.button-light:hover {
  color: var(--ink);
  background: var(--lime);
}

.price-footnote {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.service-facts {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(32, 213, 245, 0.2), transparent 28%),
    var(--paper);
}

.service-facts::before {
  position: absolute;
  top: 70px;
  right: -95px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(17, 103, 245, 0.13);
  border-radius: 50%;
  content: "";
}

.service-facts-wrap {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 90px;
}

.service-facts-copy h2 {
  max-width: 570px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1;
}

.service-facts-copy > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.service-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
}

.service-facts-grid > div {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(17, 103, 245, 0.08);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.service-facts-grid > div:hover {
  border-color: rgba(17, 103, 245, 0.32);
  box-shadow: 0 24px 54px rgba(17, 103, 245, 0.13);
  transform: translateY(-5px);
}

.service-facts-grid dt {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-facts-grid dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}

.service-facts-grid dd strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2em;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 26px;
}

.faq-heading > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 17px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 38px;
  gap: 20px;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 400;
  transition: transform 250ms ease, background-color 250ms ease;
}

.faq-list details[open] summary span {
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 58px 28px 0;
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.final-cta {
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #bfefff, #eefaff 58%, #ffd9cd);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(var(--ink) 0.8px, transparent 0.8px);
  background-size: 16px 16px;
  content: "";
}

.cta-shape {
  position: absolute;
  border: 1px solid rgba(16, 40, 36, 0.25);
  border-radius: 50%;
}

.shape-one {
  top: -180px;
  left: -130px;
  width: 440px;
  height: 440px;
}

.shape-two {
  right: -160px;
  bottom: -230px;
  width: 520px;
  height: 520px;
}

.final-inner {
  position: relative;
  display: flex;
  max-width: 940px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cta-label i {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.final-inner h2 {
  max-width: 950px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.6vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.final-inner > p {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: 19px;
}

.button-dark {
  min-height: 62px;
  padding: 0 30px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 35px rgba(17, 103, 245, 0.24);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
}

.final-inner > small {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
}

.site-footer {
  padding: 72px 0 24px;
  color: var(--ink);
  background: #e8f4ff;
}

.brand-footer .brand-name {
  color: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 65px;
}

.footer-main > div:first-child > p {
  max-width: 420px;
  margin: 20px 0 5px;
  color: var(--muted);
}

.footer-location {
  color: rgba(11, 47, 102, 0.52);
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-links > div {
  display: flex;
  min-width: 120px;
  flex-direction: column;
  gap: 9px;
}

.footer-links span {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: var(--ink-2);
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(11, 47, 102, 0.52);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--green);
}

.mobile-whatsapp {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 750ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 750ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

[data-reveal][data-delay="1"] {
  transition-delay: 90ms;
}

[data-reveal][data-delay="2"] {
  transition-delay: 180ms;
}

[data-reveal][data-delay="3"] {
  transition-delay: 270ms;
}

[data-reveal][data-delay="4"] {
  transition-delay: 360ms;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes status-pulse {
  0% {
    opacity: 0.65;
    transform: scale(0.6);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: rotate(1.8deg) translateY(0);
  }
  50% {
    transform: rotate(0.5deg) translateY(-10px);
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

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

@keyframes scroll-drop {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes mobile-hero-enter {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.975);
  }
  65% {
    opacity: 1;
    transform: translateY(-3px) scale(1.004);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobile-word-shift {
  0%,
  100% {
    background-position: 0% 50%;
    transform: translateY(0);
  }
  50% {
    background-position: 100% 50%;
    transform: translateY(-2px);
  }
}

@keyframes mobile-underline-flow {
  0%,
  100% {
    opacity: 0.68;
    transform: scaleX(0.96) skewX(-7deg);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.04) skewX(4deg);
  }
}

@keyframes mobile-cta-breathe {
  0%,
  100% {
    box-shadow: 0 13px 28px rgba(17, 103, 245, 0.2);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 18px 38px rgba(17, 103, 245, 0.32);
    transform: translateY(-3px) scale(1.008);
  }
}

@keyframes mobile-arrow-hop {
  0%,
  100% {
    transform: translate(0, 0);
  }
  45% {
    transform: translate(3px, -3px);
  }
}

@keyframes mobile-arrow-drop {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes mobile-proof-float {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

@keyframes mobile-orb-drift {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.72;
    transform: translate3d(-24px, 32px, 0) scale(1.12);
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr 410px;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.2rem);
  }

  .hero-visual {
    transform: scale(0.9);
  }

  .visual-note {
    display: none;
  }

  .problem-heading,
  .section-intro,
  .process-heading {
    gap: 50px;
  }

  .problem-grid {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .compare-column {
    padding: 42px 28px;
  }

  .pricing-wrap {
    gap: 55px;
  }

  .price-card {
    padding: 36px;
  }
}

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

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    gap: 4px;
    padding: 0 20px;
    overflow: hidden;
    visibility: hidden;
    background: rgba(245, 250, 255, 0.98);
    opacity: 0;
    box-shadow: 0 30px 50px rgba(16, 40, 36, 0.1);
    transition:
      max-height 350ms ease,
      opacity 250ms ease,
      padding 350ms ease,
      visibility 350ms ease;
    backdrop-filter: blur(18px);
  }

  .mobile-nav.open {
    max-height: 430px;
    padding-top: 18px;
    padding-bottom: 24px;
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav > a:not(.button) {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
  }

  .mobile-nav .button {
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
    padding: 135px 0 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

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

  .hero h1 {
    max-width: 730px;
    font-size: clamp(3.7rem, 11vw, 6rem);
  }

  .hero-lead {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 540px);
    margin: 0 auto;
    transform: none;
  }

  .scroll-cue {
    display: none;
  }

  .problem-heading,
  .section-intro,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .problem-media {
    min-height: 520px;
  }

  .problem-media video {
    min-height: 496px;
  }

  .before-after {
    min-height: 530px;
  }

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

  .feature-card {
    min-height: 570px;
  }

  .feature-large {
    min-height: 650px;
  }

  .work-grid {
    gap: 42px 18px;
  }

  .project-card:nth-child(even) {
    margin-top: 55px;
  }

  .pricing-wrap,
  .service-facts-wrap,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .pricing-copy {
    max-width: 700px;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.menu-visible {
    height: 66px;
  }

  .mobile-nav {
    top: 66px;
  }

  .hero {
    padding: 112px 0 70px;
  }

  .hero::after {
    position: absolute;
    z-index: 0;
    top: 84px;
    right: -82px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(17, 103, 245, 0.12);
    background: radial-gradient(circle, rgba(32, 213, 245, 0.2), rgba(17, 103, 245, 0.04) 62%, transparent 70%);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    animation: mobile-orb-drift 8s ease-in-out infinite;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .hero-copy [data-reveal].is-visible {
    animation: mobile-hero-enter 760ms cubic-bezier(0.2, 0.78, 0.25, 1) both;
  }

  .hero-copy [data-reveal][data-delay="1"].is-visible {
    animation-delay: 90ms;
  }

  .hero-copy [data-reveal][data-delay="2"].is-visible {
    animation-delay: 180ms;
  }

  .hero-copy [data-reveal][data-delay="3"].is-visible {
    animation-delay: 270ms;
  }

  .hero-copy [data-reveal][data-delay="4"].is-visible {
    animation-delay: 360ms;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.05rem, 14vw, 4.7rem);
    letter-spacing: -0.073em;
    line-height: 0.93;
  }

  .hero h1 span {
    color: transparent;
    background: linear-gradient(90deg, #1167f5 0%, #0ea5ff 48%, #1167f5 100%);
    background-clip: text;
    background-size: 200% 100%;
    -webkit-background-clip: text;
    animation: mobile-word-shift 4.2s ease-in-out infinite;
  }

  .hero h1 span::after {
    background: linear-gradient(90deg, rgba(32, 213, 245, 0.82), rgba(17, 103, 245, 0.18));
    transform-origin: left;
    animation: mobile-underline-flow 2.8s ease-in-out infinite;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions .button-primary {
    animation: mobile-cta-breathe 3.4s ease-in-out 1s infinite;
  }

  .hero-actions .button-primary span {
    animation: mobile-arrow-hop 1.8s ease-in-out infinite;
  }

  .hero-actions .button-ghost span {
    animation: mobile-arrow-drop 1.8s ease-in-out infinite;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .hero-proof li {
    width: fit-content;
    animation: mobile-proof-float 3.4s ease-in-out infinite;
  }

  .hero-proof li:nth-child(2) {
    animation-delay: 280ms;
  }

  .hero-proof li:nth-child(3) {
    animation-delay: 560ms;
  }

  .hero-proof li span {
    box-shadow: 0 5px 16px rgba(17, 103, 245, 0.22);
  }

  .hero-visual {
    min-height: 530px;
    transform: scale(0.88);
    transform-origin: center;
  }

  .hero-visual::before {
    width: 410px;
    height: 410px;
  }

  .orbit-two {
    width: 460px;
    height: 460px;
  }

  .orbit-one {
    width: 390px;
    height: 390px;
  }

  .float-card-order {
    left: 0;
  }

  .float-card-payment {
    right: -5px;
  }

  .signal-track {
    font-size: 13px;
  }

  .problem {
    padding-top: 100px;
  }

  .problem-heading,
  .section-intro,
  .process-heading {
    margin-bottom: 44px;
  }

  .problem-heading h2,
  .section-intro h2,
  .process-heading h2,
  .pricing-copy h2,
  .service-facts-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .problem-heading p,
  .section-intro > p,
  .process-heading > p,
  .pricing-copy > p,
  .service-facts-copy > p {
    font-size: 16px;
  }

  .problem-media {
    min-height: 475px;
    border-radius: 28px;
  }

  .problem-media video {
    min-height: 451px;
    border-radius: 20px;
  }

  .problem-media::after {
    border-radius: 20px;
  }

  .media-caption {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .before-after {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

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

  .compare-column {
    padding: 34px 25px;
  }

  .compare-label {
    margin-bottom: 20px;
  }

  .compare-column li {
    padding: 15px 0;
  }

  .compare-arrow {
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .feature-card,
  .feature-large {
    min-height: 560px;
    padding: 25px;
    border-radius: 28px;
  }

  .feature-large {
    min-height: 590px;
  }

  .mini-store {
    width: 100%;
    margin-top: 38px;
  }

  .mini-hero {
    min-height: 215px;
    padding: 18px;
  }

  .mini-hero b {
    font-size: 23px;
  }

  .mini-product {
    width: 105px;
    height: 155px;
  }

  .feature-copy h3 {
    font-size: 30px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .project-card:nth-child(even) {
    margin-top: 0;
  }

  .project-image,
  .project-card.project-wide .project-image {
    aspect-ratio: 1.25;
    border-radius: 22px;
  }

  .project-theme {
    padding: 14px;
  }

  .store-preview {
    border-radius: 12px;
  }

  .store-nav {
    height: 36px;
    padding: 0 13px;
  }

  .store-hero {
    min-height: 190px;
    padding: 18px;
  }

  .store-hero-copy strong {
    font-size: 21px;
  }

  .store-art {
    height: 135px;
  }

  .project-info small {
    max-width: 200px;
  }

  .project-info h3 {
    font-size: 21px;
  }

  .work-note {
    grid-template-columns: auto 1fr;
    margin-top: 55px;
  }

  .work-note a {
    grid-column: 1 / -1;
    width: fit-content;
    margin-left: 52px;
  }

  .process-item {
    grid-template-columns: 38px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .process-item:hover {
    padding-right: 10px;
    padding-left: 10px;
  }

  .process-icon {
    display: none;
  }

  .process-item h3 {
    font-size: 21px;
  }

  .process-item p {
    font-size: 14px;
  }

  .process-status {
    grid-column: 2;
    width: fit-content;
  }

  .price-card {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .price-top {
    margin-bottom: 28px;
  }

  .price strong {
    font-size: clamp(3.9rem, 18vw, 5.3rem);
  }

  .price span {
    margin-bottom: 8px;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .service-facts-wrap {
    gap: 42px;
  }

  .service-facts-grid {
    grid-template-columns: 1fr;
  }

  .service-facts-grid > div {
    min-height: 0;
    padding: 24px;
  }

  .faq-grid {
    gap: 42px;
  }

  .faq-list summary {
    grid-template-columns: 1fr 34px;
    padding: 23px 0;
    font-size: 17px;
  }

  .faq-list details p {
    padding-right: 40px;
    font-size: 14px;
  }

  .final-cta {
    padding: 92px 0 110px;
  }

  .final-inner h2 {
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .final-inner > p {
    font-size: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-links {
    gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 78px;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--ink);
    background: var(--lime);
    border: 1px solid rgba(16, 40, 36, 0.22);
    border-radius: 16px;
    box-shadow: 0 14px 38px rgba(16, 40, 36, 0.26);
    font-size: 14px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(85px);
    transition: opacity 300ms ease, transform 300ms ease;
  }

  .mobile-whatsapp.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-whatsapp > span {
    color: #24af64;
    font-size: 14px;
  }

  .mobile-whatsapp i {
    margin-left: auto;
    margin-right: 17px;
    font-size: 18px;
    font-style: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
