:root {
  color-scheme: light;
  --bg: #fff8e7;
  --bg-alt: #ffffff;
  --ink: #2f1b0f;
  --muted: #6f5a46;
  --accent: #f4c542;
  --accent-strong: #7a4b2c;
  --sunrise: #f2b263;
  --line: rgba(47, 27, 15, 0.12);
  --shadow: 0 24px 60px rgba(47, 27, 15, 0.12);
  --radius: 28px;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", "Segoe UI", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Helvetica Neue", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

button,
input,
select {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  position: relative;
  overflow: visible;
  background: radial-gradient(circle at 15% 5%, rgba(244, 197, 66, 0.45), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(122, 75, 44, 0.18), transparent 55%),
    var(--bg);
  padding: 28px 40px 60px;
}

main {
  padding-top: 0;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(122, 75, 44, 0.18) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.page > *:not(.orbs) {
  position: relative;
  z-index: 2;
}

.orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  opacity: 0.85;
  animation: drift 12s ease-in-out infinite;
}

.orb-1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.7), rgba(244, 197, 66, 0));
  top: -40px;
  left: 8%;
}

.orb-2 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(122, 75, 44, 0.45), rgba(122, 75, 44, 0));
  top: 20%;
  right: 12%;
  animation-delay: 1.2s;
}

.orb-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.35), rgba(244, 197, 66, 0));
  bottom: 10%;
  left: 15%;
  animation-delay: 2s;
}

.orb-4 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(122, 75, 44, 0.25), rgba(122, 75, 44, 0));
  bottom: -20px;
  right: 20%;
  animation-delay: 0.6s;
}

.nav {
  display: flex;
  position: sticky;
  top: 0;
  justify-content: center;
  padding: 10px 20px;
  background: transparent;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  width: min(1180px, 100%);
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(122, 75, 44, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(47, 27, 15, 0.18);
  position: relative;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 1100px) {
  .nav-inner {
    padding: 10px 14px;
  }
}

.nav-menu {
  position: static;
  width: 100%;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(122, 75, 44, 0.18);
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(47, 27, 15, 0.18);
  transition: none;
  z-index: 5;
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(122, 75, 44, 0.2);
  background: rgba(255, 255, 255, 0.9);
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent-strong);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav.open .nav-menu {
  display: flex;
}

.nav-menu .nav-links {
  flex-direction: column;
  width: 100%;
  gap: 12px;
  align-items: flex-start;
}

.nav-menu .nav-actions {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}

.nav-menu .nav-actions button {
  width: 100%;
}
.nav.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(122, 75, 44, 0.28);
  box-shadow: 0 20px 50px rgba(47, 27, 15, 0.22);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.98rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(244, 197, 66, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

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

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

button {
  border: none;
  background: none;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button.primary {
  background: linear-gradient(120deg, #5a3a1b, #7a4b2c);
  color: #fff;
  box-shadow: 0 12px 30px rgba(122, 75, 44, 0.3);
}

button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(244, 197, 66, 0.7), transparent);
  transform: translateX(-120%);
  animation: shimmer 4s ease infinite;
}

button.primary:hover {
  transform: translateY(-1px) scale(1.01);
}

button.ghost {
  border: 1px solid rgba(90, 58, 27, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 40px 0 70px;
}

.hero-content {
  animation: fadeInUp 0.8s ease both;
}

.hero-gif {
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  display: block;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--accent-strong);
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
}

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

.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-meta span {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-meta span:nth-child(1) {
  animation-delay: 0.4s;
}

.hero-meta span:nth-child(2) {
  animation-delay: 0.55s;
}

.hero-meta span:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.card-glow {
  position: absolute;
  inset: -10% 10% 30% 0;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.45), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(122, 75, 44, 0.15);
  z-index: 1;
  backdrop-filter: blur(6px);
  animation: float 6s ease-in-out infinite;
}

.hero-card.secondary {
  background: #fffbf2;
  margin-left: 40px;
  animation-duration: 7.5s;
}

.card-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.card-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin: 18px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(244, 197, 66, 0.25);
  color: var(--accent-strong);
  animation: bell-shake 2.6s ease-in-out infinite;
  transform-origin: top center;
}

.bell svg {
  width: 16px;
  height: 16px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 0 rgba(122, 75, 44, 0.5);
  animation: pulse 1.8s ease-out infinite;
}

.card-body {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(244, 197, 66, 0.2);
  color: var(--accent-strong);
  font-size: 0.85rem;
  width: fit-content;
}

.segment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

.gallery {
  padding: 10px 0 40px;
}

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

.image-card {
  background: #fff;
  border-radius: 26px;
  padding: 14px;
  border: 1px solid rgba(122, 75, 44, 0.15);
  box-shadow: 0 16px 40px rgba(122, 75, 44, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.image-card img {
  width: 100%;
  border-radius: 20px;
  display: block;
  background: #fff7e6;
}

.image-card figcaption {
  margin-top: 12px;
  font-weight: 600;
  color: var(--accent-strong);
}

.image-card:hover {
  transform: translateY(-8px) rotate(-0.3deg);
  box-shadow: 0 24px 50px rgba(122, 75, 44, 0.2);
}

.pillars {
  padding: 30px 0 70px;
}

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

.pillar-card {
  background: linear-gradient(140deg, #ffffff, #fff1c8);
  border-radius: 26px;
  padding: 26px;
  border: 1px solid rgba(122, 75, 44, 0.15);
  box-shadow: 0 16px 36px rgba(122, 75, 44, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(122, 75, 44, 0.2);
}

.segment.reverse {
  direction: rtl;
}

.segment.reverse > * {
  direction: ltr;
}

.segment-content h2,
.section-head h2,
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.segment-content p,
.section-head p {
  color: var(--muted);
  margin-bottom: 20px;
}

.bullets {
  list-style: none;
  display: grid;
  gap: 12px;
}

.bullets li {
  padding-left: 22px;
  position: relative;
}

.bullets li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 8px;
}

.segment-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(122, 75, 44, 0.12);
  box-shadow: var(--shadow);
}

.segment-card.vault {
  position: relative;
  padding-top: 80px;
  overflow: visible;
}

.vault-hero {
  position: absolute;
  top: -90px;
  left: 24px;
  transform: none;
  pointer-events: none;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.vault-gif {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
}

.segment-card.highlight {
  background: linear-gradient(135deg, #fff, #fff4da);
  position: relative;
  padding-top: 90px;
  overflow: visible;
}

.clinic-hero {
  position: absolute;
  top: -70px;
  right: 26px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
}

.clinic-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  text-align: center;
}

.stat {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tag-row span {
  border: 1px solid rgba(122, 75, 44, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.features {
  padding: 80px 0 60px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-gif-wrap {
  height: 130px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 0;
  overflow: hidden;
}

.section-gif {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

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

.feature-card {
  background: linear-gradient(160deg, #ffffff, #fff3da);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(122, 75, 44, 0.12);
  min-height: 170px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(122, 75, 44, 0.08);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 197, 66, 0.35);
  color: var(--accent-strong);
  box-shadow: 0 10px 20px rgba(122, 75, 44, 0.18);
  margin-bottom: 14px;
}

.icon {
  width: 22px;
  height: 22px;
}

.feature-card:hover {
  transform: translateY(-6px) rotate(-0.2deg);
  box-shadow: 0 20px 40px rgba(122, 75, 44, 0.18);
}

.workflow {
  padding: 60px 0 80px;
}

.flow-track {
  position: relative;
  height: 48px;
  max-width: 720px;
  margin: 10px auto 30px;
}

.flow-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(244, 197, 66, 0.4) 20%,
    rgba(244, 197, 66, 0.9) 50%,
    rgba(244, 197, 66, 0.4) 80%,
    transparent 100%
  );
}

.flow-arrow {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--accent-strong);
  border-bottom: 2px solid var(--accent-strong);
  transform: translateY(-50%) rotate(-45deg);
  animation: flow-move 4.8s linear infinite;
  opacity: 0.85;
}

.flow-arrow.arrow-2 {
  animation-delay: 2.4s;
  opacity: 0.6;
}

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

.step {
  background: #fff1d4;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(244, 197, 66, 0.4);
  box-shadow: 0 10px 28px rgba(122, 75, 44, 0.12);
}

.step-number {
  display: inline-block;
  font-weight: 700;
  color: var(--accent-strong);
  margin-bottom: 12px;
}

.cta {
  padding: 40px 0 80px;
}

.cta-card {
  background: linear-gradient(120deg, #fffdf7, #ffe9b7);
  border-radius: 32px;
  padding: 40px;
  border: 1px solid rgba(122, 75, 44, 0.2);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(244, 197, 66, 0.4), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: var(--muted);
  margin: 12px auto 24px;
  max-width: 640px;
}

.cta-gif {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto 10px;
}

.cta-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-gif.inline {
  height: 140px;
  margin: 0;
}

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

.cta-form input,
.cta-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(122, 75, 44, 0.25);
  background: #fff;
}

.fineprint {
  font-size: 0.85rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  color: var(--muted);
}

.dog-walk {
  position: relative;
  height: 150px;
  margin: 0 0 10px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 24px;
}

.dog-gif {
  position: relative;
  height: 140px;
  width: auto;
  animation: none;
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 18px rgba(47, 27, 15, 0.2));
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-strong);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(47, 27, 15, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1200;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.segment .segment-content {
  --delay: 0.05s;
}

.segment .segment-card {
  --delay: 0.15s;
}

.feature-card:nth-child(1) {
  --delay: 0.05s;
}

.feature-card:nth-child(2) {
  --delay: 0.1s;
}

.feature-card:nth-child(3) {
  --delay: 0.15s;
}

.feature-card:nth-child(4) {
  --delay: 0.2s;
}

.feature-card:nth-child(5) {
  --delay: 0.25s;
}

.feature-card:nth-child(6) {
  --delay: 0.3s;
}

.image-card:nth-child(1) {
  --delay: 0.05s;
}

.image-card:nth-child(2) {
  --delay: 0.12s;
}

.image-card:nth-child(3) {
  --delay: 0.2s;
}

.pillar-card:nth-child(1) {
  --delay: 0.05s;
}

.pillar-card:nth-child(2) {
  --delay: 0.12s;
}

.pillar-card:nth-child(3) {
  --delay: 0.2s;
}

.step:nth-child(1) {
  --delay: 0.05s;
}

.step:nth-child(2) {
  --delay: 0.12s;
}

.step:nth-child(3) {
  --delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes drift {
  0% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-12px) translateX(8px) scale(1.02);
  }
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes flow-move {
  0% {
    left: -5%;
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  90% {
    opacity: 0.85;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes bell-shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(8deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(6deg);
  }
  40% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(3deg);
  }
  60% {
    transform: rotate(-3deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(122, 75, 44, 0.55);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 10px rgba(122, 75, 44, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(122, 75, 44, 0);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 520px;
  }

  .segment,
  .steps,
  .feature-grid,
  .image-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 1200px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: auto;
    margin-top: 0;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-menu .nav-links {
    flex-direction: row;
    width: auto;
    gap: 24px;
    align-items: center;
  }

  .nav-menu .nav-actions {
    width: auto;
    flex-direction: row;
    gap: 12px;
  }

  .nav-menu .nav-actions button {
    width: auto;
  }
}

@media (max-width: 1100px) {
  .page {
    padding: 20px 20px 50px;
  }

  .logo span {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card.secondary {
    margin-left: 0;
  }

  .hero {
    padding-top: 20px;
  }

  .segment-card.vault {
    padding-top: 115px;
  }

  .vault-hero {
    top: -70px;
    left: 16px;
    width: 170px;
    height: 170px;
  }

  .vault-gif {
    width: 100%;
    height: 100%;
  }

  .segment-card.highlight {
    padding-top: 85px;
  }

  .clinic-hero {
    top: -60px;
    right: 16px;
    width: 160px;
    height: 160px;
  }

  .footer {
    flex-direction: column;
  }

  .dog-walk {
    height: 130px;
    padding-right: 16px;
  }

  .dog-gif {
    height: 115px;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
