/* ==========================================================================
   GomaPet — Landing Page
   Tokens
   ========================================================================== */
:root {
  --green-deep: #1E4D36;
  --green-primary: #2F8F5B;
  --green-primary-hover: #267a4c;
  --green-light: #DCEEE1;
  --green-pale: #EEF6F0;
  --cream: #F6F1E7;
  --off-white: #FFFDF8;
  --text-dark: #22301F;
  --text-muted: #5B6B58;
  --white: #FFFFFF;
  --gold-badge: #E7B33B;

  --font-display: "Baloo 2", ui-rounded, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --radius-pill: 999px;

  --shadow-soft: 0 8px 24px rgba(30, 77, 54, 0.10);
  --shadow-strong: 0 16px 40px rgba(30, 77, 54, 0.18);

  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: var(--green-pale);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}

/* Gummy-drop divider — signature shape, echoes the product itself */
.gum-divider {
  width: 100%;
  height: 60px;
  display: block;
}
.gum-divider path { fill: var(--cream); }
.gum-divider.to-green path { fill: var(--green-deep); }
.gum-divider.to-white path { fill: var(--off-white); }
.gum-divider.to-pale path { fill: var(--green-pale); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-primary);
  color: var(--off-white);
  box-shadow: var(--shadow-strong);
}
.btn-primary:hover { background: var(--green-primary-hover); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-block { width: 100%; }
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(30, 77, 54, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.header-cta {
  padding: 11px 20px;
  font-size: 14px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--cream) 100%);
  padding: 28px 0 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 40px;
}
.hero-copy { text-align: center; }
.hero-headline {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 800;
  color: var(--green-deep);
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.hero-headline .accent { color: var(--green-primary); }
.hero-sub {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta-wrap { margin-top: 22px; }

/* Mini benefit row inside hero */
.hero-mini-benefits {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-mini-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hero-mini-benefit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  color: var(--green-deep);
  font-weight: 700;
}
.hero-mini-benefit span span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

/* Hero visual + overlays */
.hero-visual-wrap { display: flex; flex-direction: column; gap: 14px; }
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 3 / 2;
  background: linear-gradient(160deg, var(--green-light) 0%, var(--cream) 100%);
}
.hero-visual > img.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  box-shadow: var(--shadow-soft);
  font-size: 10.5px;
  line-height: 1.3;
  color: var(--text-muted);
  max-width: 150px;
}
.hero-badge strong { color: var(--green-deep); font-family: var(--font-display); font-size: 13px; }
.hero-badge-icon { font-size: 18px; flex-shrink: 0; }
.hero-badge-pets { top: 14px; right: 14px; }
.hero-badge-reviews { top: 78px; right: 14px; }

.hero-before-after {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: calc(100% - 28px);
  max-width: 260px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 12px 14px 14px;
  box-shadow: var(--shadow-soft);
}
.ba-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--green-deep);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ba-images { display: flex; align-items: center; gap: 8px; }
.ba-col { flex: 1; text-align: center; }
.ba-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  color: var(--off-white);
  margin-bottom: 5px;
}
.ba-before { background: #8B8B8B; }
.ba-after { background: var(--green-primary); }
.ba-thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--green-light);
  overflow: hidden;
}
.ba-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-arrow { color: var(--green-primary); font-size: 16px; flex-shrink: 0; }

.hero-safety-bar {
  background: var(--green-deep);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: grid;
  gap: 10px;
}
.hero-safety-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--green-light);
  font-size: 12.5px;
  line-height: 1.4;
}
.hero-safety-icon { font-size: 18px; flex-shrink: 0; }
.hero-safety-item strong { display: block; color: var(--off-white); font-family: var(--font-display); font-size: 13px; margin-bottom: 2px; }

@media (min-width: 640px) {
  .hero-safety-bar { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 70px;
  }
  .hero-copy { text-align: left; }
  .hero-sub { margin-left: 0; }
  .hero-mini-benefits { max-width: 420px; }
  .hero-mini-benefit { align-items: flex-start; text-align: left; }
  .hero-headline { font-size: clamp(38px, 4.2vw, 54px); }
}

/* ==========================================================================
   Benefits
   ========================================================================== */
.section { padding: 56px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.section-title {
  font-size: clamp(26px, 5vw, 36px);
  color: var(--green-deep);
  margin-top: 12px;
  font-weight: 800;
}
.section-title .accent { color: var(--green-primary); }
.section-sub {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30, 77, 54, 0.06);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-size: 19px;
  color: var(--green-deep);
  font-weight: 700;
}
.benefit-card p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Guarantee block ("Experimente sem medo")
   ========================================================================== */
.guarantee-band {
  background: var(--green-deep);
  color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 26px;
  margin: 0 20px;
  max-width: calc(var(--container) - 40px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.guarantee-band::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  right: -80px;
}
.guarantee-inner {
  position: relative;
  display: grid;
  gap: 22px;
  text-align: center;
}
.guarantee-badge-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-band h2 {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
}
.guarantee-band p.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--green-light);
  max-width: 52ch;
  margin: 0 auto;
}
.guarantee-steps {
  display: grid;
  gap: 12px;
  max-width: 460px;
  margin: 6px auto 0;
  text-align: left;
}
.guarantee-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
}
.guarantee-step .num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--off-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-cta { margin-top: 6px; }

@media (min-width: 760px) {
  .guarantee-inner { text-align: left; grid-template-columns: auto 1fr; align-items: center; }
  .guarantee-badge-icon { margin: 0; }
  .guarantee-band p.lead { margin: 0; }
}

/* ==========================================================================
   Transformation carousel (real before/after testimonials)
   ========================================================================== */
.transform-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.transform-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.transform-track::-webkit-scrollbar { display: none; }
.transform-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.transform-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.transform-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-deep);
  font-size: 20px;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.transform-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.transform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(30, 77, 54, 0.2);
  padding: 0;
}
.transform-dot.active { background: var(--green-primary); width: 22px; border-radius: var(--radius-pill); }

@media (min-width: 860px) {
  .transform-arrow, .transform-dots { display: none; }
  .transform-track { overflow: visible; scroll-snap-type: none; }
  .transform-slide { flex: 1 1 0; scroll-snap-align: none; }
}

/* ==========================================================================
   How it works
   ========================================================================== */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); }
}
.how-card {
  text-align: center;
  padding: 22px 16px;
}
.how-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--off-white);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.how-card h4 { font-size: 16px; color: var(--green-deep); font-weight: 700; }
.how-card p { margin-top: 6px; font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30, 77, 54, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-stars { color: var(--gold-badge); font-size: 15px; letter-spacing: 2px; }
.testimonial-quote { font-size: 14.5px; color: var(--text-dark); line-height: 1.6; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-primary);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-family: var(--font-display); font-size: 13.5px; color: var(--green-deep); }
.testimonial-author span { display: block; font-size: 12px; color: var(--text-muted); }

/* ==========================================================================
   Kits
   ========================================================================== */
.kits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 860px) {
  .kits-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.kit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 22px 24px;
  border: 2px solid rgba(30, 77, 54, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kit-card.featured {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-strong);
  background: linear-gradient(180deg, var(--green-pale) 0%, var(--white) 40%);
}
@media (min-width: 860px) {
  .kit-card.featured { padding-top: 40px; padding-bottom: 34px; transform: scale(1.04); z-index: 2; }
}
.kit-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -10px;
  height: 120px;
  margin-bottom: 4px;
}
.kit-visual img {
  height: 92%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(30, 77, 54, 0.18));
}
.kit-visual-3 img {
  height: 88%;
}
.kit-visual-2 img:not(:first-child),
.kit-visual-3 img:not(:first-child) {
  margin-left: -22px;
}
.kit-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-badge);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.kit-name { font-size: 15px; color: var(--text-muted); font-weight: 600; }
.kit-qty { font-size: 20px; color: var(--green-deep); font-weight: 800; }
.kit-price-row { display: flex; align-items: baseline; gap: 8px; }
.kit-price { font-size: 32px; font-weight: 800; color: var(--green-deep); font-family: var(--font-display); }
.kit-unit { font-size: 13px; color: var(--text-muted); }
.kit-perks { display: grid; gap: 8px; }
.kit-perk { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--text-dark); line-height: 1.45; }
.kit-guarantee-mini {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12.5px;
  color: var(--green-deep);
  line-height: 1.5;
}
.kit-bonus {
  background: #FBF1DA;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12.5px;
  color: #7A5A0E;
  line-height: 1.5;
}
.kit-cta { margin-top: auto; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(30, 77, 54, 0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--green-deep);
  text-align: left;
}
.faq-question .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  background: linear-gradient(180deg, var(--green-deep) 0%, #163A28 100%);
  color: var(--off-white);
  text-align: center;
  padding: 56px 0 70px;
}
.final-cta h2 { font-size: clamp(26px, 5.5vw, 38px); font-weight: 800; }
.final-cta p { margin-top: 12px; color: var(--green-light); font-size: 16px; max-width: 48ch; margin-left: auto; margin-right: auto; }
.final-cta .btn-primary { margin-top: 24px; }

/* ==========================================================================
   Trust bar (email, phone, free shipping)
   ========================================================================== */
.trust-bar {
  background: var(--cream);
  padding: 32px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}
@media (min-width: 700px) {
  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); }
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trust-icon { font-size: 26px; }
.trust-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--green-deep);
  line-height: 1.4;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--off-white);
  padding: 32px 0 100px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.site-footer .footer-vendor {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.site-footer .footer-disclaimer {
  margin-top: 10px;
  max-width: 70ch;
}
@media (min-width: 900px) {
  .site-footer { padding-bottom: 40px; }
}

/* ==========================================================================
   Sticky mobile CTA bar
   ========================================================================== */
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--off-white);
  border-top: 1px solid rgba(30, 77, 54, 0.10);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(30, 77, 54, 0.10);
}
.mobile-sticky-cta .btn { width: 100%; }
@media (min-width: 900px) {
  .mobile-sticky-cta { display: none; }
}
body { padding-bottom: 78px; }
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--green-primary);
  outline-offset: 2px;
}
