:root {
  --bg: #fff7f3;
  --bg-soft: #fffaf8;
  --card: rgba(255, 255, 255, 0.84);
  --card-strong: rgba(255, 255, 255, 0.96);
  --text: #231724;
  --muted: #735f6d;
  --line: rgba(84, 42, 60, 0.1);
  --line-strong: rgba(188, 67, 87, 0.24);
  --coral: #ff6f76;
  --violet: #8e6dff;
  --mint: #41d6bb;
  --sun: #ffd873;
  --shadow: 0 28px 90px rgba(60, 28, 43, 0.14);
  --shadow-soft: 0 16px 42px rgba(60, 28, 43, 0.1);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(142, 109, 255, 0.15), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(255, 111, 118, 0.18), transparent 20%),
    radial-gradient(circle at 78% 82%, rgba(65, 214, 187, 0.12), transparent 22%),
    linear-gradient(180deg, #fffaf8 0%, #fff2ed 48%, #fff8f6 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
.brand strong,
.section-label,
.eyebrow,
.chip,
.case-tag,
.badge,
.menu-toggle {
  font-family: "Unbounded", "Manrope", sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

.page {
  position: relative;
  overflow: clip;
}

.ambient,
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ambient {
  filter: blur(70px);
  opacity: 0.75;
}

.ambient-a {
  width: 360px;
  height: 360px;
  top: 80px;
  left: -120px;
  background: rgba(142, 109, 255, 0.18);
}

.ambient-b {
  width: 300px;
  height: 300px;
  top: 220px;
  right: -110px;
  background: rgba(255, 111, 118, 0.18);
}

.ambient-c {
  width: 260px;
  height: 260px;
  bottom: 200px;
  left: 12%;
  background: rgba(65, 214, 187, 0.11);
}

.grain {
  background-image:
    linear-gradient(rgba(61, 44, 67, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 44, 67, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 88%);
  opacity: 0.35;
}

.topbar,
.section,
.footer {
  position: relative;
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 250, 248, 0.76);
  border: 1px solid var(--line);
  border-radius: 30px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-logo {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(135deg, var(--coral), var(--violet));
  box-shadow:
    0 18px 30px rgba(142, 109, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-logo span {
  position: absolute;
  inset: 0;
}

.brand-logo span:first-child::before,
.brand-logo span:first-child::after,
.brand-logo span:last-child::before,
.brand-logo span:last-child::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 4px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  top: 10px;
}

.brand-logo span:first-child::before {
  left: 9px;
  transform: rotate(45deg);
}

.brand-logo span:first-child::after {
  left: 18px;
  transform: rotate(45deg);
}

.brand-logo span:last-child::before {
  right: 9px;
  transform: rotate(-135deg);
}

.brand-logo span:last-child::after {
  right: 18px;
  transform: rotate(-135deg);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 0.95rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::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.72);
  color: var(--text);
}

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

.section {
  padding-top: 92px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: center;
  padding-top: 64px;
  perspective: 1400px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow,
.section-label,
.chip,
.case-tag,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(67, 46, 80, 0.1);
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 10px 24px rgba(43, 26, 56, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 11ch;
  margin: 18px 0 16px;
  font-size: clamp(2.45rem, 4.9vw, 4.3rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.lead,
.section-head p,
.service-card p,
.segment-card p,
.process-card p,
.case-card p,
.price-subtitle,
.faq-item p,
.contact-card p,
.cta-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 58ch;
  margin: 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  color: #fffdfb;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  box-shadow:
    0 16px 36px rgba(142, 109, 255, 0.22),
    0 2px 0 rgba(255, 255, 255, 0.18) inset;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(124, 103, 255, 0.26);
  box-shadow: 0 12px 30px rgba(43, 26, 56, 0.08);
}

.button-full {
  width: 100%;
}

.button-top {
  white-space: nowrap;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  color: var(--text);
  font-size: 0.9rem;
}

.hero-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.catalog-card {
  position: relative;
  padding: 16px 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(67, 46, 80, 0.1);
  box-shadow:
    0 20px 38px rgba(43, 26, 56, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 242, 0.82));
  transform: translateY(0);
}

.catalog-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px auto;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 111, 118, 0.18), rgba(142, 109, 255, 0.18));
  filter: blur(0.2px);
}

.catalog-card span,
.catalog-card strong,
.catalog-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.catalog-card span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card strong {
  margin-top: 12px;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.catalog-card small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.catalog-a {
  transform: rotate(-2deg) translateY(2px);
}

.catalog-b {
  transform: rotate(2deg) translateY(10px);
}

.catalog-c {
  transform: rotate(-1deg) translateY(-2px);
}

.catalog-d {
  transform: rotate(3deg) translateY(8px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-stats article,
.service-card,
.segment-card,
.benefit-panel,
.process-card,
.case-card,
.price-card,
.faq-item,
.contact-card,
.cta,
.mock-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow-soft);
}

.hero-stats article {
  padding: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.showcase {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1800px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 32px 50px rgba(59, 24, 37, 0.12));
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-rotate: 0deg;
}

.showcase-backplate {
  position: absolute;
  inset: 110px 36px 102px 12px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.6), transparent 22%),
    radial-gradient(circle at 80% 22%, rgba(255, 111, 118, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 246, 242, 0.36));
  border: 1px solid rgba(142, 109, 255, 0.12);
  box-shadow:
    0 36px 80px rgba(43, 26, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform:
    translate3d(calc(var(--parallax-x) * -0.16), calc(var(--parallax-y) * 0.12), 0)
    rotate(calc(-4deg + var(--parallax-rotate) * -0.12))
    translateZ(0);
  filter: saturate(1.05);
}

.showcase-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.2px);
  will-change: transform;
}

.orb-a {
  width: 210px;
  height: 210px;
  top: 4px;
  left: -20px;
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.92), rgba(255, 111, 118, 0.18) 42%, transparent 68%);
  opacity: 0.9;
  transform:
    translate3d(calc(var(--parallax-x) * 0.26), calc(var(--parallax-y) * 0.22), 0)
    translateZ(-30px);
}

.orb-b {
  width: 180px;
  height: 180px;
  top: 38px;
  right: 8px;
  background: radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.9), rgba(142, 109, 255, 0.18) 44%, transparent 70%);
  opacity: 0.72;
  transform:
    translate3d(calc(var(--parallax-x) * -0.22), calc(var(--parallax-y) * 0.2), 0)
    translateZ(-24px);
}

.orb-c {
  width: 260px;
  height: 260px;
  right: 86px;
  bottom: 54px;
  background: radial-gradient(circle at 36% 32%, rgba(65, 214, 187, 0.2), rgba(255, 255, 255, 0.86) 22%, transparent 70%);
  opacity: 0.58;
  transform:
    translate3d(calc(var(--parallax-x) * 0.12), calc(var(--parallax-y) * -0.18), 0)
    translateZ(-36px);
}

.showcase-float {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(142, 109, 255, 0.1);
  box-shadow:
    0 18px 34px rgba(43, 26, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-family: "Unbounded", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a3350;
  will-change: transform;
}

.float-a {
  top: 120px;
  left: 40px;
  transform:
    translate3d(calc(var(--parallax-x) * 0.18), calc(var(--parallax-y) * 0.12), 0)
    rotate(calc(-7deg + var(--parallax-rotate) * -0.2));
}

.float-b {
  right: 30px;
  top: 158px;
  transform:
    translate3d(calc(var(--parallax-x) * -0.16), calc(var(--parallax-y) * -0.12), 0)
    rotate(calc(8deg + var(--parallax-rotate) * 0.16));
}

.showcase-note {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(67, 46, 80, 0.12);
  box-shadow:
    var(--shadow-soft),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translate3d(calc(var(--parallax-x) * 0.18), calc(var(--parallax-y) * 0.18), 0);
  will-change: transform;
}

.note-top {
  top: 20px;
  left: 56px;
}

.note-right {
  top: 120px;
  right: 54px;
}

.note-left {
  bottom: 188px;
  left: 32px;
}

.mock-card {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
}

.mock-card-main {
  top: 52px;
  left: 22px;
  width: min(100%, 360px);
  padding: 24px;
  transform:
    translate3d(var(--parallax-x), var(--parallax-y), 0)
    rotate(calc(-10deg + var(--parallax-rotate)))
    translateZ(40px)
    skewX(-1deg);
  background:
    radial-gradient(circle at 28% 18%, rgba(142, 109, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(255, 111, 118, 0.12), transparent 18%),
    rgba(255, 255, 255, 0.95);
  box-shadow:
    0 26px 50px rgba(43, 26, 56, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
}

.mock-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chip {
  color: #412d46;
  background: rgba(255, 255, 255, 0.92);
}

.chip-coral {
  color: #7b2f30;
  background: rgba(255, 111, 118, 0.14);
}

.status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), #1ca389);
  box-shadow: 0 0 0 7px rgba(65, 214, 187, 0.12);
}

.mock-card-main h2 {
  margin: 16px 0 10px;
  font-size: 1.6rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.mock-card-main p {
  margin: 0;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mock-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(247, 243, 255, 0.9);
  border: 1px solid rgba(142, 109, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mock-grid strong {
  display: block;
  font-size: 1.1rem;
}

.mock-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.mock-card-phone {
  top: 172px;
  right: 34px;
  width: 242px;
  padding: 14px;
  border-radius: 34px;
  transform:
    translate3d(calc(var(--parallax-x) * -0.7), calc(var(--parallax-y) * 0.55), 0)
    rotate(calc(11deg + var(--parallax-rotate) * 0.7))
    translateZ(22px);
  background: linear-gradient(180deg, #201726, #120d14);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow:
    0 26px 52px rgba(30, 18, 28, 0.36),
    0 2px 0 rgba(255, 255, 255, 0.08) inset;
}

.phone-notch {
  width: 92px;
  height: 18px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.phone-screen {
  padding: 10px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(142, 109, 255, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
}

.phone-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.92), transparent 22%),
    linear-gradient(135deg, var(--coral), var(--violet));
}

.phone-top strong {
  display: block;
  font-size: 0.96rem;
}

.phone-top small {
  color: rgba(255, 255, 255, 0.65);
}

.phone-feed {
  display: grid;
  gap: 10px;
}

.feed-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.92rem;
}

.mock-card-sheet {
  right: 18px;
  bottom: 54px;
  width: 220px;
  padding: 20px;
  transform:
    translate3d(calc(var(--parallax-x) * 0.45), calc(var(--parallax-y) * -0.35), 0)
    rotate(calc(8deg + var(--parallax-rotate) * 0.4))
    translateZ(10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 244, 0.86));
  box-shadow:
    0 22px 48px rgba(43, 26, 56, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.sheet-title {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(65, 214, 187, 0.15);
  color: #126a57;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sheet-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(67, 46, 80, 0.08);
}

.sheet-row:last-child {
  border-bottom: 0;
}

.sheet-row span {
  color: var(--muted);
}

.sheet-row strong {
  font-size: 1rem;
}

.floating-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(67, 46, 80, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    var(--shadow-soft),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  font-family: "Unbounded", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  will-change: transform;
}

.badge-a {
  top: 40px;
  right: 24px;
  color: #8d2a3a;
  transform:
    translate3d(calc(var(--parallax-x) * 0.35), calc(var(--parallax-y) * 0.25), 0)
    rotate(calc(8deg + var(--parallax-rotate) * 0.3));
}

.badge-b {
  left: 50%;
  top: 22px;
  color: #523aa6;
  transform:
    translateX(-50%)
    translate3d(calc(var(--parallax-x) * -0.25), calc(var(--parallax-y) * 0.15), 0)
    rotate(calc(-6deg + var(--parallax-rotate) * -0.25));
}

.badge-c {
  left: 46px;
  bottom: 164px;
  color: #0f7b63;
  transform:
    translate3d(calc(var(--parallax-x) * 0.22), calc(var(--parallax-y) * -0.2), 0)
    rotate(calc(-10deg + var(--parallax-rotate) * 0.2));
}

.badge-d {
  right: 28px;
  bottom: 24px;
  color: #8a6810;
  transform:
    translate3d(calc(var(--parallax-x) * -0.18), calc(var(--parallax-y) * 0.18), 0)
    rotate(calc(6deg + var(--parallax-rotate) * -0.18));
}

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

.section-head h2 {
  margin: 14px 0 14px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

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

.service-card,
.segment-card,
.benefit-panel,
.process-card,
.case-card,
.price-card,
.contact-card,
.cta {
  padding: 22px;
}

.service-card {
  min-height: 186px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(135deg, rgba(142, 109, 255, 0.18), rgba(255, 111, 118, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(142, 109, 255, 0.12),
    0 10px 18px rgba(43, 26, 56, 0.08);
}

.icon-a,
.icon-b,
.icon-c,
.icon-d,
.icon-e,
.icon-f {
  position: relative;
}

.icon-a::before,
.icon-b::before,
.icon-c::before,
.icon-d::before,
.icon-e::before,
.icon-f::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.icon-b::before {
  clip-path: polygon(50% 0, 100% 35%, 78% 100%, 22% 100%, 0 35%);
}

.icon-c::before {
  clip-path: circle(38% at 50% 50%);
}

.icon-d::before {
  clip-path: polygon(0 25%, 70% 25%, 70% 0, 100% 50%, 70% 100%, 70% 75%, 0 75%);
}

.icon-e::before {
  clip-path: polygon(12% 0, 88% 0, 100% 38%, 50% 100%, 0 38%);
}

.icon-f::before {
  clip-path: polygon(24% 0, 76% 0, 100% 50%, 76% 100%, 24% 100%, 0 50%);
}

.service-card h3,
.segment-card h3,
.process-card h3,
.case-card h3,
.price-card h3,
.contact-card h3,
.cta h2 {
  margin: 16px 0 10px;
  font-size: 1.18rem;
  line-height: 1.08;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  gap: 16px;
}

.split-column {
  display: grid;
  gap: 14px;
}

.segment-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.segment-index {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 0.82rem;
}

.segment-card p {
  margin: 0;
}

.benefit-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.benefit-slab {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(124, 103, 255, 0.08), rgba(255, 123, 107, 0.06));
  border: 1px solid rgba(124, 103, 255, 0.12);
}

.benefit-chip {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 123, 107, 0.15);
  color: #7b2f30;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.benefit-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.55;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  box-shadow: 0 0 0 5px rgba(124, 103, 255, 0.08);
}

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

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 0.72rem;
  box-shadow: 0 12px 22px rgba(142, 109, 255, 0.18);
}

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

.case-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  isolation: isolate;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: -10% -6% auto auto;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18) 45%, transparent 72%);
  filter: blur(22px);
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 109, 255, 0.18), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.case-card > :not(.case-art) {
  position: relative;
  z-index: 1;
}

.case-tag {
  margin-bottom: 12px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.case-metrics div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(67, 46, 80, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.case-metrics strong {
  display: block;
  font-size: 1.24rem;
}

.case-metrics span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.case-art {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 138px;
  height: 188px;
  border-radius: 28px;
  border: 1px solid rgba(67, 46, 80, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  box-shadow:
    var(--shadow-soft),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  z-index: 0;
}

.art-a {
  background:
    radial-gradient(circle at 48% 20%, rgba(255, 111, 118, 0.26), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 239, 255, 0.82));
}

.art-b {
  background:
    radial-gradient(circle at 36% 20%, rgba(65, 214, 187, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 248, 255, 0.82));
}

.art-c {
  background:
    radial-gradient(circle at 50% 18%, rgba(142, 109, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.82));
}

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

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: rgba(142, 109, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(142, 109, 255, 0.08) inset,
    var(--shadow-soft);
}

.price {
  margin: 16px 0 14px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}

.badge-popular {
  position: absolute;
  top: 18px;
  right: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 16px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 22px 20px;
  font-weight: 700;
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-card-visual {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(142, 109, 255, 0.12), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(255, 111, 118, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.82));
  border: 1px solid rgba(67, 46, 80, 0.08);
}

.contact-mark {
  width: 112px;
  height: 112px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.92), transparent 20%),
    linear-gradient(135deg, var(--coral), var(--violet));
  box-shadow:
    0 22px 50px rgba(142, 109, 255, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.45) inset;
  position: relative;
}

.contact-mark::before,
.contact-mark::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 16px;
  border: 4px solid rgba(255, 255, 255, 0.88);
}

.contact-mark::after {
  inset: 46px;
  border-radius: 50%;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact {
  padding-bottom: 88px;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 22px;
}

.cta-copy {
  padding: 10px 8px;
}

.cta-copy h2 {
  margin: 14px 0 12px;
  max-width: 13ch;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cta-points span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

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

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  font-size: 0.92rem;
  color: var(--text);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(67, 46, 80, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(124, 103, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(124, 103, 255, 0.08);
}

.lead-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: #1c8b6b;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 40px;
  color: var(--muted);
}

.footer strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal.is-visible:nth-child(odd) {
  animation: reveal-pop 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reveal-pop {
  0% {
    transform: translateY(18px) scale(0.97);
  }

  65% {
    transform: translateY(-4px) scale(1.01);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.showcase .floating-badge,
.showcase .mock-card {
  animation: floaty 8s ease-in-out infinite;
}

.showcase .mock-card-main {
  animation-duration: 9s;
}

.showcase .mock-card-phone {
  animation-duration: 10s;
}

.showcase .mock-card-sheet {
  animation-duration: 11s;
}

.showcase .mock-card-main {
  animation-delay: -1.5s;
}

.showcase .mock-card-phone {
  animation-delay: -3s;
}

.showcase .mock-card-sheet {
  animation-delay: -2.2s;
}

.showcase .badge-a {
  animation-delay: -2.7s;
}

.showcase .badge-b {
  animation-delay: -1.2s;
}

.showcase .badge-c {
  animation-delay: -4s;
}

.showcase .badge-d {
  animation-delay: -3.5s;
}

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

  .reveal,
  .showcase .floating-badge,
  .showcase .mock-card {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .button-top {
    display: none;
  }

  .hero,
  .split-grid,
  .faq-layout,
  .cta {
    grid-template-columns: 1fr;
  }

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

  .showcase-backplate {
    inset: 120px 26px 118px 18px;
  }

  .orb-c {
    right: 56px;
    bottom: 70px;
  }

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

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

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

@media (max-width: 760px) {
  .topbar {
    top: 8px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand menu"
      "nav nav";
  }

  .brand {
    grid-area: brand;
  }

  .menu-toggle {
    display: inline-grid;
    align-content: center;
    justify-items: center;
    grid-area: menu;
    justify-self: end;
  }

  .site-nav {
    grid-area: nav;
    display: none;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .section {
    padding-top: 72px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 13vw, 4rem);
  }

  .hero-stats,
  .service-grid,
  .hero-catalog,
  .case-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .showcase-backplate,
  .showcase-orb,
  .showcase-float {
    display: none;
  }

  .mock-card-main {
    left: 0;
    width: min(100%, 340px);
  }

  .mock-card-phone {
    top: 210px;
    right: 0;
  }

  .mock-card-sheet {
    right: auto;
    left: 34px;
    bottom: 72px;
  }

  .note-right,
  .note-left {
    display: none;
  }

  .footer {
    flex-direction: column;
  }
}
