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

:root {
  --bg: #08050d;
  --bg-soft: #0d0814;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: #120c1b;
  --surface-light: #f7f5fa;
  --ink: #fbf9ff;
  --muted: #b6adbf;
  --muted-dark: #5f5867;
  --line: rgba(255, 255, 255, 0.11);
  --line-light: rgba(23, 13, 32, 0.13);
  --blue: #3437db;
  --violet: #7515e8;
  --magenta: #e500ce;
  --cyan: #20c9bd;
  --success: #8ef1e7;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --max: 1320px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% -10%, rgba(117, 21, 232, 0.18), transparent 28rem),
    radial-gradient(circle at 5% 18%, rgba(52, 55, 219, 0.13), transparent 25rem),
    var(--bg);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.weddings {
  background:
    radial-gradient(circle at 78% -8%, rgba(229, 0, 206, 0.18), transparent 30rem),
    radial-gradient(circle at 4% 22%, rgba(117, 21, 232, 0.16), transparent 28rem),
    var(--bg);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(32, 201, 189, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(8, 5, 13, 0.73);
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 5, 13, 0.92);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 184px;
  height: auto;
}

.brand-weddings {
  align-items: flex-end;
  gap: 12px;
}

.brand-weddings img {
  width: 156px;
}

.brand-weddings span {
  padding: 0 0 4px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: #f2d8ef;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a:not(.button) {
  position: relative;
  color: #d4ced9;
  font-size: 0.83rem;
  font-weight: 700;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-pending,
.button-pending:hover {
  cursor: default;
  user-select: none;
  transform: none;
}

.button-primary {
  background: radial-gradient(circle at center, #7623e2 0%, #6b1bd7 68%, #6115c8 100%);
  box-shadow:
    0 12px 30px rgba(107, 27, 215, 0.36),
    0 0 22px rgba(229, 0, 206, 0.2);
  color: #fff;
}

.button-primary:hover {
  box-shadow:
    0 16px 40px rgba(107, 27, 215, 0.44),
    0 0 30px rgba(229, 0, 206, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.2),
    0 0 18px rgba(117, 21, 232, 0.18);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 13px 32px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(229, 0, 206, 0.2);
}

.section-light .button-secondary {
  background: #fff;
  box-shadow:
    0 10px 26px rgba(30, 18, 40, 0.1),
    0 0 20px rgba(117, 21, 232, 0.16);
  color: #17101f;
}

.section-light .button-secondary:hover {
  background: #fff;
  box-shadow:
    0 13px 32px rgba(30, 18, 40, 0.14),
    0 0 27px rgba(117, 21, 232, 0.22);
  color: #17101f;
}

.button-light {
  background: #fff;
  color: #120c1b;
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(229, 0, 206, 0.16);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.76rem;
}

.arrow {
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.button:hover .arrow {
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: center;
  padding: 46px 0 56px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 42rem;
  height: 42rem;
  top: 3%;
  right: -22rem;
  border-radius: 50%;
  background: rgba(229, 0, 206, 0.16);
  filter: blur(130px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(36px, 4vw, 60px);
}

.hero-content {
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #c8b2dc;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}

.hero h1,
.section-title,
.closing-card h2,
.thanks-title {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 5vw, 4.85rem);
  line-height: 1.01;
}

.hero h1 em,
.section-title em {
  background: linear-gradient(90deg, #fff 3%, #d8c7ff 42%, #f2a4e9 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: #c8c0cf;
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.75;
}

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

.microcopy {
  margin: 17px 0 0;
  color: #827a8c;
  font-size: 0.76rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(8, 5, 13, 0.46)), linear-gradient(90deg, rgba(8, 5, 13, 0.25), transparent 35%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% center;
  transform: scale(1.04);
  transform-origin: center;
}

.weddings .hero-photo img {
  object-position: 72% center;
}

.hero-photo-general img {
  object-position: center;
  transform: scale(1.02);
}

.visual-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  width: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  background: rgba(14, 8, 22, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

.visual-card-label {
  margin: 0 0 14px;
  color: #a49aaa;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.channel-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #ddd7e3;
  font-size: 0.73rem;
  font-weight: 700;
}

.channel::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(32, 201, 189, 0.75);
}

.visual-card-result {
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 13px;
  background: linear-gradient(100deg, rgba(52, 55, 219, 0.18), rgba(229, 0, 206, 0.13));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(13, 8, 20, 0.82);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  color: #eae3ee;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.hero-badge span {
  color: var(--success);
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 142px) 0;
}

.section-tight {
  padding-block: clamp(72px, 8vw, 110px);
}

.section-light {
  background: var(--surface-light);
  color: #140d1c;
}

.section-light .eyebrow {
  color: #6b5b79;
}

.section-light .section-copy,
.section-light .card p,
.section-light .muted {
  color: var(--muted-dark);
}

.section-dark-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 18%, rgba(52, 55, 219, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 85%, rgba(229, 0, 206, 0.13), transparent 25rem),
    #0c0712;
}

.section-head {
  max-width: 820px;
  margin-bottom: 46px;
}

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

.section-head.center .eyebrow {
  justify-content: center;
}

.section-title {
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 1.02;
}

.section-copy {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section-head.center .section-copy {
  margin-inline: auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.section-light .card {
  border-color: var(--line-light);
  background: #fff;
  box-shadow: 0 14px 40px rgba(28, 15, 39, 0.05);
}

.card-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.card-number strong {
  font-family: "Oswald", sans-serif;
  color: rgba(255, 255, 255, 0.26);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.section-light .card-number strong {
  color: rgba(36, 17, 51, 0.24);
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(52, 55, 219, 0.19), rgba(229, 0, 206, 0.13));
  color: #eec9f0;
  font-size: 1.05rem;
  font-weight: 800;
}

.mini-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-icon.brand-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(24, 18, 30, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(31, 22, 39, 0.09);
}

.mini-icon.brand-icon svg {
  width: 30px;
  height: 30px;
  overflow: visible;
  fill: initial;
  stroke: none;
}

.mini-icon.brand-icon--social svg {
  width: 34px;
  height: 28px;
}

.section-light .mini-icon {
  color: #6d1ac6;
}

.card h3 {
  margin: 0 0 11px;
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.card h4 {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.card p {
  margin: 0;
  color: #aaa1b3;
  font-size: 0.87rem;
  line-height: 1.72;
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 48px;
}

.journey::before,
.journey::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.journey::before {
  top: -1px;
  left: 18px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  box-shadow: 0 0 16px rgba(117, 21, 232, 0.45);
  opacity: 0;
}

.journey::after {
  top: 0;
  left: 18px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(32, 201, 189, 0.18),
    0 0 18px rgba(32, 201, 189, 0.9),
    0 0 30px rgba(229, 0, 206, 0.58);
  opacity: 0;
  transform: translate(-50%, -50%);
}

.journey.visible::before {
  animation: journey-line-fill 9s ease-in-out infinite;
}

.journey.visible::after {
  animation: journey-runner 9s ease-in-out infinite;
}

.journey-step {
  --journey-delay: 0.72s;
  position: relative;
  z-index: 1;
  padding: 25px 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0 0 16px 16px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.journey-step::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(229, 0, 206, 0.7);
}

.journey-step:nth-child(2) {
  --journey-delay: 1.62s;
}

.journey-step:nth-child(3) {
  --journey-delay: 2.97s;
}

.journey-step:nth-child(4) {
  --journey-delay: 4.32s;
}

.journey-step:nth-child(5) {
  --journey-delay: 5.67s;
}

.journey-step:nth-child(6) {
  --journey-delay: 7.38s;
}

.journey.visible .journey-step::before {
  animation: journey-node-pulse 9s ease-in-out var(--journey-delay) infinite;
}

.journey.visible .journey-step strong {
  animation: journey-label-pulse 9s ease-in-out var(--journey-delay) infinite;
}

.journey-step:hover {
  background: radial-gradient(circle at 18px 0, rgba(117, 21, 232, 0.17), transparent 72%);
  transform: translateY(-4px);
}

.journey-step:hover::before {
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(32, 201, 189, 0.9);
}

.journey-step span {
  display: block;
  margin-bottom: 12px;
  color: #7e7587;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.journey-step strong {
  display: block;
  font-size: 0.79rem;
  line-height: 1.4;
}

.journey-step small {
  display: block;
  margin-top: 6px;
  color: #8e8598;
  font-size: 0.68rem;
  line-height: 1.45;
}

@keyframes journey-line-fill {
  0%,
  6% {
    width: 0;
    opacity: 0;
  }
  9% {
    opacity: 1;
  }
  82%,
  92% {
    width: 83.333333%;
    opacity: 1;
  }
  98%,
  100% {
    width: 83.333333%;
    opacity: 0;
  }
}

@keyframes journey-runner {
  0%,
  6% {
    left: 18px;
    opacity: 0;
  }
  9% {
    left: 18px;
    opacity: 1;
  }
  18%,
  22% {
    left: calc(16.666667% + 18px);
  }
  33%,
  37% {
    left: calc(33.333333% + 18px);
  }
  48%,
  52% {
    left: calc(50% + 18px);
  }
  63%,
  67% {
    left: calc(66.666667% + 18px);
  }
  82%,
  92% {
    left: calc(83.333333% + 18px);
    opacity: 1;
  }
  98%,
  100% {
    left: calc(83.333333% + 18px);
    opacity: 0;
  }
}

@keyframes journey-node-pulse {
  0%,
  8% {
    background: var(--cyan);
    box-shadow:
      0 0 0 4px rgba(32, 201, 189, 0.16),
      0 0 24px rgba(32, 201, 189, 0.9);
    transform: scale(1.45);
  }
  15%,
  100% {
    background: var(--magenta);
    box-shadow: 0 0 18px rgba(229, 0, 206, 0.7);
    transform: scale(1);
  }
}

@keyframes journey-label-pulse {
  0%,
  9% {
    color: #fff;
    text-shadow: 0 0 18px rgba(32, 201, 189, 0.42);
  }
  17%,
  100% {
    color: #fff;
    text-shadow: none;
  }
}

@keyframes journey-line-fill-vertical {
  0%,
  6% {
    height: 0;
    opacity: 0;
  }
  9% {
    opacity: 1;
  }
  82%,
  92% {
    height: calc(100% - 46px);
    opacity: 1;
  }
  98%,
  100% {
    height: calc(100% - 46px);
    opacity: 0;
  }
}

@keyframes journey-runner-vertical {
  0%,
  6% {
    top: 23px;
    opacity: 0;
  }
  9% {
    top: 23px;
    opacity: 1;
  }
  82%,
  92% {
    top: calc(100% - 23px);
    opacity: 1;
  }
  98%,
  100% {
    top: calc(100% - 23px);
    opacity: 0;
  }
}

.insight {
  margin-top: 26px;
  padding: 25px 28px;
  border: 1px solid rgba(32, 201, 189, 0.18);
  border-radius: 18px;
  background: rgba(32, 201, 189, 0.055);
  color: #c6c0cc;
  font-size: 0.9rem;
}

.insight strong {
  color: #fff;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #4b4352;
  font-size: 0.9rem;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 50%;
  background: #15101d;
  color: #9cf3e8;
  font-size: 0.68rem;
}

.pipeline-card {
  padding: 25px;
  border: 1px solid rgba(31, 18, 43, 0.13);
  border-radius: 26px;
  background: #130d1b;
  box-shadow: 0 26px 70px rgba(32, 19, 44, 0.18);
  color: #fff;
}

.pipeline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.pipeline-top strong {
  font-size: 0.86rem;
}

.pipeline-top span {
  color: #8d8298;
  font-size: 0.68rem;
}

.pipeline-list {
  display: grid;
  gap: 9px;
  margin-top: 17px;
}

.pipeline-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.pipeline-item::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(32, 201, 189, 0.62);
}

.pipeline-item strong {
  display: block;
  font-size: 0.73rem;
}

.pipeline-item small {
  display: block;
  margin-top: 2px;
  color: #8e8498;
  font-size: 0.64rem;
}

.status {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(32, 201, 189, 0.1);
  color: #9ef4e9;
  font-size: 0.58rem;
  font-weight: 800;
}

.pipeline-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 13px;
}

.pipeline-metric {
  padding: 12px 8px;
  border-radius: 11px;
  background: rgba(117, 21, 232, 0.1);
  text-align: center;
}

.pipeline-metric strong,
.pipeline-metric span {
  display: block;
}

.pipeline-metric strong {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
}

.pipeline-metric span {
  color: #978ca2;
  font-size: 0.58rem;
}

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

.mechanism-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.mechanism-card span {
  color: rgba(255, 255, 255, 0.25);
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.mechanism-card h3 {
  margin: 48px 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.mechanism-card p {
  margin: 0;
  color: #aaa1b3;
  font-size: 0.83rem;
}

.channel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.channel-track span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #beb5c4;
  font-size: 0.66rem;
  font-weight: 700;
}

.channel-track b {
  color: #58505f;
  font-size: 0.8rem;
}

.diagnostic-card {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 20%, rgba(229, 0, 206, 0.25), transparent 21rem),
    linear-gradient(125deg, rgba(52, 55, 219, 0.21), rgba(117, 21, 232, 0.11) 48%, rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: end;
  gap: 55px;
}

.diagnostic-card h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
}

.diagnostic-card p {
  margin: 20px 0 0;
  color: #c7bfcc;
}

.diagnostic-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.diagnostic-step {
  min-height: 122px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(7, 4, 12, 0.32);
}

.diagnostic-step span {
  display: block;
  margin-bottom: 19px;
  color: #776d82;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

.diagnostic-step strong {
  display: block;
  font-size: 0.76rem;
  line-height: 1.45;
}

.diagnostic-action {
  margin-top: 25px;
}

.essential-wrap {
  padding: 30px;
  border: 1px solid var(--line-light);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(30, 18, 40, 0.06);
}

.essential-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.essential-head h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.essential-head p {
  max-width: 490px;
  margin: 0;
  color: #665d6e;
  font-size: 0.83rem;
}

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

.essential-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 19px;
  border: 1px solid #e8e3ec;
  border-radius: 16px;
  background: #faf8fc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.essential-card:hover {
  border-color: rgba(117, 21, 232, 0.32);
  box-shadow: 0 15px 35px rgba(61, 25, 86, 0.1);
  transform: translateY(-3px);
}

.service-card-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
}

.service-card-link:focus-visible {
  outline: 3px solid rgba(117, 21, 232, 0.62);
  outline-offset: 3px;
}

.essential-card h4 {
  margin: 21px 0 8px;
  font-family: "Oswald", sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.15;
}

.essential-card p {
  margin: 0;
  color: #706778;
  font-size: 0.72rem;
  line-height: 1.55;
}

.essential-card .price {
  margin-top: auto;
  padding-top: 18px;
  color: #17101f;
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.essential-card .price small {
  display: block;
  color: #8b8293;
  font-family: "Montserrat", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.offer-card {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line-light);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(30, 18, 40, 0.06);
}

.offer-card.featured {
  grid-column: 1 / -1;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  border-color: transparent;
  background:
    radial-gradient(circle at 88% 0%, rgba(229, 0, 206, 0.22), transparent 24rem),
    linear-gradient(130deg, #110a1a, #0c0812);
  box-shadow: var(--shadow);
  color: #fff;
}

.offer-label {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f0eafa;
  color: #6622bb;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card.featured .offer-label {
  background: rgba(229, 0, 206, 0.1);
  color: #f1b1eb;
}

.offer-card h3 {
  margin: 22px 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.06;
}

.offer-card > p,
.offer-main > p {
  margin: 0;
  color: #665d6e;
  font-size: 0.87rem;
}

.offer-card.featured .offer-main > p {
  color: #aaa1b3;
}

.price-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 25px;
  margin: 28px 0 24px;
}

.price-block span,
.price-block strong {
  display: block;
}

.price-block span {
  color: #847a8c;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-block strong {
  color: #17101f;
  font-family: "Oswald", sans-serif;
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.25;
}

.offer-card.featured .price-block strong {
  color: #fff;
}

.offer-list {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4f4657;
  font-size: 0.78rem;
  font-weight: 600;
}

.offer-card.featured .offer-list li {
  color: #c1b8c6;
}

.offer-list li::before {
  content: "✓";
  color: #7122c9;
  font-weight: 900;
}

.offer-card.featured .offer-list li::before {
  color: var(--cyan);
}

.offer-card .button {
  width: fit-content;
  margin-top: auto;
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.service-card-actions .button {
  margin-top: 0;
}

.offer-note {
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #918799;
  font-size: 0.71rem;
  font-weight: 700;
}

.continuity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.continuity-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.continuity-card.highlight {
  border-color: rgba(229, 0, 206, 0.24);
  background: linear-gradient(145deg, rgba(117, 21, 232, 0.16), rgba(255, 255, 255, 0.025));
}

.continuity-card h3 {
  margin: 14px 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.continuity-card p {
  margin: 0;
  color: #a99fb0;
  font-size: 0.82rem;
}

.continuity-price {
  margin: 27px 0 22px;
}

.continuity-price span,
.continuity-price strong {
  display: block;
}

.continuity-price span {
  color: #82798b;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.continuity-price strong {
  font-family: "Oswald", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
}

.continuity-card .button {
  width: fit-content;
  margin-top: auto;
}

.house-build-panel,
.continuity-options-panel {
  border-top: 1px solid var(--line);
}

.house-build-panel .section-head,
.continuity-options-panel .section-head {
  max-width: 1080px;
}

.house-build-panel .section-title,
.continuity-options-panel .section-title {
  font-size: clamp(2.8rem, 4.4vw, 4.55rem);
}

.house-build-panel .section-copy,
.continuity-options-panel .section-copy {
  max-width: 980px;
}

.house-journey {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.house-journey::before {
  animation-name: none;
}

.house-journey.visible::before {
  animation: house-line-fill 7.5s ease-in-out infinite;
}

.house-journey.visible::after {
  animation: house-runner 7.5s ease-in-out infinite;
}

.house-journey .journey-step {
  padding: 27px 28px 24px;
}

.house-journey .journey-step:nth-child(1) {
  --journey-delay: 0.68s;
}

.house-journey .journey-step:nth-child(2) {
  --journey-delay: 2.72s;
}

.house-journey .journey-step:nth-child(3) {
  --journey-delay: 4.76s;
}

.house-journey.visible .journey-step::before,
.house-journey.visible .journey-step strong {
  animation-duration: 7.5s;
}

.house-journey .journey-step strong {
  font-size: 1.08rem;
}

.house-journey .journey-step small {
  max-width: 330px;
  font-size: 0.91rem;
  line-height: 1.55;
}

.continuity-options-panel .section-head {
  margin-bottom: 24px;
}

.continuity-options-panel .continuity-card {
  min-height: 0;
  padding: 22px;
}

.continuity-options-panel .continuity-card h3 {
  margin: 11px 0 8px;
  font-size: 1.7rem;
}

.continuity-options-panel .continuity-card > p {
  min-height: 4.7em;
  line-height: 1.5;
}

.continuity-options-panel .continuity-price {
  margin: 17px 0 13px;
}

.continuity-options-panel .offer-list {
  gap: 6px;
  margin-bottom: 16px;
}

.continuity-options-panel .offer-list li {
  color: #beb5c5;
  line-height: 1.38;
}

.continuity-options-panel .button {
  width: 100%;
  justify-content: center;
}

.case-study-panel {
  border-top: 1px solid var(--line);
}

.case-study-panel .section-head {
  max-width: 1120px;
  margin-bottom: 28px;
}

.case-study-panel .section-title {
  font-size: clamp(2.8rem, 4.4vw, 4.55rem);
}

.case-study-panel .section-copy {
  max-width: 1020px;
}

.case-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-flow::before,
.case-flow::after {
  content: "";
  position: absolute;
  top: 28px;
  height: 3px;
  border-radius: 999px;
  pointer-events: none;
}

.case-flow::before {
  z-index: 0;
  left: 4%;
  right: 4%;
  background: rgba(255, 255, 255, 0.1);
}

.case-flow::after {
  z-index: 1;
  left: 4%;
  width: 18%;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), var(--magenta), transparent);
  box-shadow: 0 0 18px rgba(117, 21, 232, 0.72);
  opacity: 0;
}

.case-flow.flow-active::after {
  animation: case-flow-sweep 8.8s ease-in-out infinite;
}

.case-step {
  --flow-delay: 0s;
  --flow-rest-border: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 68px 18px 18px;
  border: 1px solid var(--flow-rest-border);
  border-radius: 20px;
  background: rgba(12, 7, 18, 0.88);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.case-step:nth-child(2) { --flow-delay: 1.45s; }
.case-step:nth-child(3) { --flow-delay: 2.9s; }
.case-step:nth-child(4) { --flow-delay: 4.35s; }
.case-step:nth-child(5) { --flow-delay: 5.8s; }

.case-flow.flow-active .case-step {
  animation: flow-card-focus 8.8s ease-in-out var(--flow-delay) infinite;
}

.case-step:hover {
  border-color: rgba(32, 201, 189, 0.4);
  box-shadow: 0 16px 42px rgba(4, 2, 7, 0.2), 0 0 30px rgba(117, 21, 232, 0.13);
  transform: translateY(-4px);
}

.case-icon {
  position: absolute;
  top: 9px;
  left: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(32, 201, 189, 0.24);
  border-radius: 13px;
  background: #110b19;
  color: var(--cyan);
  box-shadow: 0 0 18px rgba(32, 201, 189, 0.1);
}

.case-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-number {
  position: absolute;
  top: 17px;
  right: 17px;
  color: #7e7587;
  font-family: "Oswald", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.case-step h3 {
  min-height: 2.35em;
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.16;
}

.case-layer {
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.case-layer + .case-layer {
  margin-top: 12px;
}

.case-layer > span {
  display: block;
  margin-bottom: 4px;
  color: #d9cfe0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.case-layer p {
  margin: 0;
  color: #b6adbf;
  font-size: 0.94rem;
  line-height: 1.45;
}

.case-layer-system > span {
  color: var(--success);
}

.case-layer-system p {
  color: #e5dfea;
}

.case-outcome {
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(32, 201, 189, 0.18);
  border-radius: 17px;
  background: linear-gradient(105deg, rgba(32, 201, 189, 0.07), rgba(117, 21, 232, 0.11), rgba(229, 0, 206, 0.06));
  color: #bcb3c4;
  font-size: 0.92rem;
}

.case-outcome strong {
  color: #fff;
}

.platform-showcase {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 12%, rgba(52, 55, 219, 0.2), transparent 27rem),
    radial-gradient(circle at 93% 72%, rgba(229, 0, 206, 0.14), transparent 25rem),
    #08050d;
}

.platform-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 22px;
}

.platform-showcase-head .section-title {
  max-width: 820px;
  font-size: clamp(2.75rem, 4.2vw, 4.35rem);
}

.platform-showcase-head .section-copy {
  margin: 0 0 4px;
  font-size: 0.96rem;
  line-height: 1.6;
}

.platform-stage {
  position: relative;
  min-height: clamp(390px, 47svh, 470px);
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(22, 13, 31, 0.96), rgba(10, 6, 15, 0.98));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 0 42px rgba(117, 21, 232, 0.1);
}

.desktop-demo {
  position: absolute;
  inset: 18px 172px 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #f8fafc;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

.demo-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  background: #17111f;
  color: #cfc5d6;
  font-size: 0.68rem;
}

.demo-window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5f57;
}

.demo-window-bar > span:nth-child(2) { background: #febc2e; }
.demo-window-bar > span:nth-child(3) { background: #28c840; }

.demo-window-bar strong {
  margin-left: 7px;
  color: #fff;
  font-weight: 700;
}

.demo-window-bar em {
  margin-left: auto;
  color: #8f8498;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-tabs {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 45px;
  padding: 6px 9px;
  border-bottom: 1px solid #e6e9ef;
  background: rgba(255, 255, 255, 0.98);
}

.demo-tabs button {
  min-height: 31px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: #f1edf6;
  color: #6c6175;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.demo-tabs button:hover,
.demo-tabs button:focus-visible {
  color: #35105e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(117, 21, 232, 0.14);
}

.demo-tabs button.active {
  background: #6d1bd6;
  color: #fff;
  box-shadow: 0 8px 19px rgba(109, 27, 214, 0.26);
}

.demo-screen {
  position: absolute;
  inset: 79px 0 0;
  overflow: hidden;
  background: #edf1f6;
}

.demo-screen figure {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.demo-screen figure[hidden] {
  display: none;
}

.demo-screen figure.platform-panel-enter {
  animation: platform-screen-in 0.46s ease both;
}

.demo-screen > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.demo-screen figure:first-child > img {
  object-position: 50% 12%;
}

.hl-ui {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  overflow: hidden;
  background: #f3f5f9;
  color: #282332;
  font-family: "Montserrat", Arial, sans-serif;
  text-align: left;
}

.hl-sidebar {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 13px 9px 10px;
  background: linear-gradient(180deg, #160d21, #0f0a16);
  color: #d9d1df;
  box-shadow: 5px 0 16px rgba(28, 18, 39, 0.13);
}

.hl-brand {
  display: flex;
  align-items: center;
  min-height: 26px;
  margin: 0 5px 11px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hl-brand img {
  display: block;
  width: 104px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.hl-sidebar nav {
  display: grid;
  gap: 3px;
}

.hl-sidebar nav span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 7px;
  color: #bdb4c6;
  font-size: 0.55rem;
  font-weight: 650;
  white-space: nowrap;
}

.hl-sidebar nav span i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 1.5px solid #887b94;
  border-radius: 3px;
}

.hl-sidebar nav span.active {
  background: linear-gradient(90deg, rgba(117, 21, 232, 0.34), rgba(229, 0, 206, 0.12));
  color: #fff;
}

.hl-sidebar nav span.active i {
  border-color: #40ddd2;
  background: #40ddd2;
  box-shadow: 0 0 8px rgba(64, 221, 210, 0.56);
}

.hl-sidebar > small {
  margin: auto 8px 0;
  color: #716779;
  font-size: 0.43rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hl-workspace {
  min-width: 0;
  overflow: hidden;
  padding: 12px 13px 62px;
  background: linear-gradient(180deg, #fbfcfd, #eef1f6);
}

.hl-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 35px;
  margin-bottom: 8px;
}

.hl-toolbar div {
  display: grid;
  gap: 1px;
}

.hl-toolbar strong {
  color: #241d2b;
  font-size: 0.82rem;
  line-height: 1.1;
}

.hl-toolbar span {
  color: #8a8190;
  font-size: 0.5rem;
  font-weight: 600;
}

.hl-toolbar button,
.hl-thread label button {
  min-height: 25px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: #6d1bd6;
  color: #fff;
  font-family: inherit;
  font-size: 0.5rem;
  font-weight: 800;
}

.hl-summary {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 8px;
  padding: 6px 9px;
  border: 1px solid #e2dbe9;
  border-radius: 8px;
  background: #fff;
  color: #6f6577;
  font-size: 0.5rem;
  font-style: normal;
}

.hl-summary strong {
  margin-left: auto;
  color: #2e2635;
  font-size: 0.63rem;
}

.hl-summary em {
  color: #918799;
  font-size: 0.43rem;
  font-style: normal;
  font-weight: 800;
}

.hl-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.hl-pipeline section {
  min-width: 0;
  padding: 7px;
  border: 1px solid #e0e3e9;
  border-radius: 9px;
  background: #e9edf3;
}

.hl-pipeline h4 {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  margin: 0 0 7px;
  overflow: hidden;
  color: #51475b;
  font-size: 0.48rem;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.hl-pipeline h4 i {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7515e8;
}

.hl-pipeline section:nth-child(2) h4 i { background: #4637dd; }
.hl-pipeline section:nth-child(3) h4 i { background: #e500ce; }
.hl-pipeline section:nth-child(4) h4 i { background: #23cdbf; }

.hl-pipeline h4 span {
  flex: 0 0 auto;
  margin-left: auto;
  color: #918799;
}

.hl-pipeline article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 6px;
  min-width: 0;
  margin-top: 6px;
  padding: 8px;
  border: 1px solid #e4e0e8;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(38, 27, 51, 0.05);
}

.hl-pipeline article strong {
  overflow: hidden;
  color: #342c3b;
  font-size: 0.49rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hl-pipeline article span {
  color: #6d1bd6;
  font-size: 0.46rem;
  font-weight: 850;
}

.hl-pipeline article small {
  grid-column: 1 / -1;
  overflow: hidden;
  color: #8b8192;
  font-size: 0.4rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hl-contact-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
}

.hl-contact-tools label,
.hl-contact-tools > span {
  padding: 6px 9px;
  border: 1px solid #e0dde4;
  border-radius: 7px;
  background: #fff;
  color: #8b8290;
  font-size: 0.47rem;
  font-weight: 650;
}

.hl-contact-tools label { flex: 0 1 190px; }
.hl-contact-tools strong { margin-left: auto; color: #655b6c; font-size: 0.48rem; }

.hl-contact-table {
  overflow: hidden;
  border: 1px solid #e1dde5;
  border-radius: 9px;
  background: #fff;
}

.hl-contact-row {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr 1.35fr 0.95fr 0.85fr;
  align-items: center;
  min-height: 37px;
  padding: 0 10px;
  border-bottom: 1px solid #eeeaf0;
  color: #756b7d;
  font-size: 0.45rem;
}

.hl-contact-row:last-child { border-bottom: 0; }
.hl-contact-row > * { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hl-contact-row strong { display: flex; align-items: center; gap: 6px; color: #3a3141; font-size: 0.47rem; }
.hl-contact-row strong i,
.hl-inbox article > i {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ece3fa;
  color: #6d1bd6;
  font-size: 0.39rem;
  font-style: normal;
  font-weight: 850;
}

.hl-contact-row em {
  justify-self: start;
  padding: 4px 6px;
  border-radius: 999px;
  background: #efe6fa;
  color: #6216bf;
  font-style: normal;
  font-weight: 800;
}

.hl-contact-head {
  min-height: 27px;
  background: #f4f1f6;
  color: #8b8191;
  font-size: 0.4rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hl-conversations {
  display: grid;
  grid-template-columns: 0.95fr 1.7fr 0.8fr;
  padding: 0 0 58px;
  background: #fff;
}

.hl-inbox,
.hl-context {
  min-width: 0;
  border-right: 1px solid #e5e1e8;
  background: #f8f9fb;
}

.hl-inbox header,
.hl-thread header {
  display: grid;
  gap: 2px;
  min-height: 48px;
  padding: 10px 11px;
  border-bottom: 1px solid #e7e3ea;
}

.hl-inbox header strong,
.hl-thread header strong,
.hl-context > strong {
  color: #332b3a;
  font-size: 0.56rem;
}

.hl-inbox header span,
.hl-thread header span {
  color: #8a8190;
  font-size: 0.4rem;
}

.hl-inbox article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  min-height: 47px;
  padding: 7px 8px;
  border-bottom: 1px solid #ece8ee;
}

.hl-inbox article.active {
  border-left: 3px solid #7515e8;
  background: #f0e8fa;
}

.hl-inbox article div { min-width: 0; }
.hl-inbox article strong { display: block; overflow: hidden; color: #3a3241; font-size: 0.44rem; text-overflow: ellipsis; white-space: nowrap; }
.hl-inbox article p { margin: 2px 0 0; overflow: hidden; color: #887e8e; font-size: 0.37rem; text-overflow: ellipsis; white-space: nowrap; }
.hl-inbox article time { color: #9b92a1; font-size: 0.34rem; }

.hl-thread {
  position: relative;
  min-width: 0;
  background: #fff;
}

.hl-messages {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 14px;
}

.hl-messages p {
  max-width: 78%;
  margin: 0;
  padding: 8px 9px;
  border-radius: 9px;
  font-size: 0.43rem;
  line-height: 1.35;
}

.hl-messages .received { background: #f0edf2; color: #514858; }
.hl-messages .sent { align-self: flex-end; background: #6d1bd6; color: #fff; }
.hl-messages small { align-self: flex-end; color: #a098a5; font-size: 0.34rem; }

.hl-thread > label {
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 7px 6px 10px;
  border: 1px solid #e1dde4;
  border-radius: 9px;
  color: #a098a5;
  font-size: 0.4rem;
}

.hl-thread label button { min-height: 22px; }

.hl-context {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 13px 10px;
  border-right: 0;
  border-left: 1px solid #e5e1e8;
}

.hl-context span {
  display: grid;
  gap: 3px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ebe7ed;
  color: #948b9a;
  font-size: 0.37rem;
}

.hl-context b { overflow: hidden; color: #494050; font-size: 0.42rem; text-overflow: ellipsis; white-space: nowrap; }

/* Mantiene el lenguaje visual real de la interfaz de HighLevel. */
.hl-ui {
  grid-template-columns: 148px minmax(0, 1fr);
  background: #f4f7fa;
  color: #273444;
  font-family: Arial, Helvetica, sans-serif;
}

.hl-sidebar {
  padding: 8px 7px 6px;
  background: #2d3e50;
  color: #d7dee7;
  box-shadow: none;
}

.hl-brand {
  display: block;
  width: 22px;
  min-height: 28px;
  height: 28px;
  margin: 0 auto 5px;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.hl-brand img {
  width: 151px;
  max-width: none;
  height: 28px;
  object-fit: fill;
  object-position: left center;
}

.hl-sidebar nav {
  position: relative;
  gap: 0;
  padding-top: 44px;
}

.hl-sidebar nav::before,
.hl-sidebar nav::after {
  position: absolute;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 19px;
  padding: 0 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  background: #405166;
  color: #dce3ea;
  font-size: 0.43rem;
  white-space: nowrap;
}

.hl-sidebar nav::before {
  content: "SELLUP";
  top: 0;
  font-weight: 700;
}

.hl-sidebar nav::after {
  content: "⌕  Buscar";
  top: 23px;
  color: #aeb9c5;
}

.hl-sidebar nav span {
  gap: 6px;
  min-height: 15px;
  padding: 0 6px;
  border-radius: 3px;
  color: #d1d8e1;
  font-size: 0.43rem;
  font-weight: 400;
}

.hl-sidebar nav span i {
  width: 7px;
  height: 7px;
  border: 1px solid #aab6c2;
  border-radius: 2px;
}

.hl-sidebar nav span.active {
  background: #223244;
  color: #fff;
  box-shadow: inset 2px 0 0 #3da2ff;
}

.hl-sidebar nav span.active i {
  border-color: #fff;
  background: transparent;
  box-shadow: none;
}

.hl-sidebar > small {
  display: none;
}

.hl-workspace {
  padding: 10px 12px 62px;
  background: #f5f8fb;
}

.hl-toolbar {
  min-height: 36px;
  margin: -10px -12px 9px;
  padding: 0 12px;
  border-bottom: 1px solid #dce2e8;
  background: #fff;
}

.hl-toolbar strong {
  color: #202b37;
  font-size: 0.72rem;
}

.hl-toolbar span {
  color: #6d7b88;
  font-size: 0.44rem;
}

.hl-toolbar button,
.hl-thread label button {
  min-height: 25px;
  border-radius: 4px;
  background: #1565e8;
  font-size: 0.46rem;
  box-shadow: none;
}

.hl-summary {
  min-height: 28px;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-color: #d7dee5;
  border-radius: 4px;
  color: #566573;
  box-shadow: 0 1px 2px rgba(22, 40, 58, 0.05);
}

.hl-summary strong,
.hl-pipeline article span {
  color: #155fcf;
}

.hl-pipeline {
  gap: 8px;
}

.hl-pipeline section {
  padding: 0;
  border: 0;
  border-top: 2px solid #3aa9e8;
  border-radius: 4px 4px 0 0;
  background: transparent;
}

.hl-pipeline section:nth-child(2) { border-top-color: #f0c94d; }
.hl-pipeline section:nth-child(3) { border-top-color: #9d96bc; }
.hl-pipeline section:nth-child(4) { border-top-color: #39b88a; }

.hl-pipeline h4 {
  min-height: 31px;
  margin: 0 0 7px;
  padding: 0 8px;
  border: 1px solid #dbe2e8;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  background: #fff;
  color: #25303c;
  font-size: 0.47rem;
  box-shadow: 0 2px 5px rgba(35, 50, 65, 0.06);
}

.hl-pipeline h4 i {
  display: none;
}

.hl-pipeline article {
  padding: 8px;
  border-color: #dfe5ea;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(35, 50, 65, 0.06);
}

.hl-pipeline article strong {
  color: #222d38;
  font-size: 0.47rem;
}

.hl-pipeline article small {
  color: #697785;
}

.hl-contact-tools label,
.hl-contact-tools > span {
  border-color: #d7dee5;
  border-radius: 4px;
  color: #6b7885;
  box-shadow: 0 1px 2px rgba(22, 40, 58, 0.04);
}

.hl-contact-table {
  border-color: #dce2e8;
  border-radius: 3px;
}

.hl-contact-head {
  background: #fff;
  color: #63717e;
}

.hl-contact-row {
  border-bottom-color: #e5eaee;
  color: #53616e;
}

.hl-contact-row strong i,
.hl-inbox article > i {
  background: #e9eef5;
  color: #3f5870;
}

.hl-contact-row em {
  background: #e7f4ec;
  color: #238553;
}

.hl-conversations {
  padding: 0 0 58px;
  background: #fff;
}

.hl-inbox,
.hl-context {
  background: #fff;
}

.hl-inbox article.active {
  border-left-color: #1683ed;
  background: #edf5ff;
}

.hl-messages .sent {
  background: #1f7ae0;
}

.sellup-phone {
  border-color: #15171b;
  background: #f5f8fb;
  color: #273444;
  font-family: Arial, Helvetica, sans-serif;
}

.phone-filters span {
  background: #e8f1ff;
  color: #1766c2;
}

.phone-stage {
  background: #edf6ee;
}

.phone-stage article b {
  color: #155fcf;
}

.demo-screen figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 610px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(12, 7, 18, 0.91);
  color: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
}

.demo-screen figcaption strong {
  flex: 0 0 auto;
  font-size: 0.76rem;
}

.demo-screen figcaption span {
  color: #beb4c7;
  font-size: 0.69rem;
  line-height: 1.35;
}

.mobile-demo {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 16px;
  bottom: 12px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  justify-items: center;
  width: 226px;
  pointer-events: none;
}

.mobile-demo::before {
  content: "";
  position: absolute;
  inset: 42px -15px 28px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(117, 21, 232, 0.27);
  filter: blur(34px);
}

.mobile-demo-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(13, 8, 20, 0.9);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.mobile-demo-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(43, 212, 200, 0.8);
}

.mobile-demo img,
.sellup-phone {
  width: auto;
  height: 100%;
  min-height: 0;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
}

.sellup-phone {
  position: relative;
  width: auto;
  max-width: 170px;
  aspect-ratio: 0.51;
  overflow: hidden;
  border: 7px solid #08070a;
  border-radius: 27px;
  background: #f6f8fb;
  color: #2f2935;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45), inset 0 0 0 1px #413b45;
  font-family: "Montserrat", Arial, sans-serif;
  text-align: left;
}

.sellup-phone::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 5px;
  left: 50%;
  width: 51px;
  height: 12px;
  border-radius: 0 0 9px 9px;
  background: #08070a;
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 22px;
  padding: 0 11px;
  color: #343038;
  font-size: 0.37rem;
  font-weight: 800;
}

.phone-status i {
  width: 15px;
  height: 5px;
  border-top: 2px solid #343038;
  border-bottom: 2px solid #343038;
}

.sellup-phone > header {
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  align-items: center;
  min-height: 31px;
  padding: 0 8px;
  border-bottom: 1px solid #e0e3e8;
  background: #fff;
}

.sellup-phone > header strong {
  text-align: center;
  font-size: 0.48rem;
}

.sellup-phone > header b { font-size: 0.82rem; }
.sellup-phone > header span { color: #7a7180; font-size: 0.4rem; text-align: right; }

.sellup-phone > label {
  display: block;
  margin: 8px 8px 6px;
  padding: 6px 7px;
  border: 1px solid #e1e4e9;
  border-radius: 6px;
  background: #fff;
  color: #918897;
  font-size: 0.36rem;
}

.phone-filters {
  display: flex;
  gap: 4px;
  padding: 0 8px 6px;
}

.phone-filters span {
  padding: 4px 6px;
  border-radius: 999px;
  background: #eee5fa;
  color: #6216bf;
  font-size: 0.31rem;
  font-weight: 800;
}

.phone-stage {
  margin: 0 7px;
  padding: 7px;
  border-radius: 8px;
  background: #e9f4ee;
}

.phone-stage h4 {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 6px;
  color: #3e4b42;
  font-size: 0.34rem;
}

.phone-stage h4 i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #28b79f;
}

.phone-stage h4 span { margin-left: auto; color: #78877c; font-size: 0.27rem; }

.phone-stage article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px;
  margin-top: 5px;
  padding: 7px;
  border: 1px solid #e1e7e3;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 3px 9px rgba(21, 52, 39, 0.05);
}

.phone-stage article strong { overflow: hidden; font-size: 0.35rem; text-overflow: ellipsis; white-space: nowrap; }
.phone-stage article b { color: #6216bf; font-size: 0.31rem; }
.phone-stage article small { grid-column: 1 / -1; color: #817986; font-size: 0.28rem; }

.mobile-demo p {
  margin: 0;
  padding: 8px 11px;
  border-radius: 12px;
  background: rgba(12, 7, 18, 0.9);
  color: #d2c9d8;
  font-size: 0.65rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(12px);
}

.platform-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 13px;
}

.platform-feature-row span {
  position: relative;
  padding: 10px 12px 10px 29px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #d9d1de;
  font-size: 0.68rem;
  font-weight: 750;
}

.platform-feature-row span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(43, 212, 200, 0.6);
  transform: translateY(-50%);
}

.platform-reference {
  margin: 8px 0 0;
  color: #766d7d;
  font-size: 0.62rem;
  line-height: 1.35;
  text-align: right;
}

@keyframes platform-screen-in {
  from { opacity: 0; transform: scale(1.012); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes case-flow-sweep {
  0%, 5% {
    left: 4%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  82%, 90% {
    left: 78%;
    opacity: 1;
  }
  96%, 100% {
    left: 78%;
    opacity: 0;
  }
}

@keyframes house-line-fill {
  0%, 7% {
    width: 0;
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  78%, 92% {
    width: 66.666667%;
    opacity: 1;
  }
  98%, 100% {
    width: 66.666667%;
    opacity: 0;
  }
}

@keyframes house-runner {
  0%, 7% {
    left: 18px;
    opacity: 0;
  }
  11% {
    left: 18px;
    opacity: 1;
  }
  38%, 48% {
    left: calc(33.333333% + 18px);
  }
  78%, 92% {
    left: calc(66.666667% + 18px);
    opacity: 1;
  }
  98%, 100% {
    left: calc(66.666667% + 18px);
    opacity: 0;
  }
}

.risk-grid,
.results-grid,
.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.risk-card,
.result-card,
.provider-card {
  padding: 25px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: #fff;
}

.risk-card strong,
.result-card strong,
.provider-card h3 {
  display: block;
  margin: 16px 0 8px;
  color: #191021;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.18;
}

.risk-card p,
.result-card p,
.provider-card p {
  margin: 0;
  color: #6c6274;
  font-size: 0.76rem;
  line-height: 1.62;
}

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

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

.faq-question {
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 600;
}

.faq-plus {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #d9cfe0;
  font-size: 1.2rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-plus {
  background: rgba(229, 0, 206, 0.1);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  max-width: 850px;
  margin: 0;
  padding: 0 58px 26px 0;
  color: #aaa1b3;
  font-size: 0.9rem;
}

.closing {
  padding: 0 0 clamp(80px, 9vw, 125px);
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 92px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 100%, rgba(52, 55, 219, 0.34), transparent 24rem),
    radial-gradient(circle at 94% 0%, rgba(229, 0, 206, 0.3), transparent 24rem),
    #100917;
  box-shadow: var(--shadow);
  text-align: center;
}

.closing-card h2 {
  max-width: 950px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 5.8vw, 5.5rem);
  line-height: 1.01;
}

.closing-card p {
  max-width: 720px;
  margin: 22px auto 0;
  color: #c2bac7;
}

.closing-card .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 65px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr;
  gap: 70px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-brand p {
  max-width: 470px;
  margin: 22px 0 0;
  color: #8f8697;
  font-size: 0.8rem;
}

.footer-column h2 {
  margin: 0 0 17px;
  color: #6f6678;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 9px 0;
  color: #bcb4c2;
  font-size: 0.78rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #6f6678;
  font-size: 0.68rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-legal-links a {
  color: #a89faf;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #fff;
}

/* Legal documents are long-form reading pages, so they intentionally use
   natural document height instead of viewport-sized marketing panels. */
.legal-body {
  background:
    radial-gradient(circle at 82% 0%, rgba(117, 21, 232, 0.18), transparent 34rem),
    var(--bg);
}

.legal-main {
  padding: 86px 0 110px;
}

.legal-hero {
  max-width: 920px;
  padding-bottom: 52px;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 20px 0 24px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(32, 201, 189, 0.1);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 70px;
}

.legal-document {
  min-width: 0;
}

.legal-section {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-section h2 {
  margin: 0 0 16px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.1;
}

.legal-section h3 {
  margin: 27px 0 9px;
  font-size: 1rem;
}

.legal-section p,
.legal-section li {
  color: #c5bdca;
  font-size: 0.94rem;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section ul,
.legal-section ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 9px;
}

.legal-section a {
  color: var(--success);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-callout {
  margin: 20px 0;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: radial-gradient(circle at 50% 50%, rgba(117, 21, 232, 0.16), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 0 0 1px rgba(117, 21, 232, 0.24), 0 18px 48px rgba(0, 0, 0, 0.16);
}

.legal-callout strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-index {
  position: sticky;
  top: 112px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px var(--line);
}

.legal-index strong {
  display: block;
  margin-bottom: 13px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-index a {
  display: block;
  padding: 7px 0;
  color: #aca3b3;
  font-size: 0.78rem;
  line-height: 1.4;
}

.legal-index a:hover {
  color: #fff;
}

.legal-updated {
  margin-top: 20px;
  color: #776e80;
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Weddings */
.weddings .eyebrow::before {
  background: linear-gradient(90deg, #f1a9e9, var(--magenta));
}

.weddings-hero .visual-card-result {
  background: linear-gradient(100deg, rgba(117, 21, 232, 0.24), rgba(229, 0, 206, 0.18));
}

.wedding-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.wedding-process span {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  color: #e3dbe7;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.wedding-process span:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -15px;
  color: #6e6575;
  transform: translateY(-50%);
}

.situation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 55px;
  border-top: 1px solid var(--line-light);
}

.situation {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 21px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-light);
}

.situation span {
  color: #a584b0;
  font-family: "Oswald", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
}

.situation p {
  margin: 0;
  color: #302637;
  font-size: 0.9rem;
  font-weight: 650;
}

.wedding-journey {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px;
}

.wedding-stage {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

.wedding-stage span {
  color: #776c80;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

.wedding-stage h3 {
  margin: 48px 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.1;
}

.wedding-stage p {
  margin: 0;
  color: #a99eaf;
  font-size: 0.69rem;
  line-height: 1.55;
}

.wedding-note {
  max-width: 850px;
  margin: 26px auto 0;
  color: #93889b;
  font-size: 0.83rem;
  text-align: center;
}

.wedding-market-shift {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wedding-market-shift-grid,
.wedding-data-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(58px, 7vw, 110px);
}

.wedding-market-shift .section-head,
.wedding-data-section .section-head {
  max-width: 650px;
  margin-bottom: 0;
}

.wedding-market-shift .section-title,
.wedding-data-section .section-title {
  font-size: clamp(2.8rem, 4.3vw, 4.35rem);
}

.market-shift-conclusion {
  margin: 28px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--magenta);
  background: rgba(229, 0, 206, 0.08);
  color: #f3eaf4;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.65;
}

.market-shift-lessons,
.wedding-data-principles {
  display: grid;
  gap: 13px;
}

.market-shift-card,
.wedding-data-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
  padding: 23px 25px;
  border-radius: 19px;
}

.market-shift-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.market-shift-card > span,
.wedding-data-card > span {
  padding-top: 3px;
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.market-shift-card > span {
  color: #cf82d1;
}

.market-shift-card h3,
.wedding-data-card h3 {
  margin: 0 0 7px;
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
}

.market-shift-card p,
.wedding-data-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
}

.market-shift-card p {
  color: #afa5b4;
}

.wedding-data-card {
  border: 1px solid var(--line-light);
  background: #fff;
  box-shadow: 0 14px 36px rgba(28, 15, 39, 0.055);
}

.wedding-data-card > span {
  color: #8a35c5;
}

.wedding-data-card h3 {
  color: #191021;
}

.wedding-data-card p {
  color: #655b6d;
}

.wedding-data-source {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: #6620a7;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(102, 32, 167, 0.3);
  text-underline-offset: 5px;
}

.wedding-data-source:hover {
  color: #9c1da8;
}

.wedding-data-disclaimer {
  margin: 5px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(102, 32, 167, 0.15);
  border-radius: 15px;
  background: rgba(117, 21, 232, 0.055);
  color: #675c70;
  font-size: 0.84rem;
  line-height: 1.58;
}

.results-grid {
  grid-template-columns: repeat(3, 1fr);
}

.provider-grid {
  grid-template-columns: repeat(3, 1fr);
}

.provider-card {
  min-height: 190px;
}

.provider-card .mini-icon {
  color: #6e1cc6;
}

/* Wedding-industry cards: each service is identified with real visual context. */
.weddings .provider-card {
  position: relative;
  isolation: isolate;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  background: #1b111f;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.weddings .provider-card::before,
.weddings .provider-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.weddings .provider-card::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  transition: transform 450ms ease;
}

.weddings .provider-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 5, 13, 0.05) 8%, rgba(8, 5, 13, 0.54) 52%, rgba(8, 5, 13, 0.96) 100%),
    linear-gradient(110deg, rgba(117, 21, 232, 0.1), rgba(229, 0, 206, 0.05));
}

.weddings .provider-card:nth-child(1)::before {
  background-image: url("/assets/weddings-provider-venue.webp");
}

.weddings .provider-card:nth-child(2)::before {
  background-image: url("/assets/weddings-provider-catering.webp");
}

.weddings .provider-card:nth-child(3)::before {
  background-image: url("/assets/weddings-provider-photo-video.webp");
}

.weddings .provider-card:nth-child(4)::before {
  background-image: url("/assets/weddings-provider-decor.webp");
}

.weddings .provider-card:nth-child(5)::before {
  background-image: url("/assets/weddings-provider-music.webp");
}

.weddings .provider-card:nth-child(6)::before {
  background-image: url("/assets/weddings-provider-production.webp");
}

.weddings .provider-card:hover::before {
  transform: scale(1.055);
}

.weddings .provider-card .mini-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 5, 13, 0.62);
  color: #fff;
  backdrop-filter: blur(8px);
}

.weddings .provider-card h3 {
  margin: 0 0 7px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.weddings .provider-card p {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.weddings-note {
  margin-top: 17px;
  padding: 16px 18px;
  border: 1px solid rgba(117, 21, 232, 0.18);
  border-radius: 15px;
  background: rgba(117, 21, 232, 0.05);
  color: #63596b;
  font-size: 0.75rem;
}

/* Thanks */
.thanks-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.thanks-main {
  flex: 1;
  display: grid;
  align-items: center;
  padding: 70px 0 90px;
}

.thanks-card {
  position: relative;
  overflow: hidden;
  padding: clamp(45px, 8vw, 92px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 7%, rgba(229, 0, 206, 0.23), transparent 23rem),
    radial-gradient(circle at 10% 92%, rgba(52, 55, 219, 0.24), transparent 23rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9df4ea, var(--cyan));
  box-shadow: 0 0 0 13px rgba(32, 201, 189, 0.08);
  color: #082b2a;
  font-size: 1.6rem;
  font-weight: 900;
}

.thanks-title {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.98;
}

.thanks-copy {
  max-width: 720px;
  margin: 24px auto 0;
  color: #bcb3c3;
}

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
  text-align: left;
}

.thanks-step {
  min-height: 165px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(4, 2, 7, 0.24);
}

.thanks-step span {
  color: #7d7385;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
}

.thanks-step h2 {
  margin: 25px 0 7px;
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.thanks-step p {
  margin: 0;
  color: #978c9f;
  font-size: 0.72rem;
}

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

  .nav-links a:not(.button) {
    font-size: 0.74rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 38px;
  }

  .hero-visual {
    min-height: 550px;
  }

  .visual-card {
    right: 20px;
    left: 20px;
  }

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

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

  .mechanism-card {
    min-height: 235px;
  }

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

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

  .wedding-journey {
    grid-template-columns: repeat(4, 1fr);
  }

  .wedding-market-shift-grid,
  .wedding-data-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .wedding-market-shift .section-head,
  .wedding-data-section .section-head {
    max-width: 820px;
  }

  .market-shift-lessons,
  .wedding-data-principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-shift-card,
  .wedding-data-card {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .wedding-data-disclaimer {
    grid-column: 1 / -1;
  }
}

@media (min-width: 621px) and (max-width: 880px) {
  .journey::before,
  .journey::after {
    display: none;
  }
}

@media (min-width: 1081px) and (max-height: 820px) {
  .hero {
    padding-block: 34px 42px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 4.4vw, 4.4rem);
  }

  .hero-copy {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .microcopy {
    margin-top: 12px;
  }

  .hero-visual {
    min-height: 560px;
  }
}

@media (max-width: 880px) {
  .shell {
    width: min(100% - 28px, 720px);
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 155px;
  }

  .brand-weddings img {
    width: 132px;
  }

  .brand-weddings span {
    font-size: 0.67rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    gap: 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(12, 7, 18, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a:not(.button) {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.82rem;
  }

  .nav-links a:not(.button)::after {
    display: none;
  }

  .nav-links .button {
    width: 100%;
    margin-top: 12px;
  }

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

  .hero-grid,
  .outcome-grid,
  .diagnostic-grid,
  .offer-card.featured {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 12vw, 5.6rem);
  }

  .hero-visual {
    min-height: 610px;
  }

  .visual-card {
    right: 18px;
    left: 18px;
  }

  .hero-badge {
    right: 18px;
  }

  .journey {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-step:nth-child(n + 4) {
    margin-top: 20px;
  }

  .diagnostic-grid {
    align-items: start;
  }

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

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

  .continuity-card {
    min-height: 360px;
  }

  .situation-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .market-shift-lessons,
  .wedding-data-principles {
    grid-template-columns: 1fr;
  }

  .market-shift-card,
  .wedding-data-card {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .section {
    padding-block: 84px;
  }

  .section-tight {
    padding-block: 68px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    line-height: 1;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

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

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

  .hero-visual {
    min-height: 480px;
  }

  .hero-photo {
    border-radius: 26px;
  }

  .visual-card {
    left: 12px;
    right: 12px;
    bottom: 14px;
    width: auto;
    padding: 17px;
  }

  .hero-badge {
    top: 15px;
    right: 13px;
    padding: 9px 12px;
    font-size: 0.63rem;
  }

  .channel {
    min-height: 39px;
    padding-inline: 9px;
    font-size: 0.66rem;
  }

  .section-title {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .section-copy {
    font-size: 0.92rem;
  }

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

  .wedding-market-shift-grid,
  .wedding-data-grid {
    gap: 34px;
  }

  .market-shift-conclusion {
    margin-top: 22px;
    padding: 17px 18px;
  }

  .market-shift-card,
  .wedding-data-card {
    padding: 19px;
  }

  .market-shift-card h3,
  .wedding-data-card h3 {
    font-size: 1.32rem;
  }

  .market-shift-card p,
  .wedding-data-card p {
    font-size: 1rem;
  }

  .problem-grid,
  .mechanism-grid,
  .essential-grid,
  .risk-grid,
  .results-grid,
  .provider-grid,
  .wedding-journey,
  .thanks-steps {
    grid-template-columns: 1fr;
  }

  .card,
  .mechanism-card {
    min-height: 0;
  }

  .journey {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

  .journey::before {
    top: 23px;
    left: -1px;
    display: block;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--cyan), var(--violet), var(--magenta));
  }

  .journey::after {
    top: 23px;
    left: 0;
    display: block;
  }

  .journey.visible::before {
    animation-name: journey-line-fill-vertical;
  }

  .journey.visible::after {
    animation-name: journey-runner-vertical;
  }

  .journey-step,
  .journey-step:nth-child(n + 4) {
    min-height: 0;
    margin-top: 0;
    padding: 18px 0 18px 32px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .journey-step::before {
    top: 23px;
    left: -5px;
  }

  .journey-step:hover {
    transform: none;
  }

  .pipeline-card {
    padding: 16px;
  }

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

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

  .channel-track b {
    display: none;
  }

  .diagnostic-card,
  .closing-card,
  .thanks-card {
    padding: 35px 20px;
    border-radius: 26px;
  }

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

  .essential-wrap,
  .offer-card {
    padding: 23px;
  }

  .essential-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .offer-card {
    min-height: 0;
  }

  .offer-card .button,
  .continuity-card .button {
    width: 100%;
  }

  .price-row {
    gap: 18px;
  }

  .wedding-process {
    grid-template-columns: 1fr 1fr;
  }

  .wedding-process span:nth-child(2)::after {
    display: none;
  }

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

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

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

  .footer-legal-links {
    justify-content: flex-start;
  }

  .thanks-main {
    padding-top: 45px;
  }
}

/* Consent-aware analytics controls */
.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  width: min(1060px, calc(100% - 44px));
  margin-inline: auto;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(14, 9, 20, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52), 0 0 38px rgba(117, 21, 232, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
}

.cookie-banner.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner strong { display: block; color: #fff; font-size: 1rem; }
.cookie-banner p { margin: 5px 0 3px; color: #c8bfce; font-size: 0.79rem; line-height: 1.45; }
.cookie-banner a { color: var(--success); font-size: 0.74rem; font-weight: 800; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .button { min-height: 44px; padding: 10px 16px; font-size: 0.72rem; }
.cookie-settings {
  position: fixed;
  z-index: 998;
  right: 14px;
  bottom: 12px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 12, 27, 0.88);
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.24);
  color: #cfc5d6;
  cursor: pointer;
  font: 700 0.62rem var(--body);
}

/* Direct checkout */
.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 83% 22%, rgba(117, 21, 232, 0.2), transparent 31rem),
    radial-gradient(circle at 8% 82%, rgba(32, 201, 189, 0.1), transparent 29rem),
    var(--bg);
}

.checkout-main {
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: center;
  padding: 28px 0 34px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.checkout-summary h1 {
  max-width: 720px;
  margin: 16px 0 14px;
  font-family: var(--display);
  font-size: clamp(3rem, 4.8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.checkout-summary > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.checkout-price-card { max-width: 650px; margin-top: 24px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 21px; background: rgba(255, 255, 255, 0.035); }
.checkout-price-card > div { display: flex; justify-content: space-between; gap: 20px; padding: 7px 0; color: #c9c0d0; font-size: 0.82rem; }
.checkout-price-card strong { color: #fff; }
.checkout-price-card .checkout-total { margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 1rem; }
.checkout-price-card .checkout-total strong { font-family: var(--display); font-size: 2.15rem; line-height: 1; }
.checkout-assurances { display: grid; gap: 8px; max-width: 650px; margin: 18px 0 0; padding: 0; list-style: none; color: #c4bbc9; font-size: 0.8rem; }
.checkout-assurances span { margin-right: 8px; color: var(--success); font-weight: 900; }
.checkout-continuity { max-width: 650px !important; margin-top: 14px !important; padding: 12px 14px; border-radius: 14px; background: rgba(117, 21, 232, 0.11); color: #ded5e4 !important; font-size: 0.75rem !important; }

.checkout-form-card { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 27px; background: #fff; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 40px rgba(117, 21, 232, 0.14); }
.checkout-form-heading { padding: 17px 22px 13px; background: #120b1b; }
.checkout-form-heading span { color: var(--cyan); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.checkout-form-heading h2 { margin: 5px 0 2px; color: #fff; font-size: 1.12rem; }
.checkout-form-heading p { margin: 0; color: #a99fb0; font-size: 0.72rem; }
.checkout-form { display: grid; gap: 11px; padding: 18px 20px 20px; color: #2b2333; }
.checkout-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.checkout-form label { display: grid; gap: 5px; font-size: 0.73rem; font-weight: 700; }
.checkout-form input,
.checkout-form select { width: 100%; min-height: 43px; padding: 9px 11px; border: 1px solid #d8d2dd; border-radius: 9px; background: #fff; color: #231a2c; font: 500 0.82rem var(--body); }
.checkout-form input:focus,
.checkout-form select:focus { border-color: #7521d7; outline: 3px solid rgba(117, 33, 215, 0.12); }
.checkout-consent { grid-template-columns: 18px 1fr !important; align-items: start; gap: 9px !important; margin-top: 3px; line-height: 1.38; }
.checkout-consent input { min-height: 0; margin: 2px 0 0; }
.checkout-consent a { color: #6814ca; text-decoration: underline; }
.checkout-submit { width: 100%; margin-top: 3px; border: 0; }
.checkout-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.checkout-status { min-height: 1.2em; margin: 0; color: #8e2944; font-size: 0.72rem; text-align: center; }

@media (min-width: 1081px) and (max-height: 960px) {
  #soluciones.viewport-panel,
  #inversion.viewport-panel,
  .case-study-panel,
  .platform-showcase {
    padding-block: 22px;
  }

  #soluciones .section-head,
  #inversion .section-head,
  .case-study-panel .section-head {
    margin-bottom: 16px;
  }

  #soluciones .section-title,
  #inversion .section-title,
  .case-study-panel .section-title,
  .platform-showcase-head .section-title {
    font-size: clamp(2.55rem, 3.8vw, 3.65rem);
  }

  #soluciones .section-copy,
  #inversion .section-copy,
  .case-study-panel .section-copy,
  .platform-showcase-head .section-copy {
    margin-top: 9px;
    line-height: 1.45;
  }

  .essential-wrap { padding: 18px 20px; }
  .essential-head { margin-bottom: 14px; }
  .essential-card { min-height: 182px; padding: 14px 15px; }
  .essential-card h4 { margin: 10px 0 5px; }
  .essential-card .price { padding-top: 11px; }
  .case-step { padding: 58px 14px 13px; }
  .case-step h3 { margin-bottom: 7px; font-size: 1.15rem; }
  .case-layer { padding-top: 7px; }
  .case-layer + .case-layer { margin-top: 7px; }
  .case-layer p { font-size: 0.81rem; line-height: 1.34; }
  .case-outcome { margin-top: 10px; padding: 11px 15px; font-size: 0.8rem; }
  .platform-showcase-head { margin-bottom: 12px; }
  .platform-stage { min-height: 355px; }
}

@media (min-width: 981px) and (max-height: 820px) {
  .checkout-main { padding: 12px 0; }
  .checkout-layout { gap: 34px; }
  .checkout-summary h1 { margin-block: 9px; font-size: clamp(2.45rem, 3.6vw, 3.2rem); }
  .checkout-summary > p:not(.eyebrow) { font-size: 0.82rem; line-height: 1.4; }
  .checkout-price-card { margin-top: 12px; padding: 12px 16px; }
  .checkout-price-card > div { padding-block: 4px; }
  .checkout-price-card .checkout-total { padding-top: 9px; }
  .checkout-price-card .checkout-total strong { font-size: 1.8rem; }
  .checkout-assurances { margin-top: 11px; gap: 5px; }
  .checkout-continuity { margin-top: 9px !important; padding: 9px 11px; }
  .checkout-form-heading { padding: 12px 18px 10px; }
  .checkout-form { gap: 8px; padding: 12px 16px 14px; }
  .checkout-form input,
  .checkout-form select { min-height: 37px; padding-block: 7px; }
}

@media (max-width: 980px) {
  .checkout-layout { grid-template-columns: 1fr; max-width: 760px; }
  .checkout-main { padding-block: 38px 56px; }
}

@media (max-width: 620px) {
  .cookie-banner { right: 12px; bottom: 12px; left: 12px; grid-template-columns: 1fr; gap: 15px; width: auto; padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button { width: 100%; }
  .checkout-summary h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .checkout-field-grid { grid-template-columns: 1fr; }
  .checkout-form-card { border-radius: 21px; }
}

@media (max-width: 900px) {
  .legal-main {
    padding: 58px 0 84px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-index {
    position: static;
    grid-row: 1;
  }
}

/* Content typography: 20% larger while preserving every headline size. */
.brand-weddings span {
  font-size: 0.98rem;
}

.nav-links a:not(.button) {
  font-size: 1rem;
}

.button {
  font-size: 0.98rem;
}

.button-small {
  font-size: 0.91rem;
}

.eyebrow {
  font-size: 0.88rem;
}

.hero-copy {
  font-size: clamp(1.2rem, 1.68vw, 1.4rem);
}

.microcopy {
  font-size: 0.91rem;
}

.visual-card-label {
  font-size: 0.78rem;
}

.channel {
  font-size: 0.88rem;
}

.visual-card-result {
  font-size: 0.94rem;
}

.hero-badge {
  font-size: 0.86rem;
}

.section-copy {
  font-size: 1.22rem;
}

.card-number strong,
.mechanism-card > span {
  font-size: 1.32rem;
}

.card p {
  font-size: 1.04rem;
}

.journey-step span {
  font-size: 0.9rem;
}

.journey-step strong {
  font-size: 0.95rem;
}

.journey-step small {
  font-size: 0.82rem;
}

.insight,
.check-list li {
  font-size: 1.08rem;
}

.pipeline-top strong {
  font-size: 1.03rem;
}

.pipeline-top span {
  font-size: 0.82rem;
}

.pipeline-item strong {
  font-size: 0.88rem;
}

.pipeline-item small {
  font-size: 0.77rem;
}

.status,
.pipeline-metric span {
  font-size: 0.7rem;
}

.mechanism-card p {
  font-size: 1rem;
}

.channel-track span {
  font-size: 0.79rem;
}

.diagnostic-card p,
.closing-card p,
.thanks-copy {
  font-size: 1.2rem;
}

.diagnostic-step span,
.thanks-step span {
  font-size: 0.86rem;
}

.diagnostic-step strong,
.thanks-step p {
  font-size: 0.91rem;
}

.essential-head p,
.mechanism-card p {
  font-size: 1rem;
}

.essential-card p {
  font-size: 0.86rem;
}

.essential-card .price {
  font-size: 1.86rem;
}

.essential-card .price small {
  font-size: 0.66rem;
}

.offer-label,
.price-block span,
.continuity-price span {
  font-size: 0.74rem;
}

.offer-card > p,
.offer-main > p {
  font-size: 1.04rem;
}

.price-block strong {
  font-size: 2.58rem;
}

.offer-list li {
  font-size: 0.94rem;
}

.offer-note {
  font-size: 0.85rem;
}

.continuity-card p {
  font-size: 0.98rem;
}

.continuity-price strong {
  font-size: 2.7rem;
}

.risk-card p,
.result-card p,
.provider-card p {
  font-size: 0.91rem;
}

.faq-answer p {
  font-size: 1.08rem;
}

.footer-brand p {
  font-size: 0.96rem;
}

.footer-column a,
.footer-column span {
  font-size: 0.94rem;
}

.footer-bottom {
  font-size: 0.82rem;
}

.wedding-process span,
.wedding-stage span {
  font-size: 0.86rem;
}

.situation span {
  font-size: 1.01rem;
}

.situation p {
  font-size: 1.08rem;
}

.wedding-stage p {
  font-size: 0.83rem;
}

.wedding-note {
  font-size: 1rem;
}

.weddings-note {
  font-size: 0.9rem;
}

/* Desktop narrative rhythm: each major block reads as one complete viewport. */
.section-continuation {
  border-top: 1px solid var(--line-light);
}

.problem-title-break {
  display: none;
}

@media (min-width: 1081px) {
  .viewport-panel {
    min-height: calc(100svh - 84px);
    display: grid;
    align-items: center;
    padding-block: clamp(44px, 6svh, 72px);
    scroll-margin-top: 84px;
  }

  .section-tight.viewport-panel {
    padding-block: clamp(38px, 5svh, 62px);
  }

  .viewport-panel .section-head {
    margin-bottom: clamp(26px, 3.5svh, 40px);
  }

  .house-build-panel,
  .continuity-options-panel {
    padding-block: clamp(24px, 3svh, 34px);
  }

  .house-build-panel .section-head {
    margin-bottom: 26px;
  }

  .house-build-panel .house-journey {
    margin-top: 0;
  }

  .continuity-options-panel .section-head {
    margin-bottom: 22px;
  }

  .problem-panel {
    padding-block: clamp(24px, 3svh, 36px);
  }

  .problem-panel .section-head {
    max-width: 1260px;
    margin-bottom: clamp(16px, 2svh, 24px);
  }

  .problem-title {
    max-width: 1260px;
  }

  .problem-title-break {
    display: block;
  }

  .problem-panel .section-copy {
    max-width: 1260px;
    margin-top: 14px;
    line-height: 1.55;
  }

  .problem-panel .problem-grid {
    gap: 10px;
  }

  .problem-panel .card {
    padding: 18px 20px;
  }

  .problem-panel .card-number {
    margin-bottom: 12px;
  }

  .problem-panel .mini-icon {
    width: 26px;
    height: 26px;
    border-radius: 0;
    background: transparent;
    color: #741fd1;
  }

  .problem-panel .mini-icon svg {
    width: 24px;
    height: 24px;
  }

  .problem-panel .card h3 {
    margin-bottom: 7px;
  }

  .problem-panel .card p {
    line-height: 1.52;
  }

  .panel-offers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    margin-top: 0;
  }

  .panel-offers .offer-card,
  .panel-offers .offer-card.featured {
    min-height: 0;
  }

  .panel-offers .offer-card.featured {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .panel-offers .offer-card.featured > .offer-main,
  .panel-offers .offer-card.featured > div:not(.offer-main) {
    display: contents;
  }

  .panel-offers .offer-card h3 {
    margin: 17px 0 10px;
  }

  .panel-offers .price-row {
    gap: 18px;
    margin: 21px 0 18px;
  }

  .panel-offers .offer-list {
    gap: 8px;
    margin-bottom: 20px;
  }

  .panel-offers .offer-list li {
    line-height: 1.45;
  }

  .panel-offers .offer-note {
    margin-top: 10px;
    padding-top: 12px;
  }

  .panel-offers .button {
    width: 100%;
  }

  .faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(58px, 7vw, 110px);
  }

  .faq-layout .section-head {
    margin-bottom: 0;
  }

  .faq-layout .faq-question {
    min-height: 72px;
    padding-block: 13px;
  }

  .closing.viewport-panel {
    padding-block: clamp(44px, 6svh, 72px);
  }
}

/* Individual service pages */
.service-page {
  background:
    radial-gradient(circle at 84% 8%, rgba(117, 21, 232, 0.2), transparent 31rem),
    radial-gradient(circle at 8% 34%, rgba(52, 55, 219, 0.12), transparent 28rem),
    var(--bg);
}

.service-page.weddings {
  background:
    radial-gradient(circle at 84% 8%, rgba(229, 0, 206, 0.2), transparent 31rem),
    radial-gradient(circle at 8% 34%, rgba(117, 21, 232, 0.14), transparent 28rem),
    var(--bg);
}

.service-hero {
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: center;
  padding: clamp(42px, 6svh, 72px) 0;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #8f8598;
  font-size: 0.88rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #fff;
}

.service-hero-copy h1 {
  max-width: 900px;
  margin: 14px 0 18px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.35rem, 4.35vw, 4.8rem);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.service-lead {
  max-width: 760px;
  margin: 0;
  color: #b8afc0;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.6;
}

.service-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin: 20px 0 18px;
}

.service-price span {
  width: 100%;
  color: #8d8395;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-price strong {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.35rem, 3.2vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
}

.service-price small {
  color: #a99fb0;
  font-size: 0.98rem;
  font-weight: 700;
}

.service-transform {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 0, 206, 0.13), transparent 18rem),
    rgba(17, 10, 26, 0.82);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(52, 55, 219, 0.25), rgba(229, 0, 206, 0.15));
  color: #ede5f4;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.brand-service-icon {
  background: #fff;
}

.service-icon.brand-service-icon svg {
  width: 40px;
  height: 40px;
  fill: initial;
  stroke: none;
}

.transform-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.transform-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.transform-row div {
  min-width: 0;
}

.transform-row span,
.transform-row strong {
  display: block;
}

.transform-row span {
  margin-bottom: 2px;
  color: #7f7588;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transform-row strong {
  font-size: 0.96rem;
  line-height: 1.35;
}

.transform-row b {
  color: var(--cyan);
  font-size: 1.1rem;
}

.service-need .section-head {
  max-width: 1080px;
}

.service-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-problem-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(30, 18, 40, 0.06);
}

.service-problem-card > span,
.include-item > span,
.service-step > span {
  color: #7b22d0;
  font-family: "Oswald", sans-serif;
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.service-problem-card h3 {
  margin: 25px 0 10px;
  color: #18101f;
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.12;
}

.service-problem-card p {
  margin: 0;
  color: #665d6e;
  font-size: 1.04rem;
  line-height: 1.65;
}

.service-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.include-item {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.include-item > span {
  color: #8d8296;
}

.include-item strong {
  font-size: 1.06rem;
  line-height: 1.45;
}

.service-scope-note {
  max-width: 1030px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(32, 201, 189, 0.2);
  border-radius: 16px;
  background: rgba(32, 201, 189, 0.06);
  color: #c7becd;
  font-size: 1.04rem;
  font-weight: 600;
  text-align: center;
}

.service-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
}

.service-steps {
  display: grid;
  gap: 10px;
}

.service-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 17px 18px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: #fff;
}

.service-step h3 {
  margin: 0 0 4px;
  color: #18101f;
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.service-step p {
  margin: 0;
  color: #665d6e;
  font-size: 1.02rem;
  line-height: 1.55;
}

.investment-card {
  padding: 29px;
  border: 1px solid rgba(117, 21, 232, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 0, 206, 0.13), transparent 18rem),
    #15101b;
  box-shadow: 0 25px 70px rgba(26, 15, 34, 0.18);
  color: #fff;
}

.investment-card h2 {
  margin: 20px 0 4px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.2rem, 4.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1;
}

.investment-card p {
  margin: 0;
  color: #b7aebd;
  font-size: 1.03rem;
}

.investment-card > strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
}

.investment-divider {
  height: 1px;
  margin: 20px 0;
  background: var(--line);
}

.investment-card .button {
  width: 100%;
  margin-top: 22px;
}

.service-faq .faq-layout {
  align-items: start;
}

/* Service-page rhythm: every commercial idea resolves inside one desktop viewport. */
@media (min-width: 1081px) {
  .service-page .viewport-panel,
  .service-page .closing {
    min-height: calc(100svh - 84px);
    display: grid;
    align-items: center;
    padding-block: clamp(34px, 4.5svh, 54px);
  }

  .service-page .section-title {
    font-size: clamp(2.75rem, 4vw, 4.25rem);
  }

  .service-page .viewport-panel .section-head {
    margin-bottom: clamp(20px, 2.5svh, 30px);
  }

  .service-page .closing-card {
    padding: clamp(42px, 5.5svh, 62px) clamp(46px, 6vw, 80px);
  }

  .service-page .closing-card h2 {
    font-size: clamp(2.8rem, 4.8vw, 4.75rem);
  }
}

@media (max-width: 1080px) {
  .service-hero {
    min-height: auto;
    padding: 70px 0;
  }

  .service-hero-grid,
  .service-delivery-grid {
    grid-template-columns: 1fr;
  }

  .service-transform {
    max-width: 760px;
  }

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

@media (max-width: 720px) {
  .service-hero {
    padding: 42px 0 54px;
  }

  .service-hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 1.02;
  }

  .service-lead {
    font-size: 1.03rem;
  }

  .service-transform,
  .investment-card {
    padding: 23px;
    border-radius: 22px;
  }

  .transform-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .transform-row b {
    transform: rotate(90deg);
    transform-origin: center;
  }

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

  .service-problem-card {
    min-height: 0;
  }

  .service-step {
    grid-template-columns: 35px 1fr;
    padding: 18px;
  }

  .breadcrumb {
    flex-wrap: wrap;
  }
}

@media (min-width: 1081px) and (max-height: 820px) {
  .viewport-panel,
  .section-tight.viewport-panel,
  .closing.viewport-panel {
    padding-block: 28px;
  }

  .viewport-panel .section-head {
    margin-bottom: 22px;
  }

  .house-build-panel,
  .continuity-options-panel {
    padding-block: 16px;
  }

  .house-build-panel .section-head,
  .continuity-options-panel .section-head {
    margin-bottom: 14px;
  }

  .house-build-panel .section-title,
  .continuity-options-panel .section-title {
    font-size: clamp(2.65rem, 4vw, 3.65rem);
  }

  .house-build-panel .section-copy,
  .continuity-options-panel .section-copy {
    margin-top: 10px;
    line-height: 1.55;
  }

  .house-journey .journey-step {
    padding: 19px 20px 16px;
  }

  .house-journey .journey-step span {
    margin-bottom: 8px;
  }

  .house-journey .journey-step small {
    margin-top: 4px;
    line-height: 1.42;
  }

  .continuity-options-panel .continuity-card {
    padding: 17px;
  }

  .continuity-options-panel .continuity-card h3 {
    margin: 8px 0 6px;
    font-size: 1.55rem;
  }

  .continuity-options-panel .continuity-card > p {
    min-height: 4.4em;
    line-height: 1.42;
  }

  .continuity-options-panel .continuity-price {
    margin: 12px 0 9px;
  }

  .continuity-options-panel .continuity-price strong {
    font-size: 2.35rem;
  }

  .continuity-options-panel .offer-list {
    gap: 4px;
    margin-bottom: 10px;
  }

  .continuity-options-panel .offer-list li {
    line-height: 1.28;
  }

  .continuity-options-panel .button {
    padding-block: 11px;
  }

  .problem-panel {
    padding-block: 14px;
  }

  .problem-panel .section-head {
    margin-bottom: 12px;
  }

  .problem-grid .card,
  .provider-card,
  .result-card,
  .risk-card {
    padding: 19px;
  }

  .card-number {
    margin-bottom: 15px;
  }

  .mechanism-card {
    min-height: 215px;
    padding: 21px;
  }

  .mechanism-card h3,
  .wedding-stage h3 {
    margin-top: 24px;
  }

  .essential-wrap {
    padding: 21px;
  }

  .essential-card {
    min-height: 190px;
    padding: 15px;
  }

  .essential-card h4 {
    margin: 13px 0 6px;
  }

  .panel-offers .offer-card {
    padding: 22px;
  }

  .panel-offers .offer-card h3 {
    margin: 12px 0 8px;
  }

  .panel-offers .price-row {
    gap: 12px;
    margin: 15px 0 13px;
  }

  .panel-offers .offer-list {
    gap: 5px;
    margin-bottom: 13px;
  }

  .panel-offers .offer-list li {
    line-height: 1.32;
  }

  .panel-offers .offer-note {
    margin-top: 7px;
    padding-top: 8px;
  }

  .continuity-card {
    min-height: 350px;
    padding: 22px;
  }

  .continuity-price {
    margin: 18px 0 15px;
  }

  .wedding-stage {
    min-height: 205px;
    padding: 15px;
  }

  .provider-card {
    min-height: 160px;
  }

  .faq-layout .faq-question {
    min-height: 61px;
    padding-block: 9px;
  }

  .faq-layout .faq-plus {
    width: 31px;
    height: 31px;
  }

  .wedding-market-shift-grid,
  .wedding-data-grid {
    gap: 48px;
  }

  .wedding-market-shift .section-title,
  .wedding-data-section .section-title {
    font-size: clamp(2.65rem, 3.9vw, 3.7rem);
  }

  .wedding-market-shift .section-copy,
  .wedding-data-section .section-copy {
    margin-top: 14px;
    line-height: 1.55;
  }

  .market-shift-conclusion {
    margin-top: 18px;
    padding: 15px 17px;
    line-height: 1.5;
  }

  .market-shift-card,
  .wedding-data-card {
    gap: 15px;
    padding: 16px 18px;
  }

  .market-shift-card h3,
  .wedding-data-card h3 {
    margin-bottom: 5px;
    font-size: 1.25rem;
  }

  .market-shift-card p,
  .wedding-data-card p {
    font-size: 1rem;
    line-height: 1.48;
  }

  .wedding-data-source {
    margin-top: 18px;
  }

  .wedding-data-disclaimer {
    padding: 12px 15px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .service-hero {
    padding-block: 24px;
  }

  .service-hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
    gap: clamp(30px, 4vw, 56px);
  }

  .service-hero .breadcrumb {
    margin-bottom: 12px;
  }

  .service-hero-copy .eyebrow {
    margin-bottom: 10px;
  }

  .service-hero-copy h1 {
    margin: 8px 0 13px;
    font-size: clamp(3rem, 4.15vw, 4.15rem);
    line-height: 0.96;
  }

  .service-lead {
    font-size: 1.04rem;
    line-height: 1.48;
  }

  .service-price {
    margin: 14px 0 12px;
  }

  .service-price strong {
    font-size: clamp(2.2rem, 2.8vw, 2.75rem);
  }

  .service-hero .hero-actions {
    margin-top: 14px;
  }

  .service-hero .button {
    min-height: 46px;
  }

  .service-hero .microcopy {
    margin-top: 9px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .service-transform {
    padding: 24px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .service-icon.brand-service-icon svg {
    width: 34px;
    height: 34px;
  }

  .service-transform .visual-card-label {
    margin-bottom: 10px;
  }

  .transform-list {
    gap: 8px;
    margin-top: 10px;
  }

  .transform-row {
    gap: 11px;
    padding: 11px 12px;
  }

  .service-page .viewport-panel,
  .service-page .closing {
    padding-block: 24px;
  }

  .service-page .section-title {
    font-size: clamp(2.6rem, 3.8vw, 3.65rem);
  }

  .service-page .viewport-panel .section-head {
    margin-bottom: 17px;
  }

  .service-page .section-copy {
    margin-top: 13px;
    font-size: 1.03rem;
    line-height: 1.55;
  }

  .service-problem-grid,
  .service-includes-grid {
    gap: 10px;
  }

  .service-problem-card {
    min-height: 210px;
    padding: 20px;
  }

  .service-problem-card h3 {
    margin: 18px 0 8px;
    font-size: 1.5rem;
  }

  .service-problem-card p {
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .include-item {
    min-height: 104px;
    gap: 12px;
    padding: 15px 17px;
  }

  .include-item strong {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .service-scope-note {
    margin-top: 13px;
    padding: 10px 15px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .service-delivery-grid {
    gap: clamp(36px, 5vw, 68px);
  }

  .service-step {
    padding: 13px 15px;
  }

  .service-step h3 {
    font-size: 1.22rem;
  }

  .service-step p {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .investment-card {
    padding: 23px;
  }

  .investment-card h2 {
    margin-top: 13px;
    font-size: clamp(2.8rem, 4vw, 3.65rem);
  }

  .investment-card p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .investment-divider {
    margin: 15px 0;
  }

  .investment-card .button {
    min-height: 46px;
    margin-top: 16px;
  }

  .service-page .closing-card {
    padding-block: 36px;
  }

  .service-page .closing-card h2 {
    font-size: clamp(2.65rem, 4.4vw, 3.9rem);
  }

  .service-page .closing-card p {
    margin-top: 15px;
    font-size: 1rem;
  }

  .service-page .closing-card .hero-actions {
    margin-top: 20px;
  }
}

@media (max-width: 1080px) {
  .nav-links a:not(.button) {
    font-size: 0.89rem;
  }
}

@media (max-width: 880px) {
  .brand-weddings span {
    font-size: 0.8rem;
  }

  .nav-links a:not(.button) {
    font-size: 0.98rem;
  }
}

@media (max-width: 620px) {
  .hero-copy {
    font-size: 1.18rem;
  }

  .hero-badge {
    font-size: 0.76rem;
  }

  .channel {
    font-size: 0.79rem;
  }

  .section-copy {
    font-size: 1.1rem;
  }

  .mechanism-card h3,
  .wedding-stage h3 {
    margin-top: 24px;
  }
}

/* Keep the three principal offers complete inside the desktop viewport. */
@media (min-width: 1081px) {
  .section-continuation.viewport-panel {
    padding-block: clamp(22px, 3svh, 36px);
  }

  .panel-offers {
    grid-template-columns:
      minmax(0, 0.94fr)
      minmax(0, 0.94fr)
      minmax(0, 1.12fr);
  }

  .panel-offers--weddings,
  .panel-offers--general {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .panel-offers .offer-card.featured .offer-note {
    margin-bottom: clamp(22px, 2.5svh, 30px);
  }
}

@media (min-width: 1081px) and (max-height: 900px) {
  .section-continuation.viewport-panel {
    padding-block: 16px;
  }

  .panel-offers .offer-card {
    padding: 18px 19px;
  }

  .panel-offers .offer-card h3 {
    margin: 10px 0 7px;
  }

  .panel-offers .offer-card > p,
  .panel-offers .offer-main > p {
    line-height: 1.48;
  }

  .panel-offers .price-row {
    gap: 10px 16px;
    margin: 12px 0 10px;
  }

  .panel-offers .price-block strong {
    line-height: 1.1;
  }

  .panel-offers .offer-list {
    gap: 4px;
    margin-bottom: 10px;
  }

  .panel-offers .offer-list li {
    line-height: 1.27;
  }

  .panel-offers .offer-card.featured .offer-note {
    margin-top: 6px;
    margin-bottom: 20px;
    padding-top: 8px;
    line-height: 1.42;
  }
}

/* Meaningful motion for customer journeys and connected processes. */
.pipeline-item,
.mechanism-card,
.channel-track span,
.wedding-process span,
.wedding-stage,
.transform-row,
.service-step,
.thanks-step {
  --flow-delay: 0s;
}

.pipeline-item:nth-child(2),
.mechanism-card:nth-child(2),
.channel-track span:nth-of-type(2),
.wedding-process span:nth-child(2),
.wedding-stage:nth-child(2),
.transform-row:nth-child(2),
.service-step:nth-child(2),
.thanks-step:nth-child(2) {
  --flow-delay: 1.12s;
}

.pipeline-item:nth-child(3),
.mechanism-card:nth-child(3),
.channel-track span:nth-of-type(3),
.wedding-process span:nth-child(3),
.wedding-stage:nth-child(3),
.transform-row:nth-child(3),
.service-step:nth-child(3),
.thanks-step:nth-child(3) {
  --flow-delay: 2.24s;
}

.pipeline-item:nth-child(4),
.mechanism-card:nth-child(4),
.channel-track span:nth-of-type(4),
.wedding-process span:nth-child(4),
.wedding-stage:nth-child(4),
.transform-row:nth-child(4),
.service-step:nth-child(4),
.thanks-step:nth-child(4) {
  --flow-delay: 3.36s;
}

.channel-track span:nth-of-type(5),
.wedding-stage:nth-child(5) {
  --flow-delay: 4.48s;
}

.channel-track span:nth-of-type(6),
.wedding-stage:nth-child(6) {
  --flow-delay: 5.6s;
}

.channel-track span:nth-of-type(7),
.wedding-stage:nth-child(7) {
  --flow-delay: 6.72s;
}

.pipeline-item {
  --flow-rest-border: rgba(255, 255, 255, 0.07);
}

.mechanism-card,
.wedding-process span,
.wedding-stage,
.thanks-step {
  --flow-rest-border: var(--line);
}

.transform-row {
  --flow-rest-border: rgba(255, 255, 255, 0.08);
}

.service-step {
  --flow-rest-border: var(--line-light);
  --flow-label-rest: #7b22d0;
  position: relative;
}

.wedding-stage {
  --flow-label-rest: #776c80;
}

.thanks-step {
  --flow-label-rest: #7d7385;
}

.pipeline-item,
.mechanism-card,
.wedding-process span,
.wedding-stage,
.transform-row,
.service-step,
.thanks-step {
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.pipeline-list.flow-active .pipeline-item,
.mechanism-grid.flow-active .mechanism-card,
.wedding-process.flow-active span,
.wedding-journey.flow-active .wedding-stage,
.transform-list.flow-active .transform-row,
.service-steps.flow-active .service-step,
.thanks-steps.flow-active .thanks-step {
  animation: flow-card-focus 9.6s ease-in-out var(--flow-delay) infinite;
}

.pipeline-list.flow-active .pipeline-item::before {
  animation: flow-node-focus 9.6s ease-in-out var(--flow-delay) infinite;
}

.mechanism-card,
.wedding-stage {
  position: relative;
  overflow: hidden;
}

.mechanism-card::before,
.wedding-stage::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -32%;
  width: 30%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
  box-shadow: 0 0 18px rgba(117, 21, 232, 0.72);
  opacity: 0;
  pointer-events: none;
}

.mechanism-grid.flow-active .mechanism-card::before,
.wedding-journey.flow-active .wedding-stage::before {
  animation: flow-edge-pass 9.6s ease-in-out var(--flow-delay) infinite;
}

.mechanism-card:hover,
.wedding-stage:hover,
.service-step:hover,
.thanks-step:hover {
  border-color: rgba(117, 21, 232, 0.38);
  box-shadow:
    0 18px 45px rgba(4, 2, 7, 0.16),
    0 0 30px rgba(117, 21, 232, 0.12);
  transform: translateY(-4px);
}

.channel-track span {
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.channel-track.flow-active span {
  animation: flow-stop-focus 9.6s ease-in-out var(--flow-delay) infinite;
}

.channel-track b {
  --flow-delay: 0s;
  --flow-arrow-rest: #58505f;
  display: inline-block;
  transform-origin: center;
}

.wedding-process span {
  --flow-arrow-rest: #6e6575;
}

.transform-row {
  --flow-arrow-rest: var(--cyan);
}

.channel-track b:nth-of-type(2) {
  --flow-delay: 1.12s;
}

.channel-track b:nth-of-type(3) {
  --flow-delay: 2.24s;
}

.channel-track b:nth-of-type(4) {
  --flow-delay: 3.36s;
}

.channel-track b:nth-of-type(5) {
  --flow-delay: 4.48s;
}

.channel-track b:nth-of-type(6) {
  --flow-delay: 5.6s;
}

.channel-track.flow-active b,
.wedding-process.flow-active span:not(:last-child)::after {
  animation: flow-arrow-travel 9.6s ease-in-out calc(var(--flow-delay) + 0.55s) infinite;
}

.wedding-process span::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -1px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  box-shadow: 0 0 16px rgba(117, 21, 232, 0.7);
  opacity: 0;
  pointer-events: none;
}

.wedding-process.flow-active span::before {
  animation: wedding-process-edge 9.6s ease-in-out var(--flow-delay) infinite;
}

.transform-list.flow-active .transform-row b {
  animation: flow-arrow-travel 9.6s ease-in-out calc(var(--flow-delay) + 0.38s) infinite;
}

.service-steps {
  position: relative;
}

.service-step::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 38px;
  bottom: -11px;
  width: 2px;
  height: 11px;
  border-radius: 999px;
  background: rgba(117, 21, 232, 0.22);
  box-shadow: 0 0 0 rgba(117, 21, 232, 0);
}

.service-step:last-child::after {
  display: none;
}

.service-steps.flow-active .service-step::after {
  animation: flow-connector-focus 9.6s ease-in-out calc(var(--flow-delay) + 0.55s) infinite;
}

.service-steps.flow-active .service-step > span,
.thanks-steps.flow-active .thanks-step > span,
.wedding-journey.flow-active .wedding-stage > span {
  animation: flow-number-focus 9.6s ease-in-out var(--flow-delay) infinite;
}

@keyframes flow-card-focus {
  0%,
  15%,
  100% {
    border-color: var(--flow-rest-border, var(--line));
    box-shadow: none;
  }
  4%,
  10% {
    border-color: rgba(117, 21, 232, 0.42);
    box-shadow:
      0 16px 42px rgba(4, 2, 7, 0.14),
      0 0 30px rgba(117, 21, 232, 0.14);
  }
}

@keyframes wedding-process-edge {
  0%,
  15%,
  100% {
    width: 0;
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  10% {
    width: 100%;
    opacity: 1;
  }
  14% {
    width: 100%;
    opacity: 0;
  }
}

@keyframes flow-node-focus {
  0%,
  15%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  4%,
  10% {
    opacity: 1;
    background: var(--cyan);
    box-shadow:
      0 0 0 4px rgba(32, 201, 189, 0.14),
      0 0 22px rgba(32, 201, 189, 0.86);
    transform: scale(1.38);
  }
}

@keyframes flow-edge-pass {
  0%,
  15%,
  100% {
    left: -32%;
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  11% {
    left: 102%;
    opacity: 1;
  }
  14% {
    left: 102%;
    opacity: 0;
  }
}

@keyframes flow-stop-focus {
  0%,
  15%,
  100% {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.035);
    color: #beb5c4;
    box-shadow: none;
  }
  4%,
  10% {
    border-color: rgba(32, 201, 189, 0.42);
    background: radial-gradient(circle at 50% 50%, rgba(117, 21, 232, 0.2), rgba(255, 255, 255, 0.05));
    color: #fff;
    box-shadow: 0 0 24px rgba(117, 21, 232, 0.2);
  }
}

@keyframes flow-arrow-travel {
  0%,
  15%,
  100% {
    color: var(--flow-arrow-rest, rgba(255, 255, 255, 0.22));
    filter: none;
    opacity: 0.55;
  }
  4%,
  10% {
    color: var(--cyan);
    filter: drop-shadow(0 0 7px rgba(32, 201, 189, 0.9));
    opacity: 1;
  }
}

@keyframes flow-connector-focus {
  0%,
  15%,
  100% {
    background: rgba(117, 21, 232, 0.22);
    box-shadow: 0 0 0 rgba(117, 21, 232, 0);
  }
  4%,
  10% {
    background: linear-gradient(180deg, var(--cyan), var(--violet));
    box-shadow: 0 0 11px rgba(117, 21, 232, 0.62);
  }
}

@keyframes flow-number-focus {
  0%,
  15%,
  100% {
    color: var(--flow-label-rest);
    text-shadow: none;
  }
  4%,
  10% {
    color: var(--cyan);
    text-shadow: 0 0 15px rgba(32, 201, 189, 0.52);
  }
}

@media (max-width: 620px) {
  .mechanism-card:hover,
  .wedding-stage:hover,
  .service-step:hover,
  .thanks-step:hover {
    transform: none;
  }
}

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

.workshop-promo {
  position: relative;
  overflow: hidden;
  padding-block: clamp(78px, 10svh, 118px);
  background:
    radial-gradient(circle at 82% 18%, rgba(32, 201, 189, 0.15), transparent 24rem),
    linear-gradient(135deg, #07090d 0%, #10131a 100%);
}

.workshop-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 84px 100%;
  mask-image: linear-gradient(to right, transparent, #000 35%, #000 80%, transparent);
}

.workshop-promo-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: clamp(40px, 7vw, 104px);
  padding: clamp(48px, 5vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 15%, rgba(32, 201, 189, 0.12), transparent 19rem),
    rgba(7, 9, 13, 0.88);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  isolation: isolate;
}

.workshop-promo-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -2px;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--workshop-angle),
    transparent 0 73%,
    rgba(32, 201, 189, 0.18) 78%,
    #73fff3 83%,
    rgba(117, 21, 232, 0.78) 88%,
    transparent 94% 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: workshop-border-spin 5.8s linear infinite;
  pointer-events: none;
}

.workshop-promo-grid::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -80px;
  right: 9%;
  width: 280px;
  height: 180px;
  border-radius: 50%;
  background: rgba(32, 201, 189, 0.12);
  filter: blur(70px);
  pointer-events: none;
}

.workshop-promo-grid > * {
  position: relative;
  z-index: 1;
}

@keyframes workshop-border-spin {
  to { --workshop-angle: 360deg; }
}

.workshop-promo-copy {
  max-width: 790px;
}

.workshop-promo .section-title {
  max-width: 780px;
  margin-bottom: 22px;
}

.workshop-promo .section-copy {
  max-width: 760px;
  color: #c7c3cd;
}

.workshop-promo-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.workshop-promo-actions > span {
  max-width: 180px;
  color: #aaa5b0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.workshop-promo-button {
  background: radial-gradient(circle at 50% 45%, #8a2bea 0%, #7515e8 58%, #6512d1 100%);
  color: #fff;
  box-shadow: 0 12px 38px rgba(117, 21, 232, 0.34), 0 0 24px rgba(198, 20, 218, 0.16);
}

.workshop-promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(117, 21, 232, 0.44), 0 0 30px rgba(198, 20, 218, 0.22);
}

.workshop-promo-card {
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(6, 8, 12, 0.82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.workshop-promo-tag {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.workshop-promo-date {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0 25px;
}

.workshop-promo-date strong {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4.5rem, 7vw, 7rem);
  line-height: 0.86;
}

.workshop-promo-date span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  color: #eeeaf2;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.5;
}

.workshop-promo-card dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.workshop-promo-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.workshop-promo-card dt {
  color: #96919c;
  font-size: 0.78rem;
  font-weight: 700;
}

.workshop-promo-card dd {
  margin: 0;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
}

.workshop-promo-card > p {
  margin: 22px 0 0;
  color: #bdb8c2;
  font-size: 0.82rem;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .workshop-promo {
    padding-block: 72px;
  }

  .workshop-promo-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: clamp(34px, 7vw, 54px);
    border-radius: 28px;
  }

  .workshop-promo-card {
    width: min(100%, 520px);
  }
}

@media (max-width: 620px) {
  .workshop-promo {
    padding-block: 58px;
  }

  .workshop-promo-grid {
    padding: 30px 22px;
    border-radius: 24px;
  }

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

  .workshop-promo-actions > span {
    max-width: none;
  }

  .workshop-promo-button {
    width: 100%;
  }
}

@media (min-width: 1081px) and (max-height: 820px) {
  .workshop-promo.viewport-panel {
    padding-block: 42px;
  }

  .workshop-promo-grid {
    padding-block: 42px;
  }
}

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

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

/* Blog preserved from the previous HighLevel site */
.blog-page {
  min-height: 70vh;
  background: #08050d;
}

.blog-archive-hero {
  padding: clamp(110px, 14vw, 180px) 0 clamp(70px, 9vw, 110px);
  background:
    radial-gradient(circle at 82% 28%, rgba(198, 20, 218, 0.2), transparent 26rem),
    radial-gradient(circle at 15% 72%, rgba(40, 234, 255, 0.1), transparent 23rem),
    #08050d;
}

.blog-archive-hero h1,
.blog-article-header h1 {
  max-width: 980px;
  margin: 24px 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 7.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.blog-archive-hero > .shell > p:last-child {
  max-width: 780px;
  margin: 0;
  color: #c8c1ce;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.65;
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-archive-card {
  overflow: hidden;
  border: 1px solid #ded8e3;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(24, 11, 31, 0.08);
}

.blog-archive-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #17101e;
}

.blog-archive-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-archive-card:hover .blog-archive-media img {
  transform: scale(1.035);
}

.blog-archive-body {
  padding: 28px;
}

.blog-archive-body h2 {
  margin: 14px 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.blog-archive-body h2 a {
  color: #130d18;
  text-decoration: none;
}

.blog-archive-body p {
  margin: 0 0 22px;
  color: #625a68;
  font-size: 0.96rem;
  line-height: 1.62;
}

.blog-article {
  padding: clamp(105px, 12vw, 150px) 0 100px;
  background:
    radial-gradient(circle at 82% 12%, rgba(117, 21, 232, 0.18), transparent 30rem),
    #08050d;
}

.blog-article-header {
  max-width: 1050px;
}

.blog-article-header h1 {
  max-width: none;
  font-size: clamp(3rem, 6.7vw, 6.7rem);
}

.blog-back {
  display: inline-block;
  margin-bottom: 38px;
  color: #cbc4d0;
  font-weight: 750;
  text-decoration: none;
}

.blog-back:hover {
  color: var(--cyan);
}

.blog-article-lead {
  max-width: 850px;
  color: #c9c2cf;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.62;
}

.blog-article-meta {
  display: flex;
  gap: 14px 30px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: #9d94a4;
  font-size: 0.85rem;
  font-weight: 750;
}

.blog-article-cover {
  max-width: 1180px;
  margin-top: 55px;
}

.blog-article-cover img {
  display: block;
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.blog-article-content {
  max-width: 860px;
  margin-top: 64px;
  color: #d4ced8;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.8;
}

.blog-article-content h2,
.blog-article-content h3 {
  margin: 2.2em 0 0.72em;
  color: #fff;
  font-family: var(--display);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.blog-article-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.blog-article-content h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.blog-article-content p,
.blog-article-content ul,
.blog-article-content ol {
  margin: 0 0 1.25em;
}

.blog-article-content li {
  margin-bottom: 0.55em;
}

.blog-article-content a {
  color: var(--cyan);
}

.blog-article-content blockquote {
  margin: 2rem 0;
  padding: 8px 0 8px 24px;
  border-left: 3px solid var(--magenta);
  color: #fff;
}

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

@media (max-width: 650px) {
  .blog-archive-grid {
    grid-template-columns: 1fr;
  }

  .blog-archive-hero {
    padding-top: 95px;
  }

  .blog-article {
    padding-top: 92px;
  }

  .blog-article-cover {
    margin-top: 34px;
  }

  .blog-article-content {
    margin-top: 42px;
  }
}

/* Diagnostic conversion pages */
.diagnostic-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 18%, rgba(117, 21, 232, 0.19), transparent 34rem),
    radial-gradient(circle at 12% 78%, rgba(32, 201, 189, 0.09), transparent 28rem),
    var(--bg);
}

.diagnostic-page.weddings {
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 0, 206, 0.15), transparent 34rem),
    radial-gradient(circle at 12% 78%, rgba(117, 21, 232, 0.14), transparent 28rem),
    var(--bg);
}

.diagnostic-main {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 84px);
  padding: clamp(22px, 3vw, 42px) 0;
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.76fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
}

.diagnostic-intro h1 {
  max-width: 800px;
  margin: 18px 0 16px;
  font-family: var(--display);
  font-size: clamp(3rem, 4.1vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.97;
}

.diagnostic-intro > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
}

.diagnostic-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.diagnostic-benefits li {
  min-height: 118px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.diagnostic-benefits span {
  display: block;
  margin-bottom: 11px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.diagnostic-benefits strong,
.diagnostic-benefits small {
  display: block;
}

.diagnostic-benefits strong {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.25;
}

.diagnostic-benefits small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.38;
}

.diagnostic-form-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(16, 10, 24, 0.88);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.36),
    0 0 44px rgba(117, 21, 232, 0.14);
}

.diagnostic-form-heading {
  padding: 19px 25px 14px;
  border-bottom: 1px solid var(--line);
}

.diagnostic-form-heading span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.diagnostic-form-heading h2 {
  margin: 6px 0 2px;
  color: #fff;
  font-size: 1.28rem;
}

.diagnostic-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.diagnostic-form-frame {
  display: block;
  width: 117.65%;
  height: 760px !important;
  min-height: 760px !important;
  margin-bottom: -114px;
  border: 0;
  background: #fff;
  transform: scale(0.85);
  transform-origin: top left;
}

.diagnostic-footer {
  padding-top: 0;
}

/* Team and blog: compact desktop panels that preserve the one-screen rhythm. */
.team-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(229, 0, 206, 0.14), transparent 27rem),
    radial-gradient(circle at 12% 86%, rgba(52, 55, 219, 0.18), transparent 29rem),
    #0b0711;
}

.team-panel--weddings {
  background:
    radial-gradient(circle at 82% 14%, rgba(229, 0, 206, 0.2), transparent 28rem),
    radial-gradient(circle at 12% 88%, rgba(117, 21, 232, 0.17), transparent 30rem),
    #0b0711;
}

.team-panel .section-head {
  max-width: 1040px;
}

.team-panel .section-title {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: #100a17;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  isolation: isolate;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 44%, rgba(8, 5, 13, 0.18) 60%, rgba(8, 5, 13, 0.94) 100%);
  pointer-events: none;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.55s ease;
}

/* Each portrait has a different original crop. These offsets align the faces
   on a shared horizontal guide without distorting any photograph. */
@media (min-width: 621px) {
  .team-card:nth-child(1) img {
    object-position: center 32%;
  }

  .team-card:nth-child(2) img {
    object-position: center 25%;
  }

  .team-card:nth-child(3) img {
    object-position: center 18%;
  }
}

.team-card:hover img {
  transform: scale(1.035);
}

.team-card-caption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
}

.team-card-caption span {
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team-card-caption h3 {
  margin: 3px 0 0;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3.45rem);
  font-weight: 600;
  line-height: 1;
}

.blog-panel .section-head {
  max-width: 1020px;
}

.blog-panel .section-title {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 13, 32, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(35, 20, 48, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(35, 20, 48, 0.15);
}

.blog-card-media {
  height: 176px;
  overflow: hidden;
  background: #170d21;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 22px;
}

.blog-meta {
  color: #765e86;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 9px 0 8px;
  color: #140d1c;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 600;
  line-height: 1.08;
}

.blog-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
  line-height: 1.55;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: #6814ca;
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-link b {
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-link b {
  transform: translateX(4px);
}

.blog-all {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.tax-inline {
  display: inline-block;
  margin-left: 0.18em;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.34em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  vertical-align: 0.42em;
  white-space: nowrap;
}

.price > .tax-inline {
  margin-left: 0.28em;
  font-size: 0.34em;
  vertical-align: 0.5em;
}

.price-block strong > .tax-inline,
.continuity-price strong > .tax-inline,
.service-price strong > .tax-inline,
.investment-card h2 > .tax-inline {
  display: inline-block;
  margin-left: 0.18em;
  font-size: 0.34em;
  line-height: 1;
  vertical-align: 0.42em;
}

@media (min-width: 1081px) {
  .team-panel,
  .blog-panel {
    padding-block: clamp(24px, 4svh, 44px);
  }

  .team-panel .section-head,
  .blog-panel .section-head {
    margin-bottom: clamp(18px, 2.4svh, 28px);
  }

  .team-card {
    height: clamp(330px, 43svh, 430px);
    min-height: 0;
  }
}

@media (min-width: 1081px) and (max-height: 820px) {
  .team-panel .section-title,
  .blog-panel .section-title {
    font-size: clamp(2.45rem, 3.7vw, 3.5rem);
  }

  .team-panel .section-copy,
  .blog-panel .section-copy {
    margin-top: 10px;
    line-height: 1.45;
  }

  .team-card {
    height: 315px;
  }

  .blog-card-media {
    height: 132px;
  }

  .blog-card-body {
    padding: 16px 18px 17px;
  }

  .blog-card h3 {
    margin-block: 6px;
    font-size: 1.55rem;
  }

  .blog-card p {
    line-height: 1.42;
  }

  .blog-link {
    margin-top: 9px;
  }

  .blog-all {
    margin-top: 14px;
  }
}

@media (max-width: 880px) {
  .team-grid,
  .blog-grid {
    gap: 14px;
  }

  .team-card {
    min-height: 340px;
  }
}

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

  .team-card {
    min-height: 430px;
  }

  .blog-card-media {
    height: 205px;
  }

  .blog-all,
  .blog-all .button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .diagnostic-main {
    min-height: auto;
  }

  .diagnostic-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .diagnostic-intro h1 {
    max-width: 720px;
  }

  .diagnostic-form-frame {
    width: 100%;
    height: 980px !important;
    min-height: 980px !important;
    margin-bottom: 0;
    transform: none;
  }
}

@media (max-width: 620px) {
  .diagnostic-page .nav {
    min-height: 72px;
    gap: 14px;
  }

  .diagnostic-page .brand img {
    width: 136px;
  }

  .diagnostic-page .brand-weddings span {
    display: none;
  }

  .diagnostic-page .nav .button {
    padding: 10px 13px;
    font-size: 0.72rem;
  }

  .diagnostic-main {
    padding: 32px 0 50px;
  }

  .diagnostic-layout {
    gap: 34px;
  }

  .diagnostic-intro h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .diagnostic-benefits {
    grid-template-columns: 1fr;
  }

  .diagnostic-benefits li {
    min-height: auto;
  }

  .diagnostic-form-card {
    border-radius: 22px;
  }

  .diagnostic-form-heading {
    padding: 24px 22px 18px;
  }

  .diagnostic-form-frame {
    width: 100%;
    height: 1180px !important;
    min-height: 1180px !important;
    margin-bottom: 0;
    transform: none;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .diagnostic-main {
    min-height: calc(100svh - 72px);
    padding: 12px 0;
  }

  .diagnostic-layout {
    gap: 34px;
  }

  .diagnostic-intro h1 {
    max-width: 690px;
    margin: 10px 0 11px;
    font-size: clamp(2.55rem, 3.6vw, 3.25rem);
    line-height: 0.95;
  }

  .diagnostic-intro > p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .diagnostic-benefits {
    gap: 8px;
    margin-top: 13px;
  }

  .diagnostic-benefits li {
    min-height: 88px;
    padding: 11px;
    border-radius: 14px;
  }

  .diagnostic-benefits span {
    margin-bottom: 7px;
    font-size: 0.64rem;
  }

  .diagnostic-benefits strong {
    font-size: 0.81rem;
  }

  .diagnostic-benefits small {
    margin-top: 4px;
    font-size: 0.69rem;
    line-height: 1.28;
  }

  .diagnostic-form-card {
    border-radius: 23px;
  }

  .diagnostic-form-heading {
    padding: 13px 20px 10px;
  }

  .diagnostic-form-heading span {
    font-size: 0.65rem;
  }

  .diagnostic-form-heading h2 {
    margin-top: 4px;
    font-size: 1.08rem;
  }

  .diagnostic-form-heading p {
    font-size: 0.74rem;
  }

  .diagnostic-form-frame {
    width: 136.99%;
    height: 760px !important;
    min-height: 760px !important;
    margin-bottom: -205px;
    transform: scale(0.73);
  }
}

@media (min-width: 1081px) and (max-height: 820px) {
  .platform-showcase {
    padding-block: 17px;
  }

  .platform-showcase-head {
    gap: 34px;
    margin-bottom: 12px;
  }

  .platform-showcase-head .section-title {
    font-size: clamp(2.35rem, 3.5vw, 3.15rem);
  }

  .platform-showcase-head .section-copy {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .platform-stage {
    min-height: 336px;
  }

  .hl-sidebar {
    padding-top: 6px;
  }

  .hl-brand {
    width: 17px;
    min-height: 22px;
    height: 22px;
    margin-bottom: 2px;
  }

  .hl-brand img {
    width: 118px;
    height: 22px;
  }

  .hl-sidebar nav {
    padding-top: 34px;
  }

  .hl-sidebar nav::before,
  .hl-sidebar nav::after {
    height: 15px;
    font-size: 0.36rem;
  }

  .hl-sidebar nav::after {
    top: 18px;
  }

  .hl-sidebar nav span {
    min-height: 12.5px;
    font-size: 0.37rem;
  }

  .hl-sidebar nav span i {
    width: 5px;
    height: 5px;
  }

  .platform-feature-row {
    margin-top: 9px;
  }

  .platform-feature-row span {
    padding-block: 8px;
  }

  .platform-reference {
    margin-top: 5px;
  }

  .case-study-panel {
    padding-block: 18px;
  }

  .case-study-panel .section-head {
    margin-bottom: 14px;
  }

  .case-study-panel .section-title {
    font-size: clamp(2.55rem, 3.75vw, 3.5rem);
  }

  .case-study-panel .section-copy {
    margin-top: 9px;
    line-height: 1.48;
  }

  .case-step {
    padding: 61px 15px 14px;
  }

  .case-icon {
    left: 15px;
  }

  .case-step h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
  }

  .case-layer {
    padding-top: 8px;
  }

  .case-layer + .case-layer {
    margin-top: 8px;
  }

  .case-layer p {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .case-outcome {
    margin-top: 12px;
    padding-block: 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1080px) {
  .platform-showcase-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platform-showcase-head .section-copy {
    margin: 0;
  }

  .platform-stage {
    min-height: 680px;
    overflow: visible;
  }

  .desktop-demo {
    inset: 18px 18px auto;
    height: 400px;
  }

  .mobile-demo {
    top: 432px;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: 190px 1fr;
    grid-template-rows: auto 1fr;
    gap: 8px 22px;
    width: auto;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
  }

  .mobile-demo-label,
  .mobile-demo p {
    justify-self: start;
  }

  .mobile-demo img,
  .sellup-phone {
    grid-row: 1 / 3;
    align-self: center;
    max-height: 215px;
  }

  .mobile-demo p {
    align-self: start;
    max-width: 440px;
    text-align: left;
  }

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

  .case-flow::before,
  .case-flow::after {
    display: none;
  }

  .case-step h3 {
    min-height: 0;
  }

  .case-step:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .platform-showcase-head .section-title {
    font-size: clamp(2.55rem, 12.5vw, 4rem);
  }

  .platform-stage {
    min-height: 650px;
    padding: 10px;
    border-radius: 21px;
  }

  .desktop-demo {
    inset: 10px 10px auto;
    height: 330px;
    border-radius: 15px;
  }

  .demo-window-bar em {
    display: none;
  }

  .demo-tabs {
    gap: 4px;
    overflow-x: auto;
  }

  .demo-tabs button {
    flex: 0 0 auto;
    padding-inline: 10px;
    font-size: 0.63rem;
  }

  .hl-ui {
    grid-template-columns: 1fr;
  }

  .hl-sidebar {
    display: none;
  }

  .hl-workspace {
    padding-inline: 8px;
  }

  .hl-toolbar button {
    display: none;
  }

  .hl-pipeline {
    grid-template-columns: repeat(4, minmax(108px, 1fr));
    width: 470px;
  }

  .hl-pipeline article:nth-of-type(2) {
    display: none;
  }

  .hl-contact-row {
    grid-template-columns: 1.25fr 1.25fr 0.9fr;
  }

  .hl-contact-row > :nth-child(2),
  .hl-contact-row > :nth-child(4) {
    display: none;
  }

  .hl-conversations {
    grid-template-columns: 0.85fr 1.6fr;
  }

  .hl-context {
    display: none;
  }

  .demo-screen figcaption {
    right: 9px;
    bottom: 9px;
    left: 9px;
    display: block;
    padding: 10px 12px;
  }

  .demo-screen figcaption span {
    display: block;
    margin-top: 3px;
  }

  .mobile-demo {
    top: 358px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 140px 1fr;
    gap: 7px 12px;
    padding: 11px;
  }

  .mobile-demo img,
  .sellup-phone {
    max-height: 260px;
  }

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

  .platform-reference {
    text-align: left;
  }

  .case-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-flow::before,
  .case-flow::after {
    display: block;
    top: 28px;
    left: 27px;
    width: 3px;
  }

  .case-flow::before {
    right: auto;
    bottom: 28px;
    height: auto;
  }

  .case-flow::after {
    height: 18%;
    background: linear-gradient(180deg, transparent, var(--cyan), var(--violet), var(--magenta), transparent);
  }

  .case-flow.flow-active::after {
    animation-name: case-flow-sweep-vertical;
  }

  .case-step,
  .case-step:last-child {
    grid-column: auto;
    padding: 20px 18px 18px 76px;
  }

  .case-icon {
    top: 16px;
    left: 7px;
  }

  .case-number {
    top: 19px;
  }

  .case-step h3 {
    min-height: 0;
    padding-right: 42px;
  }

  .case-step:hover {
    transform: none;
  }

  .case-layer p {
    font-size: 0.9rem;
  }

  .case-outcome {
    padding: 17px 18px;
    font-size: 0.9rem;
  }

  @keyframes case-flow-sweep-vertical {
    0%, 5% {
      top: 28px;
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    82%, 90% {
      top: 74%;
      opacity: 1;
    }
    96%, 100% {
      top: 74%;
      opacity: 0;
    }
  }
}

/* Final compact desktop pass: each principal narrative panel fits below the sticky header. */
@media (min-width: 1081px) and (max-height: 960px) {
  #soluciones.viewport-panel,
  #inversion.viewport-panel,
  .case-study-panel,
  .platform-showcase {
    padding-block: 20px;
  }

  #soluciones .section-head,
  #inversion .section-head,
  .case-study-panel .section-head,
  .platform-showcase-head {
    margin-bottom: 14px;
  }

  #soluciones .section-title,
  #inversion .section-title,
  .case-study-panel .section-title,
  .platform-showcase-head .section-title {
    font-size: clamp(2.5rem, 3.55vw, 3.5rem);
  }

  #soluciones .section-copy,
  #inversion .section-copy,
  .case-study-panel .section-copy,
  .platform-showcase-head .section-copy {
    margin-top: 8px;
    line-height: 1.42;
  }

  .essential-wrap { padding: 17px 19px; }
  .essential-head { margin-bottom: 12px; }
  .essential-card { min-height: 174px; padding: 13px 14px; }
  .essential-card h4 { margin: 9px 0 5px; }
  .essential-card p { line-height: 1.4; }
  .essential-card .price { padding-top: 9px; }

  .case-step { padding: 56px 13px 12px; }
  .case-step h3 { min-height: 2.25em; margin-bottom: 6px; font-size: 1.12rem; }
  .case-layer { padding-top: 7px; }
  .case-layer + .case-layer { margin-top: 6px; }
  .case-layer p { font-size: 0.8rem; line-height: 1.32; }
  .case-outcome { margin-top: 9px; padding: 10px 14px; font-size: 0.78rem; }

  .platform-showcase-head { gap: 32px; }
  .platform-showcase-head .section-copy { font-size: 0.84rem; }
  .platform-stage { min-height: 345px; }
}

/* Desktop section settling: proximity snap preserves natural scrolling while
   helping each narrative panel stop as a complete screen below the header. */
@media (min-width: 1081px) {
  html {
    scroll-snap-type: y proximity;
  }

  .hero,
  .service-hero,
  .viewport-panel,
  .closing {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }
}

@media (max-width: 1080px), (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }
}
