:root {
  --brand: #0f766e;
  --brand-dark: #115e59;
  --brand-soft: #ccfbf1;
  --accent: #c2410c;
  --accent-soft: #ffedd5;
  --ink: #0f172a;
  --muted: #475569;
  --line: #dbe5e7;
  --surface: #ffffff;
  --surface-soft: #f5faf9;
  --night: #071b2a;
  --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--brand-dark);
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--night);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

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

.announcement {
  padding: max(0.58rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) 0.58rem max(1rem, env(safe-area-inset-left));
  color: #fff;
  background: var(--night);
  font-size: 0.88rem;
  text-align: center;
}

.announcement a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(219, 229, 231, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #14b8a6);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.24);
  font-size: 1.12rem;
  letter-spacing: 0;
}

.brand span:last-child span {
  color: var(--brand);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: #293548;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a.button {
  color: #fff;
}

.site-nav a:not(.button):hover,
.site-nav a[aria-current="page"] {
  color: var(--brand-dark);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 21px;
  height: 2px;
  display: block;
  position: relative;
  background: currentColor;
  border-radius: 20px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.25rem;
  color: #fff;
  background: var(--brand);
  border: 2px solid var(--brand);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.2);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.27);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--brand-dark);
  background: var(--surface-soft);
  border-color: #9ccbc6;
}

.button-accent {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 26px rgba(194, 65, 12, 0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(20, 184, 166, 0.16), transparent 31%),
    radial-gradient(circle at 90% 20%, rgba(249, 115, 22, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fffe 0%, #fff 80%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(15, 118, 110, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 118, 110, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 80%);
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  pointer-events: none;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
  padding-block: clamp(3.2rem, 7vw, 6rem);
  position: relative;
  z-index: 1;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  padding: 0.48rem 0.82rem;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 1px solid #99f6e4;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 5.3vw, 4.8rem);
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.gradient-word {
  color: var(--brand-dark);
  background: linear-gradient(120deg, var(--brand-dark), #0e9388 55%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead,
.page-hero p {
  max-width: 670px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.service-pills li {
  padding: 0.45rem 0.7rem;
  color: #334155;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.puppy-pack {
  width: min(340px, 100%);
  height: 178px;
  display: block;
  position: relative;
  margin: 1.2rem 0 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.puppy-pack::before {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 2px;
  left: 2%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(15, 23, 42, 0.2), transparent 70%);
  filter: blur(8px);
}

.puppy {
  width: 112px;
  height: 168px;
  position: absolute;
  bottom: 0;
  transform-origin: center bottom;
  animation: puppy-bob 2.8s ease-in-out infinite;
}

.puppy img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 10px rgba(15, 23, 42, 0.15));
}

.puppy-one { left: 0; animation-delay: -0.9s; }
.puppy-two { left: 106px; z-index: 2; width: 118px; height: 176px; animation-delay: -1.8s; }
.puppy-three { left: 214px; animation-delay: -0.2s; }

.puppy-pack.is-barking .puppy-one { animation: puppy-hop-left 0.65s ease 2; }
.puppy-pack.is-barking .puppy-two { animation: puppy-hop 0.55s ease 2; }
.puppy-pack.is-barking .puppy-three { animation: puppy-hop-right 0.7s ease 2; }

.bark-bubble {
  position: absolute;
  top: 3px;
  right: -9px;
  z-index: 4;
  padding: 0.42rem 0.68rem;
  color: #fff;
  background: var(--accent);
  border-radius: 13px 13px 13px 3px;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px) scale(0.8);
  transition: opacity 160ms ease, transform 160ms ease;
}

.puppy-pack.is-barking .bark-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.puppy-caption {
  position: absolute;
  right: 5px;
  bottom: 4px;
  z-index: 4;
  padding: 0.38rem 0.62rem;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 800;
}

@keyframes puppy-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  48% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes puppy-hop {
  0%, 100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-18px) scale(1.04); }
}

@keyframes puppy-hop-left {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  45% { transform: translate(-5px, -13px) rotate(-4deg); }
}

@keyframes puppy-hop-right {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  45% { transform: translate(5px, -13px) rotate(4deg); }
}

.scene-3d {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
  perspective: 1200px;
  isolation: isolate;
}

.scene-3d::before,
.scene-3d::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.scene-3d::before {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.24), rgba(15, 118, 110, 0.04) 58%, transparent 70%);
  animation: scene-pulse 5s ease-in-out infinite;
}

.scene-3d::after {
  width: 370px;
  height: 120px;
  bottom: 30px;
  background: rgba(15, 23, 42, 0.12);
  filter: blur(28px);
  transform: rotateX(70deg);
}

.route-console {
  width: min(450px, 94%);
  min-height: 315px;
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  color: #dffaf7;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(7, 27, 42, 0.97), rgba(15, 59, 65, 0.94));
  border: 1px solid rgba(153, 246, 228, 0.35);
  border-radius: 28px;
  box-shadow: 0 38px 80px rgba(7, 27, 42, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: rotateX(7deg) rotateY(-10deg);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.route-console::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(153, 246, 228, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(153, 246, 228, 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.console-top,
.console-route,
.console-steps {
  position: relative;
  z-index: 1;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #99f6e4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 0.4rem;
  background: #2dd4bf;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.12), 0 0 20px #2dd4bf;
  animation: status-pulse 2s ease infinite;
}

.console-route {
  margin-top: 2.2rem;
}

.console-route strong {
  display: block;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.console-route span {
  color: #a7c7c8;
  font-size: 0.9rem;
}

.route-line {
  height: 7px;
  position: relative;
  margin: 1.2rem 0 1.8rem;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 99px;
  overflow: hidden;
}

.route-line::before {
  content: "";
  width: 72%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #14b8a6, #5eead4, #fb923c);
  border-radius: inherit;
  animation: route-flow 3.4s ease-in-out infinite alternate;
}

.console-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.console-step {
  min-height: 82px;
  padding: 0.78rem;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.console-step b {
  display: block;
  color: #fff;
  font-size: 0.82rem;
}

.console-step small {
  color: #a7c7c8;
}

.floating-note {
  max-width: 205px;
  position: absolute;
  z-index: 3;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 800;
  animation: note-float 4s ease-in-out infinite;
}

.floating-note.note-one { top: 56px; right: -5px; }
.floating-note.note-two { bottom: 46px; left: -12px; animation-delay: -2s; }

@keyframes scene-pulse { 50% { transform: scale(1.07); opacity: 0.78; } }
@keyframes status-pulse { 50% { opacity: 0.55; } }
@keyframes route-flow { to { width: 90%; } }
@keyframes note-float { 50% { transform: translateY(-9px); } }

.trust-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: #fff;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.trust-list li {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: #fff;
}

.trust-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 13px;
  font-weight: 900;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding-block: clamp(4rem, 8vw, 7.2rem);
}

.section-soft { background: var(--surface-soft); }
.section-dark { color: #e5f7f5; background: var(--night); }

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.section-heading h2,
.content-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-dark .section-heading h2 { color: #fff; }

.section-heading p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .section-heading p { color: #b6d0d1; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card,
.resource-card,
.info-card {
  color: var(--ink);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.resource-card:hover,
.info-card:hover {
  border-color: #9ccbc6;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card img,
.resource-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-card-body,
.resource-card-body,
.info-card {
  padding: 1.35rem;
}

.card-kicker {
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.resource-card h3,
.info-card h3 {
  margin: 0.38rem 0 0.55rem;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.25;
}

.service-card p,
.resource-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.process-card {
  min-height: 230px;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  counter-increment: step;
}

.process-card::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 1.5rem;
  color: var(--brand-dark);
  font-size: 1.65rem;
  font-weight: 900;
}

.process-card::after {
  content: "";
  width: 90px;
  height: 90px;
  position: absolute;
  top: -38px;
  right: -34px;
  background: var(--brand-soft);
  border-radius: 50%;
}

.process-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
}

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

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2.2rem, 7vw, 6rem);
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;
  max-height: 610px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  z-index: -1;
  background: var(--brand-soft);
  border-radius: var(--radius-lg);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.75rem;
  align-items: start;
  color: #293548;
}

.check-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
}

.coverage-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.coverage-panel h3 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.35rem;
}

.coverage-panel p { margin: 0; color: #b6d0d1; }

.route-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.route-list li {
  padding: 0.72rem 0.8rem;
  color: #dffaf7;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 700;
}

.resource-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 0.75rem;
  margin-inline: auto;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq-question {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--brand-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after { content: "−"; }

.faq-answer {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.faq-answer p { margin: 0; }

.js .faq-answer[hidden] { display: none; }

.quote-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(140deg, #071b2a, #0b4f52);
}

.quote-section::before {
  content: "";
  width: 520px;
  height: 520px;
  position: absolute;
  top: -280px;
  right: -140px;
  background: rgba(45, 212, 191, 0.14);
  border-radius: 50%;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.quote-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.quote-copy p { color: #c2d8d8; }
.quote-copy a { color: #fff; font-weight: 800; }

.quote-form {
  padding: clamp(1.3rem, 3vw, 2rem);
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  color: #263548;
  font-size: 0.84rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 0.74rem 0.85rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bdcbd0;
  border-radius: 11px;
}

.form-field textarea {
  min-height: 105px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
  outline: 0;
}

.form-note {
  margin: 0.9rem 0;
  color: #5b6879;
  font-size: 0.78rem;
}

.sg-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-page-section,
.legal-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: #fff;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-method-grid {
  display: grid;
  gap: 1rem;
}

.contact-method-grid .info-card h2 {
  font-size: 1.15rem;
}

.legal-hero {
  background: linear-gradient(180deg, #f3fffc 0%, #ffffff 100%);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.legal-panel {
  padding: clamp(1.35rem, 4vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-panel h2 {
  margin: 2rem 0 0.7rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
}

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

.legal-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.legal-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1rem;
}

.site-footer {
  padding: 4.5rem 0 2rem;
  color: #bfd1d2;
  background: #04131f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.site-footer .brand { color: #fff; }
.site-footer p { max-width: 420px; color: #9db7b9; }
.site-footer h2 { margin: 0 0 0.85rem; color: #fff; font-size: 1rem; }

.footer-links {
  display: grid;
  gap: 0.52rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #bfd1d2;
  text-decoration: none;
}

.footer-links a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #829fa2;
  font-size: 0.84rem;
}

.footer-bottom a {
  color: #d7eaea;
}

.whatsapp-float {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  color: #fff;
  background: #087f4f;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(8, 127, 79, 0.33);
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: none;
}

.whatsapp-float:hover { color: #fff; background: #066c43; transform: translateY(-2px); }

/* Inner service and article pages */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: #94a3b8;
}

.page-hero {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  background: linear-gradient(180deg, #f3fffc, #fff);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); }

.page-hero-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.content-section + .content-section {
  margin-top: 3.2rem;
  padding-top: 3.2rem;
  border-top: 1px solid var(--line);
}

.content-section h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); }
.content-section h3 { margin-top: 1.8rem; color: var(--ink); }
.content-section p, .content-section li { color: #3f4e60; }

.content-section ul,
.content-section ol {
  padding-left: 1.2rem;
}

.content-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1rem;
}

.aside-card {
  padding: 1.3rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.aside-card h2 { margin: 0 0 0.75rem; font-size: 1.08rem; }
.aside-card p { color: var(--muted); }

.jump-links {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jump-links a { font-weight: 700; }

.callout {
  margin: 1.5rem 0;
  padding: 1.2rem 1.25rem;
  color: #23404b;
  background: #ecfdf5;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .coverage-grid,
  .quote-grid,
  .contact-page-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding-top: 4rem; }
  .hero-copy { max-width: 760px; }
  .scene-3d { min-height: 480px; }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .resource-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .content-aside,
  .legal-aside { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header-inner { min-height: 68px; }
  .nav-toggle { display: grid; }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 0.65rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.65rem 0.8rem;
    border-radius: 11px;
  }

  .site-nav a:hover { background: var(--surface-soft); }
  .site-nav .button { margin-top: 0.35rem; color: #fff; justify-content: center; }
  .site-header { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { letter-spacing: -0.045em; }
  .scene-3d { min-height: 430px; }
  .route-console { transform: rotateX(4deg) rotateY(-4deg); }
  .floating-note.note-one { right: 0; }
  .floating-note.note-two { left: 0; }
  .content-aside { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .announcement { font-size: 0.77rem; }
  .brand { font-size: 1.38rem; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-actions .button { width: 100%; }
  .puppy-pack { margin-inline: auto; transform: scale(0.92); transform-origin: left center; }
  .scene-3d { min-height: 385px; }
  .route-console { min-height: 290px; padding: 1.15rem; }
  .console-steps { gap: 0.4rem; }
  .console-step { min-height: 72px; padding: 0.6rem; }
  .floating-note { display: none; }
  .trust-list, .service-grid, .resource-grid, .info-grid, .process-grid, .route-list, .footer-grid, .legal-aside { grid-template-columns: 1fr; }
  .trust-list li { min-height: 80px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { display: none; }
}

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