:root {
  --ink: #20232d;
  --muted: #667085;
  --muted-strong: #4b5565;
  --line: #dedfe5;
  --line-soft: #ececf1;
  --white: #ffffff;
  --paper: #fafafa;
  --soft: #f7f7f8;
  --pink: #f23b7b;
  --pink-dark: #df2467;
  --pink-soft: #ffeaf2;
  --pink-wash: #fff5f8;
  --dark: #1b1d24;
  --dark-card: #272a33;
  --shadow-soft: 0 16px 38px rgba(16, 16, 24, 0.08);
  --shadow-pink: 0 20px 54px rgba(242, 59, 123, 0.16);
  --radius: 14px;
  --radius-lg: 26px;
  --shell: min(1218px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: 0;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: var(--shell);
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.nav-panel {
  display: contents;
}

.nav-menu,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-menu {
  justify-content: center;
  gap: 22px;
}

.nav-menu a {
  color: #4c4f59;
  font-size: 0.93rem;
  font-weight: 520;
  transition: color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--pink);
}

.nav-actions {
  justify-content: flex-end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.btn,
.lang-select {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 14px 28px rgba(242, 59, 123, 0.2);
}

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

.btn-secondary,
.lang-select {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.btn-light {
  color: var(--pink);
  background: var(--white);
  border-color: var(--white);
}

.btn-large {
  min-height: 52px;
  padding-inline: 1.55rem;
}

.btn-wide {
  width: 100%;
}

.lang-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-select {
  min-width: 78px;
  padding: 0.72rem 2.1rem 0.72rem 1rem;
  font-weight: 600;
  appearance: none;
  cursor: pointer;
}

.lang-select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-2px) rotate(45deg);
  pointer-events: none;
}

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

.section-shell,
.section {
  width: var(--shell);
  margin: 0 auto;
  padding: 104px 0;
}

.section-band {
  width: 100%;
  background: var(--paper);
}

.section-band .section-shell {
  padding-top: 116px;
  padding-bottom: 112px;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 730px;
  padding: 96px max(24px, calc((100% - 1218px) / 2)) 130px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: 76px;
}

.dot-grid {
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 59, 123, 0.1), transparent 30rem),
    radial-gradient(circle, rgba(242, 59, 123, 0.17) 1px, transparent 1px);
  background-size: auto, 22px 22px;
}

.pill {
  width: max-content;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 7px 13px;
  color: #c71454;
  border: 1px solid rgba(242, 59, 123, 0.42);
  border-radius: 999px;
  background: rgba(255, 234, 242, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-copy h1,
.page-hero h1,
.pricing-hero h1,
.section-heading h1,
.section-heading h2,
.center-title,
.dark-band h2,
.cta-block h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 610;
  letter-spacing: 0;
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-copy h1 {
  max-width: 660px;
  font-size: clamp(2.9rem, 4vw, 3.85rem);
}

.hero-lede {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trial-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft);
  box-shadow: var(--shadow-soft);
}

.hero-image-card {
  border-radius: 28px;
  box-shadow: none;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1.54 / 1;
  object-fit: cover;
}

.app-table-shot img {
  aspect-ratio: 1.78 / 1;
  object-position: left top;
}

.hero-image-card.app-table-shot img {
  aspect-ratio: 1.36 / 1;
}

.portal-shot img {
  aspect-ratio: 1.92 / 1;
}

.section-heading {
  max-width: 740px;
}

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

.section-heading h1,
.section-heading h2,
.center-title,
.pricing-hero h1 {
  font-size: clamp(2.1rem, 3.45vw, 3.45rem);
}

.section-heading p,
.lead-strong {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.lead-strong {
  color: var(--ink);
  font-weight: 520;
}

.accent-title {
  color: var(--pink) !important;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

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

.problem-grid .soft-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.problem-grid .soft-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.problem-grid .soft-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.soft-card {
  min-height: 184px;
  padding: 25px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.soft-card h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 560;
  line-height: 1.35;
}

.soft-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--pink);
  background: var(--pink-soft);
  font-weight: 560;
  line-height: 1;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-icon.filled {
  color: var(--white);
  background: var(--pink);
}

.integration-logo {
  width: 72px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--pink);
}

.integrations-grid .soft-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.integration-request-card h3 {
  margin-top: 0;
}

.integration-request-card .btn {
  margin-top: 22px;
}

.integration-logo svg,
.integration-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.integration-logo img {
  object-fit: contain;
}

.split-section,
.split,
.split.reverse,
.usp-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: 72px;
}

.split.reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.92fr);
}

.treatment-card,
.comparison-card,
.contact-form,
.contact-aside,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.treatment-card {
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(242, 59, 123, 0.08);
}

.treatment-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 560;
}

.dog-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 24px 24px;
}

.dog-box {
  padding: 18px;
  border-radius: 14px;
  background: #f4f4f5;
}

.dog-box.featured {
  background: #fde9f1;
}

.dog-box strong,
.dog-box span {
  display: block;
}

.dog-box strong {
  font-weight: 560;
}

.dog-box span {
  margin-top: 8px;
  color: var(--muted);
}

.dark-band {
  padding: 86px 0 96px;
  color: var(--white);
  background: var(--dark);
}

.dark-band .section-shell {
  padding: 0;
}

.dark-band h2 {
  color: var(--white);
  font-size: clamp(1.95rem, 3vw, 2.85rem);
}

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

.benefit-card {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--dark-card);
}

.benefit-card span {
  color: var(--pink);
  font-weight: 560;
}

.benefit-card strong {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 520;
  line-height: 1.35;
}

.center-title {
  text-align: center;
}

.portal-section {
  padding-top: 70px;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.portal-visual-stack {
  position: relative;
  padding: 0 0 170px;
}

.portal-visual-stack .image-card {
  background: var(--white);
}

.portal-visual-stack .image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
}

.portal-cards {
  display: grid;
  gap: 24px;
}

.portal-cards .soft-card {
  position: relative;
  padding-right: 270px;
}

.portal-toggle-callout {
  width: min(220px, 100%);
  height: auto;
  display: block;
  position: absolute;
  top: 46px;
  right: 36px;
  margin: 0;
}

.portal-overlay-shot {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 62%;
  border: 1px solid rgba(23, 35, 62, 0.08);
  box-shadow: 0 28px 50px rgba(23, 35, 62, 0.16);
  z-index: 2;
}

.portal-overlay-shot img {
  aspect-ratio: auto;
  object-position: center center;
}

.cta-block {
  position: relative;
  overflow: hidden;
  margin-top: 36px;
  margin-bottom: 56px;
  padding: 66px 48px;
  border-radius: 36px;
  color: var(--white);
  text-align: center;
  background: var(--pink);
}

.cta-block::before,
.cta-block::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.cta-block::before {
  left: -42px;
  bottom: -44px;
}

.cta-block::after {
  right: -4px;
  top: -46px;
}

.cta-block h2,
.cta-block p,
.cta-block .btn {
  position: relative;
  z-index: 1;
}

.cta-block h2 {
  color: var(--white);
  font-size: clamp(1.95rem, 3vw, 3rem);
}

.cta-block p {
  max-width: 620px;
  margin: 18px auto 30px;
  color: var(--white);
  font-size: 1.05rem;
}

.pricing-hero {
  padding-top: 86px;
  padding-bottom: 24px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  margin-inline: auto;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.95rem;
  cursor: pointer;
}

.billing-label.is-active {
  color: var(--ink);
  font-weight: 560;
}

.toggle-track {
  width: 48px;
  height: 28px;
  padding: 4px;
  display: flex;
  justify-content: flex-start;
  border-radius: 999px;
  background: var(--pink);
}

.toggle-knob {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--white);
  transition: margin 180ms ease;
}

.billing-toggle.is-yearly .toggle-track {
  justify-content: flex-end;
}

.billing-toggle em,
.popular-badge,
.comparison-table thead em {
  padding: 4px 10px;
  border-radius: 999px;
  color: #c71454;
  background: var(--pink-soft);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
}

.pricing-section {
  padding-top: 36px;
}

.pricing-intro strong {
  color: var(--ink);
  font-weight: 600;
}

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

.price-card {
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  color: var(--white);
  background: var(--pink);
}

.price-card h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 590;
  line-height: 1.15;
}

.plan-subtitle,
.price-card p:not(.price) {
  margin: 8px 0 0;
  color: var(--muted);
}

.price {
  margin: 28px 0 24px;
  color: var(--ink);
  font-size: 2.45rem;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1;
}

.price .price-amount {
  color: var(--ink);
  font-size: inherit;
  font-weight: inherit;
}

.price .price-period {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 430;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-weight: 600;
}

.price-card .btn-wide {
  margin-top: auto;
}

.pricing-addons-section {
  padding-top: 34px;
  padding-bottom: 42px;
}

.referrals-page-hero {
  padding-bottom: 24px;
}

.referrals-page-hero .btn {
  margin-top: 30px;
}

.referral-preview-section {
  padding-top: 12px;
  padding-bottom: 34px;
}

.referral-dashboard-preview {
  overflow: hidden;
  max-width: 520px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.referral-dashboard-preview img {
  width: 100%;
  display: block;
}

.referral-story-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.referral-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 54px;
  padding-top: 78px;
}

.referral-timeline::before,
.referral-timeline::after {
  content: "";
  position: absolute;
  top: 22px;
  height: 8px;
  border-radius: 999px;
}

.referral-timeline::before {
  left: calc(16.666% + 22px);
  right: calc(16.666% + 22px);
  background: #eceef2;
  box-shadow: inset 0 1px 3px rgba(23, 35, 62, 0.08);
}

.referral-timeline::after {
  left: calc(16.666% + 22px);
  width: calc(66.666% - 44px);
  background: var(--pink);
  box-shadow: 0 8px 18px rgba(242, 59, 123, 0.22);
}

.referral-step {
  position: relative;
  padding: 0 12px;
  text-align: center;
}

.referral-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  width: 1px;
  height: 15px;
  transform: translateX(-50%);
  background: var(--pink-soft);
  z-index: 2;
}

.referral-step::before {
  display: none;
}

.referral-timeline {
  counter-reset: referral-step;
}

.referral-step {
  counter-increment: referral-step;
}

.referral-step span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--pink);
  background: var(--pink-soft);
  font-weight: 620;
}

.referral-step span {
  position: absolute;
  top: -78px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 2px 10px rgba(23, 35, 62, 0.22);
  z-index: 5;
}

.referral-step h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 610;
  line-height: 1.3;
}

.referral-step p {
  max-width: 360px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.62;
}

.referral-step p strong,
.referral-example-flow strong {
  color: var(--ink);
  font-weight: 620;
}

.referral-example-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.referral-example-card {
  max-width: 880px;
  margin-inline: auto;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.referral-example-card .eyebrow {
  margin-bottom: 26px;
}

.referral-example-card h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 610;
  line-height: 1.12;
}

.referral-example-flow {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.referral-example-flow p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--white);
  color: var(--muted);
  line-height: 1.55;
}

.referral-faq-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.referral-faq-section .faq-list {
  margin-top: 34px;
}

.pricing-addons-section + .cta-block {
  padding-top: 46px;
}

.pricing-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.pricing-addon-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.pricing-addon-card .eyebrow {
  display: inline-flex;
  margin-bottom: 26px;
}

.pricing-addon-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 590;
  line-height: 1.22;
}

.pricing-addon-card p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.addon-price-list,
.sms-package-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.addon-price-list div,
.sms-package-list div {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #fbfbfc;
}

.addon-price-list div {
  grid-template-columns: 1fr auto;
}

.sms-package-list div {
  grid-template-columns: 1fr auto auto;
}

.addon-price-list span,
.sms-package-list span {
  color: var(--ink);
  font-weight: 520;
}

.addon-price-list strong,
.sms-package-list strong {
  color: var(--pink);
  font-weight: 620;
}

.sms-package-list em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.faq-section {
  padding-top: 18px;
  padding-bottom: 94px;
}

.faq-list {
  max-width: 864px;
  margin: 0 auto;
}

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

.faq-list summary {
  position: relative;
  padding: 18px 36px 18px 0;
  color: var(--ink);
  font-weight: 540;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "v";
  position: absolute;
  right: 4px;
  top: 17px;
  color: var(--muted);
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
}

.comparison-section {
  padding-top: 18px;
}

.comparison-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead th {
  height: 116px;
  background: var(--white);
  color: var(--ink);
  font-weight: 560;
}

.comparison-table thead th:not(:first-child),
.comparison-table tbody td:not(:first-child) {
  width: 20.5%;
  text-align: center;
}

.comparison-table thead th span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.comparison-table .highlight-col,
.comparison-table td:nth-child(3) {
  background: var(--pink-wash);
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table .group-row th {
  padding: 16px 24px;
  background: #f6f6f7;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
}

.comparison-table .plan-note {
  display: inline-block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 520;
  line-height: 1.35;
}

.yes,
.no {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.yes {
  color: var(--pink-dark);
  background: var(--pink-soft);
}

.yes.strong {
  color: var(--white);
  background: var(--pink);
}

.yes::before {
  content: "\2713";
}

.no {
  color: #a4a8b2;
}

.no::before {
  content: "\2013";
}

.page-hero {
  padding-top: 88px;
  padding-bottom: 50px;
}

.page-hero .section-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.page-hero .eyebrow {
  margin-inline: auto;
  margin-bottom: 28px;
}

.page-hero h1 {
  max-width: 820px;
  margin-inline: auto;
}

.page-hero .section-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
}

.feature-deep {
  padding-top: 74px;
  padding-bottom: 74px;
}

.integrations-page-hero {
  padding-bottom: 20px;
}

.integrations-section {
  padding-top: 22px;
}

.feature-library {
  padding-top: 34px;
}

.feature-library-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.feature-library-toolbar h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 2.8vw, 2.85rem);
  font-weight: 610;
  line-height: 1.12;
}

.feature-count {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 6px 12px;
  border: 1px solid rgba(242, 59, 123, 0.32);
  border-radius: 999px;
  color: #c71454;
  background: var(--pink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.feature-search {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 520;
}

.feature-search input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 16, 24, 0.05);
}

.feature-search input:focus {
  outline: 3px solid rgba(242, 59, 123, 0.14);
  border-color: var(--pink);
}

.feature-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.feature-category-tabs button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted-strong);
  background: var(--white);
  font-weight: 500;
  cursor: pointer;
}

.feature-category-tabs button.is-active {
  color: var(--white);
  border-color: var(--pink);
  background: var(--pink);
}

.feature-results-meta {
  min-height: 24px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-category-list {
  display: grid;
  gap: 28px;
}

.feature-category {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.feature-category.is-hidden,
.feature-list-card.is-hidden {
  display: none;
}

.feature-category-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: #fbfbfc;
}

.feature-category-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 600;
}

.feature-category-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 580;
  line-height: 1.14;
}

.feature-category-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

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

.feature-list-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
}

.feature-list-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 540;
  line-height: 1.36;
}

.feature-list-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

.feature-list-card > span {
  width: max-content;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  color: #c71454;
  background: var(--pink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.feature-empty {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: var(--paper);
}

.feature-deep,
#customer-overview,
#all-features {
  scroll-margin-top: 92px;
}

.product-frame,
.wide-showcase,
.product-gallery img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.wide-showcase {
  margin-top: 58px;
}

.browser-bar {
  display: none;
}

.product-frame img,
.wide-showcase img,
.product-gallery img {
  width: 100%;
}

.profile-shot-stack {
  position: relative;
  min-height: 470px;
}

.profile-shot {
  background: var(--white);
}

.profile-shot img {
  display: block;
  width: 100%;
}

.profile-shot-info {
  width: 82%;
  margin-left: auto;
}

.profile-shot-notes {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 76%;
  box-shadow: 0 28px 58px rgba(23, 35, 62, 0.14);
}

.product-gallery {
  display: grid;
  gap: 18px;
}

.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-grid span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted-strong);
  font-weight: 560;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--pink);
  font-weight: 600;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 59, 123, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 14px 30px rgba(242, 59, 123, 0.26);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--pink-dark);
}

.contact-section {
  padding-top: 30px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: start;
}

.contact-form,
.contact-aside {
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-message {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-message.success {
  color: #087444;
  border: 1px solid rgba(13, 190, 103, 0.28);
  background: rgba(13, 190, 103, 0.1);
}

.form-message.error {
  color: #b1124a;
  border: 1px solid rgba(242, 59, 123, 0.28);
  background: var(--pink-soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 560;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fbfbfc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(242, 59, 123, 0.15);
  border-color: var(--pink);
}

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

.contact-aside h2 {
  margin: 8px 0 0;
  font-size: clamp(1.55rem, 2.7vw, 2.6rem);
  font-weight: 600;
  line-height: 1.14;
}

.contact-aside .mini {
  margin-top: 24px;
  border-radius: var(--radius);
}

.legal-section {
  padding-top: 20px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.72;
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 560;
}

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

.legal-content p {
  margin: 0;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  margin: 0 0 24px;
  padding: 6px 12px;
  color: #c71454;
  border: 1px solid rgba(242, 59, 123, 0.32);
  border-radius: 999px;
  background: var(--pink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.section-heading.center .eyebrow {
  margin-inline: auto;
}

.section-heading .eyebrow {
  margin-top: 0;
  margin-bottom: 24px;
}

.page-hero .section-heading .eyebrow {
  margin-bottom: 28px;
}

.site-footer {
  padding: 58px max(24px, calc((100% - 1218px) / 2)) 28px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(2, minmax(140px, 0.7fr)) minmax(150px, 0.72fr);
  gap: 48px;
  max-width: 1040px;
  margin: 0 auto;
}

.footer-logo {
  width: 112px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

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

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 0.94rem;
  font-weight: 560;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--pink);
}

.footer-cta {
  align-self: start;
}

.footer-cta a {
  color: var(--pink);
  font-weight: 600;
}

.footer-cta a + a {
  margin-top: 12px;
}

.footer-cta span {
  color: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1040px;
  margin-top: 42px;
  margin-inline: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.instruction-section,
.deletion-details {
  padding-top: 48px;
}

.instruction-layout,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.instruction-card,
.support-card,
.detail-grid > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .reveal,
  .btn,
  .lang-select {
    transition: none;
  }
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 36px, 1218px);
  }

  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

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

  .nav-menu,
  .nav-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .nav-menu a {
    padding: 10px 0;
  }

  .hero,
  .split-section,
  .split,
  .split.reverse,
  .usp-layout,
  .contact-grid,
  .portal-layout {
    grid-template-columns: 1fr;
  }

  .referral-timeline {
    grid-template-columns: 1fr;
  }

  .referral-timeline {
    gap: 42px;
    padding-top: 0;
  }

  .referral-timeline::before,
  .referral-timeline::after {
    display: none;
  }

  .referral-step {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    text-align: left;
  }

  .referral-step::before {
    display: none;
  }

  .referral-step span {
    position: static;
    transform: none;
    margin-right: 12px;
    vertical-align: middle;
  }

  .referral-step:not(:last-child)::after {
    display: none;
  }

  .referral-step p {
    margin-inline: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 86px;
    gap: 48px;
  }

  .feature-grid,
  .problem-grid,
  .benefit-grid,
  .pricing-grid,
  .pricing-addons-grid,
  .feature-list-grid,
  .footer-grid,
  .detail-grid,
  .instruction-layout {
    grid-template-columns: 1fr 1fr;
  }

  .feature-library-toolbar,
  .feature-category-heading {
    grid-template-columns: 1fr;
  }

  .portal-visual-stack {
    padding-bottom: 140px;
  }

  .portal-overlay-shot {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(62%, 340px);
    margin: 0;
  }

  .profile-shot-stack {
    min-height: 420px;
  }

  .profile-shot-info {
    width: 88%;
  }

  .profile-shot-notes {
    width: 82%;
  }

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

  .problem-grid .soft-card {
    grid-column: span 2;
  }

  .problem-grid .soft-card:nth-child(4) {
    grid-column: span 2;
  }

  .problem-grid .soft-card:nth-child(5) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 1218px);
  }

  .brand img,
  .footer-logo {
    width: 104px;
  }

  .section-shell,
  .section,
  .section-band .section-shell {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero {
    padding-inline: 14px;
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 10.4vw, 2.95rem);
  }

  .hero-actions,
  .nav-actions,
  .footer-bottom,
  .billing-toggle {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .lang-select {
    width: 100%;
  }

  .feature-grid,
  .problem-grid,
  .benefit-grid,
  .pricing-grid,
  .pricing-addons-grid,
  .feature-list-grid,
  .footer-grid,
  .dog-comparison,
  .detail-grid,
  .instruction-layout {
    grid-template-columns: 1fr;
  }

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

  .portal-overlay-shot {
    position: static;
    width: 100%;
  }

  .portal-cards .soft-card {
    padding-right: 24px;
  }

  .portal-toggle-callout {
    position: static;
    width: min(220px, 100%);
    margin: 14px 0 12px;
  }

  .portal-visual-stack {
    display: grid;
    gap: 16px;
    padding: 0;
  }

  .profile-shot-stack {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .profile-shot-info,
  .profile-shot-notes {
    position: static;
    width: 100%;
    margin: 0;
  }

  .problem-grid .soft-card,
  .problem-grid .soft-card:nth-child(4),
  .problem-grid .soft-card:nth-child(5) {
    grid-column: auto;
  }

  .cta-block {
    padding: 52px 22px;
    border-radius: 24px;
  }

  .comparison-table {
    min-width: 760px;
  }

  .contact-form-actions {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .pricing-addon-card {
    padding: 24px;
  }

  .sms-package-list div {
    grid-template-columns: 1fr auto;
  }

  .sms-package-list em {
    grid-column: 1 / -1;
  }
}
