:root {
  --bg: #f7f3ec;
  --bg-soft: #efebe4;
  --surface: #fffdf8;
  --surface-muted: #f9f7f1;
  --text: #24231f;
  --text-soft: #676258;
  --muted: #8d877d;
  --line: rgba(36, 35, 31, 0.12);
  --line-strong: rgba(36, 35, 31, 0.2);
  --accent: #667869;
  --accent-dark: #34463a;
  --accent-soft: #e5ebe2;
  --shadow: 0 24px 70px rgba(58, 54, 47, 0.1);
  --shadow-soft: 0 14px 36px rgba(58, 54, 47, 0.08);
  --radius: 8px;
  --radius-lg: 8px;
  --container: 1180px;
  --nav-height: 78px;
  --font-display: "Cormorant Garamond", "Libre Baskerville", "Georgia", "Times New Roman", serif;
  --font-ui: "Aptos", "Inter", "Helvetica Neue", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font: var(--font-ui);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}

#site {
  padding-top: var(--nav-height);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(247, 243, 236, 0.24) 36%, rgba(247, 243, 236, 0.8)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.62), transparent 32rem);
}

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

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

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

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

h1,
h2,
h3,
h4 {
  color: var(--text);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.55vw, 5.65rem);
  line-height: 1.02;
  font-weight: 500;
}

h2 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.35vw, 4.25rem);
  line-height: 1.04;
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

p {
  color: var(--text-soft);
  font-size: 1rem;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--text);
  color: var(--surface);
  transform: translateY(-160%);
}

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

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

.section-pad {
  padding: clamp(78px, 10vw, 132px) 0;
}

.soft-section {
  background: rgba(239, 235, 228, 0.72);
  border-block: 1px solid rgba(36, 35, 31, 0.08);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(36, 35, 31, 0.09);
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(58, 54, 47, 0.045);
}

.nav-shell {
  width: min(100% - 32px, 1280px);
  min-height: var(--nav-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
}

.brand-mark {
  width: 52px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 9px 16px rgba(171, 130, 48, 0.16));
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 500;
}

.brand-text strong {
  color: var(--text);
  font-weight: 760;
}

.brand-text span {
  color: var(--text);
  font-size: 1em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.45vw, 24px);
}

.nav-links a,
.mobile-panel a,
.footer a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--accent-dark);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.nav-links a:hover,
.mobile-panel a:hover,
.footer a:hover,
.nav-links a.active,
.mobile-panel a.active,
.nav-customer.active,
.mobile-customer.active {
  color: var(--text);
}

.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-panel a.active {
  margin-inline: -8px;
  padding-inline: 12px;
  border-radius: 8px;
  background: rgba(229, 235, 226, 0.6);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.language-switcher {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  min-width: 82px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  overflow: hidden;
  isolation: isolate;
}

.language-switcher::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: var(--text);
  box-shadow: 0 7px 18px rgba(36, 35, 31, 0.12);
  transform: translateX(0);
  transition: transform 240ms ease;
}

.language-switcher[data-current="en"]::before {
  transform: translateX(calc(100% + 3px));
}

.language-switcher button {
  position: relative;
  z-index: 1;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.language-switcher button.active {
  color: var(--surface);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}

.mobile-panel {
  width: min(100% - 32px, 1280px);
  max-height: calc(100dvh - var(--nav-height) - max(18px, env(safe-area-inset-bottom)));
  margin: 0 auto 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-soft);
  overflow-y: auto;
  animation: mobilePanelIn 180ms ease both;
}

.mobile-panel a {
  display: block;
  padding: 12px 4px;
}

.mobile-panel .language-switcher {
  margin: 10px 0 2px;
}

.mobile-panel .btn {
  margin-top: 10px;
  width: 100%;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 640;
  font-size: 0.91rem;
  letter-spacing: 0.01em;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--text);
  color: var(--surface);
  box-shadow: 0 16px 34px rgba(36, 35, 31, 0.18);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 253, 248, 0.7);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface);
  box-shadow: 0 12px 26px rgba(58, 54, 47, 0.07);
}

.btn-text {
  min-height: auto;
  padding: 6px 0;
  border-radius: 0;
  color: var(--accent-dark);
  font-weight: 680;
}

.btn-text:hover {
  transform: none;
  color: var(--text);
}

.nav-cta {
  min-height: 44px;
  padding-inline: 18px;
  white-space: nowrap;
}

.nav-customer {
  min-height: 44px;
  padding-inline: 17px;
  border-color: rgba(36, 35, 31, 0.18);
  background: rgba(255, 253, 248, 0.32);
  color: var(--text);
  box-shadow: none;
  white-space: nowrap;
}

.nav-customer:hover,
.nav-customer.active {
  border-color: rgba(102, 120, 105, 0.38);
  background: rgba(229, 235, 226, 0.64);
  box-shadow: 0 10px 24px rgba(58, 54, 47, 0.07);
}

.nav-customer.active {
  color: var(--accent-dark);
}

.mobile-customer {
  width: 100%;
  margin-top: 14px;
  border-color: rgba(36, 35, 31, 0.18);
  background: rgba(255, 253, 248, 0.68);
  color: var(--text);
  box-shadow: none;
}

.mobile-customer.active {
  border-color: rgba(102, 120, 105, 0.35);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  padding-top: clamp(24px, 4vw, 42px);
  padding-bottom: clamp(24px, 4vw, 44px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.hero-grid > *,
.showcase-row > *,
.final-grid > *,
.faq-grid > *,
.customer-page-grid > * {
  min-width: 0;
}

.eyebrow,
.mini-label {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 34px;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  color: var(--text-soft);
  font-size: 0.87rem;
}

.trust-row .icon {
  width: 15px;
  height: 15px;
  color: var(--accent-dark);
}

.browser-frame,
.feature-card,
.package-card,
.consultation-form,
.tool-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.browser-frame {
  overflow: hidden;
  border-radius: 8px;
}

.browser-top {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.68);
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8d2c8;
}

.browser-top p {
  margin: 0 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-preview {
  min-height: 520px;
}

.placeholder-frame {
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(239, 235, 228, 0.72)),
    var(--surface);
  box-shadow: var(--shadow);
}

.placeholder-shell {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
}

.skeleton-canvas {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.58);
}

.skeleton-media {
  min-height: 132px;
  border: 1px solid rgba(36, 35, 31, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 35, 31, 0.035), rgba(102, 120, 105, 0.06)),
    rgba(255, 253, 248, 0.5);
}

.skeleton-lines,
.skeleton-grid {
  display: grid;
  gap: 10px;
}

.skeleton-lines span,
.skeleton-grid span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(36, 35, 31, 0.09);
}

.skeleton-lines span:nth-child(1) {
  width: 74%;
}

.skeleton-lines span:nth-child(2) {
  width: 56%;
}

.skeleton-lines span:nth-child(3) {
  width: 42%;
}

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

.skeleton-grid span {
  height: 42px;
  border-radius: 8px;
}

.placeholder-content {
  display: grid;
  justify-items: center;
  gap: 13px;
  text-align: center;
}

.placeholder-content h3 {
  max-width: 420px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.45vw, 2.05rem);
  font-weight: 500;
}

.placeholder-content small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.placeholder-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.placeholder-chips span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 650;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 720;
}

.section-intro {
  max-width: 790px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-intro p {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.72;
}

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

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

.feature-card {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(102, 120, 105, 0.28);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(102, 120, 105, 0.18);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: 500;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.learn-more {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 680;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.solution-card {
  padding-bottom: 58px;
}

.assistant-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr) auto;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(36, 35, 31, 0.13);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(239, 235, 228, 0.56)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.assistant-product-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.assistant-product-copy .icon-box {
  margin-bottom: 0;
}

.assistant-product-copy h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  line-height: 1.05;
  font-weight: 500;
}

.assistant-product-features {
  display: grid;
  gap: 10px;
}

.assistant-product-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.assistant-product-features .icon {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
}

.assistant-product-cta {
  white-space: nowrap;
}

.practice-demo-hero {
  min-height: calc(100vh - var(--nav-height));
}

.practice-demo-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.practice-demo-copy h1 {
  margin-bottom: 10px;
}

.practice-demo-subtitle {
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.practice-assistant-shell {
  display: grid;
  gap: 16px;
}

.practice-assistant-card {
  overflow: hidden;
  border: 1px solid rgba(36, 35, 31, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 28px 80px rgba(36, 35, 31, 0.13);
}

.assistant-chat-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(239, 235, 228, 0.56);
}

.assistant-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(102, 120, 105, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.assistant-avatar .icon {
  width: 21px;
  height: 21px;
}

.assistant-chat-header h2 {
  margin: 0 0 2px;
  font-size: 1.02rem;
  font-family: var(--font);
  font-weight: 760;
}

.assistant-chat-header p {
  margin: 0;
  font-size: 0.86rem;
}

.assistant-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 720;
}

.assistant-status i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(102, 120, 105, 0.13);
}

.assistant-messages {
  height: clamp(430px, 58vh, 620px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(249, 247, 241, 0.86)),
    var(--surface-muted);
}

.assistant-message {
  width: min(82%, 560px);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  animation: faqReveal 240ms ease both;
}

.assistant-message p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  white-space: pre-line;
}

.assistant-message.bot {
  align-self: flex-start;
  background: var(--surface);
}

.assistant-message.user {
  align-self: flex-end;
  border-color: rgba(102, 120, 105, 0.22);
  background: rgba(229, 235, 226, 0.74);
}

.assistant-quick-starts,
.assistant-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.assistant-quick-starts button,
.assistant-action-row .btn {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(36, 35, 31, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 680;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.assistant-quick-starts button:hover,
.assistant-action-row .btn:hover {
  border-color: rgba(102, 120, 105, 0.3);
  background: rgba(229, 235, 226, 0.72);
  transform: translateY(-1px);
}

.assistant-input-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.assistant-input-form textarea {
  width: 100%;
  min-height: 48px;
  max-height: 132px;
  resize: none;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-muted);
  color: var(--text);
  line-height: 1.45;
}

.assistant-input-form textarea:focus {
  outline: 2px solid rgba(102, 120, 105, 0.24);
  border-color: rgba(102, 120, 105, 0.42);
}

.assistant-send {
  min-height: 48px;
}

.assistant-send:disabled,
.assistant-input-form textarea:disabled {
  cursor: wait;
  opacity: 0.68;
}

.assistant-typing {
  width: fit-content;
  display: flex;
  gap: 5px;
  padding: 14px 16px;
}

.assistant-typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  animation: assistantDot 900ms ease-in-out infinite;
}

.assistant-typing span:nth-child(2) {
  animation-delay: 120ms;
}

.assistant-typing span:nth-child(3) {
  animation-delay: 240ms;
}

.assistant-error {
  margin: 0;
  padding: 0 16px 16px;
  color: #7a2f22;
  font-size: 0.86rem;
}

.assistant-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.assistant-followup {
  padding: 20px;
  border: 1px solid rgba(102, 120, 105, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow-soft);
}

.assistant-followup h3 {
  max-width: 650px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.08;
  font-weight: 500;
}

.assistant-bubble-widget {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 980;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.assistant-bubble-widget > * {
  pointer-events: auto;
}

.assistant-bubble-panel {
  width: min(390px, calc(100vw - 28px));
  max-height: min(680px, calc(100dvh - 116px));
  overflow-y: auto;
  gap: 10px;
  animation: assistantPanelIn 220ms ease both;
}

.assistant-bubble-panel .practice-assistant-card {
  box-shadow: 0 24px 64px rgba(36, 35, 31, 0.16);
}

.assistant-bubble-panel .assistant-chat-header {
  padding: 14px;
}

.assistant-bubble-panel .assistant-avatar {
  width: 40px;
  height: 40px;
}

.assistant-bubble-panel .assistant-messages {
  height: min(360px, calc(100dvh - 330px));
  min-height: 240px;
  padding: 14px;
}

.assistant-bubble-panel .assistant-message {
  width: 100%;
}

.assistant-bubble-panel .assistant-privacy {
  max-width: 390px;
  padding-inline: 2px;
  font-size: 0.76rem;
}

.assistant-panel-close {
  position: relative;
  z-index: 3;
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--text);
}

.assistant-panel-close .icon {
  width: 17px;
  height: 17px;
}

.assistant-bubble-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(36, 35, 31, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--text);
  box-shadow: 0 18px 48px rgba(36, 35, 31, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.assistant-bubble-button:hover {
  border-color: rgba(102, 120, 105, 0.32);
  background: var(--surface);
  transform: translateY(-2px);
}

.assistant-bubble-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.assistant-bubble-icon .icon {
  width: 20px;
  height: 20px;
}

.assistant-bubble-copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.assistant-bubble-copy strong {
  font-size: 0.9rem;
  line-height: 1.1;
}

.assistant-bubble-copy small {
  color: var(--text-soft);
  font-size: 0.74rem;
  line-height: 1.1;
}

.assistant-bubble-teaser {
  width: min(310px, calc(100vw - 28px));
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-soft);
  animation: faqReveal 220ms ease both;
}

.assistant-bubble-teaser p {
  margin: 0;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.42;
}

@keyframes assistantPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobilePanelIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@keyframes assistantDot {
  0%,
  70%,
  100% {
    transform: translateY(0);
    opacity: 0.42;
  }

  35% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.solution-card:hover .learn-more,
.solution-card:focus-within .learn-more {
  opacity: 1;
  transform: translateY(0);
}

.solution-line {
  max-width: 850px;
  margin: 46px auto 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.65vw, 3.6rem);
  line-height: 1.06;
  font-weight: 500;
  text-align: center;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 35px;
  height: 1px;
  background: var(--line-strong);
}

.timeline-step {
  position: relative;
  padding: 0 12px;
}

.step-number {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(102, 120, 105, 0.2);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent-dark);
  box-shadow: var(--shadow-soft);
  font-size: 1.05rem;
  font-weight: 740;
}

.timeline-step p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 500;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.packages {
  background: linear-gradient(180deg, rgba(247, 243, 236, 0), rgba(255, 253, 248, 0.54));
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.package-card.featured {
  border-color: rgba(102, 120, 105, 0.36);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(229, 235, 226, 0.48));
  box-shadow: var(--shadow);
}

.package-top {
  display: grid;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.badge {
  margin-bottom: 14px;
  padding: 7px 10px;
}

.package-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.package-card p {
  margin-bottom: 0;
  min-height: 52px;
}

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

.price-block strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.price-block span {
  margin-top: 4px;
  color: var(--text-soft);
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text-soft);
  font-size: 0.91rem;
  line-height: 1.52;
}

.feature-list .icon {
  margin-top: 3px;
  color: var(--accent-dark);
}

.excluded-list {
  margin: -4px 0 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.excluded-list h4 {
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.excluded-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.excluded-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 9px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.excluded-list li span {
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: rgba(36, 35, 31, 0.22);
}

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

.package-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  text-align: center;
}

.package-note p {
  margin: 0;
}

.package-prerequisite {
  max-width: 890px;
  margin: 28px auto 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.66);
  color: var(--text-soft);
  text-align: center;
  font-size: 0.93rem;
}

.relaunch-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 24px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
}

.relaunch-copy h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  font-weight: 500;
}

.relaunch-copy p:not(.eyebrow),
.relaunch-note {
  color: var(--text-soft);
}

.relaunch-details .feature-list {
  margin-top: 0;
}

.relaunch-note {
  margin: -4px 0 20px;
  font-size: 0.92rem;
}

.showcase {
  overflow: hidden;
}

.showcase-row {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.showcase-row + .showcase-row {
  margin-top: clamp(72px, 9vw, 118px);
}

.showcase-row.reverse {
  grid-template-columns: 1fr 0.82fr;
}

.showcase-row.reverse .showcase-copy {
  order: 2;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 570px;
  font-size: 1.05rem;
}

.showcase-visual {
  min-height: 420px;
  border-radius: var(--radius-lg);
}

.placeholder-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 760;
}


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

.tool-card {
  min-height: 116px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px 10px;
  border-radius: 8px;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 35, 31, 0.18);
  background: var(--surface);
}

.tool-card .logo-svg {
  width: 34px;
  height: 34px;
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.tool-card:hover .logo-svg {
  opacity: 0.95;
}

.tool-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 620;
}

.integration-copy {
  display: grid;
  gap: 7px;
  margin: 26px auto 0;
  text-align: center;
}

.integration-copy p {
  margin: 0;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 540px;
}

.about-image-placeholder {
  position: absolute;
  width: 70%;
  min-height: 360px;
  display: grid;
  place-items: end start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.78), rgba(229, 235, 226, 0.32)),
    repeating-linear-gradient(135deg, rgba(36, 35, 31, 0.035) 0 1px, transparent 1px 16px);
  box-shadow: var(--shadow-soft);
}

.about-image-placeholder:first-child {
  top: 0;
  left: 0;
}

.about-image-placeholder.offset {
  right: 0;
  bottom: 0;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(239, 235, 228, 0.64)),
    repeating-linear-gradient(135deg, rgba(36, 35, 31, 0.03) 0 1px, transparent 1px 16px);
}

.about-image-placeholder span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 680;
}

.about-copy .lead-text {
  color: var(--text);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.35;
}

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

.about-card,
.support-panel,
.upgrade-panel,
.support-card,
.issue-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow-soft);
}

.about-card {
  padding: 22px;
}

.about-card h3,
.support-card h4,
.issue-card h3,
.upgrade-panel h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
}

.about-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.support-panel {
  display: grid;
  gap: 34px;
  padding: clamp(22px, 4vw, 34px);
}

.support-panel h3,
.upgrade-panel h3 {
  margin-bottom: 18px;
}

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

.support-card {
  padding: 20px;
  box-shadow: none;
}

.support-card .icon-box {
  margin-bottom: 20px;
}

.support-card h4 {
  margin-bottom: 8px;
  font-size: 1.32rem;
}

.support-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 620;
  word-break: break-word;
}

.issue-wrap {
  padding-top: 8px;
}

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

.issue-card {
  padding: 22px;
  box-shadow: none;
}

.issue-card.critical {
  border-color: rgba(103, 70, 58, 0.22);
  background: rgba(255, 253, 248, 0.88);
}

.issue-card p {
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.issue-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.issue-card .icon {
  margin-top: 3px;
  color: var(--accent-dark);
}

.issue-card.critical .icon {
  color: #7c5c4f;
}

.privacy-inline {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.privacy-inline .icon {
  margin-top: 3px;
  color: var(--accent-dark);
}

.upgrade-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(22px, 4vw, 32px);
}

.upgrade-panel p {
  margin-bottom: 0;
}

.upgrade-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.upgrade-list span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.64);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.customer-page-hero {
  min-height: calc(86vh - var(--nav-height));
  display: grid;
  align-items: center;
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(72px, 9vw, 132px);
}

.customer-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.customer-page-copy h1 {
  max-width: 900px;
}

.customer-page-card,
.customer-contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-soft);
}

.customer-page-card {
  padding: clamp(24px, 4vw, 34px);
}

.customer-page-card span,
.customer-contact-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.customer-page-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.55vw, 2.45rem);
}

.customer-page-card p {
  margin-bottom: 0;
}

.customer-upgrade {
  background: rgba(255, 253, 248, 0.44);
}

.customer-contact-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 30px);
  border-color: rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: none;
}

.customer-contact-card strong {
  display: block;
  color: var(--surface);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  word-break: break-word;
}

.trust-strip {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
  background: rgba(255, 253, 248, 0.42);
}

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

.trust-strip-grid div {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
}

.trust-strip-grid .icon {
  color: var(--accent-dark);
}

.trust-strip-grid span {
  color: var(--text);
  font-weight: 650;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.faq-item.is-open {
  border-color: rgba(36, 35, 31, 0.22);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 38px rgba(36, 35, 31, 0.07);
}

.faq-item.is-revealed {
  animation: faqReveal 360ms ease both;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  font-weight: 500;
  line-height: 1.22;
  cursor: pointer;
}

.faq-item button .icon {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
  transition: transform 180ms ease;
}

.faq-item.is-open button .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  transition: max-height 260ms ease, opacity 220ms ease, padding-bottom 260ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 420px;
  opacity: 1;
  padding-bottom: 20px;
}

.faq-answer p {
  margin: 0;
  max-width: 68ch;
}

.show-more-faq {
  justify-self: start;
  margin-top: 8px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 650;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.show-more-faq:hover {
  background: rgba(123, 137, 111, 0.1);
  border-color: rgba(36, 35, 31, 0.24);
  transform: translateY(-1px);
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-cta {
  background: var(--text);
  color: var(--surface);
}

.final-cta h2,
.final-cta h3,
.final-cta p,
.final-cta .eyebrow {
  color: var(--surface);
}

.final-cta .eyebrow {
  opacity: 0.76;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.88fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.final-copy {
  position: sticky;
  top: calc(var(--nav-height) + 34px);
}

.final-copy p:not(.eyebrow),
.privacy-note {
  color: rgba(255, 253, 248, 0.74);
}

.final-cta .btn-primary {
  background: var(--surface);
  color: var(--text);
  box-shadow: none;
}

.final-cta .btn-primary:hover {
  background: var(--accent-soft);
}

.final-cta .btn-text {
  color: rgba(255, 253, 248, 0.82);
}

.privacy-note {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 440px;
  margin-top: 32px;
  font-size: 0.9rem;
}

.consultation-form {
  padding: 26px;
  border-color: rgba(255, 253, 248, 0.14);
  background: rgba(255, 253, 248, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: none;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field:last-child {
  grid-column: 1 / -1;
}

.field span {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.78rem;
  font-weight: 640;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
  font-size: 0.96rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 253, 248, 0.86);
  box-shadow: 0 0 0 3px rgba(255, 253, 248, 0.12);
}

.consultation-form.was-validated :invalid {
  border-color: #b36b5f;
}

.form-error {
  margin: 14px 0 0;
  color: #ffd8d1;
  font-size: 0.9rem;
}

.submit-button {
  width: 100%;
  margin-top: 18px;
}

.submit-button:disabled {
  opacity: 0.76;
  cursor: default;
}

.success-state {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(229, 235, 226, 0.12);
  color: var(--surface);
}

.footer {
  padding: 52px 0 28px;
  background: #f1ede6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: start;
}

.footer p {
  max-width: 360px;
  margin: 18px 0 0;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-links {
  justify-content: flex-end;
}

.footer-social:empty {
  display: none;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.86rem;
}

.footer p,
.footer a {
  font-size: 0.9rem;
}

.final-cta .customer-contact-card span {
  color: rgba(255, 253, 248, 0.68);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

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

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-actions {
    justify-self: end;
  }

  .hero-grid,
  .final-grid,
  .customer-page-grid {
    grid-template-columns: 1fr;
  }

  .product-preview {
    max-width: 760px;
  }

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

  .packages-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .relaunch-card,
  .about-grid,
  .upgrade-panel {
    grid-template-columns: 1fr;
  }

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

  .package-card p {
    min-height: auto;
  }

  .final-copy {
    position: static;
  }

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

@media (max-width: 820px) {
  :root {
    --nav-height: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-shell {
    width: min(100% - 24px, 1280px);
    gap: 12px;
  }

  .mobile-panel {
    width: min(100% - 24px, 1280px);
  }

  .brand-text {
    max-width: 140px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .nav-cta {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 0.82rem;
  }

  .nav-cta .icon {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .customer-page-hero {
    min-height: auto;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.34rem, 10.3vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2rem, 8.6vw, 2.85rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn {
    width: 100%;
  }

  .trust-row {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .trust-row::-webkit-scrollbar {
    display: none;
  }

  .trust-row span {
    min-width: fit-content;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .hero-grid {
    gap: 22px;
  }

  .product-preview {
    min-height: 0;
    max-height: 280px;
  }

  .placeholder-shell {
    min-height: 0;
    gap: 12px;
    padding: 14px;
  }

  .skeleton-canvas {
    padding: 16px;
  }

  .skeleton-media {
    min-height: 72px;
  }

  .placeholder-content h3 {
    font-size: 1.28rem;
  }

  .placeholder-chips {
    display: none;
  }

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

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

  .card-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .about-image-placeholder,
  .about-image-placeholder:first-child,
  .about-image-placeholder.offset {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 240px;
  }

  .about-card-grid,
  .support-grid,
  .issue-grid {
    grid-template-columns: 1fr;
  }

  .support-panel,
  .upgrade-panel {
    gap: 22px;
  }

  .customer-page-card,
  .customer-contact-card {
    padding: 20px;
  }

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

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

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 35px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .timeline-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 0;
  }

  .timeline-step h3 {
    align-self: end;
  }

  .timeline-step p {
    grid-column: 2;
  }

  .step-number {
    grid-row: span 2;
    margin-bottom: 0;
  }

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

  .showcase-row.reverse .showcase-copy {
    order: 0;
  }

  .showcase-visual {
    min-height: auto;
  }

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

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .consultation-form {
    padding: 18px;
  }

  .field input,
  .field textarea,
  .field select {
    min-height: 54px;
    font-size: 1rem;
  }

  .field:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav-actions {
    width: auto;
    justify-self: end;
  }

  .nav-actions .nav-customer,
  .nav-actions > .language-switcher {
    display: none;
  }

  .nav-cta {
    white-space: nowrap;
  }

  .mobile-panel {
    padding: 16px;
  }

  .mobile-panel .language-switcher {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 40px;
    height: 34px;
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .nav-cta::before {
    content: attr(data-mobile-label);
  }

  .menu-toggle {
    justify-self: end;
  }

  .mobile-panel .mobile-cta {
    display: inline-flex;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 12px;
  }

  .section-pad {
    padding: clamp(58px, 16vw, 82px) 0;
  }

  .section-intro {
    margin-bottom: 30px;
  }

  .hero-text {
    margin-bottom: 16px;
    font-size: 0.98rem;
  }

  .trust-row {
    display: none;
  }

  .browser-top p {
    max-width: 190px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .product-preview {
    max-height: 235px;
  }

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

@media (max-width: 360px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-shell {
    width: min(100% - 18px, 1280px);
    gap: 8px;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 0.78rem;
  }

  .brand-text {
    display: none;
  }

  h1 {
    font-size: 2.12rem;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-text {
    margin-bottom: 14px;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .btn {
    padding-inline: 14px;
  }

  .trust-row {
    display: none;
  }

  .product-preview {
    max-height: 165px;
  }

  .placeholder-shell {
    padding: 10px;
  }

  .skeleton-canvas {
    padding: 12px;
  }

  .skeleton-media {
    min-height: 46px;
  }

  .placeholder-content h3 {
    margin-bottom: 8px;
    font-size: 1.02rem;
  }

  .placeholder-content small {
    font-size: 0.68rem;
  }

}

@media (max-width: 1120px) {
  .assistant-product-card,
  .practice-demo-grid {
    grid-template-columns: 1fr;
  }

  .assistant-product-card {
    align-items: start;
  }
}

@media (max-width: 820px) {
  .assistant-product-card,
  .assistant-product-copy,
  .practice-demo-grid {
    grid-template-columns: 1fr;
  }

  .practice-demo-grid {
    gap: 32px;
  }

  .assistant-messages {
    height: min(62vh, 540px);
    min-height: 380px;
    padding: 16px;
  }

  .assistant-message {
    width: 92%;
  }

  .assistant-input-form {
    grid-template-columns: 1fr;
  }

  .assistant-send {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .assistant-product-card,
  .practice-assistant-card,
  .assistant-followup {
    border-radius: 8px;
  }

  .assistant-chat-header {
    grid-template-columns: auto 1fr;
  }

  .assistant-status {
    grid-column: 2;
  }

  .assistant-messages {
    height: 58vh;
    min-height: 360px;
  }

  .assistant-message {
    width: 100%;
  }

  .assistant-quick-starts,
  .assistant-action-row {
    flex-direction: column;
  }

  .assistant-quick-starts button,
  .assistant-action-row .btn {
    width: 100%;
    justify-content: center;
  }

  .assistant-bubble-widget {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
  }

  .assistant-bubble-panel {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(100dvh - var(--nav-height) - 34px);
    justify-self: stretch;
  }

  .assistant-bubble-panel .assistant-messages {
    height: min(42dvh, 320px);
    min-height: 210px;
  }

  .assistant-bubble-button {
    justify-self: end;
    min-height: 52px;
    padding: 8px;
  }

  .assistant-bubble-copy {
    display: none;
  }
}
