/* =========================================================
   KUKKY — Travel-Friendly Dog Food Landing Page
   Design System
   ========================================================= */

:root {
  /* Palette — Kukky Brand Guidelines */
  --amber:        #226280;   /* primary theme blue */
  --amber-deep:   #174156;
  --caramel:      #2F7898;
  --peach:        #EAF4F8;
  --peach-soft:   #F3FAFC;
  --amber-soft:   #B8D7E4;
  --amber-50:     #EAF4F8;
  --navy:         #226280;   /* brand teal/blue accent */
  --navy-deep:    #174156;
  --cream:        #FFFFFF;
  --cream-deep:   #F3FAFC;
  --ink:          #1F0000;   /* brand near-black */
  --ink-soft:     #4A2B1C;
  --muted:        #8A6E5C;
  --line:         #CFE3EC;
  --line-soft:    #E0EEF4;
  --paper:        #FFFFFF;
  --leaf:         #00A61F;   /* brand green */
  --rose:         #B45252;

  /* Type — matches kukkypetworld.com navigation/headings */
  --font-display: "Fira Sans", Helvetica, Arial, sans-serif;
  --font-body:    Helvetica, Arial, sans-serif;

  /* Radii / shadows */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(60, 38, 10, 0.06);
  --shadow-md: 0 8px 24px -10px rgba(60, 38, 10, 0.12);
  --shadow-lg: 0 24px 56px -20px rgba(60, 38, 10, 0.18);

  /* Spacing scale */
  --space-section: clamp(22px, 2.6vw, 40px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--amber-deep);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 160ms ease;
}
a:hover { color: var(--ink); }

p { margin: 0 0 1em; text-wrap: pretty; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: #2b2b2b;
  letter-spacing: 0;
  line-height: 1.5;
  text-wrap: balance;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(34px, 4.2vw, 54px); letter-spacing: -0.015em; }
h2 {
  font-size: 25px;
  max-width: none;
  white-space: nowrap;
}
h3 { font-size: clamp(20px, 1.8vw, 24px); }
h4 { font-size: 18px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-deep);
  background: var(--amber-50);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--amber-soft);
}

.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-soft); }
.section-sub { color: var(--ink-soft); font-size: 18px; margin: -4px 0 32px; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
.wrap-narrow { max-width: 880px; }

section {
  padding-block: var(--space-section);
}
main {
  display: grid;
  row-gap: clamp(4px, 0.8vw, 10px);
}
.section-head { margin-bottom: 30px; text-align: center; }
.section-head .eyebrow { margin-bottom: 10px; }
.section-head h2 { margin-bottom: 8px; max-width: none; }
.eyebrow + h2 { margin-top: 10px; }
.section-head .section-sub { text-align: center; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 6px;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  box-shadow: none;
}
.btn-primary:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 248, 240, 0.55);
}
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn-lg { padding: 14px 26px; font-size: 16px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row.center { justify-content: center; }

/* =========================================================
   1. ANNOUNCEMENT BAR (matches kukkypetworld.com)
   ========================================================= */
.announce {
  background: var(--amber);
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  text-align: center;
  padding: 5px 16px;
  font-weight: 500;
  line-height: 28px;
  overflow: hidden;
}
.announce-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Contact strip directly above the header */
.contact-strip {
  background: #f3f3f3;
  color: var(--amber);
  font-size: 16px;
  text-align: center;
  padding: 10px 16px;
  font-weight: 500;
  border-bottom: 0;
  line-height: 28px;
}
.contact-strip a { color: var(--amber); border: none; font-weight: 500; }
.contact-strip .dot { margin: 0 10px; color: var(--amber); }

/* =========================================================
   2. HEADER / NAV (matches kukkypetworld.com)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 8px 22px rgba(34, 98, 128, 0.08);
}
.nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-block: 0;
  min-height: 90px;
}
.logo {
  display: block;
  border: none;
}
.logo img { width: 125px; height: auto; }

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.nav-links a {
  display: flex;
  align-items: center;
  min-height: 90px;
  margin: 0 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  color: #2b2b2b;
  border: none;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
}
.nav-links a::after { display: none; }
.nav-links a:hover { color: var(--navy); }
.nav-links .nav-button {
  min-height: auto;
  margin-left: 14px;
  padding: 13px 18px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
  line-height: 1;
}
.nav-links .nav-button::after { display: none; }
.nav-links .nav-button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.nav-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.icon-btn {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.icon-btn:hover { background: transparent; color: var(--navy); }
.icon-btn .count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 999px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}
.account-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 0;
  color: #2b2b2b;
  border: none;
}
.account-link svg { width: 17px; height: 17px; }
.account-link:hover { background: transparent; color: var(--navy); }

@media (max-width: 1120px) {
  .nav { gap: 14px; }
  .nav-links a { margin: 0 8px; font-size: 15px; }
  .nav-links .nav-button { padding: 12px 14px; }
}
@media (max-width: 980px) {
  .nav { grid-template-columns: auto auto; justify-content: space-between; }
  .nav nav { display: none; }
  .logo img { width: 112px; }
}
@media (max-width: 520px) {
  .announce { font-size: 14px; }
  .contact-strip { font-size: 13px; }
  .nav { min-height: 70px; }
  .logo img { width: 60px; }
}

/* =========================================================
   3. HERO
   ========================================================= */
.hero {
  background:
    linear-gradient(90deg, rgba(34, 98, 128, 0.74) 0%, rgba(34, 98, 128, 0.48) 42%, rgba(34, 98, 128, 0.12) 100%),
    url("../assets/hero-dog-roadtrip.webp") center / cover no-repeat;
  position: relative;
  min-height: calc(100vh - 172px);
  padding-top: clamp(24px, 3vw, 38px);
  padding-bottom: clamp(18px, 2.5vw, 30px);
  display: flex;
  align-items: stretch;
}
.hero > .wrap {
  display: flex;
  flex-direction: column;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr);
  gap: 0;
  align-items: center;
  flex: 1;
  min-height: 0;
}
.hero-copy h1 {
  margin-top: 10px;
  max-width: 500px;
  font-size: clamp(32px, 3.7vw, 48px);
  line-height: 1.15;
  color: #ffffff;
}
.hero-copy .lead {
  margin-top: 12px;
  max-width: 500px;
  color: #ffffff;
}
.hero-copy .btn-row { margin-top: 20px; }
.hero-copy .btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--ink);
}

.hero-media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media .float-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--paper);
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.float-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }

@media (max-width: 880px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(34, 98, 128, 0.68) 0%, rgba(34, 98, 128, 0.42) 100%),
      url("../assets/hero-dog-roadtrip.webp") center / cover no-repeat;
    min-height: auto;
  }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  margin-top: clamp(18px, 2.5vw, 28px);
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.trust-item .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--amber-50);
  color: var(--amber-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr; }
}

/* =========================================================
   4. PROBLEM / EMPATHY
   ========================================================= */
.empathy {
  background: var(--cream-deep);
  padding-top: clamp(20px, 3vw, 36px);
}
.empathy-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.empathy-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--amber);
}
.empathy-card h2 {
  max-width: none;
  font-size: 25px;
  line-height: 1.22;
  margin-top: 18px;
}
.empathy-card .until {
  display: inline;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  color: var(--navy);
  font-weight: 800;
}

/* =========================================================
   5. SOLUTION
   ========================================================= */
.solution-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.solution-media {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.solution-media img { width: 100%; height: 100%; object-fit: cover; }

.solution-copy h2 { max-width: none; }
.solution-copy .punch {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.45vw, 21px);
  color: var(--ink);
  font-weight: 600;
  margin: 24px 0 8px;
  white-space: nowrap;
}

@media (max-width: 880px) {
  .solution-grid { grid-template-columns: 1fr; }
}

/* ---------- Step strip ---------- */
.step-strip {
  margin-top: clamp(56px, 6vw, 80px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(9, auto);
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  min-width: 0;
}
.step .ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--amber-50);
  color: var(--amber-deep);
  display: grid; place-items: center;
}
.step span { font-size: 13px; font-weight: 600; line-height: 1.3; max-width: 110px; }
.step-arrow { color: var(--amber); font-size: 22px; line-height: 1; }

@media (max-width: 980px) {
  .step-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .step-arrow { display: none; }
}
@media (max-width: 480px) {
  .step-strip { grid-template-columns: 1fr; }
}

/* =========================================================
   6. BENEFITS
   ========================================================= */
.benefits { background: var(--cream); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--amber-soft);
  box-shadow: var(--shadow-md);
}
.benefit .ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--amber-50);
  color: var(--amber-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.benefit h3 { font-size: 19px; margin-bottom: 6px; }
.benefit p { color: var(--ink-soft); font-size: 15px; margin: 0; }

@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefits-cta { margin-top: 56px; text-align: center; }

/* =========================================================
   7. USE CASES
   ========================================================= */
.usecases { background: var(--cream-deep); }
.usecase-carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px 28px 20px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: linear-gradient(180deg, rgba(34, 98, 128, 0.08) 0%, rgba(241, 179, 131, 0.22) 100%);
  overflow: visible;
}
.usecase-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  grid-template-columns: none;
  gap: 24px;
  width: min(1200px, calc(100vw - 48px));
  margin-inline: auto;
  padding-top: 88px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.usecase-grid::-webkit-scrollbar {
  display: none;
}
.usecase {
  background: var(--paper);
  border: 0;
  border-radius: 0;
  padding: 86px 22px 22px;
  position: relative;
  overflow: visible;
  scroll-snap-align: start;
  box-shadow: 0 12px 28px -22px rgba(34, 98, 128, 0.32);
  text-align: center;
}
.usecase-img {
  width: 148px;
  height: 148px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
  background: rgba(241, 179, 131, 0.22);
  border: 5px solid #ffffff;
  box-shadow: 0 12px 28px -18px rgba(34, 98, 128, 0.5);
  position: absolute;
  top: -74px;
  left: 50%;
  transform: translateX(-50%);
}
.usecase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.usecase h3 { font-size: 20px; margin-bottom: 8px; }
.usecase p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.usecase-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: min(1200px, calc(100vw - 48px));
  margin-inline: auto;
}
.carousel-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 0;
  background: #d8d8d8;
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.carousel-btn:hover {
  background: #226280;
  color: #ffffff;
  transform: translateY(-1px);
}
.carousel-prev svg {
  transform: rotate(180deg);
}
.carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: #bfbfbf;
  padding: 0;
  cursor: pointer;
}
.carousel-dot.active {
  width: 8px;
  height: 8px;
  background: #226280;
}

@media (max-width: 880px) {
  .usecase-grid { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 620px) {
  .usecase-carousel {
    padding: 16px 16px 18px;
  }
  .usecase-grid {
    width: calc(100vw - 32px);
    grid-auto-columns: 86%;
  }
  .usecase-carousel-nav {
    width: calc(100vw - 32px);
  }
}

/* =========================================================
   8. PRODUCTS
   ========================================================= */
.products { background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product.featured { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber) inset; }
.product .badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--amber);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 1;
}
.product .ph-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: 18px;
}
.product .ph-img img { width: 100%; height: 100%; object-fit: cover; }
.product .ph-img img[src*="product-"] {
  object-fit: contain;
  background: #ffffff;
}
.product h3 { font-size: 19px; margin-bottom: 4px; }
.product .desc {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 12px;
  min-height: 36px;
}
.product .rating {
  font-size: 13px;
  color: var(--amber-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.product .price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 16px;
}
.product .price small { font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: 12px; display: block; margin-top: 2px; }
.product .btn {
  margin-top: auto;
  padding: 12px 18px;
  font-size: 14px;
  width: 100%;
}

@media (max-width: 880px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

.meal-calc-note {
  margin-top: 44px;
  padding: 24px 28px;
  background: var(--amber-50);
  border: 1px solid var(--amber-soft);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--ink);
}
.meal-calc-note .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--amber-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* =========================================================
   9. COMPARISON TABLE
   ========================================================= */
.comparison { background: var(--cream-deep); }
.cmp-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.cmp thead th {
  background: var(--cream-deep);
  text-align: left;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.cmp thead th.kukky-col {
  background: var(--amber);
  color: var(--cream);
}
.cmp tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp tbody td:first-child {
  font-weight: 600;
  width: 38%;
  color: var(--ink);
}
.cmp tbody td:nth-child(3) { background: rgba(186, 117, 23, 0.04); }
.cmp .x { color: var(--rose); font-weight: 700; margin-right: 6px; }
.cmp .v { color: var(--leaf); font-weight: 700; margin-right: 6px; }

@media (max-width: 720px) {
  .cmp thead { display: none; }
  .cmp, .cmp tbody, .cmp tr, .cmp td { display: block; width: 100%; }
  .cmp tr { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .cmp tbody td { padding: 6px 24px; border: none; width: 100%; }
  .cmp tbody td:first-child { background: transparent; padding-top: 16px; }
  .cmp tbody td:nth-child(2)::before { content: "Homemade: "; color: var(--muted); font-weight: 600; }
  .cmp tbody td:nth-child(3)::before { content: "Kukky: "; color: var(--amber-deep); font-weight: 600; }
}

/* =========================================================
   10. TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--cream); }
.aggregate {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-sm);
}
.aggregate .big-rating {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--amber-deep);
  font-weight: 700;
  line-height: 1;
}
.aggregate .stars { color: var(--amber); letter-spacing: 2px; }
.aggregate .meta { font-size: 13px; color: var(--ink-soft); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review .stars { color: var(--amber); letter-spacing: 3px; font-size: 16px; margin-bottom: 14px; }
.review blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
}
.review .author { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber-50);
  color: var(--amber-deep);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.review .who { font-size: 13px; line-height: 1.35; }
.review .who strong { display: block; color: var(--ink); }
.review .who span { color: var(--muted); }

@media (max-width: 980px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .review-grid { grid-template-columns: 1fr; } }

.ugc-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ugc {
  aspect-ratio: 9 / 16;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 200ms ease;
}
.ugc:hover { transform: scale(1.02); }
.ugc img { width: 100%; height: 100%; object-fit: cover; }
.ugc iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 720px) { .ugc-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   11. HOW TO USE
   ========================================================= */
.howto { background: var(--cream-deep); }
.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.howto-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
}
.howto-step .num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.howto-step h3 { font-size: 20px; margin-bottom: 8px; }
.howto-step p { color: var(--ink-soft); margin: 0; }
@media (max-width: 720px) { .howto-grid { grid-template-columns: 1fr; } }

.pro-tip {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pro-tip .ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,248,240,0.1);
  color: var(--amber-soft);
  display: grid; place-items: center;
}
.pro-tip strong { color: var(--amber-soft); }

/* =========================================================
   12. FAQ
   ========================================================= */
.faq { background: var(--cream); }
.faq-list { max-width: 880px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  line-height: 1.3;
}
.faq-q .chev {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--amber-50);
  color: var(--amber-deep);
  display: grid; place-items: center;
  transition: transform 220ms ease, background 160ms;
}
.faq-item.open .faq-q .chev { transform: rotate(45deg); background: var(--amber); color: var(--cream); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}
.faq-a-inner {
  padding-bottom: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 68ch;
}

/* =========================================================
   13. TRUST SIGNALS
   ========================================================= */
.trust-section { background: var(--cream-deep); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.trust-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.trust-media img { width: 100%; height: 100%; object-fit: cover; }
.trust-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.45;
}
.trust-list .v {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.trust-list strong { color: var(--ink); }

@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr; } }

/* =========================================================
   14. FINAL CTA BANNER
   ========================================================= */
.final-cta {
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(255,248,240,0.12), transparent 60%),
    var(--amber-deep);
  color: var(--cream);
  padding-block: clamp(28px, 3vw, 44px);
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.final-cta h2 { color: var(--cream); margin-bottom: 12px; max-width: none; }
.final-cta p { color: rgba(255, 248, 240, 0.85); margin: 0; }
.final-cta .code {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 12px 0;
  padding: 10px 18px;
  background: rgba(255,248,240,0.08);
  border: 1.5px dashed rgba(255, 248, 240, 0.4);
  border-radius: 14px;
}
.final-cta .code small { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-soft); }
.final-cta .code strong { font-family: var(--font-display); font-size: 22px; color: var(--cream); letter-spacing: 0.04em; }
.final-cta .fine { font-size: 13px; color: rgba(255, 248, 240, 0.65); }

.final-cta .btn-row { justify-content: flex-end; flex-direction: column; align-items: stretch; gap: 12px; max-width: 320px; margin-left: auto; }
.final-cta .btn-primary { background: var(--cream); color: var(--amber-deep); border-color: var(--cream); }
.final-cta .btn-primary:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

@media (max-width: 880px) {
  .final-cta-grid { grid-template-columns: 1fr; }
  .final-cta .btn-row { margin: 0; max-width: none; }
}

/* =========================================================
   15. RELATED CONTENT
   ========================================================= */
.related { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .ph-img { aspect-ratio: 3 / 2; }
.blog-card .ph-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 22px 24px 26px; }
.blog-card .cat { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber-deep); font-weight: 600; }
.blog-card h3 { font-size: 19px; margin: 8px 0 0; }

@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }

/* =========================================================
   16. FOOTER (matches kukkypetworld.com)
   ========================================================= */
.site-footer {
  margin-top: 48px;
  background: #f3f3f3;
  color: #555555;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 42px;
}
.site-footer h4 {
  color: #2b2b2b;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  margin: 0 0 20px;
  padding-bottom: 0;
  border-bottom: 0;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer ul a { color: #555555; border: none; font-size: 16px; line-height: 28px; }
.site-footer ul a:hover { color: var(--navy); }
.footer-logo { display: inline-block; border: none; margin-bottom: 22px; }
.footer-logo img { width: 117px; height: auto; }
.site-footer .brand-block .corp {
  font-size: 16px;
  color: #555555;
  line-height: 28px;
  margin: 0;
}
.site-footer .brand-block .corp strong { color: #555555; font-size: 16px; font-weight: 700; }

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}
.socials a {
  width: 30px; height: 30px;
  border: none;
  display: block;
}
.socials img { width: 30px; height: 30px; object-fit: contain; }

.payments-img { width: 300px; max-width: 100%; height: auto; margin-top: 0; }

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  line-height: 24px;
  color: #555555;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  h2 { font-size: 22px; }
}

main > section:not(.hero):not(.final-cta) {
  background: #ffffff;
}

/* =========================================================
   BRAND PALETTE MIX — excludes hero
   ========================================================= */
.empathy,
.usecases,
.howto,
.trust-section {
  background: rgba(241, 179, 131, 0.16);
}

.solution {
  background: rgba(241, 179, 131, 0.16) !important; 
}

.benefits,
.products,
.testimonials,
.related {
  background: #ffffff;
}

.comparison {
  background: #226280 !important;
  padding-block: clamp(48px, 5vw, 72px);
}
.comparison .section-head h2,
.comparison .section-sub {
  color: #ffffff;
}
.comparison .section-head {
  margin-bottom: 38px;
}
.comparison .section-head .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
}
.comparison .cmp-wrap {
  max-width: 1120px;
  width: calc(100% - 32px);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  box-shadow: none;
}
.comparison .cmp {
  font-size: 16px;
}
.comparison .cmp thead th {
  background: #B8D7E4;
  color: #1F0000;
  padding: 26px 22px;
  font-size: 18px;
  border-bottom: 1px solid rgba(34, 98, 128, 0.16);
}
.comparison .cmp thead th.kukky-col {
  background: #174156;
  color: #ffffff;
}
.comparison .cmp tbody td {
  padding: 22px 22px;
  border-bottom: 1px solid #DCECF2;
  color: #1F0000;
}
.comparison .cmp tbody td:first-child {
  color: #1F0000;
}
.comparison .cmp tbody td:nth-child(3) {
  background: #B8D7E4;
  color: #174156;
}
.comparison .cmp tbody td:nth-child(3)::before {
  color: #174156;
}
.comparison .cmp .x {
  color: #B45252;
}
.comparison .cmp .v {
  color: #00A61F;
}

.empathy-card {
  border-color: rgba(191, 129, 81, 0.32);
}
.empathy-card::before {
  background: linear-gradient(180deg, #226280 0%, #BF8151 58%, #00A61F 100%);
}
.empathy-card .until,
.solution-copy .punch {
  color: #995900;
}

.step-strip,
.benefit,
.usecase,
.product,
.review,
.howto-step,
.blog-card,
.cmp-wrap,
.aggregate,
.trust-media {
  border-color: rgba(191, 129, 81, 0.24);
}

.trust-item .ico,
.step .ico,
.benefit .ico,
.usecase .ico,
.meal-calc-note .ico,
.faq-q .chev,
.review .avatar {
  background: #F1B383;
  color: #995900;
}

.benefit:nth-child(2n) .ico,
.usecase:nth-child(2n) .ico,
.howto-step:nth-child(2n) .num {
  color: #226280;
}

.benefits .benefit .ico {
  color: #995900;
}

.benefit:hover,
.product:hover,
.blog-card:hover {
  border-color: #BF8151;
}

.product.featured {
  border-color: #BF8151;
  box-shadow: 0 0 0 1px #BF8151 inset;
}
.product .badge,
.cmp thead th.kukky-col,
.faq-item.open .faq-q .chev {
  background: #226280;
  color: #ffffff;
}
.product .rating,
.blog-card .cat,
.aggregate .big-rating,
.cmp tbody td:nth-child(3)::before {
  color: #995900;
}

.meal-calc-note {
  background: rgba(241, 179, 131, 0.28);
  border-color: rgba(153, 89, 0, 0.2);
}

.cmp thead th {
  background: rgba(241, 179, 131, 0.16);
}
.cmp tbody td:nth-child(3) {
  background: rgba(241, 179, 131, 0.2);
}

.aggregate .stars,
.review .stars,
.step-arrow,
.howto-step .num {
  color: #BF8151;
}

.pro-tip {
  background: #226280;
}
.pro-tip .ico {
  background: rgba(241, 179, 131, 0.18);
  color: #F1B383;
}
.pro-tip strong {
  color: #F1B383;
}

.trust-list .v {
  background: #00A61F;
}

.final-cta {
  background: #174156;
}
.final-cta .code {
  background: rgba(241, 179, 131, 0.12);
  border-color: rgba(241, 179, 131, 0.52);
}
.final-cta .code small {
  color: #F1B383;
}
.final-cta .btn-primary {
  color: #226280;
}
.final-cta .btn-primary:hover {
  background: rgba(241, 179, 131, 0.18);
  border-color: rgba(241, 179, 131, 0.18);
  color: #F1B383;
}

.site-footer h4,
.site-footer ul a:hover {
  color: #226280;
}

.hero .trust-bar {
  background: var(--paper);
  border-color: var(--line);
}
.hero .trust-item .ico {
  background: var(--amber-50);
  color: var(--amber-deep);
}

/* =========================================================
   17. MOBILE STICKY BAR
   ========================================================= */
.mobile-sticky {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  background: var(--amber-deep);
  color: var(--cream);
  border-radius: 16px;
  padding: 12px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 36px -8px rgba(60, 38, 10, 0.4);
}
.mobile-sticky .txt { font-size: 13px; font-weight: 500; line-height: 1.25; }
.mobile-sticky .txt strong { display: block; font-size: 14px; color: var(--cream); }
.mobile-sticky .btn { padding: 10px 16px; font-size: 13px; background: var(--cream); color: var(--amber-deep); border-color: var(--cream); }
.mobile-sticky {
  background: #226280;
}
.mobile-sticky .btn {
  color: #226280;
}
@media (max-width: 720px) { .mobile-sticky { display: flex; } body { padding-bottom: 80px; } }

/* =========================================================
   UTILITIES
   ========================================================= */
.center { text-align: center; }
.mt-lg { margin-top: 48px; }
.cta-center { display: flex; justify-content: center; margin-top: 56px; }

/* =========================================================
   RESPONSIVE POLISH
   ========================================================= */
html,
body {
  overflow-x: hidden;
}

@media (max-width: 980px) {
  .wrap {
    padding-inline: 20px;
  }

  h2 {
    white-space: normal;
    line-height: 1.25;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .hero {
    min-height: auto;
  }

  .solution-copy .punch {
    white-space: normal;
  }

  .comparison .cmp-wrap {
    width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --space-section: clamp(20px, 6vw, 34px);
  }

  body {
    font-size: 15px;
    line-height: 26px;
  }

  .wrap {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  h2,
  .empathy-card h2 {
    font-size: 22px;
  }

  .section-sub {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .btn-row {
    width: 100%;
  }

  .hero-copy h1,
  .hero-copy .lead {
    max-width: 100%;
  }

  .hero .trust-bar {
    padding: 12px;
    border-radius: 14px;
  }

  .empathy-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .solution-grid {
    gap: 28px;
  }

  .solution-media,
  .trust-media {
    border-radius: 18px;
  }

  .step-strip {
    margin-top: 32px;
    padding: 22px 18px;
  }

  .benefit,
  .product,
  .review,
  .howto-step {
    padding: 22px 18px;
  }

  .benefits-cta,
  .cta-center {
    margin-top: 32px;
  }

  .usecase-carousel {
    padding-inline: 14px;
  }

  .usecase-grid {
    width: calc(100vw - 28px);
    grid-auto-columns: 88%;
    gap: 18px;
    padding-top: 82px;
  }

  .usecase {
    padding: 80px 18px 22px;
  }

  .usecase-img {
    width: 136px;
    height: 136px;
    top: -68px;
  }

  .comparison {
    padding-block: 36px;
  }

  .comparison .section-head {
    margin-bottom: 28px;
  }

  .comparison .cmp-wrap {
    border-radius: 18px;
  }

  .comparison .cmp tr {
    padding: 14px 0;
  }

  .comparison .cmp tbody td {
    padding: 6px 18px;
  }

  .aggregate {
    border-radius: 18px;
    align-items: flex-start;
    text-align: left;
  }

  .ugc-grid {
    gap: 14px;
    margin-top: 36px;
  }

  .final-cta-grid {
    gap: 20px;
  }

  .final-cta .code {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .blog-card .body {
    padding: 18px 18px 22px;
  }

  .site-footer {
    padding-top: 46px;
  }
}

@media (max-width: 520px) {
  .announce-track {
    gap: 10px 18px;
  }

  .contact-strip .dot {
    display: none;
  }

  .trust-item {
    font-size: 12px;
  }

  .product .ph-img {
    aspect-ratio: 1 / 1;
  }

  .ugc-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  .faq-q {
    gap: 14px;
  }

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