/* ===========================================================
   Invite.art — свадебный сайт-приглашение
   Дизайн: кремовый минимализм с воздухом, акцент — пыльная роза
   =========================================================== */

:root {
  /* Палитра */
  --cream: #FAF7F2;
  --cream-deep: #F3ECE2;
  --ink: #2B2724;
  --ink-soft: #554E48;
  --rose: #C4756B;
  --rose-deep: #B96A5F;
  --rose-action: #A85E54;
  --rose-pale: #E7C7BC;
  --rose-mist: #F3E7D9;
  --brown: #8C6A5E;
  --line: rgba(43, 39, 36, 0.12);
  --white: #FFFDFB;

  /* Типографика */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-text: "Manrope", "Helvetica Neue", sans-serif;

  /* Ритм */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --shadow-soft: 0 20px 60px -25px rgba(43, 39, 36, 0.25);
  --shadow-card: 0 12px 30px -14px rgba(43, 39, 36, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main > section { scroll-margin-top: 80px; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, blockquote, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* The query-string experiment uses one document so content, SEO and deploys cannot
   drift between variants. The head bootstrap sets this attribute before CSS loads. */
html[data-landing-variant="control"] .variant-agent-only,
html[data-landing-variant="agent"] .variant-control-only {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .container { padding-inline: 40px; }
}

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

:focus-visible {
  outline: 2.5px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--rose-pale); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 720px;
}
.section-title.center { margin-inline: auto; text-align: center; }

.section-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin-top: 16px;
}
.section-sub.center { margin-inline: auto; text-align: center; }

em {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--rose-deep);
}

/* ---------- Editorial section head (numbered kicker, left rhythm) ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-head.center { align-items: center; }
.section-kicker {
  font-family: "Manrope", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.section-kicker-center { text-align: center; }

/* ---------- Hand-drawn underline scribble ---------- */
.underline-scribble {
  position: absolute;
  left: 0;
  bottom: -0.22em;
  width: 100%;
  height: 0.4em;
  color: var(--rose);
  overflow: visible;
  pointer-events: none;
}
.underline-scribble-sm { height: 0.32em; bottom: -0.16em; }
.underline-word {
  position: relative;
  display: inline-block;
  color: var(--rose-deep);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.98rem;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose-action);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(185, 106, 95, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(185, 106, 95, 0.65); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--rose-deep); color: var(--rose-deep); }
.btn-outline {
  background: transparent;
  color: var(--rose-deep);
  border: 1.5px solid var(--rose-deep);
}
.btn-outline:hover { background: var(--rose-action); color: var(--white); }
.btn-large { padding: 17px 34px; font-size: 1.02rem; }
.btn-small { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-dot { color: var(--rose-deep); }
.main-nav {
  display: none;
  gap: clamp(18px, 2vw, 32px);
  font-size: 0.92rem;
  font-weight: 600;
}
.main-nav a { color: var(--ink-soft); transition: color 0.2s; }
.main-nav a:hover { color: var(--rose-deep); }

.header-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid var(--line);
  transition: max-height 0.4s var(--ease);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.open {
  max-height: min(75vh, 680px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav a {
  padding: 14px 24px;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin: 16px 24px 20px; }
.mobile-nav .btn-primary,
.mobile-nav .btn-primary:hover,
.mobile-nav .btn-primary:focus-visible {
  background: var(--rose-action);
  color: var(--white);
}

@media (min-width: 960px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding-block: 120px 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.blob-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--rose-pale), transparent 70%);
  top: -140px; right: -120px;
}
.blob-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--rose-mist), transparent 70%);
  bottom: -100px; left: -100px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 56px;
  align-items: start;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 7vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.trust-line {
  font-size: 0.92rem;
  color: var(--brown);
  font-weight: 600;
}

.hero-divider {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 50%;
  width: min(calc(100% - 48px), 1100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  color: var(--rose-deep);
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-divider::before,
.hero-divider::after {
  content: "";
  height: 1px;
  background: rgba(185, 106, 95, 0.3);
}
.hero-divider span {
  width: 30px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

/* ---------- Agent-first experiment hero ---------- */
.hero-agent-entry {
  padding-block: 90px 72px;
}
.hero-agent-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}
.hero-agent-copy {
  min-width: 0;
}
.hero-agent-title {
  max-width: 680px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5.5vw, 4.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.hero-agent-title em {
  display: inline;
  margin-top: 0;
}
.hero-agent-sub {
  max-width: 640px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.55;
}
.hero-brief {
  display: grid;
  gap: 11px;
  width: 100%;
  max-width: 650px;
}
.hero-brief-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(170px, 0.75fr);
  gap: 12px;
}
.hero-brief-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.hero-brief-field > span {
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-brief-field input,
.hero-brief-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(43, 39, 36, 0.17);
  border-radius: 12px;
  background: rgba(255, 253, 251, 0.9);
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  outline: none;
  box-shadow: 0 12px 30px -26px rgba(43, 39, 36, 0.55);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.hero-brief-field input {
  min-height: 48px;
  padding: 11px 15px;
}
.hero-brief-field textarea {
  min-height: 86px;
  padding: 12px 15px;
  resize: vertical;
}
.hero-brief-field input:hover,
.hero-brief-field textarea:hover {
  border-color: var(--rose-pale);
  background: var(--white);
}
.hero-brief-field input:focus,
.hero-brief-field textarea:focus {
  border-color: var(--rose-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(185, 106, 95, 0.13);
}
.hero-brief-submit {
  justify-self: start;
  margin-top: 2px;
}
.hero-examples-link {
  justify-self: start;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--rose-pale);
  text-underline-offset: 5px;
}
.hero-agent-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin-top: 14px;
  color: var(--brown);
  font-size: 0.76rem;
  font-weight: 650;
}
.hero-agent-trust span {
  color: inherit;
}
.hero-agent-trust i {
  color: var(--rose);
  font-style: normal;
}
.hero-product-demo {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(43, 39, 36, 0.16);
  border-radius: 22px;
  background: rgba(255, 253, 251, 0.92);
  box-shadow: 0 34px 74px -42px rgba(43, 39, 36, 0.5);
}
.product-demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}
.product-demo-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-demo-topbar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #72906f;
  box-shadow: 0 0 0 4px rgba(114, 144, 111, 0.14);
}
.product-demo-topbar small {
  color: #648060;
  font-size: 0.65rem;
}
.product-demo-chat,
.product-demo-revision {
  padding: 17px 18px;
}
.product-demo-preview {
  padding: 17px 18px 19px;
  border-block: 1px solid var(--line);
  background: var(--cream-deep);
}
.product-demo-label {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-demo-message {
  max-width: 89%;
  margin-left: auto;
  padding: 11px 13px;
  border-radius: 15px 15px 4px 15px;
  background: var(--rose-mist);
  color: var(--ink);
  font-size: 0.75rem;
  line-height: 1.5;
}
.product-demo-message.compact {
  padding-block: 9px;
}
.product-demo-agent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: 92%;
  margin-top: 11px;
}
.product-demo-agent > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.55rem;
  font-weight: 800;
}
.product-demo-agent p {
  padding-top: 3px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}
.product-demo-invite {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 28px 22px 22px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 82% 12%, rgba(196, 117, 107, 0.26), transparent 30%),
    linear-gradient(145deg, #fffaf3, #efe2d6);
  box-shadow: 0 17px 32px -27px rgba(43, 39, 36, 0.45);
  text-align: center;
}
.product-demo-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.product-demo-invite strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.92;
}
.product-demo-invite strong i {
  color: var(--rose-deep);
  font-weight: 500;
}
.product-demo-invite time {
  display: block;
  margin-top: 10px;
  color: var(--rose-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.product-demo-details {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(43, 39, 36, 0.15);
  color: var(--ink-soft);
  font-size: 0.56rem;
  font-weight: 700;
}
.product-demo-rsvp {
  display: inline-flex;
  margin-top: 17px;
  padding: 8px 15px;
  border-radius: var(--radius-full);
  background: var(--rose-action);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
}

/* ---------- Phone mockup (themeable via CSS variables) ---------- */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-tilt-wrap {
  perspective: 1000px;
  transition: transform 0.2s var(--ease);
  will-change: transform;
}
.phone-mockup {
  --theme-bg-1: var(--cream);
  --theme-bg-2: var(--rose-mist);
  --theme-ink: var(--ink);
  --theme-accent: var(--rose-action);
  --theme-kicker: var(--brown);
  --theme-names-family: var(--font-display);
  --theme-names-style: italic;
  --theme-names-weight: 600;
  --theme-names-tracking: 0em;

  position: relative;
  width: 290px;
  background: var(--ink);
  border-radius: 46px;
  padding: 14px;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(43,39,36,0.06);
  animation: float 6s ease-in-out infinite;
}
.phone-mockup-small { width: 250px; animation: none; }
.phone-mockup.theme-pulse {
  animation: float 6s ease-in-out infinite, theme-flash 0.6s var(--ease);
}
@keyframes theme-flash {
  0% { box-shadow: var(--shadow-soft), 0 0 0 1px rgba(43,39,36,0.06); }
  40% { box-shadow: 0 0 0 6px rgba(185,106,95,0.3), var(--shadow-soft); }
  100% { box-shadow: var(--shadow-soft), 0 0 0 1px rgba(43,39,36,0.06); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  background: linear-gradient(180deg, var(--theme-bg-1) 0%, var(--theme-bg-2) 100%);
  border-radius: 34px;
  padding: 38px 20px 24px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}
.invite-cover { text-align: center; }
.invite-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--theme-kicker);
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.4s var(--ease);
}
.invite-names {
  font-family: var(--theme-names-family);
  font-style: var(--theme-names-style);
  font-weight: var(--theme-names-weight);
  letter-spacing: var(--theme-names-tracking);
  font-size: 1.9rem;
  color: var(--theme-ink);
  line-height: 1.2;
  transition: color 0.4s var(--ease);
}
.invite-names .amp {
  display: inline-block;
  color: var(--theme-accent);
  font-style: normal;
  margin: 0 8px;
  font-size: 1.4rem;
  transition: color 0.4s var(--ease);
}
.invite-names-sm { font-size: 1.5rem; }
.invite-date {
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--theme-accent);
  transition: color 0.4s var(--ease);
}
.invite-cover-compact { padding-top: 4px; }

/* Theme presets — mirror the "Примеры" section palettes */
.phone-mockup[data-theme="rose"] {
  --theme-bg-1: var(--cream);
  --theme-bg-2: var(--rose-mist);
  --theme-ink: var(--ink);
  --theme-accent: var(--rose-action);
  --theme-kicker: var(--brown);
  --theme-names-family: var(--font-display);
  --theme-names-style: italic;
  --theme-names-weight: 600;
  --theme-names-tracking: 0em;
}
.phone-mockup[data-theme="botany"] {
  --theme-bg-1: #EFEFE4;
  --theme-bg-2: #DCE3D2;
  --theme-ink: #3C4A32;
  --theme-accent: #5C7A4A;
  --theme-kicker: #5C7A4A;
  --theme-names-family: var(--font-display);
  --theme-names-style: italic;
  --theme-names-weight: 500;
  --theme-names-tracking: 0em;
}
.phone-mockup[data-theme="classic"] {
  --theme-bg-1: #FFFDF7;
  --theme-bg-2: #EFE6D8;
  --theme-ink: #4A3B2A;
  --theme-accent: #9C7C4F;
  --theme-kicker: #9C7C4F;
  --theme-names-family: var(--font-display);
  --theme-names-style: normal;
  --theme-names-weight: 600;
  --theme-names-tracking: 0.03em;
}
.phone-mockup[data-theme="minimal"] {
  --theme-bg-1: #232120;
  --theme-bg-2: #232120;
  --theme-ink: #F4F1EA;
  --theme-accent: #C4756B;
  --theme-kicker: #B9B2A8;
  --theme-names-family: var(--font-text);
  --theme-names-style: normal;
  --theme-names-weight: 800;
  --theme-names-tracking: -0.02em;
}

.invite-timer {
  display: flex;
  gap: 8px;
}
.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 6px;
  min-width: 52px;
  box-shadow: var(--shadow-card);
}
.timer-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  /* Карточка таймера всегда белая (не темизируется), поэтому текст остаётся
     постоянно тёмным вне зависимости от темы приглашения — иначе светлые темы
     (например «Минимализм») теряют контраст на белом фоне. */
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.timer-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 2px;
}

.invite-dresscode {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.invite-dresscode-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.dresscode-swatches {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sw);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--line);
  transition: background 0.4s var(--ease);
}

/* Палитра дресс-кода следует за темой мокапа */
.phone-mockup[data-theme="rose"] .swatch:nth-child(1) { --sw: #C4756B; }
.phone-mockup[data-theme="rose"] .swatch:nth-child(2) { --sw: #E7C7BC; }
.phone-mockup[data-theme="rose"] .swatch:nth-child(3) { --sw: #8C6A5E; }
.phone-mockup[data-theme="rose"] .swatch:nth-child(4) { --sw: #F3E7D9; }

.phone-mockup[data-theme="botany"] .swatch:nth-child(1) { --sw: #5C7A4A; }
.phone-mockup[data-theme="botany"] .swatch:nth-child(2) { --sw: #9FB287; }
.phone-mockup[data-theme="botany"] .swatch:nth-child(3) { --sw: #D9CDB8; }
.phone-mockup[data-theme="botany"] .swatch:nth-child(4) { --sw: #EFEFE4; }

.phone-mockup[data-theme="classic"] .swatch:nth-child(1) { --sw: #9C7C4F; }
.phone-mockup[data-theme="classic"] .swatch:nth-child(2) { --sw: #D4B98C; }
.phone-mockup[data-theme="classic"] .swatch:nth-child(3) { --sw: #6B5638; }
.phone-mockup[data-theme="classic"] .swatch:nth-child(4) { --sw: #FFFDF7; }

.phone-mockup[data-theme="minimal"] .swatch:nth-child(1) { --sw: #232120; }
.phone-mockup[data-theme="minimal"] .swatch:nth-child(2) { --sw: #6E6862; }
.phone-mockup[data-theme="minimal"] .swatch:nth-child(3) { --sw: #C4756B; }
.phone-mockup[data-theme="minimal"] .swatch:nth-child(4) { --sw: #EFECE6; }

.rsvp-zone {
  position: relative;
  width: 100%;
  margin-top: auto;
}
.invite-rsvp-btn {
  position: relative;
  width: 100%;
  background: var(--theme-accent, var(--rose-deep));
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 24px -10px rgba(185,106,95,0.5);
  transition: transform 0.2s var(--ease), background 0.3s var(--ease);
  overflow: visible;
}
.invite-rsvp-btn:hover { transform: translateY(-2px); }
.invite-rsvp-btn.confirmed {
  background: var(--brown);
}
.rsvp-counter {
  margin-top: 10px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--theme-ink, var(--ink-soft));
  opacity: 0.7;
  transition: color 0.4s var(--ease);
}
.rsvp-counter span {
  font-weight: 700;
  color: var(--theme-accent, var(--rose-deep));
}
.rsvp-heart {
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.invite-rsvp-btn.confirmed .rsvp-heart {
  transform: scale(1.3);
}

/* ---------- RSVP heart-burst particles ---------- */
.heart-particle {
  position: absolute;
  bottom: 50%;
  left: 50%;
  font-size: 1rem;
  color: var(--theme-accent, var(--rose-deep));
  pointer-events: none;
  will-change: transform, opacity;
  animation: heart-pop 0.8s var(--ease) forwards;
}
@keyframes heart-pop {
  0% {
    opacity: 1;
    transform: translate(-50%, 0) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx, 0), var(--dy, -70px)) scale(1.1) rotate(var(--dr, 12deg));
  }
}

/* ---------- Live demo panel ---------- */
.demo-panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 0.8fr);
  grid-template-areas:
    "title styles"
    "names date";
  align-items: end;
  gap: 14px 16px;
  transition: border-color 0.3s var(--ease);
}
.demo-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 54px;
  height: 2px;
  background: var(--rose-deep);
}
.demo-panel.pulse {
  animation: demo-pulse 1.1s var(--ease);
}
@keyframes demo-pulse {
  0%, 100% { border-color: var(--line); }
  35% { border-color: rgba(185, 106, 95, 0.72); }
}
.demo-panel-title {
  grid-area: title;
  align-self: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink);
}
.demo-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.demo-field-names { grid-area: names; }
.demo-field-date { grid-area: date; }
.demo-field label,
.demo-field-label-static {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.demo-field input {
  width: 100%;
  min-width: 0;
  font-family: var(--font-text);
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 8px 22px -18px rgba(43, 39, 36, 0.55);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.demo-field input:hover {
  border-color: var(--rose-pale);
  box-shadow: 0 10px 24px -17px rgba(43, 39, 36, 0.6);
}
.demo-field input:focus-visible {
  border-color: var(--rose-deep);
  outline: 2px solid var(--rose-deep);
  outline-offset: 1px;
}
.demo-field-styles {
  grid-area: styles;
  gap: 7px;
}

.style-switch {
  display: flex;
  gap: 6px;
}
.style-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.style-swatch::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
}
.style-swatch[data-theme="rose"]::before { background: linear-gradient(135deg, #C4756B, #F3E7D9); }
.style-swatch[data-theme="botany"]::before { background: linear-gradient(135deg, #5C7A4A, #EFEFE4); }
.style-swatch[data-theme="classic"]::before { background: linear-gradient(135deg, #9C7C4F, #FFFDF7); }
.style-swatch[data-theme="minimal"]::before { background: linear-gradient(135deg, #232120, #C4756B); }
.style-swatch:hover { transform: translateY(-2px); }
.style-swatch[aria-pressed="true"] {
  border-color: var(--rose-deep);
}

/* mini elements reused in solution mockup */
.mini-section { width: 100%; }
.mini-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown);
  margin-bottom: 8px;
}
.mini-timeline {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mini-timeline-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.mini-timeline-row span:first-child {
  font-weight: 700;
  color: var(--rose-deep);
}
.mini-map {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 14px 14px;
}
.mini-map-pin { font-size: 1.4rem; }

/* ===========================================================
   PAIN — chat bubbles
   =========================================================== */
.pain { padding-block: 80px 100px; }
.chat-cards {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
  margin-inline: auto;
}
.chat-bubble {
  --tilt: 0deg;
  position: relative;
  padding: 16px 22px;
  border-radius: 22px;
  font-size: 1rem;
  max-width: 82%;
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.chat-bubble.reveal {
  transform: translateY(28px) rotate(var(--tilt));
}
.chat-bubble.reveal.is-visible {
  transform: translateY(0) rotate(var(--tilt));
}
.bubble-left {
  align-self: flex-start;
  border-bottom-left-radius: 6px;
}
.bubble-right {
  align-self: flex-end;
  background: var(--rose-mist);
  border-bottom-right-radius: 6px;
}
.tilt-1 { --tilt: -1.4deg; }
.tilt-2 { --tilt: 1.6deg; }
.tilt-3 { --tilt: -0.8deg; }

/* Sequenced typing → text reveal inside each bubble.
   Default state shows the text (progressive enhancement: works with JS disabled).
   JS toggles .is-typing briefly before adding .is-texted. */
.chat-bubble.is-typing .chat-typing { display: inline-flex; }
.chat-bubble.is-typing .chat-text { display: none; }
.chat-bubble.is-texted .chat-typing { display: none; }
.chat-bubble.is-texted .chat-text {
  display: block;
  animation: chat-text-in 0.25s var(--ease);
}
@keyframes chat-text-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px 2px;
}
.chat-typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  color: var(--ink-soft);
  opacity: 0.45;
  animation: chat-dot 1.1s ease-in-out infinite;
}
.chat-typing i:nth-child(2) { animation-delay: 0.15s; }
.chat-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-4px); opacity: 0.9; }
}

.pain-summary {
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  color: var(--rose-deep);
  max-width: 640px;
  margin-inline: auto;
}

/* ===========================================================
   AI AGENT
   =========================================================== */
.ai-agent {
  padding-block: 84px;
  background: var(--ink);
  color: var(--cream);
}
.ai-agent-grid {
  display: grid;
  gap: 52px;
  align-items: center;
}
.ai-agent-copy { max-width: 510px; }
.ai-agent-kicker {
  margin-bottom: 16px;
  color: var(--rose-pale);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ai-agent-title {
  max-width: 600px;
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}
.ai-agent-sub {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(250, 247, 242, 0.72);
  font-size: 1.02rem;
}
.ai-agent-list {
  margin-block: 28px 26px;
  border-top: 1px solid rgba(250, 247, 242, 0.14);
}
.ai-agent-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding-block: 13px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.14);
}
.ai-agent-num {
  padding-top: 2px;
  color: var(--rose-pale);
  font-size: 0.72rem;
  font-weight: 800;
}
.ai-agent-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.96rem;
}
.ai-agent-list p {
  color: rgba(250, 247, 242, 0.62);
  font-size: 0.88rem;
}

.agent-flow {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(250, 247, 242, 0.2);
  border-radius: 8px;
  box-shadow: 0 28px 70px -38px rgba(0, 0, 0, 0.68);
}
.agent-flow-bar {
  min-height: 48px;
  padding-inline: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.agent-flow-brand,
.agent-flow-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 800;
}
.agent-flow-mark {
  width: 10px;
  height: 10px;
  background: var(--rose-deep);
  transform: rotate(45deg);
}
.agent-flow-status { color: var(--ink-soft); }
.agent-flow-status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6E8B62;
  box-shadow: 0 0 0 3px rgba(110, 139, 98, 0.12);
}
.agent-flow-body {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) 84px minmax(0, 1fr);
  min-height: 420px;
}
.agent-chat-demo,
.agent-preview-demo {
  min-width: 0;
  padding: 20px;
}
.agent-chat-demo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F7F2EB;
}
.agent-pane-label {
  margin-bottom: 6px;
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.agent-message {
  font-size: 0.8rem;
  line-height: 1.45;
}
.agent-message-user {
  padding: 11px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px 8px 2px 8px;
}
.agent-message-ai {
  margin-top: auto;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--ink-soft);
}
.agent-avatar {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.58rem;
  font-weight: 800;
}

.agent-pipeline {
  position: relative;
  padding-block: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 12px;
  background: var(--cream-deep);
  border-inline: 1px solid var(--line);
}
.agent-pipeline::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 50%;
  width: 1px;
  background: var(--rose-pale);
}
.agent-pipeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.agent-pipeline-step > span {
  width: 12px;
  height: 12px;
  border: 3px solid var(--cream-deep);
  border-radius: 50%;
  background: var(--rose-deep);
  box-shadow: 0 0 0 1px var(--rose-deep);
}
.agent-pipeline-step small {
  color: var(--brown);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.25;
}

.agent-preview-demo { background: var(--white); }
.agent-invite-preview {
  min-height: 344px;
  padding: 26px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
}
.agent-invite-kicker {
  color: var(--brown);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.agent-invite-names {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
.agent-invite-names span { color: var(--rose-deep); }
.agent-invite-date {
  margin-top: 8px;
  color: var(--rose-action);
  font-size: 0.72rem;
  font-weight: 800;
}
.agent-invite-timeline {
  width: 100%;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}
.agent-invite-timeline div {
  padding-block: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
}
.agent-invite-timeline span { color: var(--rose-action); font-weight: 800; }
.agent-invite-timeline strong { font-weight: 700; }
.agent-invite-footer {
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.agent-invite-colors { display: flex; gap: 5px; }
.agent-invite-colors span {
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}
.agent-invite-colors span:nth-child(1) { background: #B96A5F; }
.agent-invite-colors span:nth-child(2) { background: #E7C7BC; }
.agent-invite-colors span:nth-child(3) { background: #8C6A5E; }
.agent-invite-rsvp {
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: var(--rose-action);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
}

@media (min-width: 1100px) {
  .ai-agent-grid { grid-template-columns: 0.92fr 1.08fr; }
}

@media (max-width: 700px) {
  .ai-agent { padding-block: 64px; }
  .ai-agent-grid { gap: 38px; }
  .ai-agent-title { font-size: 2.15rem; }
  .agent-flow-body {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .agent-chat-demo { min-height: 280px; }
  .agent-pipeline {
    padding: 14px 10px;
    flex-direction: row;
    border-inline: 0;
    border-block: 1px solid var(--line);
  }
  .agent-pipeline::before {
    top: 20px;
    bottom: auto;
    left: 17%;
    right: 17%;
    width: auto;
    height: 1px;
  }
  .agent-pipeline-step { flex: 1; }
  .agent-preview-demo { padding: 16px; }
  .agent-invite-preview { min-height: 330px; }
}

/* ===========================================================
   SOLUTION
   =========================================================== */
.solution { padding-block: 100px; background: var(--cream-deep); }
.solution-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
.solution-list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
.solution-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 1.02rem;
  color: var(--ink-soft);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.solution-list li:last-child { border-bottom: none; }
.solution-ico {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--rose-pale);
  flex-shrink: 0;
  width: 30px;
}
.solution-visual { display: flex; justify-content: center; }

/* ===========================================================
   HOW IT WORKS
   =========================================================== */
.how { padding-block: 100px; }
.steps {
  margin-top: 56px;
  display: grid;
  gap: 28px;
}
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.step p { color: var(--ink-soft); }

/* ===========================================================
   FEATURES
   =========================================================== */
.features { padding-block: 76px; background: var(--cream-deep); }
.feature-grid {
  margin-top: 38px;
  display: grid;
  gap: 16px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--rose-deep);
}
.feature-icon svg {
  width: 23px;
  height: 23px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

/* ===========================================================
   ONLINE INVITATION OVERVIEW
   =========================================================== */
.seo-overview {
  padding-block: 80px;
  border-block: 1px solid var(--line);
  background: var(--cream);
}
.seo-overview-grid {
  display: grid;
  gap: 44px;
  margin-top: 40px;
}
.seo-overview-copy {
  max-width: 620px;
}
.seo-overview-copy p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}
.seo-overview-copy p + p {
  margin-top: 18px;
}
.seo-overview-copy strong {
  color: var(--ink);
}
.seo-overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 28px;
}
.seo-overview-links a {
  color: var(--rose-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.seo-overview-points {
  border-top: 1px solid var(--line);
}
.seo-overview-points > div {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.seo-overview-points h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.2;
}
.seo-overview-points p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===========================================================
   EXAMPLES
   =========================================================== */
.examples {
  padding-block: 84px;
  background: var(--white);
}
.showcase {
  margin-top: 42px;
}
.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.showcase-tab {
  position: relative;
  min-width: 0;
  padding: 20px 22px;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.showcase-tab + .showcase-tab {
  border-left: 1px solid var(--line);
}
.showcase-tab::after {
  content: "";
  position: absolute;
  inset: auto 20px -1px;
  height: 2px;
  background: transparent;
}
.showcase-tab:hover,
.showcase-tab.is-active {
  color: var(--ink);
  background: var(--cream);
}
.showcase-tab.is-active::after {
  background: var(--rose-deep);
}
.showcase-tab-number {
  grid-row: 1 / 3;
  padding-top: 3px;
  color: var(--rose-deep);
  font-size: 0.7rem;
  font-weight: 700;
}
.showcase-tab strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.05;
}
.showcase-tab small {
  margin-top: 3px;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.showcase-layout {
  display: grid;
  gap: 32px;
  padding-top: 32px;
  align-items: stretch;
}
.showcase-preview,
.showcase-details {
  min-width: 0;
}
.showcase-browser {
  overflow: hidden;
  border: 1px solid rgba(43, 39, 36, 0.18);
  border-radius: 8px;
  background: #22201F;
  box-shadow: 0 24px 50px -30px rgba(24, 21, 19, 0.55);
}
.showcase-browser-bar {
  min-height: 46px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 251, 0.78);
  font-size: 0.72rem;
}
.showcase-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.showcase-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #83B889;
  box-shadow: 0 0 0 4px rgba(131, 184, 137, 0.14);
}
.showcase-browser-name {
  overflow: hidden;
  color: var(--white);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.showcase-browser-bar a {
  justify-self: end;
  color: var(--white);
  font-weight: 700;
}
.showcase-frame-shell {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--cream);
}
.showcase-frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: var(--cream);
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}
.showcase-browser.is-loading .showcase-frame {
  opacity: 0.45;
}
.showcase-frame-action {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  background: rgba(34, 32, 31, 0.92);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.showcase-details {
  display: flex;
  align-items: center;
}
.showcase-panel {
  width: 100%;
}
.showcase-panel[hidden] {
  display: none;
}
.showcase-scenario {
  margin-bottom: 12px;
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.showcase-panel h3 {
  max-width: 430px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 600;
  line-height: 1.03;
}
.showcase-panel > p:not(.showcase-scenario) {
  max-width: 470px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.showcase-feature-list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}
.showcase-feature-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.showcase-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--rose-deep);
  font-weight: 800;
}
.showcase-create-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--rose-deep);
  font-size: 0.88rem;
  font-weight: 700;
}
.examples-action {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* ===========================================================
   GRANDMA / TRUST
   =========================================================== */
.grandma { padding-block: 100px; background: var(--cream-deep); }
.grandma-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
.grandma-list {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}
.grandma-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.grandma-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rose-deep);
  font-weight: 700;
}
.grandma-visual { display: flex; justify-content: center; }
.qr-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  max-width: 260px;
}
.qr-mock {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(43, 39, 36, 0.08);
}
.qr-code {
  width: 188px;
  height: 188px;
  color: var(--ink);
  shape-rendering: crispEdges;
}
.qr-code path { fill: currentColor; }
.qr-caption {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ===========================================================
   COMPARE TABLE
   =========================================================== */
.compare { padding-block: 100px; }
.compare-table {
  width: 100%;
  display: block;
  margin-top: 56px;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.compare-table thead,
.compare-table tbody {
  display: block;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare-head { display: none; }
.compare-cell {
  padding: 16px 18px;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}
.compare-cell-label {
  grid-column: 1 / -1;
  display: flex;
  padding-block: 12px;
  background: var(--cream-deep);
  font-weight: 700;
}
.compare-row:last-child .compare-cell { border-bottom: none; }
.compare-cell-brand {
  background: var(--rose-mist);
  font-weight: 600;
}
.ico { font-weight: 800; }
.ico-no { color: #B4756A; opacity: 0.7; }
.ico-yes { color: var(--rose-deep); }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials { padding-block: 100px; background: var(--cream-deep); }
.testimonial-grid {
  margin-top: 56px;
  display: grid;
  gap: 24px;
}
.testimonial-card {
  --shift-y: 0px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.testimonial-card.reveal {
  transform: translateY(calc(28px + var(--shift-y)));
}
.testimonial-card.reveal.is-visible {
  transform: translateY(var(--shift-y));
}
@media (min-width: 640px) {
  .testimonial-card:nth-child(2) { --shift-y: 12px; }
  .testimonial-card:nth-child(3) { --shift-y: 24px; }
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 18px;
}
.testimonial-card figcaption {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rose-deep);
}

/* ===========================================================
   PRICING
   =========================================================== */
.pricing { padding-block: 80px; }
.pricing-grid {
  margin-top: 42px;
  display: grid;
  gap: 24px;
}
.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
}
.price-featured {
  border-color: var(--rose-deep);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-featured.reveal.is-visible {
  transform: scale(1.02) rotate(-0.4deg);
}
.price-featured.reveal.is-visible:hover {
  transform: scale(1.02) rotate(0deg);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--rose-action);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.price-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--rose-deep);
  margin-bottom: 10px;
}
.price-value span { font-size: 1.4rem; }
.price-desc {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 22px;
}
.price-list {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
  flex-grow: 1;
}
.price-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rose-deep);
  font-weight: 700;
}
.pricing-note {
  margin-top: 26px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.pricing-fulfillment {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.pricing-fulfillment > div {
  min-width: 0;
  padding: 22px 26px;
}
.pricing-fulfillment > div + div {
  border-left: 1px solid var(--line);
}
.pricing-fulfillment strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.86rem;
}
.pricing-fulfillment p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.6;
}
.pricing-fulfillment a {
  color: var(--rose-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.pricing-agent {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 44px auto 0;
}
.price-agent-main {
  border-color: rgba(185, 106, 95, 0.42);
  padding: clamp(28px, 5vw, 46px);
  box-shadow: var(--shadow-soft);
}
.price-agent-kicker {
  margin-bottom: 10px;
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-agent-main h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 4.1rem);
  line-height: 1;
}
.price-agent-main h3 span {
  color: var(--rose-deep);
  font-size: 0.55em;
}
.price-agent-main > p:not(.price-agent-kicker) {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.price-agent-main .price-list {
  margin-bottom: 28px;
  columns: 2;
  column-gap: 40px;
}
.price-agent-main .price-list li {
  break-inside: avoid;
  margin-bottom: 9px;
}
.price-agent-main > small {
  display: block;
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.55;
  text-align: center;
}
.price-agent-service {
  padding: 22px 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: transparent;
}
.price-agent-service > span {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.price-agent-service p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}
.price-agent-service a {
  display: inline-flex;
  gap: 7px;
  margin-top: 13px;
  color: var(--rose-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq { padding-block: 76px; background: var(--cream-deep); }
.faq-compact-grid {
  display: grid;
  gap: 34px;
  align-items: start;
}
.faq-list {
  margin-top: 0;
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 6px 24px;
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rose-deep);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  animation: faq-in 0.3s var(--ease);
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   FINAL CTA
   =========================================================== */
.final-cta {
  padding-block: 84px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(196,117,107,0.25), transparent 60%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream);
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.2;
}
.final-cta-sub {
  margin-top: 18px;
  color: rgba(250,247,242,0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.final-brief {
  position: relative;
  overflow: hidden;
  padding-block: 84px;
  background: var(--ink);
  color: var(--cream);
}
.final-brief::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(196, 117, 107, 0.24), transparent 45%);
  pointer-events: none;
}
.final-brief-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}
.final-brief h2 {
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.02;
}
.final-brief-grid > div > p:last-child {
  max-width: 480px;
  margin-top: 16px;
  color: rgba(250, 247, 242, 0.72);
}
.final-brief .hero-brief-field > span {
  color: var(--rose-pale);
}
.final-brief .hero-brief-field input,
.final-brief .hero-brief-field textarea {
  border-color: rgba(250, 247, 242, 0.18);
  background: rgba(255, 253, 251, 0.08);
  color: var(--white);
  color-scheme: dark;
  box-shadow: none;
}
.final-brief .hero-brief-field input::placeholder,
.final-brief .hero-brief-field textarea::placeholder {
  color: rgba(250, 247, 242, 0.45);
}
.final-brief .hero-brief-field input:hover,
.final-brief .hero-brief-field textarea:hover,
.final-brief .hero-brief-field input:focus,
.final-brief .hero-brief-field textarea:focus {
  border-color: var(--rose-pale);
  background: rgba(255, 253, 251, 0.12);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--cream-deep);
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo-footer { font-size: 1.5rem; }
.footer-tagline {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 240px;
}
.footer-col-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================================
   RESPONSIVE — tablet & desktop
   =========================================================== */
@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 780px) {
  .compare-head { display: grid; }
  .compare-row { grid-template-columns: 200px 1fr 1fr; }
  .compare-cell-label { grid-column: auto; background: transparent; }
  .compare-cell:not(.compare-cell-label) { justify-content: center; text-align: center; }
}

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-agent-grid { grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr); gap: 40px; }
  .hero-brief {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
  .hero-brief-row,
  .hero-examples-link {
    grid-column: 1 / -1;
  }
  .hero-brief-description {
    grid-column: 1;
  }
  .hero-brief-description textarea {
    min-height: 64px;
    height: 64px;
  }
  .hero-brief-submit {
    grid-column: 2;
    min-height: 64px;
    padding-inline: 25px;
  }
  .hero-copy { text-align: left; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .grandma-grid { grid-template-columns: 1fr 0.8fr; }
  .seo-overview-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 80px; }
  .seo-overview-points > div { grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1fr); gap: 28px; }
  .faq-compact-grid { grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: 72px; }
  .final-brief-grid { grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr); align-items: center; }
}

@media (min-width: 900px) {
  .showcase-layout { grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.8fr); gap: 48px; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.2fr repeat(3, 1fr); }
}

@media (min-width: 1150px) {
  .hero-visual {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    grid-template-areas: "phone panel";
    column-gap: 22px;
    align-items: center;
  }
  .phone-tilt-wrap { grid-area: phone; }
  .demo-panel {
    grid-area: panel;
    align-self: center;
    max-width: none;
    margin-top: 0;
    padding: 14px 0 14px 18px;
    border-top: 0;
    border-left: 1px solid var(--line);
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "names"
      "date"
      "styles";
    gap: 14px;
  }
  .demo-panel::before {
    top: 0;
    left: -1px;
    width: 2px;
    height: 54px;
  }
}

@media (max-width: 639px) {
  .hero-agent-entry {
    padding-block: 105px 64px;
  }
  .hero-agent-grid {
    gap: 34px;
  }
  .hero-agent-title {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
    line-height: 0.94;
  }
  .hero-agent-sub {
    margin-bottom: 24px;
    font-size: 0.96rem;
  }
  .hero-brief-row {
    grid-template-columns: 1fr;
  }
  .hero-brief-submit {
    width: 100%;
  }
  .hero-agent-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .hero-agent-trust i {
    display: none;
  }
  .product-demo-topbar small {
    display: none;
  }
  .product-demo-invite {
    min-height: 205px;
    padding-inline: 14px;
  }
  .product-demo-invite strong {
    font-size: clamp(1.95rem, 10vw, 2.5rem);
  }
  .product-demo-details {
    gap: 9px;
    font-size: 0.53rem;
  }

  .agent-chat-demo { min-height: 240px; }
  .agent-preview-demo { display: none; }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .feature-card { padding: 18px 14px; }
  .feature-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }
  .feature-card h3 {
    font-size: 1.02rem;
    line-height: 1.2;
  }
  .feature-card p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .pricing-grid {
    width: 100%;
    display: grid;
    gap: 18px;
  }
  .pricing-grid {
    margin-top: 26px;
    padding-top: 16px;
  }
  .price-card {
    width: 100%;
    min-height: 0;
  }
  .price-featured { order: -1; }
  .price-featured.reveal.is-visible,
  .price-featured.reveal.is-visible:hover {
    transform: none;
  }
  .pricing-agent {
    margin-top: 28px;
  }
  .price-agent-main {
    padding: 26px 20px;
  }
  .price-agent-main .price-list {
    columns: 1;
  }
  .price-agent-service {
    padding: 20px;
  }

  .final-brief {
    padding-block: 68px;
  }

  .pricing-fulfillment {
    grid-template-columns: 1fr;
  }
  .pricing-fulfillment > div {
    padding: 18px 4px;
  }
  .pricing-fulfillment > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .examples {
    padding-block: 68px;
  }
  .showcase {
    margin-top: 30px;
  }
  .showcase-tab {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 14px 10px;
    text-align: center;
  }
  .showcase-tab-number {
    grid-row: auto;
    padding-top: 0;
    font-size: 0.62rem;
  }
  .showcase-tab strong {
    font-size: 1.08rem;
  }
  .showcase-tab small {
    font-size: 0.65rem;
  }
  .showcase-tab::after {
    inset-inline: 10px;
  }
  .showcase-layout {
    gap: 26px;
    padding-top: 22px;
  }
  .showcase-browser-bar {
    grid-template-columns: 1fr auto;
  }
  .showcase-browser-name {
    display: none;
  }
  .showcase-frame-shell {
    height: min(138vw, 540px);
  }
  .showcase-frame-action {
    right: 12px;
    bottom: 12px;
  }
  .showcase-panel h3 {
    font-size: 2.2rem;
  }
  .showcase-panel > p:not(.showcase-scenario) {
    margin-top: 14px;
  }
  .showcase-feature-list {
    margin-top: 20px;
  }
}

/* ===========================================================
   REDUCED MOTION
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .chat-bubble.reveal,
  .chat-bubble.reveal.is-visible {
    transform: rotate(var(--tilt));
  }
  .testimonial-card.reveal,
  .testimonial-card.reveal.is-visible {
    transform: translateY(var(--shift-y));
  }
  .price-featured.reveal.is-visible {
    transform: none;
  }
  .phone-mockup { animation: none; }
  .phone-tilt-wrap { transform: none !important; transition: none; }
  .heart-particle { animation: none; opacity: 0; }
  .chat-typing i { animation: none; opacity: 0.6; }
}
