:root {
  --brand-teal: #01a58d;
  --brand-navy: #022859;
  --brand-gold: #e89f04;
  --brand-coral: #f7715d;
  --brand-dark: #1a1a18;
  --brand-grey: #a7a7a7;
  --bg-light: #f8faf9;
  --bg-soft: #f3f6f5;
  --bg-card: #ffffff;
  --text-dark: var(--brand-dark);
  --text-muted: #535a58;
  --border-color: rgba(2, 40, 89, 0.08);
  --shadow-soft: 0 18px 45px rgba(2, 40, 89, 0.07);
  --shadow-card: 0 12px 32px rgba(2, 40, 89, 0.05);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1300px;
  --font-brand: "Poppins", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-brand);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(1, 165, 141, 0.05), transparent 38%),
    linear-gradient(315deg, rgba(232, 159, 4, 0.06), transparent 35%),
    var(--bg-light);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1,
h2,
h3,
strong {
  color: var(--brand-navy);
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(2rem, 3.55vw, 3.35rem);
  font-weight: 900;
}

h1 span {
  color: var(--brand-coral);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
}

h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

p {
  color: var(--text-muted);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-teal);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(1, 165, 141, 0.18);
}

.btn-coral {
  background: var(--brand-teal);
  color: #fff;
}

.btn-coral:hover {
  background: var(--brand-navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 40, 89, 0.18);
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 3.5rem max(clamp(1rem, 4vw, 2rem), calc((100vw - var(--max-width)) / 2 + 2rem)) 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 250, 249, 0.98) 0%, rgba(248, 250, 249, 0.9) 43%, rgba(248, 250, 249, 0.45) 100%),
    url("public/cannae-hero-premium-petcare.png") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(1, 165, 141, 0.1), transparent);
}

.hero-content {
  display: grid;
  gap: 1.05rem;
}

.eyebrow,
.feature-kicker,
.star-badge,
.petshop-hook span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--brand-teal);
  background: rgba(1, 165, 141, 0.08);
  border: 1px solid rgba(1, 165, 141, 0.16);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coral-text {
  color: var(--brand-coral);
  background: rgba(247, 113, 93, 0.09);
  border-color: rgba(247, 113, 93, 0.18);
}

.mustard-text {
  color: var(--brand-gold);
  background: rgba(232, 159, 4, 0.1);
  border-color: rgba(232, 159, 4, 0.2);
}

.hero-lead {
  max-width: 620px;
  color: var(--brand-navy);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 700;
}

.hero-copy,
.section-heading p,
.advisory-copy > p,
.cta-inner p {
  max-width: 760px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.hero-form-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 1px solid rgba(2, 40, 89, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(2, 40, 89, 0.12);
}

.crm-form-card {
  min-height: 720px;
  padding: 0.65rem;
  overflow: hidden;
  border-radius: 24px;
}

.crm-form-iframe {
  width: 100%;
  min-height: 700px;
  height: 100%;
  border: 0;
  border-radius: 24px;
}

.cta-form-card.crm-form-card {
  min-height: 760px;
}

.cta-form-card .crm-form-iframe {
  min-height: 740px;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-stage {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 246, 245, 0.94)),
    linear-gradient(135deg, rgba(1, 165, 141, 0.12), rgba(232, 159, 4, 0.1));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-stage::before {
  content: "OBT";
  position: absolute;
  inset: auto 0 10%;
  color: rgba(2, 40, 89, 0.04);
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.hero-product-photo {
  position: relative;
  z-index: 1;
  width: min(82%, 390px);
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(2, 40, 89, 0.14));
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  min-width: 138px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.floating-note span {
  color: var(--brand-navy);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.note-one {
  left: -1rem;
  bottom: 16%;
}

.note-two {
  right: -0.8rem;
  top: 18%;
}

.stat-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.feature-hero-card,
.feature-mini,
.product-card,
.advisory-panel,
.faq-item {
  border: 1px solid rgba(2, 40, 89, 0.07);
  border-radius: 8px;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.stat-card {
  padding: 1.35rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.stat-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 4vw, 2rem);
}

.section-heading,
.faq-heading {
  max-width: 830px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  text-align: center;
}


.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.1rem, 2.2vw, 1.8rem);
}

.section-cta .btn {
  min-width: min(100%, 280px);
  justify-content: center;
}

.feature-cta {
  grid-column: 1 / -1;
}

.faq-cta .btn {
  background: var(--brand-gold);
  box-shadow: 0 14px 30px rgba(232, 159, 4, 0.22);
}

.faq-cta .btn:hover {
  background: var(--brand-teal);
}

.advisory-cta {
  justify-content: flex-start;
  margin-top: 0.4rem;
}

.advisory-cta .btn {
  min-width: auto;
}

.features {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 249, 246, 0.98)),
    radial-gradient(circle at 12% 8%, rgba(1, 165, 141, 0.1), transparent 34%);
}

.features .section-heading {
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}

.features .section-heading h2 {
  max-width: 920px;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.features > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.feature-board {
  display: grid;
  grid-template-columns: 0.95fr 1.3fr;
  gap: 1.5rem;
}

.feature-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  isolation: isolate;
}

.feature-hero-card::before,
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--brand-teal);
}

.feature-hero-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0.85rem 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.feature-hero-card p,
.feature-kicker {
  position: relative;
  z-index: 1;
}

.feature-hero-card p {
  max-width: 68%;
}

.feature-pet-visual {
  position: absolute;
  right: -0.35rem;
  bottom: -0.45rem;
  z-index: 0;
  width: min(38%, 205px);
  opacity: 0.46;
  pointer-events: none;
}

.feature-pet-visual::before {
  content: "";
  position: absolute;
  inset: 20% -8% -8% 8%;
  z-index: -1;
  border-radius: 50% 0 8px 50%;
  background: linear-gradient(135deg, rgba(1, 165, 141, 0.12), rgba(255, 255, 255, 0.7));
}

.feature-pet-visual img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 18px 26px rgba(2, 40, 89, 0.18));
}

.feature-proof {
  display: grid;
  gap: 0.15rem;
  width: fit-content;
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: rgba(1, 165, 141, 0.08);
  color: var(--brand-teal);
}

.feature-proof span {
  color: var(--brand-teal);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.feature-proof small {
  color: var(--brand-navy);
  font-weight: 700;
}

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

.feature-mini {
  padding: 1.55rem;
  transition: var(--transition);
}

.feature-mini:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 165, 141, 0.26);
  box-shadow: 0 22px 48px rgba(2, 40, 89, 0.09);
}

.feature-mini span,
.product-number {
  color: var(--brand-teal);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

[data-tone="coral"] .feature-mini span,
.feature-mini[data-tone="coral"] span,
.product-card[data-tone="coral"] .product-number {
  color: var(--brand-coral);
}

.feature-mini[data-tone="mustard"] span,
.product-card[data-tone="mustard"] .product-number {
  color: var(--brand-gold);
}

.feature-mini[data-tone="blue"] span,
.product-card[data-tone="blue"] .product-number {
  color: var(--brand-navy);
}

.product-showcase {
  position: relative;
}

.product-showcase {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, rgba(247, 113, 93, 0.72), rgba(247, 113, 93, 0.6));
}

.product-showcase > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.product-showcase .section-heading h2,
.product-showcase .section-heading p {
  color: #fff;
}

.product-showcase .section-heading .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
}

.brand-showcase {
  display: grid;
  gap: 1.6rem;
}

.brand-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  overflow: visible;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.2rem 0 0.8rem;
}

.brand-tab {
  min-width: 150px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  color: var(--brand-navy);
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(2, 40, 89, 0.08);
  transition: var(--transition);
  overflow: hidden;
}

.brand-tab:hover,
.brand-tab.active {
  border-color: var(--brand-teal);
  transform: translateY(-3px);
}

.brand-tab img {
  width: calc(100% - 1.2rem);
  max-width: 130px;
  height: calc(100% - 1.2rem);
  object-fit: contain;
}

.brand-tab span {
  display: none;
}

.brand-board {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(2, 40, 89, 0.12);
  overflow: visible;
}

.brand-panel {
  display: none;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 430px;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: visible;
}

.brand-panel.active {
  display: grid;
}

.brand-board-logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  border-radius: 8px;
  background: transparent;
  overflow: visible;
  isolation: isolate;
}

.brand-board-logo::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 8%;
  z-index: -1;
  height: 46%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 113, 93, 0.22), rgba(1, 165, 141, 0.16)),
    var(--bg-soft);
}

.brand-board-logo img {
  width: min(96%, 460px);
  max-height: 360px;
  object-fit: contain;
  transform: translateY(-7%);
  filter: drop-shadow(0 26px 28px rgba(2, 40, 89, 0.18));
  transition: var(--transition);
}

.brand-panel.active .brand-board-logo img {
  animation: productRise 0.5s ease both;
}

@keyframes productRise {
  from {
    opacity: 0;
    transform: translateY(4%);
  }
  to {
    opacity: 1;
    transform: translateY(-7%);
  }
}

.brand-board-copy {
  display: grid;
  gap: 1rem;
}

.brand-board-copy h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.brand-bullets {
  display: grid;
  gap: 0.9rem;
  list-style: none;
  margin-top: 0.6rem;
}

.brand-bullets li {
  position: relative;
  padding-left: 2.2rem;
  color: var(--brand-dark);
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--brand-coral);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.product-carousel {
  position: relative;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: #fff;
  color: var(--brand-navy);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--brand-teal);
  color: #fff;
  border-color: var(--brand-teal);
}

.product-grid {
  display: grid;
  grid-auto-columns: minmax(320px, 410px);
  grid-auto-flow: column;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.35rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-card {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: var(--transition);
}

.product-card-media {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 2.4rem 1.5rem 1rem;
  background: linear-gradient(135deg, rgba(1, 165, 141, 0.06), rgba(232, 159, 4, 0.08));
}

.star-badge {
  justify-self: start;
  align-self: start;
  color: var(--brand-gold);
  background: rgba(232, 159, 4, 0.1);
  border-color: rgba(232, 159, 4, 0.2);
}

.product-image {
  width: min(76%, 240px);
  height: 210px;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(2, 40, 89, 0.13));
}

.product-image-wide {
  width: min(84%, 280px);
}

.product-copy {
  display: grid;
  gap: 0.85rem;
  padding: 2rem;
}

.product-line {
  color: var(--brand-teal);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.petshop-hook {
  margin-top: 0.35rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--brand-navy);
  font-weight: 600;
}

.petshop-hook span {
  margin-bottom: 0.55rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.distributor-benefits {
  width: 100%;
  max-width: none;
  padding-top: clamp(1.45rem, 2.8vw, 2.35rem);
  padding-bottom: clamp(1.45rem, 2.8vw, 2.35rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 249, 0.98)),
    radial-gradient(circle at 15% 0%, rgba(247, 113, 93, 0.12), transparent 34%),
    radial-gradient(circle at 85% 100%, rgba(1, 165, 141, 0.1), transparent 34%);
  overflow: visible;
}

.distributor-benefits > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.distributor-benefits .section-heading {
  max-width: 660px;
  margin-bottom: clamp(0.95rem, 1.8vw, 1.35rem);
  gap: 0.45rem;
}

.distributor-benefits .section-heading h2 {
  font-size: clamp(1.45rem, 2.45vw, 2.25rem);
}

.distributor-benefits .section-heading p {
  max-width: 620px;
  font-size: clamp(0.88rem, 1.15vw, 1rem);
}

.benefits-grid-cannae {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.2vw, 0.95rem);
}

.benefit-tile {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.45rem;
  min-height: 108px;
  padding: 0.75rem 0.65rem;
  text-align: center;
  border-radius: 8px;
  background: var(--brand-navy);
  outline: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.benefit-tile:hover,
.benefit-tile:focus {
  z-index: 5;
  background: #043d78;
  box-shadow: 0 14px 34px rgba(2, 40, 89, 0.12);
  transform: translateY(-2px);
}

.benefit-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(247, 113, 93, 0.78);
  color: #fff;
  box-shadow: 0 12px 28px rgba(247, 113, 93, 0.22);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  overflow: visible;
}

.benefit-icon svg [fill="none"] {
  fill: none;
}

.benefit-tile h3 {
  max-width: 280px;
  color: #fff;
  font-size: clamp(0.95rem, 1.15vw, 1.14rem);
  font-weight: 900;
  line-height: 1.15;
}

.benefit-tile p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
}

.benefit-detail {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  z-index: 20;
  width: min(280px, calc(100vw - 2rem));
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(2, 40, 89, 0.22);
  color: var(--brand-navy);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.benefit-tile .benefit-detail {
  color: var(--brand-navy);
}

.benefit-detail::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  transform: translateX(-50%);
}

.benefit-tile:hover .benefit-detail,
.benefit-tile:focus .benefit-detail,
.benefit-tile:focus-within .benefit-detail,
.benefit-tile.is-active .benefit-detail {
  opacity: 1;
  transform: translate(-50%, 0);
}

.benefits-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(0.65rem, 1.4vw, 1rem);
}

.benefits-actions .btn {
  background: var(--brand-gold);
  box-shadow: 0 12px 28px rgba(232, 159, 4, 0.2);
}

.benefits-actions .btn:hover {
  background: var(--brand-navy);
}

.mini-check {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(1, 165, 141, 0.1);
  color: var(--brand-teal);
  font-weight: 900;
}

.check.coral,
.mini-check {
  background: rgba(247, 113, 93, 0.1);
  color: var(--brand-coral);
}

.check.mustard {
  background: rgba(232, 159, 4, 0.13);
  color: var(--brand-gold);
}

.check.blue {
  background: rgba(2, 40, 89, 0.1);
  color: var(--brand-navy);
}

.advisory-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: stretch;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.96);
}

.advisory-copy {
  display: grid;
  align-content: center;
  gap: 1.2rem;
}

.advisory {
  background:
    linear-gradient(135deg, rgba(247, 113, 93, 0.1), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 88% 16%, rgba(232, 159, 4, 0.14), transparent 34%);
  box-shadow: 0 0 0 100vmax rgba(247, 113, 93, 0.055);
  clip-path: inset(0 -100vmax);
}

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

.question-grid label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--brand-navy);
  font-weight: 700;
}

.mini-check {
  width: 24px;
  height: 24px;
  font-size: 0.8rem;
}

.advisory-image-card {
  position: relative;
  justify-self: stretch;
  align-self: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f49282;
}

.advisory-image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.distributor-steps {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(1.4rem, 3.2vw, 2.8rem);
  align-items: center;
  padding-top: clamp(2rem, 3.8vw, 3.2rem);
  padding-bottom: clamp(2rem, 3.8vw, 3.2rem);
  background:
    linear-gradient(90deg, #fff 0 52%, rgba(2, 40, 89, 0.06) 52% 100%),
    radial-gradient(circle at 8% 12%, rgba(247, 113, 93, 0.12), transparent 28%);
}

.distributor-steps > * {
  max-width: calc(var(--max-width) / 2);
}

.steps-copy {
  justify-self: end;
  display: grid;
  gap: 0.9rem;
  max-width: 590px;
}

.steps-copy h2 {
  max-width: 720px;
  color: var(--brand-navy);
  font-size: clamp(1.8rem, 3.45vw, 3.2rem);
  line-height: 1.06;
}

.steps-copy > p {
  max-width: 640px;
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.32;
}

.steps-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.1rem;
}

.step-item {
  position: relative;
  display: grid;
  grid-template-columns: 2.55rem 1fr;
  gap: 0.55rem 0.75rem;
  align-items: start;
  width: 100%;
  padding: 0.62rem 0.78rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--brand-navy);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: var(--transition);
}

.step-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(247, 113, 93, 0.08);
  opacity: 0;
  transform: scaleX(0.96);
  transition: var(--transition);
}

.step-item span,
.step-item strong,
.step-item small {
  position: relative;
  z-index: 1;
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.22rem;
  min-height: 2.22rem;
  border-radius: 50%;
  background: rgba(247, 113, 93, 0.14);
  color: var(--brand-navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.step-item strong {
  align-self: end;
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  line-height: 1.12;
}

.step-item small {
  grid-column: 2;
  color: var(--brand-dark);
  font-size: clamp(0.82rem, 0.98vw, 0.92rem);
  font-weight: 500;
  line-height: 1.28;
}

.step-item.active,
.step-item:hover,
.step-item:focus-visible {
  border-color: rgba(247, 113, 93, 0.22);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 36px rgba(2, 40, 89, 0.1);
  transform: translateX(0.25rem);
}

.step-item.active::before,
.step-item:hover::before,
.step-item:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.step-item.active span,
.step-item:hover span,
.step-item:focus-visible span {
  background: var(--brand-gold);
  color: #fff;
}

.steps-copy .btn {
  width: fit-content;
  margin-top: 0.25rem;
  background: var(--brand-gold);
  box-shadow: 0 14px 30px rgba(232, 159, 4, 0.22);
}

.steps-copy .btn:hover {
  background: var(--brand-navy);
}

.steps-visual {
  position: relative;
  justify-self: start;
  width: min(100%, 650px);
  min-height: clamp(390px, 38vw, 510px);
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  background: var(--brand-navy);
  box-shadow: 0 28px 70px rgba(2, 40, 89, 0.18);
}

.steps-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 0.5s ease;
}

.steps-visual:hover img {
  transform: scale(1.035);
}

.steps-progress {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: grid;
  gap: 0.55rem;
  padding: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.steps-progress span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(2, 40, 89, 0.28);
  transition: var(--transition);
}

.steps-progress span.active {
  height: 2.2rem;
  background: var(--brand-gold);
}

.steps-floating-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.45rem;
  max-width: 380px;
  padding: 0.95rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(2, 40, 89, 0.22);
  backdrop-filter: blur(16px);
}

.steps-floating-card strong {
  color: var(--brand-navy);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 900;
  line-height: 1.08;
}

.steps-floating-card p {
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.35;
}

.testimonials {
  width: 100%;
  max-width: none;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(2, 40, 89, 0.76), rgba(2, 40, 89, 0.76)),
    url("public/cannae-hero-premium-petcare.png") center / cover no-repeat;
}

.testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials .section-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.testimonials .section-heading h2,
.testimonials .section-heading p {
  color: #fff;
}

.testimonials .section-heading .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
}

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

.testimonial-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.65rem;
  min-height: 190px;
  padding: clamp(1.1rem, 2vw, 1.55rem);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.stars {
  color: var(--brand-gold);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.testimonial-card blockquote {
  color: var(--brand-navy);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 900;
  line-height: 1.25;
}

.testimonial-card cite {
  color: var(--brand-dark);
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 900;
}

.faq {
  max-width: 980px;
  background: #f6f6f6;
  box-shadow: 0 0 0 100vmax #f6f6f6;
  clip-path: inset(0 -100vmax);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 0;
  background: #fff;
  color: var(--brand-navy);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
}

.faq-question span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(1, 165, 141, 0.1);
  color: var(--brand-teal);
  flex: 0 0 auto;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  background: var(--brand-teal);
  color: #fff;
}

.cta-banner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto clamp(4rem, 8vw, 6rem);
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border-radius: 8px;
  background: #022859;
  box-shadow: 0 35px 80px rgba(2, 40, 89, 0.2);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.cta-blob {
  display: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 1.2rem;
  max-width: 540px;
  margin: 0;
  text-align: left;
}

.cta-inner h2,
.cta-inner p {
  color: #fff;
}

.cta-inner .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-form-card {
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.footer {
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--brand-navy);
}

.footer img {
  display: block;
  width: 100%;
  height: auto;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .feature-board,
  .advisory-panel,
  .cta-banner,
  .brand-panel,
  .distributor-steps {
    grid-template-columns: 1fr;
  }

  .distributor-steps {
    background:
      linear-gradient(180deg, #fff 0 56%, rgba(2, 40, 89, 0.06) 56% 100%),
      radial-gradient(circle at 8% 12%, rgba(247, 113, 93, 0.12), transparent 28%);
  }

  .distributor-steps > *,
  .steps-copy,
  .steps-visual {
    max-width: var(--max-width);
    justify-self: center;
  }

  .steps-copy h2 {
    font-size: clamp(1.75rem, 5vw, 2.8rem);
  }

  .steps-visual {
    width: 100%;
    min-height: 340px;
    border-radius: 8px;
  }

  .hero {
    min-height: auto;
  }

  .stat-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: 340px;
  }

  .product-stage {
    aspect-ratio: 1 / 0.92;
  }

  .floating-note {
    min-width: 120px;
    padding: 0.8rem;
  }

  .note-one {
    left: 0.5rem;
  }

  .note-two {
    right: 0.5rem;
  }

  .stat-grid,
  .feature-stack,
  .question-grid,
  .testimonial-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .benefit-detail {
    top: auto;
    bottom: calc(100% + 0.5rem);
  }

  .benefit-detail::before {
    top: auto;
    bottom: -7px;
    border-top: 8px solid #fff;
    border-bottom: 0;
  }

  .feature-hero-card {
    min-height: auto;
  }

  .feature-hero-card p {
    max-width: none;
  }

  .feature-pet-visual {
    width: min(34%, 150px);
    opacity: 0.28;
  }


  .product-grid {
    grid-auto-columns: minmax(285px, 88vw);
  }

  .product-card {
    min-height: auto;
  }

  .brand-tabs {
    justify-content: center;
  }

  .brand-tab {
    min-width: 145px;
  }

  .brand-panel {
    min-height: auto;
    padding: 1.5rem;
  }

  .distributor-steps {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .step-item {
    grid-template-columns: 2.7rem 1fr;
    padding: 0.78rem;
  }

  .step-item small {
    grid-column: 1 / -1;
  }

  .steps-copy .btn {
    width: 100%;
    justify-content: center;
  }

  .steps-visual {
    min-height: 300px;
  }

  .brand-board-logo {
    min-height: 250px;
  }

  .brand-board-logo img {
    width: min(100%, 360px);
    max-height: 300px;
  }

  .footer {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .benefits-grid-cannae {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 480px) {
  .benefits-grid-cannae {
    grid-template-columns: 1fr;
  }
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
