:root {
  --bg: #f8f8f6;
  --surface: #ffffff;
  --surface-soft: #f1f2ef;
  --ink: #101112;
  --ink-soft: #34373b;
  --muted: #73777d;
  --muted-light: #a2a7af;
  --line: #e1e4e7;
  --dark: #090a0b;
  --dark-soft: #141619;
  --green: #25d366;
  --agenda: #7965ff;
  --agenda-soft: #eeeaff;
  --sales: #ff7a45;
  --sales-soft: #fff0e8;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1160px;
  --shadow: 0 24px 70px rgba(16, 17, 18, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image: radial-gradient(rgba(16, 17, 18, 0.055) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(1280px, calc(100% - 2rem));
  transform: translateX(-50%);
}

.nav-shell {
  min-height: 66px;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(225, 228, 231, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 48px rgba(16, 17, 18, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 32px rgba(16, 17, 18, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 110px;
  min-width: 110px;
  height: 42px;
}

.brand img {
  width: 120px;
  max-width: none;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex: 1;
}

.main-nav a,
.product-pill {
  padding: 0.52rem 0.72rem;
  border-radius: 999px;
  color: #5d6269;
  font-size: 0.77rem;
  font-weight: 720;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(16, 17, 18, 0.06);
  color: var(--ink);
}

.product-pill {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.84rem 1.18rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  top: -120%;
  left: -35%;
  width: 28%;
  height: 340%;
  background: rgba(255, 255, 255, 0.28);
  content: "";
  transform: rotate(22deg);
  transition: left 520ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  left: 115%;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 24px rgba(16, 17, 18, 0.16);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #000;
  box-shadow: 0 16px 30px rgba(16, 17, 18, 0.22);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.button-whatsapp {
  background: var(--green);
  color: #07150b;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.2);
}

.header-cta {
  min-height: 44px;
  padding-inline: 1.05rem;
  white-space: nowrap;
}

.hero {
  position: relative;
  padding: clamp(8.5rem, 13vw, 11rem) 0 clamp(4.4rem, 8vw, 7rem);
}

.hero-home {
  min-height: min(920px, 100svh);
  display: grid;
  place-items: center;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(5px);
  opacity: 0.85;
  pointer-events: none;
}

.hero::before {
  top: 7%;
  left: -9%;
  width: clamp(280px, 42vw, 650px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(121, 101, 255, 0.16), rgba(121, 101, 255, 0) 68%);
  animation: drift 14s ease-in-out infinite alternate;
}

.hero::after {
  right: -10%;
  bottom: -16%;
  width: clamp(280px, 40vw, 600px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.15), rgba(255, 122, 69, 0) 68%);
  animation: drift 16s ease-in-out 1s infinite alternate-reverse;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--muted-light);
  font-size: 0.69rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow-accent::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 12%, transparent);
  content: "";
}

.agenda-accent {
  color: var(--agenda);
}

.sales-accent {
  color: var(--sales);
}

.hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(3.2rem, 7.5vw, 7.1rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.89;
}

.hero-product h1 {
  max-width: 970px;
  font-size: clamp(2.9rem, 6.2vw, 5.6rem);
  line-height: 0.94;
}

.hero h1 .soft {
  color: var(--muted-light);
}

.hero-lead {
  max-width: 650px;
  margin: 1.6rem auto 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.25rem);
  font-weight: 570;
  line-height: 1.55;
}

.hero-lead strong {
  color: var(--ink);
  font-weight: 760;
}

.hero-actions {
  margin-top: 1.85rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(16, 17, 18, 0.18);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: border-color 180ms ease, background 180ms ease;
}

.scroll-cue::after {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  content: "";
  transform: rotate(45deg) translate(-2px, -2px);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  border-color: rgba(16, 17, 18, 0.4);
  background: rgba(255, 255, 255, 0.7);
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--line);
}

section[id] {
  scroll-margin-top: 108px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.dark-section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-head p:not(.eyebrow),
.dark-section .section-copy,
.final-cta p {
  max-width: 650px;
  margin: 1.05rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 570;
  line-height: 1.55;
}

.section-head.centered p:not(.eyebrow),
.final-cta p {
  margin-inline: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  position: relative;
  min-height: 570px;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: #ced2d7;
  box-shadow: var(--shadow);
}

.product-card::before {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 330px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--card-glow);
  content: "";
  filter: blur(20px);
  opacity: 0.6;
  transition: transform 500ms ease;
}

.product-card:hover::before {
  transform: scale(1.2) translate(-12px, -12px);
}

.product-card-agenda {
  --card-glow: radial-gradient(circle, rgba(121, 101, 255, 0.34), transparent 66%);
}

.product-card-sales {
  --card-glow: radial-gradient(circle, rgba(255, 122, 69, 0.32), transparent 66%);
}

.product-card h3 {
  position: relative;
  max-width: 13ch;
  margin: 1rem 0 0;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.product-card > p {
  position: relative;
  max-width: 54ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 570;
  line-height: 1.55;
}

.chip-list {
  position: relative;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.chip-list li,
.industry-tag {
  padding: 0.52rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #555a61;
  font-size: 0.73rem;
  font-weight: 740;
}

.card-link {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: 2.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 780;
}

.card-link span {
  transition: transform 180ms ease;
}

.card-link:hover span {
  transform: translateX(5px);
}

.mini-window {
  position: absolute;
  right: -2%;
  bottom: 4.7rem;
  width: min(57%, 310px);
  min-width: 240px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 18, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 55px rgba(16, 17, 18, 0.14);
  transform: rotate(-3deg);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .mini-window {
  transform: rotate(0) translate(-10px, -8px);
}

.window-bar {
  height: 28px;
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--line);
}

.window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d6d9dd;
}

.calendar-preview {
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.55rem;
}

.calendar-hours {
  display: grid;
  align-content: space-around;
  color: var(--muted-light);
  font-size: 0.52rem;
  font-weight: 700;
}

.calendar-events {
  display: grid;
  gap: 0.4rem;
}

.calendar-event {
  padding: 0.55rem;
  border-radius: 9px;
  background: var(--agenda-soft);
  color: #5145ae;
  font-size: 0.58rem;
  font-weight: 750;
}

.calendar-event:nth-child(2) {
  margin-left: 22%;
  background: #e7f7ed;
  color: #247747;
}

.catalog-preview {
  padding: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.48rem;
}

.catalog-item {
  min-height: 76px;
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 10px;
  background: linear-gradient(145deg, #fff3e5, #ffd3bb);
  color: #71402c;
  font-size: 0.53rem;
  font-weight: 750;
}

.catalog-item:nth-child(2) {
  background: linear-gradient(145deg, #edf6df, #cae9a0);
  color: #3f6131;
}

.catalog-item:nth-child(3) {
  background: linear-gradient(145deg, #f7e9e8, #ecc1bf);
  color: #70413e;
}

.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.marquee-track {
  width: max-content;
  padding: 1rem 0;
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  color: #6e737a;
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-track span::after {
  width: 5px;
  height: 5px;
  margin-inline: 1.6rem;
  border-radius: 50%;
  background: var(--muted-light);
  content: "";
}

.final-cta {
  position: relative;
  padding: clamp(5.5rem, 10vw, 8.5rem) 0;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: -70%;
  left: 50%;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 101, 255, 0.22), transparent 64%);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  max-width: 780px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  color: #a9adb5;
}

.site-footer {
  padding: 3.2rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(120px, 0.55fr));
  gap: 2rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand img {
  width: 105px;
  max-width: none;
}

.footer-brand p {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 620;
  line-height: 1.5;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.footer-column strong {
  color: var(--muted-light);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a {
  color: #5d6269;
  font-size: 0.79rem;
  font-weight: 650;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  color: #b0b5bd;
  font-size: 0.68rem;
  font-weight: 790;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Product pages */
.industries-grid,
.steps-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.industry-card,
.step-card,
.pricing-card {
  position: relative;
  padding: 1.65rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.industry-card:hover,
.step-card:hover {
  border-color: #cfd3d8;
  box-shadow: 0 20px 50px rgba(16, 17, 18, 0.07);
  transform: translateY(-6px);
}

.industry-number,
.step-number {
  color: var(--muted-light);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.industry-card h3,
.step-card h3 {
  margin: 1rem 0 0;
  font-size: 1.45rem;
  font-weight: 660;
  letter-spacing: -0.025em;
  line-height: 1.07;
}

.industry-card p,
.step-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 560;
  line-height: 1.5;
}

.step-card {
  min-height: 300px;
}

.step-card.is-dark {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

.step-card.is-dark p {
  color: #c3c7ce;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 1rem;
}

.showcase-main,
.showcase-side-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 60px rgba(16, 17, 18, 0.07);
}

.showcase-main {
  min-height: 520px;
  padding: 1rem;
}

.showcase-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.showcase-side-card {
  min-height: 250px;
  padding: 1rem;
}

.mock-toolbar {
  height: 48px;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 730;
}

.mock-toolbar strong {
  color: var(--ink);
}

.mock-calendar {
  height: calc(100% - 48px);
  padding: 1rem;
  display: grid;
  grid-template-columns: 68px repeat(4, 1fr);
  gap: 0.45rem;
  background-image: linear-gradient(to bottom, transparent 49px, #eceef0 50px);
  background-size: 100% 50px;
}

.mock-time-column {
  display: grid;
  grid-template-rows: repeat(8, 50px);
  color: var(--muted-light);
  font-size: 0.62rem;
}

.mock-day {
  position: relative;
  border-left: 1px solid #eceef0;
}

.mock-booking {
  position: absolute;
  inset-inline: 0.3rem;
  top: var(--top);
  min-height: var(--height, 66px);
  padding: 0.58rem;
  border-radius: 11px;
  background: var(--agenda-soft);
  color: #5145ae;
  font-size: 0.64rem;
  font-weight: 760;
  line-height: 1.35;
  box-shadow: 0 8px 18px rgba(121, 101, 255, 0.1);
  animation: booking-pulse 5s ease-in-out infinite;
}

.mock-booking.green {
  background: #e5f7eb;
  color: #267348;
  animation-delay: 1.3s;
}

.mock-booking.orange {
  background: var(--sales-soft);
  color: #9a4e2d;
  animation-delay: 2.2s;
}

.booking-widget {
  height: 100%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #fff, #f4f1ff);
}

.booking-widget .avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #a99cff, #6d55f5);
  box-shadow: 0 10px 26px rgba(121, 101, 255, 0.25);
}

.booking-widget h3,
.order-widget h3 {
  margin: 1rem 0 0;
  font-size: 1.15rem;
}

.booking-widget p,
.order-widget p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.time-slots {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.time-slots span {
  padding: 0.5rem;
  border: 1px solid #ddd9f5;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.8);
  color: #5d529e;
  font-size: 0.63rem;
  font-weight: 730;
  text-align: center;
}

.profile-widget {
  height: 100%;
  padding: 1.2rem;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.profile-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.65rem;
  align-items: center;
}

.profile-row i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf0f2;
}

.profile-line {
  height: 7px;
  border-radius: 99px;
  background: #e7eaed;
}

.profile-line.short {
  width: 58%;
}

.mock-catalog {
  height: calc(100% - 48px);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  background: #faf9f7;
}

.mock-product {
  min-height: 180px;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.product-image {
  flex: 1;
  min-height: 100px;
  border-radius: 11px;
  background: linear-gradient(145deg, #ffe2c8, #f7b88c);
}

.mock-product:nth-child(2) .product-image,
.mock-product:nth-child(5) .product-image {
  background: linear-gradient(145deg, #d9eabd, #9ec56a);
}

.mock-product:nth-child(3) .product-image,
.mock-product:nth-child(4) .product-image {
  background: linear-gradient(145deg, #f3ceca, #d98c86);
}

.mock-product strong {
  margin-top: 0.65rem;
  font-size: 0.68rem;
}

.mock-product span {
  margin-top: 0.2rem;
  color: var(--sales);
  font-size: 0.62rem;
  font-weight: 780;
}

.cart-widget {
  height: 100%;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #fff, #fff4ee);
}

.cart-line {
  margin-top: 0.75rem;
  padding: 0.65rem 0;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 0.55rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
}

.cart-line i {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--sales-soft);
}

.cart-total {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 780;
}

.order-widget {
  height: 100%;
  padding: 1.1rem;
}

.order-statuses {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.order-status {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 0.65rem;
  font-weight: 730;
}

.order-status span {
  padding: 0.3rem 0.45rem;
  border-radius: 99px;
  background: #e7f7ed;
  color: #27784a;
  font-size: 0.55rem;
}

.dark-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.dark-section .eyebrow {
  color: #7f858d;
}

.dark-section h2 {
  color: #fff;
}

.comparison-grid {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.comparison-card {
  padding: 1.8rem;
  border: 1px solid #292c30;
  border-radius: var(--radius);
  background: var(--dark-soft);
}

.comparison-card > span {
  color: #858b93;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-card ul {
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 1.2rem;
  color: #c7cbd2;
  font-size: 0.94rem;
  font-weight: 560;
  line-height: 1.45;
}

.comparison-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5e636a;
  content: "";
}

.comparison-card.after li {
  color: #eff0f2;
}

.comparison-card.after li::before {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.measure-note {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border: 1px dashed #363a40;
  border-radius: 14px;
}

.measure-note strong {
  color: var(--green);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.measure-note p {
  margin: 0;
  color: #a9adb5;
  font-size: 0.86rem;
  line-height: 1.45;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 930px;
  margin-inline: auto;
}

.pricing-card {
  min-height: 610px;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
}

.pricing-card.recommended {
  border-color: rgba(16, 17, 18, 0.36);
  box-shadow: var(--shadow);
}

.recommendation {
  align-self: flex-start;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.pricing-card h3 {
  margin: 1rem 0 0;
  font-size: 2rem;
  font-weight: 660;
  letter-spacing: -0.035em;
}

.price {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  font-weight: 660;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
}

.pricing-card > p:not(.price) {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.feature-list {
  margin: 1.35rem 0 1.7rem;
  padding: 1.1rem 0 0;
  display: grid;
  gap: 0.72rem;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 620;
  line-height: 1.4;
}

.feature-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  color: var(--agenda);
  content: "✓";
  font-weight: 820;
}

body[data-page="sales"] .feature-list li::before {
  color: var(--sales);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.switch-product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid #292c30;
  border-radius: 999px;
  background: #141619;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 740;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 500ms; }

@keyframes drift {
  from { transform: translate3d(-2%, -2%, 0) scale(1); }
  to { transform: translate3d(9%, 7%, 0) scale(1.08); }
}

@keyframes scroll-cue {
  0%, 100% { opacity: 0.35; transform: rotate(45deg) translate(-2px, -2px); }
  45% { opacity: 1; }
  70% { opacity: 0; transform: rotate(45deg) translate(4px, 4px); }
}

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

@keyframes booking-pulse {
  0%, 85%, 100% { transform: translateY(0); box-shadow: 0 8px 18px rgba(121, 101, 255, 0.1); }
  92% { transform: translateY(-4px); box-shadow: 0 13px 25px rgba(121, 101, 255, 0.18); }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 1rem);
    top: 8px;
  }

  .nav-shell {
    min-height: 60px;
    padding: 0.45rem 0.5rem 0.45rem 0.85rem;
  }

  .brand {
    width: 90px;
    min-width: 90px;
  }

  .brand img {
    width: 99px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    padding: 0.75rem;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a,
  .product-pill {
    padding: 0.78rem 0.9rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .header-cta {
    display: none;
  }

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

  .product-card {
    min-height: 540px;
  }

  .industries-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 220px;
  }

  .showcase-main {
    min-height: 480px;
  }

  .showcase-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .hero-home {
    min-height: 760px;
  }

  .hero {
    padding-top: 7.8rem;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.5rem);
    line-height: 0.9;
  }

  .hero-product h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 0.94;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .scroll-cue {
    display: none;
  }

  .section {
    padding-block: 4.5rem;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .product-card {
    min-height: 590px;
    border-radius: 26px;
  }

  .product-card h3 {
    font-size: 2.15rem;
  }

  .mini-window {
    right: -4%;
    bottom: 5.2rem;
    width: 74%;
  }

  .card-link {
    bottom: 1.7rem;
    left: 1.5rem;
  }

  .showcase-main {
    min-height: 380px;
  }

  .mock-calendar {
    grid-template-columns: 48px repeat(3, 1fr);
    padding: 0.6rem;
  }

  .mock-day:nth-child(5) {
    display: none;
  }

  .mock-booking {
    padding: 0.35rem;
    font-size: 0.52rem;
  }

  .showcase-side {
    grid-template-columns: 1fr;
  }

  .showcase-side-card {
    min-height: 230px;
  }

  .mock-catalog {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
  }

  .mock-product:nth-child(n + 5) {
    display: none;
  }

  .mock-product {
    min-height: 130px;
  }

  .comparison-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-card .button {
    margin-top: 1rem;
  }

  .measure-note {
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

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

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
