:root {
  --primary: #471ca8;
  --primary-dark: #3c198a;
  --primary-soft: #f4f1fa;
  --primary-border: #d2c8eb;
  --accent: #f9735b;
  --accent-soft: #fff0ea;
  --cream: #fff8f1;
  --cream-strong: #f7eadc;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: #ffffff;
  --soft: #f8fafc;
  --emerald: #16a34a;
  --emerald-soft: #dcfce7;
  --shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-float: 0 22px 54px rgba(15, 23, 42, 0.16);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes quiet-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.06);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(226, 232, 240, 0.26) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 34%, #fbfdff 100%);
  background-size: 72px 72px, 100% 100%;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--primary);
  color: white;
}

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

p {
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  margin: 0;
}

h1 {
  max-width: 760px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 3.05rem;
  font-weight: 600;
  letter-spacing: 0;
}

h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0;
}

h3 {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(780px, calc(100% - 32px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 12px 16px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-logo {
  display: block;
  width: 126px;
  height: auto;
  color: var(--primary);
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.site-nav a:focus-visible,
.site-footer a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(150, 116, 210, 0.46);
  outline-offset: 4px;
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 32px rgba(71, 28, 168, 0.22);
}

.button-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 18px 42px rgba(71, 28, 168, 0.26);
}

.button-secondary {
  border: 1px solid var(--primary-border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 70px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 248, 241, 0.68) 100%),
    linear-gradient(180deg, var(--cream) 0%, rgba(255, 255, 255, 0.92) 78%, rgba(255, 255, 255, 0.98) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/clinic-team.png") center center / cover no-repeat;
  opacity: 0.24;
  filter: saturate(0.9) contrast(1.04);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.72) 48%, black 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 76px;
  background: linear-gradient(180deg, transparent, white);
  pointer-events: none;
}

.hero-grid,
.split-grid,
.feature-band,
.product-grid {
  display: grid;
  gap: 34px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.hero-mark {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(210, 200, 235, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-dark);
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.hero-mark img {
  width: 20px;
  height: 20px;
}

.kicker {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 650px;
  color: #475569;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-proof,
.insight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span,
.insight-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.flow-diagram {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 200, 235, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 241, 0.78) 100%);
  padding: 18px;
  box-shadow: var(--shadow);
}

.flow-diagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(210, 200, 235, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(210, 200, 235, 0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, black 0%, transparent 86%);
  pointer-events: none;
}

.flow-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(210, 200, 235, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.flow-header img {
  width: 34px;
  height: 34px;
}

.flow-header div,
.flow-step div {
  display: grid;
  gap: 3px;
}

.flow-header strong,
.flow-step strong {
  color: var(--ink);
  line-height: 1.18;
}

.flow-header span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.flow-steps {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.flow-steps::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0.34;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.flow-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(71, 28, 168, 0.2);
}

.flow-step p {
  font-size: 0.9rem;
}

.flow-step-accent {
  border-color: rgba(249, 115, 91, 0.36);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 234, 0.92));
}

.flow-step-accent .flow-number {
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(249, 115, 91, 0.22);
}

.product-stage {
  display: grid;
  gap: 14px;
}

.product-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(210, 200, 235, 0.8);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 248, 241, 0.64) 100%);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(210, 200, 235, 0.26) 1px, transparent 1px),
    linear-gradient(180deg, rgba(210, 200, 235, 0.2) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, black 0%, transparent 88%);
  opacity: 0.72;
  pointer-events: none;
}

.product-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(244, 241, 250, 0.34));
  pointer-events: none;
}

.website-card,
.schedule-card,
.chat-card,
.followup-card,
.hero-metrics article,
.feature-card,
.statement-card,
.product-panel,
.chat-preview,
.solution-list article,
.journey article,
.dark-card {
  border: 1px solid rgba(226, 232, 240, 0.94);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.website-card {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 14px;
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.14);
}

.browser-bar {
  display: flex;
  gap: 6px;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #cbd5e1;
}

.browser-bar span:first-child {
  background: var(--accent);
}

.website-preview {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 241, 250, 0.94) 0%, rgba(255, 248, 241, 0.94) 100%);
  padding: 18px;
}

.website-preview div {
  display: grid;
  gap: 8px;
}

.website-preview span,
.service-preview span,
.booking-summary span,
.followup-card span,
.hero-metrics span,
.feature-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.website-preview strong {
  max-width: 320px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.16;
}

.website-preview a {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 0 13px;
  font-size: 0.9rem;
  font-weight: 850;
}

.service-preview {
  display: grid;
  gap: 8px;
}

.service-preview span {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 10px 12px;
}

.schedule-card,
.chat-card,
.followup-card {
  position: relative;
  z-index: 4;
  padding: 14px;
  border-color: rgba(210, 200, 235, 0.88);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow: var(--shadow-float);
}

.schedule-card {
  left: auto;
  right: auto;
  top: auto;
}

.panel-heading,
.preview-topbar {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.status-dot,
.whatsapp-dot,
.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status-dot {
  background: var(--emerald);
  animation: soft-pulse 2.8s ease-in-out infinite;
}

.whatsapp-dot {
  background: #22c55e;
}

.calendar-row {
  display: grid;
  grid-template-columns: 0.6fr repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.calendar-row strong,
.calendar-row span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 850;
}

.calendar-row strong {
  background: var(--primary);
  color: white;
}

.calendar-row span {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.booking-summary strong {
  color: var(--emerald);
  font-size: 0.9rem;
}

.chat-card {
  left: auto;
  right: auto;
  bottom: auto;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.conversation-card {
  display: grid;
  gap: 12px;
}

.message {
  width: fit-content;
  max-width: 94%;
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.patient {
  background: #f1f5f9;
}

.agent {
  justify-self: end;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.followup-card {
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 250, 245, 0.86);
}

.followup-card img {
  width: 34px;
  height: 34px;
}

.followup-card div,
.hero-metrics article {
  display: grid;
  gap: 2px;
}

.followup-card strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.hero-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.hero-metrics article {
  padding: 14px;
}

.hero-metrics strong {
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.section,
.page-hero,
.legal-hero,
.final-cta {
  padding: 72px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.82) 0%, #ffffff 100%);
}

.section-product {
  background:
    linear-gradient(135deg, #101827 0%, #241a55 64%, #3c198a 100%);
}

.section-product h2,
.section-product h3,
.section-product p,
.section-product .kicker,
.section-product .check-list li {
  color: white;
}

.section-product .kicker {
  color: #f9c4b8;
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 34px;
}

.cards-grid,
.values-grid {
  display: grid;
  gap: 16px;
}

.feature-card,
.statement-card {
  padding: 24px;
}

.feature-card {
  display: grid;
  gap: 12px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.solution-list article:hover,
.journey article:hover {
  transform: translateY(-3px);
  border-color: var(--primary-border);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.11);
}

.feature-label {
  width: fit-content;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #b9472d;
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 900;
}

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

.solution-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: start;
  padding: 18px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.solution-list article p {
  grid-column: 2;
}

.solution-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 950;
}

.journey {
  display: grid;
  gap: 18px;
}

.journey article {
  position: relative;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.journey span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 900;
}

.product-panel {
  display: grid;
  gap: 18px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.chat-preview {
  display: grid;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 64px rgba(2, 6, 23, 0.24);
}

.preview-topbar span {
  background: var(--emerald);
}

.section-product .chat-preview .preview-topbar {
  color: var(--ink);
}

.section-product .message {
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.section-product .message.patient {
  background: #e2e8f0;
  color: #0f172a;
}

.section-product .message.agent {
  background: var(--primary);
  color: white;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--emerald) 0%, #86efac 100%);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.44);
}

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

.final-cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 58%, #241a55 100%);
  color: white;
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

.final-cta-box > img {
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.final-cta-box h2,
.final-cta-box .kicker {
  color: white;
}

.final-cta-box .button-primary {
  width: fit-content;
  background: white;
  color: var(--primary);
  box-shadow: none;
}

.page-hero,
.legal-hero {
  background:
    linear-gradient(180deg, var(--cream) 0%, white 100%);
}

.page-hero .narrow,
.legal-hero .narrow,
.prose-block {
  display: grid;
  gap: 18px;
}

.statement-card {
  background: var(--primary-soft);
  border-color: var(--primary-border);
}

.values-grid article {
  border-top: 3px solid var(--primary);
  background: white;
  padding: 22px;
}

.prose-block a {
  width: fit-content;
  margin-top: 8px;
}

.notice {
  border: 1px solid var(--primary-border);
  border-radius: 8px;
  background: white;
  color: var(--primary-dark);
  padding: 14px 16px;
}

.updated {
  font-size: 0.92rem;
}

.legal-content h2 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-top: 10px;
}

.legal-content a {
  color: var(--primary);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  background:
    linear-gradient(135deg, #0f172a 0%, #17113b 100%);
  color: white;
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand,
.site-footer h2,
.site-footer a {
  color: white;
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: #cbd5e1;
}

.site-footer a:hover {
  color: white;
}

.site-footer p,
.footer-bottom {
  color: #94a3b8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.16);
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.72rem;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: row;
  }

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

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }

  .hero {
    padding: 86px 0 88px;
  }

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

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

  .footer-bottom {
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  h1 {
    font-size: 4.65rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .site-nav {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .feature-band,
  .product-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
  }

  .product-shell {
    display: block;
    min-height: 560px;
    padding: 0;
  }

  .website-card {
    position: absolute;
    left: 22px;
    right: auto;
    width: min(370px, calc(100% - 44px));
    top: 24px;
  }

  .schedule-card {
    position: absolute;
    left: auto;
    right: 18px;
    top: 70px;
    width: 292px;
    transform: translateX(6px);
  }

  .chat-card {
    position: absolute;
    left: auto;
    right: 18px;
    bottom: 118px;
    width: 330px;
    transform: translateX(10px);
  }

  .followup-card {
    position: absolute;
    left: 34px;
    right: auto;
    bottom: 34px;
    width: 318px;
    animation: quiet-float 6s ease-in-out infinite;
  }

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

  .hero-copy {
    padding-right: 22px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .brand-logo {
    width: 112px;
  }

}

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

  .hero-copy > *,
  .product-stage,
  .followup-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
