@font-face {
  font-family: "Cairo";
  src: url("/assets/Cairo-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #123c46;
  --deep-teal: #082b33;
  --teal: #1e6f68;
  --sage: #69797b;
  --orange: #d9892b;
  --cream: #f3f0e8;
  --paper: #fbfaf6;
  --ink: #182d31;
  --muted: #69797b;
  --line: rgba(18, 60, 70, 0.14);
  --soft: #eaf0ec;
  --danger: #a7463c;
  --shadow: 0 5px 14px rgba(18, 60, 70, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 280px;
  background:
    linear-gradient(rgba(18, 60, 70, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 60, 70, 0.025) 1px, transparent 1px),
    var(--cream);
  background-size: 4.5rem 4.5rem;
  color: var(--ink);
  font-family: "Cairo", "Tahoma", "Arial", sans-serif;
  line-height: 1.85;
}

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

a:hover {
  color: var(--navy);
}

.skip-link {
  position: fixed;
  z-index: 20;
  inset-inline-start: 1rem;
  top: -5rem;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  background: var(--navy);
  color: white;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.96);
}

.header-inner,
.page-shell,
.site-footer {
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 0.55rem;
  background: var(--deep-teal);
  color: var(--orange);
  font-size: 1.5rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.site-nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: var(--soft);
  color: var(--teal);
}

.page-shell {
  padding-block: 3rem 4rem;
}

.hero {
  overflow: hidden;
  position: relative;
  padding: clamp(1.8rem, 6vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--paper);
}

.hero::after {
  position: absolute;
  width: 8rem;
  height: 0.25rem;
  inset-inline-end: 0;
  top: 0;
  background: var(--orange);
  content: "";
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.35;
}

h1 {
  max-width: 44rem;
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.75rem);
}

.lead {
  max-width: 49rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.updated {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.quick-links,
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.quick-link,
.card {
  display: block;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.quick-link:hover {
  border-color: rgba(0, 107, 103, 0.42);
}

.quick-link strong,
.card h2,
.card h3 {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.quick-link span,
.card p {
  margin: 0;
  color: var(--muted);
}

.document {
  max-width: 56rem;
  margin: 1.5rem auto 0;
}

.section {
  scroll-margin-top: 1rem;
  margin-top: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--paper);
}

.section h2 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.section p:last-child,
.section ul:last-child {
  margin-bottom: 0;
}

.section li + li {
  margin-top: 0.4rem;
}

.notice {
  border-inline-start: 0.35rem solid var(--orange);
  background: #fff6e5;
}

.danger-notice {
  border-inline-start-color: var(--danger);
  background: #fff4f2;
}

.action-panel {
  padding: clamp(1.4rem, 5vw, 2.4rem);
  border-radius: 0.8rem;
  background: var(--deep-teal);
  color: white;
}

.action-panel h2,
.action-panel a {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 0.55rem;
  background: var(--orange);
  color: #132f3a !important;
  font-weight: 800;
  text-decoration: none;
}

.contact-list {
  padding: 0;
  list-style: none;
}

.contact-list strong {
  display: inline-block;
  min-width: 7rem;
  color: var(--navy);
}

.site-footer {
  padding-block: 1.5rem 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}

code {
  padding: 0.12rem 0.35rem;
  border-radius: 0.4rem;
  background: var(--soft);
  color: var(--navy);
  font-family: monospace;
  direction: ltr;
  unicode-bidi: isolate;
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.85rem;
  }

  .quick-links,
  .cards {
    grid-template-columns: 1fr;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Platform landing page */
.platform-home {
  --platform-green: #063f3c;
  --platform-green-deep: #042f30;
  --platform-mint: #cbe9d9;
  --platform-lime: #d9efb0;
  --platform-coral: #ed805d;
  --platform-sand: #f5efe3;
  --platform-cream: #fffdf8;
  --platform-ink: #173734;
  --platform-muted: #607572;
  overflow-x: hidden;
  background: var(--platform-cream);
  color: var(--platform-ink);
  line-height: 1.7;
}

.platform-home main {
  overflow: hidden;
}

.platform-container {
  width: min(100% - 2.5rem, 74rem);
  margin-inline: auto;
}

.platform-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--platform-green-deep);
}

.platform-header .header-inner {
  width: min(100% - 2.5rem, 74rem);
  min-height: 5.6rem;
}

.platform-header .brand,
.platform-footer .brand {
  gap: 0.75rem;
  color: white;
}

.brand-logo {
  width: 2.85rem;
  height: 2.85rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 20, 19, 0.22);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.42rem;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 0.27rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
  font-weight: 600;
}

.platform-nav {
  align-items: center;
  gap: 0.4rem;
}

.platform-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.platform-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.platform-nav .nav-action {
  margin-inline-start: 0.75rem;
  padding: 0.62rem 1.2rem;
  border-radius: 2rem;
  background: var(--platform-coral);
  color: white;
}

.platform-nav .nav-action:hover {
  background: #f19375;
}

.platform-hero {
  position: relative;
  min-height: 46rem;
  background:
    radial-gradient(circle at 12% 16%, rgba(217, 239, 176, 0.15) 0 0.45rem, transparent 0.5rem),
    radial-gradient(circle at 16% 22%, rgba(217, 239, 176, 0.1) 0 0.25rem, transparent 0.3rem),
    linear-gradient(115deg, var(--platform-green-deep) 0%, #073b39 63%, #0a4942 100%);
  color: white;
}

.platform-hero::before {
  position: absolute;
  width: 36rem;
  height: 36rem;
  inset-inline-start: -22rem;
  bottom: -22rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.015), 0 0 0 10rem rgba(255, 255, 255, 0.012);
  content: "";
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(28rem, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: 46rem;
  padding-block: 4.8rem 5.5rem;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--platform-coral);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--platform-mint);
}

.hero-kicker span {
  color: var(--platform-coral);
  font-size: 0.65rem;
}

.platform-hero h1 {
  max-width: 39rem;
  margin: 0.7rem 0 0;
  color: white;
  font-size: clamp(2.9rem, 5.6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.platform-hero h1 em {
  position: relative;
  color: var(--platform-coral);
  font-style: normal;
}

.platform-hero h1 em::after {
  position: absolute;
  right: 0.08em;
  bottom: -0.04em;
  width: 92%;
  height: 0.16em;
  border-top: 0.055em solid var(--platform-lime);
  border-radius: 50%;
  transform: rotate(-2deg);
  content: "";
}

.hero-lead {
  max-width: 36rem;
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.platform-home .button {
  min-height: 3.35rem;
  margin-top: 0;
  padding: 0.72rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  gap: 1.6rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--platform-coral);
  color: white !important;
  box-shadow: 0 12px 28px rgba(237, 128, 93, 0.18);
}

.button-primary:hover {
  background: #f19070;
  box-shadow: 0 16px 34px rgba(237, 128, 93, 0.25);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.06);
  color: white !important;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  margin: 1.55rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.trust-list span {
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(203, 233, 217, 0.12);
  color: var(--platform-mint);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 36rem;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-one {
  width: 32rem;
  height: 32rem;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-two {
  width: 25rem;
  height: 25rem;
  top: 5.5rem;
  left: 50%;
  border-color: rgba(217, 239, 176, 0.09);
  transform: translateX(-50%);
}

.phone-shell {
  position: absolute;
  z-index: 5;
  width: 18.8rem;
  min-height: 36.8rem;
  top: 0;
  left: 50%;
  overflow: hidden;
  padding: 0.7rem 0.85rem 1rem;
  border: 0.4rem solid #173937;
  border-radius: 2.7rem;
  background: #fbf8f1;
  color: var(--platform-ink);
  box-shadow: 0 35px 80px rgba(0, 15, 15, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: translateX(-50%) rotate(-2deg);
}

.phone-shell::before {
  position: absolute;
  width: 6rem;
  height: 1.25rem;
  top: -0.1rem;
  left: 50%;
  border-radius: 0 0 0.85rem 0.85rem;
  background: #173937;
  transform: translateX(-50%);
  content: "";
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0.42rem 0.35rem;
  color: #294b48;
  font-size: 0.55rem;
  font-weight: 900;
  direction: ltr;
}

.phone-brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.75rem 0.35rem 0.55rem;
}

.phone-brand span {
  color: #71817e;
  font-size: 0.6rem;
}

.phone-brand strong {
  color: var(--platform-green);
  font-size: 1.3rem;
  font-weight: 950;
}

.phone-feature {
  position: relative;
  height: 11.6rem;
  overflow: hidden;
  border-radius: 1.45rem;
  background: #dce8df;
}

.phone-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 47, 48, 0.78) 100%);
  content: "";
}

.phone-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-feature div {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.9rem;
  display: grid;
  color: white;
}

.phone-feature small {
  color: var(--platform-lime);
  font-size: 0.56rem;
}

.phone-feature strong {
  font-size: 0.9rem;
}

.phone-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.2rem 0.55rem;
  font-size: 0.58rem;
}

.phone-heading strong {
  font-size: 0.72rem;
}

.phone-heading span {
  color: var(--platform-coral);
}

.phone-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
}

.phone-services span {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  color: #5b716e;
  font-size: 0.48rem;
  font-weight: 700;
}

.phone-services b {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 0.85rem;
  background: #e5f0e9;
  color: var(--platform-green);
  font-size: 1rem;
}

.phone-services span:nth-child(2) b {
  background: #fff0e8;
  color: var(--platform-coral);
}

.phone-services span:nth-child(3) b {
  background: #eef2d8;
}

.phone-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
  padding: 0.7rem;
  border: 1px solid rgba(6, 63, 60, 0.08);
  border-radius: 1rem;
  background: white;
  box-shadow: 0 8px 22px rgba(23, 55, 52, 0.06);
}

.pet-avatar {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--platform-sand);
}

.phone-card div {
  display: grid;
}

.phone-card small {
  color: #889793;
  font-size: 0.48rem;
}

.phone-card strong {
  color: #294b48;
  font-size: 0.6rem;
}

.float-card {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 11.5rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--platform-ink);
  box-shadow: 0 18px 45px rgba(0, 25, 24, 0.22);
  backdrop-filter: blur(10px);
}

.float-card > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: none;
  place-items: center;
  border-radius: 0.75rem;
  background: #e1f1e8;
  color: var(--platform-green);
  font-size: 1.15rem;
  font-weight: 900;
}

.float-card div {
  display: grid;
}

.float-card strong {
  font-size: 0.72rem;
}

.float-card small {
  color: #758783;
  font-size: 0.57rem;
}

.float-care {
  top: 7rem;
  right: -0.8rem;
  transform: rotate(2deg);
}

.float-order {
  left: -1.2rem;
  bottom: 5.8rem;
  transform: rotate(-1deg);
}

.float-order > span {
  background: #fff0e8;
  color: var(--platform-coral);
}

.paw {
  position: absolute;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--platform-lime);
  font-size: 3rem;
  opacity: 0.45;
}

.paw-one {
  top: 3.5rem;
  left: 2rem;
}

.paw-two {
  right: 1rem;
  bottom: 2rem;
}

.platform-strip {
  border-bottom: 1px solid rgba(6, 63, 60, 0.1);
  background: #f4efe4;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 5.4rem;
  align-items: center;
}

.strip-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 2.5rem;
  border-inline-end: 1px solid rgba(6, 63, 60, 0.11);
  color: var(--platform-green);
  font-size: 0.77rem;
  font-weight: 800;
}

.strip-grid span:last-child {
  border-inline-end: 0;
}

.strip-grid i {
  color: var(--platform-coral);
  font-size: 0.63rem;
  font-style: normal;
}

.platform-section {
  padding-block: clamp(5rem, 9vw, 8rem);
  scroll-margin-top: 2rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.experience-content h2,
.partner-content h2,
.join-panel h2 {
  margin: 0;
  color: var(--platform-green-deep);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.section-heading > p {
  margin: 0 0 0.35rem;
  color: var(--platform-muted);
  font-size: 0.92rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 20rem;
  gap: 1rem;
}

.service-card {
  position: relative;
  grid-column: span 5;
  overflow: hidden;
  border-radius: 1.8rem;
  background: var(--platform-green);
  box-shadow: 0 16px 45px rgba(7, 54, 51, 0.1);
}

.service-card-large {
  grid-column: span 7;
}

.service-card-wide {
  grid-column: span 7;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 47, 48, 0.04) 15%, rgba(4, 47, 48, 0.9) 100%);
  content: "";
}

.service-card:nth-child(2)::after {
  background: linear-gradient(180deg, rgba(36, 43, 31, 0.02) 5%, rgba(45, 57, 43, 0.84) 100%);
}

.service-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.6rem;
  color: white;
}

.service-number {
  display: inline-grid;
  min-width: 2rem;
  min-height: 1.35rem;
  margin-bottom: 0.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 1rem;
  color: var(--platform-lime);
  font-size: 0.6rem;
}

.service-overlay h3 {
  margin: 0;
  color: white;
  font-size: 1.45rem;
  font-weight: 900;
}

.service-overlay p {
  max-width: 28rem;
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.78rem;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.7rem;
  color: var(--platform-lime);
  font-size: 0.72rem;
  font-weight: 900;
}

.experience-section {
  position: relative;
  background: #f4efe4;
}

.experience-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: radial-gradient(rgba(6, 63, 60, 0.22) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, #000, transparent 42%);
  content: "";
}

.experience-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.experience-visual {
  position: relative;
  min-height: 35rem;
}

.pet-photo-frame {
  position: absolute;
  width: min(100%, 27rem);
  height: 32rem;
  top: 0;
  right: 0;
  overflow: hidden;
  border-radius: 13rem 13rem 1.5rem 1.5rem;
  background: #d8dfd2;
  box-shadow: 0 24px 65px rgba(6, 63, 60, 0.15);
}

.pet-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--platform-green);
  font-size: 0.7rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.photo-label b {
  color: var(--platform-coral);
}

.metric-card {
  position: absolute;
  z-index: 3;
  left: -1rem;
  bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.15rem;
  border-radius: 1.3rem;
  background: var(--platform-green);
  color: white;
  box-shadow: 0 18px 45px rgba(6, 63, 60, 0.25);
}

.metric-card strong {
  color: var(--platform-lime);
  font-size: 1.75rem;
}

.metric-card span {
  padding-inline-start: 0.8rem;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  line-height: 1.5;
}

.experience-content {
  padding-inline-start: 1rem;
}

.steps-list {
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.steps-list li:not(:last-child)::before {
  position: absolute;
  width: 1px;
  height: calc(100% - 2.4rem);
  top: 2.8rem;
  right: 1.45rem;
  background: rgba(6, 63, 60, 0.18);
  content: "";
}

.steps-list li > span {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgba(6, 63, 60, 0.15);
  border-radius: 50%;
  background: #fffaf0;
  color: var(--platform-coral);
  font-size: 0.72rem;
  font-weight: 900;
}

.steps-list strong {
  color: var(--platform-green-deep);
  font-size: 1rem;
}

.steps-list p {
  margin: 0.25rem 0 0;
  color: var(--platform-muted);
  font-size: 0.82rem;
}

.partners-section {
  background: var(--platform-cream);
}

.partner-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: center;
  min-height: 34rem;
  overflow: hidden;
  padding: clamp(2.4rem, 6vw, 5.5rem);
  border-radius: 2.3rem;
  background:
    radial-gradient(circle at 15% 10%, rgba(217, 239, 176, 0.12), transparent 20rem),
    var(--platform-green-deep);
  color: white;
  box-shadow: 0 30px 75px rgba(6, 47, 48, 0.14);
}

.partner-panel::after {
  position: absolute;
  width: 25rem;
  height: 25rem;
  left: -8rem;
  bottom: -12rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.018), 0 0 0 8rem rgba(255, 255, 255, 0.012);
  content: "";
}

.partner-content {
  position: relative;
  z-index: 3;
}

.light-kicker {
  color: var(--platform-lime);
}

.partner-content h2 {
  max-width: 42rem;
  color: white;
}

.partner-content > p:not(.section-kicker) {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.partner-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 700;
}

.partner-benefits span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.partner-benefits b {
  color: var(--platform-lime);
}

.button-light {
  margin-top: 1.8rem !important;
  background: white;
  color: var(--platform-green) !important;
}

.partner-art {
  position: relative;
  z-index: 2;
  min-height: 23rem;
}

.partner-circle {
  position: absolute;
  width: 19rem;
  height: 19rem;
  top: 50%;
  left: 48%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.018), 0 0 0 6rem rgba(255, 255, 255, 0.012);
  transform: translate(-50%, -50%);
}

.partner-circle img {
  width: 8.5rem;
  height: 8.5rem;
  border: 0.55rem solid rgba(255, 255, 255, 0.08);
  border-radius: 2.5rem;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 19, 18, 0.4);
  transform: rotate(-5deg);
}

.partner-badge {
  position: absolute;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--platform-green);
  font-size: 0.67rem;
  font-weight: 900;
  box-shadow: 0 15px 40px rgba(0, 25, 24, 0.25);
}

.badge-orders {
  top: 3.4rem;
  right: 0;
  transform: rotate(3deg);
}

.badge-growth {
  left: 0;
  bottom: 3.5rem;
  color: #b95739;
  transform: rotate(-2deg);
}

.join-section {
  padding-top: 0;
}

.join-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 3.8rem);
  border: 1px solid rgba(6, 63, 60, 0.1);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(237, 128, 93, 0.11), transparent 15rem),
    #f4efe4;
}

.join-panel h2 {
  max-width: 48rem;
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
}

.join-panel p:not(.section-kicker) {
  margin: 0.65rem 0 0;
  color: var(--platform-muted);
  font-size: 0.86rem;
}

.join-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.support-phone {
  display: grid;
  color: var(--platform-green);
  text-decoration: none;
  direction: ltr;
}

.support-phone small {
  color: var(--platform-muted);
  font-size: 0.62rem;
}

.support-phone strong {
  font-size: 0.88rem;
}

.platform-footer {
  width: 100%;
  margin: 0;
  padding: 4.5rem 0 1.5rem;
  border-top: 0;
  background: var(--platform-green-deep);
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1.6fr) repeat(3, minmax(8rem, 0.7fr));
  gap: 2.5rem;
}

.footer-brand p {
  max-width: 20rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-column strong {
  margin-bottom: 0.35rem;
  color: white;
  font-size: 0.82rem;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--platform-lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.footer-bottom b {
  color: var(--platform-coral);
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr 25rem;
    gap: 2rem;
  }

  .platform-hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  }

  .float-care {
    right: 0;
  }

  .float-order {
    left: 0;
  }

  .partner-panel {
    grid-template-columns: 1fr 17rem;
  }

  .partner-circle {
    width: 15rem;
    height: 15rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .platform-container,
  .platform-header .header-inner {
    width: min(100% - 1.5rem, 74rem);
  }

  .platform-header .header-inner {
    align-items: center;
    flex-direction: row;
    min-height: 4.7rem;
    padding-block: 0;
  }

  .platform-nav a:not(.nav-action) {
    display: none;
  }

  .platform-nav {
    width: auto;
  }

  .platform-nav .nav-action {
    margin: 0;
    padding: 0.52rem 1rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 3.4rem 2.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-kicker {
    font-size: 0.68rem;
  }

  .platform-hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .platform-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-visual {
    min-height: 37.5rem;
    margin-top: 1rem;
  }

  .float-care {
    top: 6rem;
    right: max(-0.65rem, calc(50% - 13.5rem));
  }

  .float-order {
    left: max(-0.65rem, calc(50% - 13.5rem));
    bottom: 4.5rem;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 0.65rem;
  }

  .strip-grid span {
    border: 0;
  }

  .section-heading,
  .experience-layout,
  .partner-panel,
  .join-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 19rem;
  }

  .service-card,
  .service-card-large,
  .service-card-wide {
    grid-column: 1;
  }

  .experience-layout {
    gap: 3rem;
  }

  .experience-visual {
    min-height: 31rem;
    order: 2;
  }

  .pet-photo-frame {
    right: 50%;
    width: min(100%, 24rem);
    height: 29rem;
    transform: translateX(50%);
  }

  .metric-card {
    left: 0;
  }

  .experience-content {
    padding-inline-start: 0;
  }

  .partner-panel {
    padding: 2.2rem 1.4rem;
    text-align: center;
  }

  .partner-content > p:not(.section-kicker) {
    margin-inline: auto;
  }

  .partner-benefits {
    justify-content: center;
  }

  .partner-art {
    min-height: 18rem;
  }

  .partner-circle {
    width: 13rem;
    height: 13rem;
  }

  .partner-circle img {
    width: 7rem;
    height: 7rem;
  }

  .badge-orders {
    right: 8%;
  }

  .badge-growth {
    left: 8%;
  }

  .join-panel {
    gap: 1.5rem;
    text-align: center;
  }

  .join-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  .platform-home .brand-copy small {
    display: none;
  }

  .platform-home .button {
    gap: 0.8rem;
  }

  .phone-shell {
    width: 17.5rem;
  }

  .float-card {
    min-width: 9.6rem;
    padding: 0.65rem;
  }

  .float-card > span {
    width: 2rem;
    height: 2rem;
  }

  .float-care {
    right: -1.1rem;
  }

  .float-order {
    left: -1.1rem;
  }

  .platform-section {
    padding-block: 4.5rem;
  }

  .section-heading h2,
  .experience-content h2,
  .partner-content h2 {
    font-size: 1.9rem;
  }

  .join-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .support-phone {
    justify-items: center;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

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

  .platform-home *,
  .platform-home *::before,
  .platform-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
