:root {
  --green: #13802c;
  --green-dark: #064719;
  --green-soft: #dbf8d7;
  --red: #c91e3c;
  --red-dark: #8b1028;
  --red-soft: #ffe2e8;
  --blue: #167fdb;
  --blue-soft: #dff2ff;
  --yellow: #f5c821;
  --ink: #102027;
  --muted: #5b6a70;
  --surface: #f4faff;
  --white: #ffffff;
  --line: #d8e7ef;
  --shadow: 0 24px 70px rgba(25, 71, 82, 0.16);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 16%, rgba(245, 200, 33, 0.2), transparent 28%),
    radial-gradient(circle at 95% 8%, rgba(22, 127, 219, 0.16), transparent 26%),
    linear-gradient(180deg, #f7fcff 0%, #fff 48%, #f4faff 100%);
  background-size: 140% 140%;
  animation: auraBackground 18s ease-in-out infinite;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
  padding-inline: max(24px, calc((100% - 1240px) / 2));
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(216, 231, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong,
h1,
h2,
h3,
.button,
.pill,
.dose {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1;
}

.brand small {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.top-nav a {
  position: relative;
  padding: 8px 0;
}

.top-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red), var(--yellow));
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 5px 0 var(--green-dark);
  animation: softPulse 3.8s ease-in-out infinite;
}

.button:hover,
.header-cta:hover {
  transform: translateY(2px);
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  min-height: clamp(620px, calc(100vh - 118px), 760px);
  margin-inline: auto;
  padding: clamp(28px, 4vw, 54px) 0 clamp(32px, 4vw, 58px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 10% auto auto 44%;
  width: 360px;
  height: 360px;
  content: "";
  background: conic-gradient(from 20deg, var(--green), var(--blue), var(--red), var(--yellow), var(--green));
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  animation: slowSpin 18s linear infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  animation: fadeSlideUp 700ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 7px 12px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(19, 128, 44, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 6px 0 var(--green-dark);
  position: relative;
  overflow: hidden;
}

.button.secondary {
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
}

.button.primary::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.28) 48%, transparent 62% 100%);
  transform: translateX(-130%);
  animation: buttonShine 4.2s ease-in-out infinite;
}

.trust-row span {
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  min-height: clamp(430px, 48vw, 620px);
  isolation: isolate;
}

.dog-stage {
  display: grid;
  align-items: end;
}

.aura-ring {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.34;
  animation: floatSoft 7s ease-in-out infinite;
}

.ring-green {
  top: 5%;
  right: 20%;
  width: 54%;
  aspect-ratio: 1;
  background: var(--green-soft);
}

.ring-red {
  right: 0;
  bottom: 9%;
  width: 44%;
  aspect-ratio: 1;
  background: var(--red-soft);
  animation-delay: -2.4s;
}

.hero-product,
.hero-dog {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(17, 32, 39, 0.18));
  animation: productLift 5.8s ease-in-out infinite;
}

.hero-product {
  height: min(83%, 620px);
}

.hero-dog {
  right: -5%;
  bottom: 2%;
  width: min(108%, 760px);
  max-height: 94%;
  object-position: center bottom;
  z-index: 1;
  animation: dogBreath 6.4s ease-in-out infinite;
}

.product-green {
  right: 32%;
  bottom: 0;
}

.product-red {
  right: 0;
  bottom: 3%;
  animation-delay: -1.8s;
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 142px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.floating-note span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.seal-note {
  z-index: 3;
  place-items: center;
  min-width: 0;
  width: 156px;
  height: 156px;
  padding: 18px;
  color: var(--green-dark);
  text-align: center;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 54%, rgba(219, 248, 215, 0.76) 55%),
    rgba(255, 255, 255, 0.58);
  border: 2px solid rgba(19, 128, 44, 0.24);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 42px rgba(38, 73, 87, 0.12);
  backdrop-filter: blur(18px);
  animation: sealPulse 5.5s ease-in-out infinite, sealWiggle 7s ease-in-out infinite;
}

.seal-note::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px dashed rgba(19, 128, 44, 0.34);
  border-radius: 50%;
}

.seal-note strong {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.18;
  text-transform: uppercase;
}

.note-green {
  top: 12%;
  left: 54%;
  border-top: 5px solid var(--green);
}

.seal-note.note-green,
.seal-note {
  border-top: 2px solid rgba(19, 128, 44, 0.24);
}

.hero-seal {
  top: 9%;
  right: 23%;
  left: auto;
}

.note-red {
  right: 4%;
  bottom: 6%;
  border-top: 5px solid var(--red);
}

.benefit-band,
.products,
.testimonials,
.guide,
.faq,
footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.benefit-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -18px;
}

.support-band {
  position: relative;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
  margin-top: -18px;
  padding: clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 20% 18%, rgba(219, 248, 215, 0.74), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(223, 242, 255, 0.78), transparent 34%),
    radial-gradient(circle at 52% 95%, rgba(255, 226, 232, 0.66), transparent 32%),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(38, 73, 87, 0.1);
  backdrop-filter: blur(22px);
  overflow: hidden;
  animation: fadeSlideUp 800ms ease both;
}

.support-band::after {
  position: absolute;
  right: 7%;
  bottom: -70px;
  width: 190px;
  height: 190px;
  content: "";
  background: conic-gradient(from 120deg, var(--green), var(--blue), var(--red), var(--yellow), var(--green));
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.18;
  animation: slowSpin 20s linear infinite;
}

.support-copy,
.support-cards,
.premium-trust {
  position: relative;
  z-index: 1;
}

.support-copy {
  max-width: 820px;
  text-align: center;
}

.support-copy h2 {
  max-width: 760px;
  margin: 8px auto 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(980px, 100%);
}

.support-card {
  min-height: 190px;
  padding: 24px;
  background: rgba(223, 242, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 42px rgba(38, 73, 87, 0.09);
  backdrop-filter: blur(16px);
  animation: cardFloat 6s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.support-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 54px rgba(38, 73, 87, 0.14);
}

.pain-card {
  background: rgba(255, 244, 204, 0.74);
  animation-delay: -1.2s;
}

.sleep-card {
  background: rgba(241, 222, 246, 0.72);
  animation-delay: -2.4s;
}

.support-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #477cff);
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(22, 127, 219, 0.22);
}

.pain-card .support-icon {
  background: linear-gradient(135deg, #ff7a1a, var(--red));
  box-shadow: 0 10px 24px rgba(201, 30, 60, 0.2);
}

.sleep-card .support-icon {
  background: linear-gradient(135deg, #a24dff, #c15adf);
  box-shadow: 0 10px 24px rgba(162, 77, 255, 0.2);
}

.support-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.premium-trust {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  width: 100%;
  margin-top: 8px;
  padding: clamp(26px, 5vw, 50px);
  background: rgba(244, 250, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 20px 60px rgba(38, 73, 87, 0.1);
  backdrop-filter: blur(18px);
}

.aura-seal {
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(230px, 62vw);
  aspect-ratio: 1;
  color: var(--green-dark);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 43%, transparent 44%),
    conic-gradient(from 0deg, rgba(19, 128, 44, 0.18), rgba(201, 30, 60, 0.18), rgba(22, 127, 219, 0.16), rgba(19, 128, 44, 0.18));
  border: 14px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(38, 73, 87, 0.16);
  animation: sealPulse 5.5s ease-in-out infinite;
}

.aura-seal span {
  display: grid;
  place-items: center;
  width: 62%;
  aspect-ratio: 1;
  border: 8px solid rgba(201, 30, 60, 0.18);
  border-radius: 50%;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 900;
}

.premium-trust h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.premium-trust p {
  color: var(--muted);
  line-height: 1.65;
}

.premium-trust ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.premium-trust li {
  position: relative;
  padding-left: 30px;
}

.premium-trust li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--green-dark);
  content: "+";
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 13px;
}

.benefit-band article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(38, 73, 87, 0.08);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 8px;
  font-weight: 900;
}

.benefit-band h2,
.benefit-band p,
.section-heading h2,
.section-heading p {
  margin: 0;
}

.benefit-band h2 {
  font-size: 20px;
}

.benefit-band p,
.section-heading p,
.product-info p,
.guide p,
.faq p,
footer {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  width: min(780px, calc(100% - 36px));
  margin: clamp(64px, 9vw, 106px) auto 30px;
  text-align: center;
}

.section-heading h2,
.guide h2,
.faq h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.product-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 7px solid var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: fadeIn 800ms ease both;
}

.product-card:nth-child(2) {
  animation-delay: 140ms;
}

.red-card {
  border-top-color: var(--red);
}

.product-media {
  display: grid;
  gap: 16px;
  place-items: center;
  min-height: 430px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), transparent 40%),
    linear-gradient(135deg, var(--green-soft), var(--blue-soft));
  border-radius: 8px;
}

.red-card .product-media {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), transparent 40%),
    linear-gradient(135deg, var(--red-soft), #fff4cc);
}

.product-media img {
  max-height: 350px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045) rotate(-1deg);
}

.pill {
  display: inline-flex;
  max-width: 100%;
  margin: 0 0 12px;
  padding: 8px 13px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.red-card .pill {
  color: var(--red-dark);
  background: var(--red-soft);
}

.product-info h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.dose {
  margin: 12px 0 4px;
  color: var(--green);
  font-size: 19px;
  font-weight: 900;
}

.red-card .dose {
  color: var(--red);
}

.price {
  display: inline-flex;
  align-items: baseline;
  margin: 0;
  padding: 8px 13px;
  color: var(--green-dark) !important;
  background: var(--green-soft);
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.red-price {
  color: var(--red-dark) !important;
  background: var(--red-soft);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.product-tags span {
  padding: 8px 10px;
  background: #eef7fb;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.product-details {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}

.product-details div {
  padding: 14px;
  background: rgba(238, 247, 251, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-details strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 14px;
}

.product-details p {
  margin: 0;
  font-size: 14px;
}

.product-details ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-details li {
  position: relative;
  min-height: 0;
  padding: 12px 12px 12px 38px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.product-details li:last-child {
  border-bottom: 0;
}

.product-details li::before {
  position: absolute;
  top: 50%;
  left: 12px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: var(--white);
  content: "+";
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  transform: translateY(-50%);
}

.red-card .product-details div {
  background: rgba(255, 226, 232, 0.58);
}

.red-card .product-details li::before {
  background: var(--red);
}

.product-button {
  width: 100%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 5px 0 var(--green-dark);
}

.red-card .product-button {
  background: var(--red);
  box-shadow: 0 5px 0 var(--red-dark);
}

.testimonials {
  display: grid;
  gap: 30px;
  margin-top: 76px;
  padding: clamp(30px, 5vw, 56px);
  background: #e7f6ff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 56px rgba(38, 73, 87, 0.08);
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.testimonial-intro h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.testimonial-intro p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
}

.testimonial-controls span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 231, 239, 0.95);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(38, 73, 87, 0.08);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 900;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(38, 73, 87, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: fadeIn 750ms ease both;
}

.testimonial-card:nth-child(2) {
  animation-delay: 120ms;
}

.testimonial-card:nth-child(3) {
  animation-delay: 240ms;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(38, 73, 87, 0.13);
}

.stars {
  color: #d5a600;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  flex: 1;
  color: var(--ink);
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.testimonial-author span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 12px;
}

.testimonial-card:nth-child(2) .testimonial-author span {
  background: linear-gradient(135deg, var(--red), var(--yellow));
}

.testimonial-card:nth-child(3) .testimonial-author span {
  background: linear-gradient(135deg, var(--blue), #a24dff);
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.testimonial-more {
  display: flex;
  justify-content: center;
}

.testimonial-more .button {
  min-width: 210px;
  background: rgba(255, 255, 255, 0.78);
}

.guide {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 76px;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 128, 44, 0.96), rgba(22, 127, 219, 0.95)),
    var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: gradientDrift 9s ease-in-out infinite, fadeSlideUp 800ms ease both;
  background-size: 180% 180%;
}

.guide .eyebrow {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.84);
}

.guide p {
  color: rgba(255, 255, 255, 0.82);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.steps div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  transition: transform 220ms ease, background 220ms ease;
}

.steps div:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.19);
}

.steps span {
  display: block;
  margin-bottom: 16px;
  color: var(--yellow);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.steps strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.steps p {
  margin-bottom: 0;
  font-size: 14px;
}

.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
  margin-top: 76px;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 12% 12%, rgba(219, 248, 215, 0.66), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(223, 242, 255, 0.78), transparent 30%),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: 0 18px 56px rgba(38, 73, 87, 0.1);
  backdrop-filter: blur(18px);
  animation: fadeSlideUp 800ms ease both;
}

.faq-intro p:not(.eyebrow) {
  max-width: 480px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(38, 73, 87, 0.07);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.faq-list details:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(38, 73, 87, 0.11);
}

.faq-list summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  content: "+";
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--blue);
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  animation: faqOpen 240ms ease both;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 42px;
  padding: 30px 0 36px;
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
}

.footer-brand p,
.footer-note {
  margin: 5px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 800;
}

.footer-links a {
  color: var(--green-dark);
}

.footer-contact {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 16px 42px rgba(38, 73, 87, 0.08);
  backdrop-filter: blur(16px);
}

.footer-contact a {
  color: var(--green-dark);
  font-weight: 800;
}

.whatsapp-link {
  padding: 10px 14px;
  color: var(--white) !important;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 4px 0 var(--green-dark);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(223, 242, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
}

.social-links a:nth-child(2) {
  background: rgba(255, 226, 232, 0.72);
}

.social-links a:nth-child(3) {
  background: rgba(255, 244, 204, 0.78);
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.whatsapp-proof {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 92px) 0;
}

.proof-hero {
  max-width: 760px;
  margin-bottom: 32px;
}

.proof-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.proof-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.proof-placeholder {
  min-height: 360px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(231, 246, 255, 0.72)),
    var(--white);
  border: 1px dashed rgba(19, 128, 44, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(38, 73, 87, 0.08);
}

.proof-placeholder span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.proof-placeholder strong {
  display: block;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 22px;
}

.proof-placeholder p {
  color: var(--muted);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready.reveal-left {
  transform: translateX(-34px) scale(0.98);
}

.reveal-ready.reveal-right {
  transform: translateX(34px) scale(0.98);
}

.reveal-ready.reveal-soft {
  transform: translateY(18px);
}

.reveal-ready.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.support-card.reveal-ready {
  transform: none;
}

.support-card.reveal-ready:not(.in-view) {
  opacity: 0;
}

.product-details li.reveal-ready {
  transform: translateX(18px);
}

.product-details li.reveal-ready.in-view {
  transform: translateX(0);
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes auraBackground {
  0%,
  100% {
    background-position: 0% 20%;
  }
  50% {
    background-position: 100% 80%;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes softPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.08);
  }
}

@keyframes buttonShine {
  0%,
  55% {
    transform: translateX(-130%);
  }
  80%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes gradientDrift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes productLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes dogBreath {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.012);
  }
}

@keyframes dogLiftCentered {
  0%,
  100% {
    transform: translateX(50%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(50%) translateY(-10px) scale(1.012);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes sealPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes sealWiggle {
  0%,
  100% {
    rotate: 0deg;
  }
  35% {
    rotate: -2deg;
  }
  70% {
    rotate: 2deg;
  }
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .top-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 500px;
  }

  .hero-dog {
    right: 50%;
    bottom: 0;
    width: min(96vw, 720px);
    transform: translateX(50%);
    animation-name: dogLiftCentered;
  }

  .note-green {
    top: 8%;
    left: 66%;
  }

  .hero-seal {
    top: 4%;
    right: 22%;
    left: auto;
  }

  .products,
  .testimonials,
  .support-cards,
  .premium-trust,
  .proof-grid,
  .faq,
  .guide {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-stage {
    min-height: clamp(300px, 68vw, 430px);
  }

  .hero-dog {
    width: min(104vw, 560px);
    max-height: 92%;
  }

  .floating-note {
    min-width: 126px;
    padding: 11px 12px;
  }

  .seal-note {
    width: 122px;
    height: 122px;
    padding: 14px;
  }

  .seal-note strong {
    font-size: 12px;
  }

  .note-green {
    top: 6%;
    left: 58%;
    transform: translateX(-50%);
  }

  .hero-seal {
    top: -2%;
    right: 16%;
    left: auto;
    transform: none;
  }

  .benefit-band,
  .support-band,
  .steps,
  .product-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 340px;
  }

  .product-media img {
    max-height: 280px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}

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

  .reveal-ready {
    opacity: 1 !important;
    transform: none !important;
  }
}
