@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --brand: #3660f9;
  --brand-strong: #2348df;
  --brand-dark: #111b56;
  --navy: #0a1438;
  --ink: #17161a;
  --muted: #5d6376;
  --paper: #ffffff;
  --cloud: #f4f6ff;
  --mist: #eef2ff;
  --lime: #d1fd57;
  --coral: #ff806e;
  --lavender: #e9e3ff;
  --line: rgba(18, 30, 76, 0.12);
  --shadow: 0 24px 70px rgba(22, 42, 120, 0.14);
  --shadow-soft: 0 14px 44px rgba(22, 42, 120, 0.1);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
[hidden] { display: none !important; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; transform: translateY(-150%); background: var(--paper); color: var(--navy); border-radius: 10px; padding: 10px 14px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(calc(100% - 40px), var(--container));
  height: 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 80;
}
.brand img { width: 103px; height: auto; filter: drop-shadow(0 6px 12px rgba(30,70,240,.12)); }
.desktop-nav { display: flex; justify-content: center; gap: 30px; }
.desktop-nav a { color: #343a50; font-size: 14px; font-weight: 700; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; border-radius: 3px; background: var(--brand); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-nav, .menu-button { display: none; }

.button {
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-large { min-height: 56px; padding: 16px 24px; }
.button-primary { background: var(--brand); color: white; box-shadow: 0 12px 24px rgba(54,96,249,.24); }
.button-primary:hover { background: var(--brand-strong); box-shadow: 0 16px 30px rgba(54,96,249,.28); }
.button-secondary { background: white; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-soft); }
.button-ghost { background: var(--mist); color: var(--brand-strong); }
.button-lime { background: var(--lime); color: var(--navy); box-shadow: 0 16px 32px rgba(197,242,72,.22); }
.button-on-dark { color: white; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.button-icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.text-button { min-height: 48px; display: inline-flex; align-items: center; font-weight: 900; color: var(--brand-strong); }

.store-cta { margin-top: 22px; display: grid; gap: 8px; justify-items: start; }
.store-cta-label { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.store-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.store-badge { min-height: 52px; min-width: 164px; padding: 7px 13px; border: 1px solid transparent; border-radius: 15px; background: var(--navy); color: var(--paper); display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 9px; text-align: left; cursor: pointer; box-shadow: 0 10px 24px rgba(10,20,56,.16); transition: transform .2s ease, box-shadow .2s ease; }
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(10,20,56,.22); }
.store-badge small, .store-badge strong { display: block; line-height: 1.05; }
.store-badge small { margin-bottom: 3px; color: #d8def5; font-size: 9px; font-weight: 700; }
.store-badge strong { font-size: 14px; font-weight: 900; }
.store-icon { width: 28px; height: 30px; display: grid; place-items: center; }
.store-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.store-cta-on-dark .store-cta-label { color: #d8def5; }
.store-cta-on-dark .store-badge { background: var(--paper); color: var(--navy); box-shadow: 0 12px 26px rgba(0,0,0,.16); }
.store-cta-on-dark .store-badge small { color: var(--muted); }
.section-heading.centered .store-cta { justify-items: center; }
.final-actions .store-cta { margin-top: 0; }

.store-status { position: fixed; z-index: 220; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); width: min(calc(100% - 36px), 420px); padding: 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: var(--navy); color: var(--paper); box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 40px; align-items: start; gap: 14px; }
.store-status strong { font-size: 16px; }
.store-status p { margin: 3px 0 0; color: #d8def5; font-size: 14px; }
.store-status button { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(255,255,255,.08); color: var(--paper); cursor: pointer; font-size: 24px; line-height: 1; }
.store-status button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

.hero { min-height: 710px; position: relative; padding: 76px max(24px, calc((100vw - var(--container)) / 2)) 128px; overflow: visible; isolation: isolate; background: transparent; display: grid; grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr); align-items: center; gap: 54px; }
.hero::before { content: ""; position: absolute; z-index: -2; inset: 0; overflow: hidden; background: var(--hero-background); pointer-events: none; }
.option-a { --hero-background: radial-gradient(circle at 78% 18%, #fff 0 9%, transparent 32%), linear-gradient(145deg, #f9faff 0%, #eef2ff 58%, #f8f5ff 100%); }
.hero-copy { max-width: 590px; position: relative; z-index: 3; }
.eyebrow { color: var(--brand-strong); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.eyebrow-light { color: #ffffff; }
.status-dot { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 6px rgba(54,96,249,.12); }
.lime-dot { background: var(--lime); box-shadow: 0 0 0 6px rgba(209,253,87,.15); }
h1,h2,h3,p { margin-top: 0; }
.hero h1 { margin: 22px 0 22px; font-size: clamp(48px, 5.2vw, 74px); line-height: .98; letter-spacing: -.055em; font-weight: 900; color: var(--navy); }
.hero h1 em { color: var(--brand); font-style: normal; position: relative; }
.hero h1 em::after { content: ""; height: 10px; position: absolute; left: 2px; right: 0; bottom: -6px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7C48 2 122 3 198 5' fill='none' stroke='%23D1FD57' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat; z-index: -1; }
.hero-copy > p { max-width: 570px; margin-bottom: 30px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.promise-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 16px 24px; color: #484e62; font-size: 13px; font-weight: 700; }
.promise-row b { width: 16px; height: 16px; color: #08875d; margin-right: 4px; display: inline-grid; place-items: center; }
.promise-row b svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-art { --hero-optical-x: 50%; --hero-optical-y: 54.5%; min-height: 520px; position: relative; }
.blue-blob { position: absolute; width: 505px; aspect-ratio: 1; left: var(--hero-optical-x); top: var(--hero-optical-y); border-radius: 43% 57% 62% 38% / 45% 38% 62% 55%; background: linear-gradient(145deg, #3157f5 0%, #5d7bff 72%, #7e92ff 100%); box-shadow: 0 36px 90px rgba(54,96,249,.28); transform: translate(-50%, -50%) rotate(-5deg); }
.blue-blob::after { content: ""; position: absolute; inset: 10% 9% auto auto; width: 70%; height: 70%; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.hero-pet { position: absolute; z-index: 3; object-fit: contain; filter: drop-shadow(0 30px 30px rgba(16,33,94,.2)); transition: none; }
.hero-pet { width: 520px; height: auto; left: var(--hero-optical-x); top: var(--hero-optical-y); overflow: visible; transform: translate(-50%, -50%); }
.hero-pet img { width: 100%; max-width: 100%; height: auto; object-fit: contain; object-position: center; transform: none; }
.hero-pet.cat { margin-top: 22px; opacity: 0; }
.hero-art.is-cat .dog { opacity: 0; }
.hero-art.is-cat .cat { opacity: 1; }
.hero-orbit { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.orbit-one { width: 410px; height: 410px; left: var(--hero-optical-x); top: var(--hero-optical-y); transform: translate(-50%, -50%); }
.orbit-two { width: 276px; height: 276px; left: var(--hero-optical-x); top: var(--hero-optical-y); border-style: dashed; transform: translate(-50%, -50%); }
.orbit-ring { position: absolute; z-index: 5; width: 360px; height: 360px; left: var(--hero-optical-x); top: var(--hero-optical-y); border: 1px dashed rgba(255,255,255,.42); border-radius: 50%; pointer-events: none; translate: -50% -50%; transform: rotate(0); }
.orbit-badge { position: absolute; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.82); border-radius: 18px; background: rgba(255,255,255,.94); color: var(--brand); box-shadow: var(--shadow-soft); display: grid; place-items: center; backdrop-filter: blur(12px); }
.orbit-badge svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.orbit-home { left: calc(50% - 27px); top: -27px; }
.orbit-calendar { right: 13px; bottom: 42px; color: var(--navy); background: var(--lime); }
.orbit-health { left: 3px; bottom: 62px; color: var(--coral); }
.hero-art:hover .orbit-ring,
.hero-art:focus-visible .orbit-ring,
.option-a.is-orbiting .orbit-ring { animation: barky-orbit 8s linear infinite; }
.hero-art:hover .orbit-badge,
.hero-art:focus-visible .orbit-badge,
.option-a.is-orbiting .orbit-badge { animation: barky-counter-orbit 8s linear infinite; }
.option-a.is-orbiting-once .orbit-ring { animation: barky-orbit-once 1.25s ease-out 1; }
.option-a.is-orbiting-once .orbit-badge { animation: barky-counter-orbit-once 1.25s ease-out 1; }
@keyframes barky-orbit { to { transform: rotate(1turn); } }
@keyframes barky-counter-orbit { to { transform: rotate(-1turn); } }
@keyframes barky-orbit-once { to { transform: rotate(.16turn); } }
@keyframes barky-counter-orbit-once { to { transform: rotate(-.16turn); } }
.hero-wave { position: absolute; z-index: 1; height: 90px; left: 0; right: 0; bottom: -48px; background: white; border-radius: 50% 50% 0 0 / 62% 62% 0 0; pointer-events: none; }

.service-ribbon { position: relative; z-index: 2; width: min(calc(100% - 40px), var(--container)); margin: 48px auto 0; padding: 30px 0 18px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 40px; border-bottom: 1px solid var(--line); background: white; }
.service-ribbon p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.service-ribbon div { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 16px 28px; }
.service-ribbon a { display: flex; align-items: center; gap: 8px; color: var(--navy); font-size: 14px; font-weight: 800; border-radius: 12px; }
.service-ribbon a:hover { color: var(--brand-strong); }
.service-ribbon b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 10px; background: var(--mist); color: var(--brand); }
.service-ribbon b svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.section { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section h2 { margin: 14px 0 16px; color: var(--navy); font-size: clamp(34px, 4vw, 54px); line-height: 1.02; letter-spacing: -.04em; font-weight: 900; }
.section-heading p { color: var(--muted); font-size: 18px; }

.care-grid { display: grid; grid-template-columns: 1.14fr .86fr; grid-template-rows: repeat(2, minmax(270px, auto)); gap: 18px; }
.care-card { min-height: 270px; padding: 32px; border-radius: var(--radius-lg); overflow: hidden; position: relative; display: grid; grid-template-columns: 1fr 46%; align-items: center; border: 1px solid rgba(20,30,70,.06); }
.care-card-large { grid-row: 1 / 3; grid-template-columns: 1fr; align-content: start; min-height: 560px; }
.care-card h3 { margin: 10px 0 10px; color: var(--navy); font-size: clamp(23px, 2.2vw, 34px); line-height: 1.04; letter-spacing: -.035em; font-weight: 900; }
.care-card p { margin-bottom: 18px; color: #5d6376; }
.care-card .care-art { width: 100%; align-self: end; }
.care-card .care-art img { width: 100%; height: auto; max-height: 250px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 20px 22px rgba(30,45,90,.11)); }
.care-card-large .care-art { margin: 12px auto -36px; }
.care-card-large .care-art img { max-height: 330px; }
.care-copy { position: relative; z-index: 2; }
.card-number { color: var(--brand-strong); font-weight: 900; font-size: 12px; letter-spacing: .12em; }
.text-link { color: var(--brand-strong); font-size: 14px; font-weight: 900; }
.text-link i { font-style: normal; }
.veterinary-card { background: linear-gradient(145deg, #eaf0ff, #f9fbff); }
.grooming-card { background: linear-gradient(145deg, #fff6df, #fffaf1); }
.diagnostic-card { background: linear-gradient(145deg, #eee8ff, #faf8ff); }

.process { width: 100%; max-width: none; padding: 110px max(24px, calc((100vw - var(--container)) / 2)); color: white; background: linear-gradient(135deg, var(--navy) 0%, #17245e 100%); display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.process-intro { max-width: 420px; position: sticky; top: 32px; }
.process h2 { color: white; }
.process-intro p { color: #c6cdec; font-size: 18px; }
.process-track { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.process-track li { min-height: 116px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 26px; background: rgba(255,255,255,.07); display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 18px; }
.process-track li:hover { background: rgba(255,255,255,.11); }
.step-icon { width: 52px; height: 52px; border-radius: 18px; background: var(--lime); color: var(--navy); display: grid; place-items: center; font-size: 24px; font-weight: 900; }
.step-icon svg { width: 26px; height: 26px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.process-track b { color: #9ca9df; font-size: 11px; letter-spacing: .14em; }
.process-track h3 { margin: 2px 0 2px; font-size: 20px; }
.process-track p { margin: 0; color: #c6cdec; font-size: 14px; }

.allies { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 76px; }
.allies-art { min-height: 580px; position: relative; border-radius: 48px; background: linear-gradient(145deg, #e8edff, #f8f9ff); overflow: hidden; }
.allies-art::before { content: ""; position: absolute; width: 380px; height: 380px; right: -90px; top: -90px; border-radius: 50%; background: var(--brand); opacity: .9; }
.dashboard-window { position: absolute; z-index: 2; width: 82%; left: 8%; top: 10%; border-radius: 24px; background: white; box-shadow: var(--shadow); overflow: hidden; transform: rotate(-2deg); border: 1px solid rgba(25,40,90,.08); }
.window-top { height: 44px; display: flex; gap: 7px; align-items: center; padding: 0 14px; background: #f4f6ff; color: #6b7185; font-size: 11px; font-weight: 800; }
.window-top i { width: 8px; height: 8px; border-radius: 50%; background: #ccd3ef; }
.window-top span { margin-left: auto; }
.window-body { height: 285px; display: grid; grid-template-columns: 62px 1fr; }
.mini-sidebar { padding: 24px 15px; background: var(--navy); display: grid; align-content: start; gap: 18px; }
.mini-sidebar span { height: 8px; background: rgba(255,255,255,.24); border-radius: 8px; }
.mini-sidebar span:first-child { background: var(--lime); }
.mini-content { padding: 24px; }
.mini-title { width: 42%; height: 16px; background: var(--navy); border-radius: 8px; }
.metric-row { margin: 22px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.metric-row i { height: 50px; background: var(--mist); border-radius: 12px; }
.agenda-row { margin-top: 8px; min-height: 38px; display: grid; grid-template-columns: 12px 1fr auto; gap: 10px; align-items: center; padding: 8px 10px; background: #f8f9fd; border-radius: 10px; }
.agenda-row b { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.agenda-row span { width: 56%; height: 7px; border-radius: 8px; background: #cfd6ee; }
.agenda-row em { color: var(--navy); font-style: normal; font-size: 9px; font-weight: 900; }
.allies-art > .allies-pet { position: absolute; z-index: 4; width: 270px; right: -20px; bottom: -16px; filter: drop-shadow(0 18px 20px rgba(20,35,90,.16)); }
.allies-pet img { width: 100%; height: auto; }
.art-badge { position: absolute; z-index: 5; padding: 10px 14px; background: white; border-radius: 999px; box-shadow: var(--shadow-soft); color: var(--navy); font-size: 12px; font-weight: 900; }
.badge-team { left: 7%; bottom: 24%; }
.badge-catalog { left: 22%; bottom: 10%; background: var(--lime); }
.allies-copy > p { color: var(--muted); font-size: 18px; }
.benefit-list { margin: 28px 0 32px; padding: 0; list-style: none; display: grid; gap: 18px; }
.benefit-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.benefit-list li > span { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; background: var(--mist); color: var(--brand); font-size: 11px; font-weight: 900; }
.benefit-list strong, .benefit-list small { display: block; }
.benefit-list strong { color: var(--navy); font-size: 16px; }
.benefit-list small { margin-top: 2px; color: var(--muted); font-size: 14px; }
.inline-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.payments { padding: 42px; border-radius: 48px; background: linear-gradient(145deg, var(--mist), var(--cloud)); display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 56px; overflow: hidden; }
.payments-copy { max-width: 520px; }
.payments-copy > p { color: var(--muted); font-size: 18px; }
.payments-art { min-height: 390px; position: relative; border-radius: 36px; background: var(--brand); overflow: hidden; }
.payments-art::before { content: ""; position: absolute; width: 320px; height: 320px; right: -80px; top: -90px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 0 0 52px rgba(255,255,255,.05), 0 0 0 104px rgba(255,255,255,.04); }
.wallet-card { position: absolute; width: min(74%, 360px); min-height: 180px; padding: 26px; border-radius: 28px; display: grid; align-content: space-between; box-shadow: 0 24px 50px rgba(10,20,56,.25); }
.wallet-card span { font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.wallet-card strong { max-width: 220px; font-size: 26px; line-height: 1.05; }
.wallet-card i, .wallet-card b { position: absolute; right: 24px; bottom: 20px; font-size: 34px; font-style: normal; }
.wallet-card i svg { width: 36px; height: 36px; fill: currentColor; }
.wallet-card b svg { width: 40px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.wallet-balance { z-index: 2; left: 10%; top: 11%; background: var(--lime); color: var(--navy); transform: rotate(-4deg); }
.wallet-payment { z-index: 3; right: 7%; bottom: 10%; background: var(--navy); color: var(--paper); transform: rotate(3deg); }
.wallet-payment span { color: #d8def5; }

.principles { width: 100%; max-width: none; padding: 110px max(24px, calc((100vw - var(--container)) / 2)); background: var(--brand); color: white; display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: center; }
.principles h2 { color: white; }
.principles-copy p { color: #dde4ff; font-size: 18px; }
.principle-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.principle-cards article { min-height: 250px; padding: 26px 22px; border-radius: 28px; background: white; color: var(--ink); }
.principle-cards article:nth-child(2) { background: var(--lime); }
.principle-cards article:nth-child(3) { background: #dfe5ff; }
.principle-cards span { width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center; background: var(--navy); color: white; }
.principle-cards span svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.principle-cards h3 { margin: 52px 0 10px; color: var(--navy); font-size: 19px; line-height: 1.1; }
.principle-cards p { margin: 0; color: #555d72; font-size: 14px; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.faq .section-heading { position: sticky; top: 32px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 82px; cursor: pointer; list-style: none; display: grid; grid-template-columns: 1fr 38px; gap: 20px; align-items: center; color: var(--navy); font-size: 18px; font-weight: 900; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { width: 36px; height: 36px; border-radius: 50%; background: var(--mist); color: var(--brand); display: grid; place-items: center; transition: transform .2s ease; }
.faq summary span svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 720px; margin: -6px 50px 28px 0; color: var(--muted); }

.final-cta { width: min(calc(100% - 40px), var(--container)); min-height: 340px; margin: 20px auto 80px; padding: 58px; border-radius: 48px; color: white; position: relative; overflow: hidden; background: radial-gradient(circle at 95% 10%, rgba(112,138,255,.55), transparent 35%), linear-gradient(135deg, var(--navy), #1d328c); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.final-cta h2 { max-width: 680px; margin: 12px 0; font-size: clamp(34px, 4vw, 54px); line-height: 1; letter-spacing: -.04em; }
.final-cta p { margin: 0; color: #d9e0fb; font-size: 17px; }
.final-actions { display: grid; gap: 10px; position: relative; z-index: 2; }
.cta-paws { position: absolute; right: 29%; bottom: -48px; width: 180px; height: 180px; opacity: .06; transform: rotate(-15deg); }
.cta-paws svg { width: 100%; height: 100%; fill: currentColor; }

footer { min-height: 190px; padding: 42px max(24px, calc((100vw - var(--container)) / 2)); background: #080f2b; color: white; display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; align-items: center; gap: 12px 36px; }
.footer-brand img { width: 92px; height: auto; }
footer p { margin: 0; color: #aeb9e5; }
footer nav { display: flex; gap: 24px; font-size: 13px; font-weight: 800; }
footer small { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: #7e8ab7; }

.service-page { min-height: 100vh; background: linear-gradient(180deg, var(--cloud), var(--paper) 560px); }
.service-page .site-header { background: rgba(255,255,255,.9); }
.service-breadcrumbs { width: min(calc(100% - 40px), var(--container)); margin: 22px auto 0; color: var(--muted); font-size: 14px; }
.service-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.service-breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #9da5bd; }
.service-breadcrumbs a { color: var(--brand-strong); font-weight: 800; }
.service-hero { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; padding: 78px 0 84px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; }
.service-hero-copy { max-width: 650px; }
.service-hero h1 { margin: 18px 0 22px; color: var(--navy); font-size: clamp(44px, 5vw, 70px); line-height: .98; letter-spacing: -.05em; font-weight: 900; }
.service-hero h1 em { color: var(--brand); font-style: normal; }
.service-hero-copy > p { color: var(--muted); font-size: 19px; }
.service-hero-art { min-height: 430px; border-radius: 48px; display: grid; place-items: center; overflow: hidden; position: relative; background: linear-gradient(145deg, #e7edff, #f9faff); }
.service-hero-art::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 48px rgba(54,96,249,.08), 0 0 0 96px rgba(54,96,249,.05); }
.service-hero-art picture { position: relative; z-index: 2; width: min(88%, 460px); }
.service-hero-art img { width: 100%; max-height: 380px; object-fit: contain; filter: drop-shadow(0 22px 26px rgba(18,35,95,.15)); }
.service-content { width: min(calc(100% - 40px), 920px); margin: 0 auto; padding: 84px 0; }
.service-content h2 { margin: 56px 0 16px; color: var(--navy); font-size: clamp(30px, 4vw, 46px); line-height: 1.05; letter-spacing: -.035em; }
.service-content h2:first-child { margin-top: 0; }
.service-content h3 { margin: 32px 0 10px; color: var(--navy); font-size: 23px; }
.service-content p, .service-content li { color: var(--muted); font-size: 18px; }
.service-content ul { display: grid; gap: 12px; padding-left: 24px; }
.service-callout { margin: 52px 0; padding: 34px; border-radius: 30px; background: var(--navy); color: white; }
.service-callout h2 { margin: 0 0 12px; color: white; }
.service-callout p { color: #d8def5; }
.related-services { width: min(calc(100% - 40px), var(--container)); margin: 0 auto 90px; }
.related-services h2 { color: var(--navy); font-size: 34px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-grid a { min-height: 150px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-soft); }
.related-grid strong, .related-grid span { display: block; }
.related-grid strong { color: var(--navy); font-size: 20px; }
.related-grid span { margin-top: 8px; color: var(--muted); }

@media (max-width: 1000px) {
  .desktop-nav, .header-login { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { width: 46px; height: 46px; padding: 0; border: 0; background: var(--mist); border-radius: 15px; display: grid; place-content: center; gap: 5px; cursor: pointer; }
  .menu-button span { width: 20px; height: 2px; background: var(--navy); border-radius: 4px; }
  .mobile-nav { position: absolute; left: 0; right: 0; top: 72px; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); display: grid; gap: 6px; }
  .mobile-nav a:not(.button) { padding: 12px; font-weight: 800; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 54px; gap: 20px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 490px; width: min(100%, 650px); margin: 0 auto; }
  .hero-art { --hero-optical-y: 52%; }
  .care-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .care-card-large { grid-row: auto; min-height: 420px; grid-template-columns: 1fr 46%; align-items: center; }
  .care-card-large img { margin: 0; }
  .process, .allies, .principles, .payments, .faq { grid-template-columns: 1fr; gap: 42px; }
  .process-intro, .faq .section-heading { position: static; max-width: 680px; }
  .allies-art { min-height: 530px; }
  .principle-cards { max-width: 820px; }
  .payments-art { min-height: 360px; }
  .final-cta { grid-template-columns: 1fr; }
  .final-actions { grid-template-columns: auto auto; justify-content: start; }
  .service-hero { grid-template-columns: 1fr; gap: 38px; }
  .service-hero-art { min-height: 390px; }
}

@media (max-width: 720px) {
  .site-header { width: min(calc(100% - 28px), var(--container)); height: 70px; }
  .brand img { width: 90px; }
  .hero { padding: 38px 20px 95px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-copy > p { font-size: 17px; }
  .hero-actions, .final-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .store-cta { width: 100%; }
  .store-badges { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .store-badge { min-width: 0; width: 100%; }
  .promise-row { display: grid; gap: 8px; }
  .hero-art { min-height: 390px; }
  .blue-blob { width: min(360px, 100%); }
  .hero-pet { width: 390px; height: auto; }
  .hero-pet.cat { margin-top: 17px; }
  .orbit-one { width: min(330px, calc(100vw - 32px)); height: auto; aspect-ratio: 1; }
  .orbit-two { width: 226px; height: 226px; }
  .orbit-ring { width: min(292px, calc(100vw - 32px)); height: auto; aspect-ratio: 1; }
  .orbit-badge { width: 48px; height: 48px; border-radius: 16px; }
  .orbit-home { left: calc(50% - 24px); top: -24px; }
  .service-ribbon { grid-template-columns: 1fr; gap: 16px; }
  .service-ribbon div { justify-content: flex-start; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .section { width: min(calc(100% - 32px), var(--container)); padding: 80px 0; }
  .section-heading { margin-bottom: 32px; }
  .care-card, .care-card-large { min-height: 390px; padding: 26px; grid-template-columns: 1fr; align-content: start; }
  .care-card .care-art img { max-height: 220px; margin-top: 4px; }
  .process, .principles { padding: 80px 20px; }
  .process-track li { grid-template-columns: 48px 1fr; padding: 18px; }
  .step-icon { width: 44px; height: 44px; }
  .allies { gap: 38px; }
  .allies-art { min-height: 410px; border-radius: 34px; }
  .dashboard-window { width: 90%; left: 3%; }
  .window-body { height: 220px; }
  .allies-art > .allies-pet { width: 180px; right: 0; }
  .art-badge { font-size: 10px; }
  .principle-cards { grid-template-columns: 1fr; }
  .payments { width: min(calc(100% - 28px), var(--container)); padding: 32px 22px; border-radius: 34px; }
  .payments-art { min-height: 330px; }
  .wallet-card { width: 80%; min-height: 160px; padding: 22px; }
  .wallet-card strong { font-size: 22px; }
  .principle-cards article { min-height: 210px; }
  .principle-cards h3 { margin-top: 30px; }
  .faq summary { font-size: 16px; }
  .final-cta { width: min(calc(100% - 28px), var(--container)); margin-bottom: 56px; padding: 38px 24px; border-radius: 34px; }
  .hero-wave { left: 0; right: 0; }
  footer { grid-template-columns: 1fr; }
  footer nav { flex-wrap: wrap; }
  .service-breadcrumbs, .service-hero, .service-content, .related-services { width: min(calc(100% - 32px), var(--container)); }
  .service-hero { padding: 52px 0 68px; }
  .service-hero h1 { font-size: clamp(40px, 13vw, 58px); }
  .service-hero-art { min-height: 330px; border-radius: 34px; }
  .service-content { padding: 64px 0; }
  .service-content p, .service-content li { font-size: 17px; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .hero { padding-inline: 16px; }
  .hero h1 { font-size: 42px; }
  .service-ribbon div { grid-template-columns: 1fr; }
}

@media (hover: none) and (pointer: coarse) {
  .hero-art:hover .orbit-ring, .hero-art:hover .orbit-badge { animation: none; }
  .option-a.is-orbiting-once .orbit-ring { animation: barky-orbit-once 1.25s ease-out 1; }
  .option-a.is-orbiting-once .orbit-badge { animation: barky-counter-orbit-once 1.25s ease-out 1; }
}

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