*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

:root {
  --bg: #ffffff;
  --text: #0f1b14;
  --muted: #4a5b50;
  --gold: #c8a44d;
  --soft-green: #e9f5ee;
  --cta: #ffb200;
  --cta-hover: #ff9800;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(15, 27, 20, 0.08);
}

body {
  margin: 0;
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img, video {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  width: min(960px, 92vw);
  margin: 0 auto;
  padding: 10px 0;
}

.section {
  position: relative;
}

header.hero {
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 60%);
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

h1 {
  font-size: clamp(26px, 5vw, 42px);
  line-height: 1.2;
  margin: 6px 0 12px;
  font-weight: 700;
}

h2 {
  font-size: clamp(22px, 4.5vw, 32px);
  margin-bottom: 12px;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.lead {
  color: var(--muted);
  margin-bottom: 14px;
}

.bullets {
  margin: 8px 0 16px;
  padding-left: 0;
}

.bullets li {
  margin: 6px 0;
}

.btn {
  display: inline-block;
  background: var(--cta);
  color: #1a1a1a;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(255, 178, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(255, 152, 0, 0.38);
}

.btn.big {
  padding: 16px 28px;
  font-size: 18px;
}

.user-tabbing a:focus-visible,
.user-tabbing button:focus-visible,
.user-tabbing .btn:focus-visible {
  outline: 3px solid rgba(200, 164, 77, 0.6);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 178, 0, 0.25), 0 10px 18px rgba(255, 178, 0, 0.35);
}

.cta {
  animation: ctaPulse 2.2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 10px 18px rgba(255, 178, 0, 0.35);
  }
  50% {
    box-shadow: 0 18px 28px rgba(255, 178, 0, 0.55);
  }
}

.about .media {
  margin-top: 12px;
}

.video {
  width: 100%;
  height: auto;
  background: #000;
}

@media (min-width: 900px) {
  .about .media {
    display: flex;
    justify-content: center;
  }
  .video {
    width: min(420px, 40vw);
    max-height: 70vh;
    height: auto;
    object-fit: contain;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.card {
  background: var(--card);
  border: 1px solid #eff3f0;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: var(--shadow);
}

.card.good {
  border-left-color: #3dbb7a;
}

.card.bad {
  border-left-color: #e05252;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  margin: 8px 0;
}

.testimonials blockquote {
  background: #f8faf9;
  border-left: 4px solid var(--gold);
  padding: 10px 12px;
  margin: 8px 0;
  border-radius: 10px;
}

.stat {
  margin-top: 8px;
  font-weight: 600;
  color: var(--muted);
}

.photos {
  width: 100%;
  margin-top: 12px;
}

.photos:not(.carousel) {
  display: flex;
  gap: 10px;
}

.photos:not(.carousel) img {
  flex: 1 1 0;
  min-width: 0;
}

.photos.carousel {
  position: relative;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  will-change: transform;
  transition: transform 350ms ease;
}
.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  padding: 0;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.85);
  border: 1px solid #e7ece9;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  color: #1f2a24;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.carousel-btn:hover {
  background: #fff;
}
.carousel-btn:disabled {
  opacity: 0.5;
  cursor: default;
}
.carousel-btn.prev { left: 6px; }
.carousel-btn.next { right: 6px; }

@media (min-width: 720px) {
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
  .carousel-viewport { border-radius: 12px; }
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8faf9;
  padding: 10px 12px;
  border-radius: 12px;
  margin: 8px 0;
}

.steps li span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--soft-green);
  color: #1b5e20;
  border-radius: 50%;
  font-weight: 700;
}

.highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.highlight .container {
  padding-top: 24px;
  padding-bottom: 24px;
}

.cta-block .container {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 32px;
}

.cta-block h2 {
  margin-bottom: 12px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  background: #f8faf9;
  border-radius: 12px;
  padding: 10px 12px;
  margin: 8px 0;
}

.faq-list strong {
  display: block;
  margin-bottom: 6px;
}

.footer {
  border-top: 1px solid #eef2ef;
}

.footer .container {
  padding: 16px 0;
  text-align: center;
  color: var(--muted);
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .cta {
    animation: none;
  }
}

a, a:hover, a:focus {
  text-decoration: none;
}

.criteria {
  display: grid;
  gap: 10px;
  margin: 10px 0 16px;
}

.criterion {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card);
  border: 1px solid #eff3f0;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.criterion.good {
  border-left-color: #3dbb7a;
}

.criterion.bad {
  border-left-color: #e05252;
}

.criterion .badge {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 700;
}

.criterion.good .badge {
  background: var(--soft-green);
  color: #1b5e20;
}

.criterion.bad .badge {
  background: #ffecec;
  color: #a12727;
}

.criterion p {
  margin: 0;
  font-weight: 600;
}
