:root {
    --teal:        #226280;
    --teal-dark:   #1a4d63;
    --teal-light:  #d4e8f0;
    --brown:       #BF8151;
    --brown-light: #F1B383;
    --brown-pale:  #fdf0e4;
    --amber:       #995900;
    --green:       #00A61F;
    --green-pale:  #e0f7e4;
    --ink:         #1F0000;
    --off-white:   #FFFFF1;
    --warm-mid:    #f5e6d0;
    --muted:       #1F0000;
    --r:           10px;
    --r-lg:        18px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 500;
    background: var(--off-white);
    color: var(--ink);
    line-height: 28px;
    font-size: 16px;
  }
  p { font-size: 16px; }

  a { color: inherit; text-decoration: none; }
  a:hover { color: #BF8151; }

  .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  .section    { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
  .center     { text-align: center; }

  /* ── KUKKY HEADER ── */
  :root {
    --topbar-slider-h: 38px;
    --topbar-h: 48px;
    --site-header-h: 76px;
    --trust-ribbon-h: 56px;
    --first-fold-buffer: 10px;
  }

  .woostify-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .topbar-slider-home {
    background-color: #995900;
    overflow: hidden;
  }
  .topbar-slider-home .slider-wrapper-home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 15px;
  }
  .topbar-slider-home .slider-home {
    display: flex;
    justify-content: center;
    gap: 52px;
    flex-wrap: wrap;
  }
  .topbar-slider-home .text-scroll-home {
    color: #fff;
    font: 500 14px/28px Helvetica, Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
  }

  .topbar {
    background-color: #f3f3f3;
    padding: 10px 0;
  }
  .topbar .woostify-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .topbar-center {
    color: #995900;
    font: 500 16px/28px Helvetica, Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
  }

  .site-header {
    background: #fff;
    position: relative;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }
  .site-header-inner .woostify-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
  }
  .site-branding {
    flex: 0 0 auto;
    line-height: 0;
  }
  .custom-logo {
    display: block;
    width: 125px;
    height: auto;
  }
  .site-navigation {
    flex: 1 1 auto;
    text-align: right;
  }
  .primary-navigation {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
  }
  .primary-navigation .menu-item {
    list-style: none;
    display: inline-flex;
    align-items: center;
    position: relative;
  }
  .primary-navigation .menu-item > a {
    display: flex;
    align-items: center;
    margin: 0 20px;
    padding: 20px 0;
    color: #2b2b2b !important;
    font: 400 16px / 50px Helvetica, Arial, sans-serif !important;
    transition: color 0.2s ease;
  }
  .primary-navigation .menu-item > a:hover,
  .primary-navigation .current-menu-item > a {
    color: #226280 !important;
  }
  .primary-navigation > li.action-button > a > span.menu-item-text {
    display: inline-block;
    background-color: #226280;
    color: #FFFFF1 !important;
    border-radius: 5px;
    padding: 0 10px;
    font: inherit;
    line-height: 50px;
  }
  .primary-navigation > li.action-button > a:hover > span.menu-item-text {
    background-color: #226280;
    color: #FFFFF1 !important;
  }
  .site-tools {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
  }
  .tools-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2b2b2b;
  }
  .tools-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }
  .tools-icon:hover {
    color: #226280;
  }
  .kukky-account-menu {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 158px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(125,122,122,.2);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.2s;
  }
  .kukky-account:hover .kukky-account-menu,
  .kukky-account:focus-within .kukky-account-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .kukky-account-menu a {
    display: block;
    padding: 8px 16px;
    color: #2b2b2b;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
  }
  .kukky-mobile-menu-toggle,
  .kukky-mobile-drawer {
    display: none;
  }

  /* ── HEADINGS ── */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-transform: none;
    line-height: 1.5;
    color: #2b2b2b;
  }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 30px; }
  h4 { font-size: 28px; }
  h5 { font-size: 26px; }
  h6 { font-size: 18px; }

  /* ── LABELS ── */
  .label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }
  .label-teal  { background: var(--teal-light); color: var(--teal-dark); }
  .label-brown { background: var(--warm-mid);   color: var(--amber); }
  .label-green { background: var(--green-pale); color: #006b14; }
  .label-white { background: rgba(255,255,255,0.2); color: #fff; }

  /* ── BUTTONS ── */
  .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    border: none; cursor: pointer;
    transition: all 0.2s;
  }
  .btn-teal    { background: var(--teal);  color: #fff; }
  .btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }
  .btn-brown   { background: var(--brown); color: #fff; }
  .btn-brown:hover { background: var(--amber); transform: translateY(-1px); }
  .btn-amber   { background: var(--amber); color: #fff; }
  .btn-amber:hover { background: #7a4600; transform: translateY(-1px); }
  .btn-white   { background: #fff; color: var(--teal); }
  .btn-white:hover { background: var(--off-white); }
  .btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 12px 28px;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); }
  .btn-outline-teal {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 12px 28px;
  }
  .btn-outline-teal:hover { background: var(--teal-light); }

  /* ── HERO ── */
  .hero {
    background:
      linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 66%, #f5f5f5 100%),
      url("../assets/images/gut-health-hero.webp") center top / cover no-repeat;
    height: calc(100svh - var(--topbar-slider-h) - var(--topbar-h) - var(--site-header-h) - var(--trust-ribbon-h) - var(--first-fold-buffer));
    padding: 0 0 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }
  .hero-inner {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
  }
  .hero-content {
    width: min(720px, 100%);
    text-align: center;
  }
  .hero h1 {
    color: #12395b;
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    line-height: 1.16;
    margin-bottom: 14px;
  }
  .hero h1 em { color: inherit; font-style: normal; }
  .hero-sub {
    color: #2b2b2b;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin: 0 auto 18px;
    max-width: 560px;
  }
  .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero .btn {
    min-width: 220px;
    min-height: 42px;
    border-radius: 999px;
    padding: 11px 28px;
    font: 700 12px/20px Helvetica, Arial, sans-serif;
    letter-spacing: 0;
    box-shadow: none;
  }
  .hero .btn-brown {
    background: var(--teal);
    color: #fff;
  }
  .hero .btn-brown:hover {
    background: var(--teal-dark);
    transform: none;
  }
  .hero .btn-outline-white {
    background: #fff;
    color: var(--brown);
    border: 1px solid var(--brown-light);
    padding: 10px 28px;
  }
  .hero .btn-outline-white:hover {
    background: var(--brown-pale);
    color: var(--brown);
  }
  .microcopy {
    font-size: 16px;
    line-height: 18px;
    color: #617184;
    margin-top: 12px;
  }

  /* ── TRUST BAR ── */
  .trust-bar { background: var(--brown); }
  .trust-bar-inner {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 0; min-height: var(--trust-ribbon-h); padding: 7px 0;
  }
  .tbar-item {
    display: flex; align-items: center; gap: 7px;
    padding: 7px 24px;
    font-size: 0.82rem; font-weight: 700;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.25);
  }
  .tbar-item:last-child { border-right: none; }
  .tbar-item::before { content: '✓'; font-weight: 900; }

  /* ── PROBLEM ── */
  .problem { background: var(--off-white); }
  .problem .container {
    text-align: center;
  }
  .problem h2 {
    max-width: 780px;
    margin: 0 auto;
  }
  .section-intro {
    max-width: 600px;
    color: var(--muted);
    margin: 10px auto 0;
  }
  .problem-map {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px) 1fr;
    grid-template-rows: repeat(3, minmax(150px, auto));
    gap: 22px 34px;
    align-items: center;
    margin-top: 46px;
  }
  .dog-center {
    grid-column: 2;
    grid-row: 1 / 4;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .dog-photo-wrap {
    width: min(315px, 100%);
    aspect-ratio: 1;
    padding: 12px;
    border: 2px solid var(--brown-light);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 18px 35px rgba(31,0,0,0.14);
  }
  .dog-photo-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
  }
  .dog-active-note {
    width: min(330px, 100%);
    background: var(--teal-light);
    border: 1.5px solid var(--teal);
    border-radius: var(--r);
    padding: 14px 16px;
    text-align: center;
  }
  .dog-active-label {
    display: block;
    color: var(--amber);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .dog-active-note strong {
    display: block;
    color: var(--teal-dark);
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 5px;
  }
  .dog-active-note p {
    color: var(--teal-dark);
    font-size: 16px;
    line-height: 1.45;
  }
  .pcard {
    appearance: none;
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--warm-mid);
    border-radius: var(--r);
    padding: 20px 16px 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    position: relative;
    cursor: pointer;
    font: inherit;
    color: inherit;
    box-shadow: 0 12px 24px rgba(31,0,0,0.07);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background-color 0.2s;
  }
  .pcard::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 34px;
    height: 2px;
    background: var(--brown-light);
    opacity: 0.75;
    transform: translateY(-50%);
  }
  .pcard::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--brown-light);
    border-right: 2px solid var(--brown-light);
    opacity: 0.75;
  }
  .pcard:nth-child(2),
  .pcard:nth-child(3),
  .pcard:nth-child(4) {
    grid-column: 1;
  }
  .pcard:nth-child(5),
  .pcard:nth-child(6),
  .pcard:nth-child(7) {
    grid-column: 3;
  }
  .pcard:nth-child(2),
  .pcard:nth-child(5) { grid-row: 1; }
  .pcard:nth-child(3),
  .pcard:nth-child(6) { grid-row: 2; }
  .pcard:nth-child(4),
  .pcard:nth-child(7) { grid-row: 3; }
  .pcard:nth-child(2)::before,
  .pcard:nth-child(3)::before,
  .pcard:nth-child(4)::before {
    right: -34px;
  }
  .pcard:nth-child(2)::after,
  .pcard:nth-child(3)::after,
  .pcard:nth-child(4)::after {
    right: -35px;
    transform: translateY(-50%) rotate(45deg);
  }
  .pcard:nth-child(5)::before,
  .pcard:nth-child(6)::before,
  .pcard:nth-child(7)::before {
    left: -34px;
  }
  .pcard:nth-child(5)::after,
  .pcard:nth-child(6)::after,
  .pcard:nth-child(7)::after {
    left: -35px;
    transform: translateY(-50%) rotate(225deg);
  }
  .pcard:hover,
  .pcard:focus-visible,
  .pcard.is-active {
    background: var(--brown-pale);
    border-color: var(--brown-light);
    box-shadow: 0 16px 30px rgba(31,0,0,0.12);
    transform: translateY(-3px);
    outline: none;
  }
  .pcard.is-active::before {
    background: var(--teal);
    opacity: 1;
  }
  .pcard.is-active::after {
    border-color: var(--teal);
    opacity: 1;
  }
  .pcard-num {
    position: absolute;
    top: -13px;
    left: 14px;
    z-index: 1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brown-pale);
    border: 1.5px solid var(--brown-light);
    color: var(--brown);
    font-size: 13px;
    line-height: 25px;
    font-weight: 800;
    text-align: center;
  }
  .pcard-icon {
    grid-column: 1;
    grid-row: 1;
    font-size: 1.25rem; flex-shrink: 0;
    width: 34px; height: 34px;
    background: var(--teal-light);
    border: 1.5px solid rgba(34,98,128,0.24);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 1;
  }
  .pcard > div:last-child {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 1;
  }
  .pcard h3 {
    color: var(--teal-dark);
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 7px;
  }
  .pcard p  {
    font-size: 16px;
    line-height: 1.45;
    color: var(--muted);
  }
  .problem-nudge {
    background: var(--teal-light);
    border: 1.5px solid var(--teal);
    border-radius: var(--r);
    padding: 22px 28px;
    margin-top: 36px;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 14px;
  }
  .problem-nudge p { color: var(--teal-dark); font-size: 16px; max-width: 560px; font-weight: 500; }

  /* ── WHY GUT ── */
  .why-gut {
    background: var(--teal);
    color: var(--off-white);
    overflow: hidden;
  }
  .why-gut .container {
    max-width: 1080px;
    text-align: center;
  }
  .why-gut .label-teal {
    background: rgba(255,255,241,0.16);
    color: var(--brown-light);
  }
  .why-gut h2 {
    color: var(--off-white);
    margin: 0 auto;
    max-width: 760px;
    text-transform: uppercase;
  }
  .why-gut .section-intro {
    color: rgba(255,255,241,0.86);
    max-width: 650px;
  }
  .why-process {
    position: relative;
    margin: 28px auto 0;
    max-width: 920px;
    padding: 18px 44px 8px;
  }
  .why-process::before {
    content: '';
    position: absolute;
    top: 28px;
    bottom: 52px;
    left: 50%;
    width: 10px;
    border-radius: 999px;
    background: var(--ink);
    opacity: 0.72;
    transform: translateX(-50%);
  }
  .why-step {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px minmax(0, 1fr);
    align-items: center;
    min-height: 150px;
    cursor: default;
  }
  .why-step + .why-step { margin-top: 8px; }
  .why-copy {
    position: relative;
    z-index: 1;
    max-width: 310px;
    text-align: left;
  }
  .why-step:not(.reverse) .why-copy {
    grid-column: 3;
    padding-left: 22px;
  }
  .why-step.reverse .why-copy {
    grid-column: 1;
    justify-self: end;
    padding-right: 22px;
    text-align: right;
  }
  .why-copy h3 {
    color: var(--off-white);
    font-size: 19px;
    line-height: 1.22;
    margin-bottom: 8px;
  }
  .why-copy p {
    color: rgba(255,255,241,0.86);
    font-size: 16px;
    line-height: 1.45;
  }
  .why-num {
    grid-column: 2;
    justify-self: center;
    position: relative;
    z-index: 2;
    width: 82px;
    height: 72px;
    display: grid;
    place-items: center;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    background: #3A90B8;
    box-shadow: 0 0 0 6px rgba(255,255,241,0.2);
    color: var(--off-white);
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    transition: background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  }
  .why-num.amber { background: var(--amber); }
  .why-num.peach { background: var(--brown); }
  .why-num.cream { background: var(--off-white); color: var(--teal); }
  .why-step:hover .why-num {
    box-shadow: 0 0 0 8px rgba(255,255,241,0.28);
    transform: scale(1.08);
  }
  .why-step:hover .why-num.amber { background: var(--brown); }
  .why-step:hover .why-num.peach { background: #D49A72; color: var(--ink); }
  .why-step:hover .why-num.cream { background: var(--ink); color: var(--off-white); }
  .why-illustration {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 128px;
    height: 128px;
    border: 3px solid rgba(255,255,241,0.8);
    border-radius: 50%;
    background: rgba(255,255,241,0.1);
    color: var(--off-white);
    font-size: 48px;
  }
  .why-step:not(.reverse) .why-illustration {
    grid-column: 1;
    justify-self: end;
    margin-right: 34px;
  }
  .why-step.reverse .why-illustration {
    grid-column: 3;
    justify-self: start;
    margin-left: 34px;
  }

  /* ── HOW KUKKY (ingredients by role) ── */
  .how-kukky { background: var(--brown); }
  .how-kukky .container { text-align: center; }
  .how-kukky h2 {
    color: #fff;
    max-width: 100%;
    margin: 0 auto;
    white-space: nowrap;
  }
  .how-kukky .section-intro {
    color: rgba(255,255,255,0.78);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .ingredient-orbit {
    position: relative;
    min-height: 820px;
    margin-top: 28px;
  }
  .orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: min(410px, 44vw);
    transform: translate(-50%, -50%);
  }
  .orbit-center img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 24px 32px rgba(31,0,0,0.22));
  }
  .orbit-item {
    position: absolute;
    z-index: 3;
    width: 220px;
    text-align: center;
    color: #fff;
    padding: 12px 10px;
  }
  .orbit-item::after {
    display: none;
  }
  .orbit-item span {
    width: 76px;
    height: 76px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,0.74);
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 32px;
    box-shadow: 0 12px 24px rgba(31,0,0,0.16);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .orbit-item h3 {
    color: #fff;
    font-size: 18px;
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 6px;
  }
  .orbit-item p {
    color: rgba(255,255,255,0.76);
    font-size: 16px;
    line-height: 1.35;
  }
  .orbit-item:hover span {
    background: rgba(255,255,255,0.28);
    border-color: #fff;
    box-shadow: 0 16px 30px rgba(0,0,0,0.28);
    transform: scale(1.08);
  }
  .orbit-pumpkin { left: 10%; top: 2%; }
  .orbit-lauki { left: 50%; top: -18px; transform: translateX(-50%); }
  .orbit-carrot { right: 10%; top: 2%; }
  .orbit-oil { left: 0; top: 31%; }
  .orbit-flax { right: 0; top: 31%; }
  .orbit-chicken { right: 0; top: 55%; }
  .orbit-broth { left: 6%; bottom: 3%; }
  .orbit-turmeric { left: 34%; bottom: 0; }
  .orbit-grains { right: 14%; bottom: 0; }
  .orbit-pumpkin::after {
    right: -50px;
    top: 222px;
    transform: rotate(30deg);
  }
  .orbit-lauki::after {
    left: 29%;
    top: 253px;
    transform: rotate(64deg);
  }
  .orbit-carrot::after {
    left: -50px;
    top: 222px;
    transform: rotate(-40deg);
  }
  .orbit-oil::after {
    right: -64px;
    top: 86px;
  }
  .orbit-flax::after {
    left: -64px;
    top: 89px;
  }
  .orbit-broth::after {
    right: -48px;
    top: 0;
    transform: rotate(-30deg);
  }
  .orbit-turmeric::after {
    right: 45px;
    top: -35px;
    transform: rotate(-74deg);
  }
  .orbit-grains::after {
    left: -44px;
    top: -8px;
    transform: rotate(26deg);
  }
  .orbit-chicken::after {
    left: -50px;
    top: 48px;
    width: 86px;
    transform: rotate(22deg);
  }

  /* ── WET FOOD ── */
  .wet-food { background: var(--brown-pale); }
  .wet-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  .wet-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    gap: 36px;
    align-items: stretch;
    margin-top: 36px;
  }
  .wet-copy {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .wet-food p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
  .wet-food-visual {
    height: 340px;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    border-radius: var(--r-lg);
    /* box-shadow: 0 20px 42px rgba(59, 31, 17, 0.14); */
    /* background: #fff; */
  }
  .wet-food-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  .stat-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px;
  }
  .stat-card {
    background: #fff;
    border: 1.5px solid var(--warm-mid);
    border-radius: var(--r);
    padding: 18px 14px; text-align: center;
  }
  .stat-num   { font-size: 1.9rem; font-weight: 800; color: var(--teal); }
  .stat-label { font-size: 0.76rem; color: var(--muted); margin-top: 3px; font-weight: 600; }

  /* ── COMPARISON ── */
  .comparison { background: var(--off-white); }
  .compare-wrap {
    margin-top: 40px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1.5px solid var(--warm-mid);
  }
  .compare-head {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: var(--teal); padding: 14px 24px; gap: 10px;
  }
  .compare-head span { color: #fff; font-weight: 700; font-size: 0.88rem; }
  .compare-head span:first-child { color: rgba(255,255,255,0.6); font-weight: 500; }
  .compare-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 13px 24px; gap: 10px;
    background: #fff;
    border-bottom: 1px solid var(--warm-mid);
    align-items: center;
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-row:nth-child(even) { background: var(--off-white); }
  .compare-row span { font-size: 0.86rem; }
  .compare-row span:first-child { color: var(--muted); font-weight: 600; }
  .bad  { color: #9b2a2a; font-size: 0.84rem; }
  .good { color: #006b14; font-weight: 700; font-size: 0.84rem; }

  /* ── PRODUCTS ── */
  .products { background: var(--brown-pale); }
  .prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px; margin-top: 40px;
  }
  .prod-card {
    background: #fff;
    border: 1.5px solid var(--warm-mid);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .prod-card:hover { border-color: var(--teal); transform: translateY(-3px); }
  .prod-card.featured { border-color: var(--teal); border-width: 2px; }
  .prod-img {
    display: flex; align-items: center; justify-content: center;
    font-size: 2.8rem; position: relative;
  }
  .prod-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  .prod-card.featured .prod-img { background: #fff; }
  .feat-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--teal); color: #fff;
    font-size: 0.7rem; font-weight: 800;
    padding: 4px 10px; border-radius: 50px;
    letter-spacing: 0.04em;
  }
  .prod-card.featured .feat-badge { background: var(--brown); }
  .prod-body { padding: 18px 16px; }
  .prod-name { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
  .prod-desc { font-size: 16px; color: var(--muted); margin-bottom: 12px; }
  .prod-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
  .prod-tag {
    background: var(--teal-light); color: var(--teal-dark);
    font-size: 0.72rem; font-weight: 700;
    padding: 3px 10px; border-radius: 50px;
  }
  .prod-cta {
    display: block;
    background: var(--teal); color: #fff;
    text-align: center; padding: 11px;
    border-radius: 8px; font-size: 0.88rem; font-weight: 700;
    transition: background 0.2s;
  }
  .prod-cta:hover { background: var(--teal-dark); }

  /* ── TRUST BUILDER ── */
  .trust-build { background: var(--teal); }
  .trust-build h2    { color: #fff; }
  .trust-build .section-intro { color: rgba(255,255,255,0.72); }
  .trust-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
  }
  .tcard {
    min-height: 220px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--r);
    padding: 26px 20px;
    text-align: center;
  }
  .tcard-icon { font-size: 2rem; margin-bottom: 12px; }
  .tcard h3 { color: #fff; font-size: 0.88rem; margin-bottom: 6px; }
  .tcard p  { color: rgba(255,255,255,0.72); font-size: 16px; }

  /* ── SOCIAL PROOF ── */
  .social-proof { background: var(--off-white); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px; margin-top: 36px;
  }
  .rev-card {
    background: #fff;
    border: 1.5px solid var(--warm-mid);
    border-radius: var(--r);
    padding: 22px 20px;
  }
  .rev-tag {
    display: inline-block;
    background: var(--green-pale); color: #006b14;
    font-size: 0.7rem; font-weight: 800;
    padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
    letter-spacing: 0.04em; text-transform: uppercase;
  }
  .stars { color: var(--brown); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 10px; }
  .rev-text {
    font-size: 16px; line-height: 1.6;
    color: var(--ink); font-style: italic; margin-bottom: 14px;
  }
  .reviewer { display: flex; align-items: center; gap: 10px; }
  .rev-avatar {
    width: 36px; height: 36px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.75rem; color: var(--teal-dark);
  }
  .rev-name { font-size: 0.83rem; font-weight: 700; }
  .rev-sub  { font-size: 0.76rem; color: var(--muted); }

  /* ── TRANSITION ── */
  .transition-sec { background: var(--brown-pale); }
  .trans-box {
    padding: 28px 0;
    max-width: 100%;
    margin: 0 auto;
  }
  .trans-box h2 { font-size: 1.6rem; margin-bottom: 12px; }
  .transition-chart {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin-top: 34px;
  }
  .transition-card {
    padding: 0;
    text-align: center;
  }
  .pie {
    --fill: 25%;
    position: relative;
    overflow: hidden;
    width: min(170px, 100%);
    aspect-ratio: 1;
    height: auto;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--brown-light);
    box-shadow: 0 14px 28px rgba(59, 31, 17, 0.14);
  }
  .pie::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/kukky_food_bowl.webp') 50% 24% / 330% auto no-repeat;
    -webkit-mask: conic-gradient(#000 0 var(--fill), transparent 0 100%);
    mask: conic-gradient(#000 0 var(--fill), transparent 0 100%);
  }
  .pie-25 { --fill: 25%; }
  .pie-50 { --fill: 50%; }
  .pie-75 { --fill: 75%; }
  .pie-100 { --fill: 100%; }
  .pie span {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.22);
  }
  .transition-card h3 {
    color: var(--teal);
    font-size: 17px;
    margin-bottom: 6px;
  }
  .transition-card p {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .transition-card small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
  }
  .transition-legend {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
  }
  .transition-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .transition-legend i {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
  }
  .legend-kukky { background: var(--teal); }
  .legend-current { background: var(--brown-light); }
  .ts-note {
    max-width: 720px;
    margin: 26px auto 0;
    font-size: 16px;
    color: var(--muted);
    text-align: center;
  }

  /* ── FAQ ── */
  .faq-sec { background: var(--off-white); }
  .faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 10px; }
  .faq-item {
    background: #fff;
    border: 1.5px solid var(--warm-mid);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-item.open { border-color: var(--teal); }
  .faq-q {
    padding: 17px 20px; font-weight: 700; font-size: 0.93rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    user-select: none; color: var(--ink);
  }
  .faq-toggle {
    width: 26px; height: 26px;
    background: var(--teal-light); color: var(--teal);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 700; flex-shrink: 0; line-height: 1;
    transition: background 0.2s;
  }
  .faq-item.open .faq-toggle { background: var(--teal); color: #fff; }
  .faq-a {
    display: none; padding: 0 20px 16px;
    font-size: 16px; color: var(--muted); line-height: 1.75;
  }
  .faq-item.open .faq-a { display: block; }

  /* ── OFFER ── */
  .offer-sec { background: var(--teal); padding: 80px 0; }
  .offer-box { text-align: center; max-width: 700px; margin: 0 auto; }
  .offer-box h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
  .offer-box p  { color: rgba(255,255,255,0.72); font-size: 16px; margin-bottom: 32px; }
  .offer-perks {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 8px; margin-bottom: 36px;
  }
  .offer-perk {
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff; font-size: 0.82rem; font-weight: 600;
    padding: 6px 15px; border-radius: 50px;
  }
  .offer-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .offer-micro { color: rgba(255,255,255,0.38); font-size: 16px; margin-top: 14px; }

  /* ── KUKKY FOOTER ── */
  .site-footer {
    background: #f3f3f3;
    color: #555555;
    padding: 58px 0 22px;
    font-family: Helvetica, Arial, sans-serif;
  }
  .site-footer-widget {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
    gap: 42px;
    align-items: start;
  }
  .footer-widget {
    color: #555555;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
  }
  .footer-logo {
    width: 117px;
    height: auto;
    display: block;
    margin: 0 0 18px;
  }
  .footer-widget p {
    color: #555555;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
  }
  .footer-widget strong {
    color: #2b2b2b;
    font-weight: 700;
  }
  .footer-widget .widget-title {
    color: #2b2b2b;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 18px;
  }
  .footer-widget .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-widget .menu li {
    list-style: none;
  }
  .footer-widget a {
    color: #555555;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    transition: color 0.2s ease;
  }
  .footer-widget a:hover {
    color: #226280;
  }
  .footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
  }
  .footer-socials img {
    width: 30px;
    height: 30px;
    display: block;
  }
  .payment-options {
    width: 300px;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .site-info {
    border-top: 1px solid #eee;
    margin-top: 42px;
    padding-top: 20px;
    text-align: center;
    color: #555555;
    font-size: 14px;
    line-height: 24px;
  }

  /* ── REVEAL ANIMATION ── */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    :root {
      --topbar-slider-h: 58px;
      --topbar-h: 30px;
      --site-header-h: 70px;
      --trust-ribbon-h: 92px;
      --first-fold-buffer: 8px;
    }

    .topbar-slider-home .slider-home { gap: 18px; }
    .topbar-slider-home .text-scroll-home,
    .topbar-center { font-size: 12px; line-height: 22px; }
    .topbar { padding: 6px 0; }
    .site-header-inner .woostify-container {
      min-height: 70px;
      justify-content: center;
      gap: 12px;
    }
    .custom-logo { width: 112px; }
    .site-navigation { display: none; }
    .site-tools {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      gap: 10px;
    }
    .kukky-account { display: none; }
    .kukky-mobile-menu-toggle {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      display: inline-flex;
      width: 36px;
      height: 36px;
      border: 0;
      background: transparent;
      padding: 8px;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
    }
    .kukky-mobile-menu-toggle span {
      display: block;
      height: 2px;
      width: 20px;
      background: #2b2b2b;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .kukky-mobile-menu-toggle.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .kukky-mobile-menu-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }
    .kukky-mobile-menu-toggle.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .kukky-mobile-drawer {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid #eee;
      box-shadow: 0 14px 28px rgba(0,0,0,0.1);
      padding: 12px 24px 18px;
    }
    .kukky-mobile-drawer.is-open {
      display: block;
    }
    .kukky-mobile-drawer nav {
      display: flex;
      flex-direction: column;
    }
    .kukky-mobile-drawer a {
      color: #2b2b2b;
      font-family: Helvetica, Arial, sans-serif;
      font-size: 16px;
      padding: 11px 0;
      border-bottom: 1px solid #f1f1f1;
    }
    .kukky-mobile-drawer a:hover,
    .kukky-mobile-drawer .mobile-action {
      color: #226280;
    }
    .site-footer-widget {
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .site-footer .widget:first-child {
      grid-column: 1 / -1;
    }
    .hero {
      height: calc(100svh - var(--topbar-slider-h) - var(--topbar-h) - var(--site-header-h) - var(--trust-ribbon-h) - var(--first-fold-buffer));
      padding: 0 0 22px;
    }
    .hero .btn {
      min-width: 190px;
    }
    .problem-map {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: auto;
      gap: 16px;
    }
    .dog-center {
      grid-column: 1 / -1;
      grid-row: auto;
      margin-bottom: 8px;
    }
    .pcard {
      grid-column: auto !important;
      grid-row: auto !important;
      min-height: 0;
    }
    .pcard::before,
    .pcard::after { display: none; }
    .why-process {
      padding: 16px 28px 34px;
    }
    .why-step {
      grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
    }
    .why-illustration {
      width: 112px;
      height: 112px;
      font-size: 42px;
    }
    .why-step:not(.reverse) .why-illustration { margin-right: 20px; }
    .why-step.reverse .why-illustration { margin-left: 20px; }
    .how-kukky h2 { white-space: normal; }
    .ingredient-orbit {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      min-height: 0;
    }
    .orbit-center {
      position: relative;
      grid-column: 1 / -1;
      left: auto;
      top: auto;
      width: min(430px, 82%);
      margin: 0 auto 4px;
      transform: none;
    }
    .orbit-item,
    .orbit-lauki,
    .orbit-turmeric,
    .orbit-chicken {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      bottom: auto;
      width: auto;
      transform: none;
    }
    .orbit-item::after {
      display: none;
    }
    .wet-header {
      text-align: left;
      margin: 0;
    }
    .wet-grid {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 26px;
    }
    .wet-copy {
      max-width: none;
    }
    .wet-food-visual {
      width: 100%;
      height: auto;
      aspect-ratio: 1536 / 1075;
      border-radius: var(--r);
    }
    .stat-row {
      grid-template-columns: repeat(2, 1fr);
    }
    .compare-head,
    .compare-row { grid-template-columns: 1fr 1fr 1fr; font-size: 0.76rem; padding: 10px 12px; }
    .trans-box { padding: 28px 18px; }
    .transition-chart {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .offer-sec { padding: 60px 0; }
    .tbar-item { padding: 6px 12px; font-size: 0.76rem; }
    .trust-cards {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .trust-bar-inner { min-height: var(--trust-ribbon-h); }
  }

  @media (max-width: 480px) {
    :root {
      --topbar-slider-h: 56px;
      --topbar-h: 30px;
      --site-header-h: 58px;
      --trust-ribbon-h: 104px;
      --first-fold-buffer: 6px;
    }

    .topbar-slider-home .slider-home { gap: 10px; }
    .topbar-slider-home .text-scroll-home,
    .topbar-center { font-size: 11px; line-height: 18px; }
    .site-header-inner .woostify-container { min-height: 58px; }
    .custom-logo { width: 60px; }
    .hero {
      height: calc(100svh - var(--topbar-slider-h) - var(--topbar-h) - var(--site-header-h) - var(--trust-ribbon-h) - var(--first-fold-buffer));
      padding: 0 0 20px;
    }
    .hero-btns {
      flex-direction: column;
      align-items: center;
    }
    .hero .btn {
      width: min(280px, 100%);
    }
    .problem-map {
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 34px;
    }
    .dog-photo-wrap {
      width: min(255px, 100%);
    }
    .pcard {
      padding: 16px 14px;
    }
    .pcard-num {
      width: 32px;
      height: 32px;
      font-size: 14px;
      line-height: 32px;
    }
    .pcard-icon {
      width: 32px;
      height: 32px;
      font-size: 1.15rem;
    }
    .why-gut h2 {
      font-size: 30px;
    }
    .why-process {
      padding: 16px 15px 28px;
    }
    .why-process::before {
      left: 33px;
      width: 7px;
    }
    .why-step,
    .why-step.reverse {
      grid-template-columns: 60px minmax(0, 1fr);
      gap: 12px;
      min-height: auto;
      padding: 12px 0;
    }
    .why-num {
      grid-column: 1;
      grid-row: 1;
      width: 52px;
      height: 46px;
      font-size: 18px;
    }
    .why-illustration,
    .why-step.reverse .why-illustration,
    .why-step:not(.reverse) .why-illustration {
      grid-column: 1;
      grid-row: 2;
      width: 52px;
      height: 52px;
      margin: 0;
      justify-self: center;
      font-size: 28px;
    }
    .why-copy,
    .why-step.reverse .why-copy,
    .why-step:not(.reverse) .why-copy {
      grid-column: 2;
      grid-row: 1 / span 2;
      justify-self: stretch;
      max-width: none;
      padding: 0;
      text-align: left;
    }
    .why-copy h3 {
      font-size: 16px;
    }
    .why-copy p {
      font-size: 16px;
      line-height: 1.5;
    }
    .ingredient-orbit {
      grid-template-columns: 1fr 1fr;
      gap: 16px 12px;
    }
    .orbit-center {
      width: min(330px, 100%);
    }
    .orbit-item span {
      width: 62px;
      height: 62px;
      font-size: 26px;
    }
    .orbit-item h3 {
      font-size: 16px;
    }
    .orbit-item p {
      font-size: 16px;
    }
    .wet-grid {
      gap: 20px;
    }
    .stat-row {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .stat-card {
      padding: 15px 12px;
    }
    .transition-chart {
      grid-template-columns: 1fr;
    }
    .transition-legend {
      flex-wrap: wrap;
    }
    .trust-cards {
      grid-template-columns: 1fr;
    }
    .tcard {
      min-height: 220px;
    }
    .site-footer { padding-top: 42px; }
    .site-footer-widget { grid-template-columns: 1fr; }
    .trust-bar-inner { min-height: var(--trust-ribbon-h); }
  }
