:root {
  --background: #fbf9f4;
  --foreground: #111111;
  --card: #ffffff;
  --card-foreground: #111111;
  --primary: #e5a900;
  --primary-foreground: #000000;
  --secondary: #ffffff;
  --muted: #f3efe6;
  --muted-foreground: #555047;
  --border: #eae6dc;
  --destructive: #c0392b;
  --purple: #5b3df5;
  --radius: 0.625rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 20px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

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

/* Announcement bar */
.announce-bar {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 0.5rem 1rem;
}
.announce-bar p {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.header-logo {
  display: inline-flex;
  align-items: center;
}
.header-logo img {
  height: 1.6rem;
  width: auto;
}
.header-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transition: color 0.15s ease;
}
.header-cart:hover {
  color: var(--primary);
}
@media (min-width: 768px) {
  .announce-bar p {
    font-size: 0.8rem;
  }
  .header-logo img {
    height: 1.9rem;
  }
}

/* Layout */
.section {
  width: 100%;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container.narrow {
  max-width: 48rem;
}
.container.wide {
  max-width: 64rem;
}
.pricing-wrap {
  max-width: 48rem;
}

.band {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.center {
  text-align: center;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.stack-sm {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.stack-lg {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Typography */
.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
.h2 {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .h2 {
    font-size: 2.25rem;
  }
}
.h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .h3 {
    font-size: 1.875rem;
  }
}
.strong {
  font-weight: 700;
  color: var(--foreground);
}
.muted {
  color: var(--muted-foreground);
}
.small {
  font-size: 0.9rem;
}
.limit {
  max-width: 42rem;
  margin: 0 auto;
}
.mt {
  margin-top: 1.5rem;
}
.mt-sm {
  margin-top: 0.5rem;
}
.mt-lg {
  margin-top: 3rem;
}

.prose {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
}
.prose .strong {
  color: var(--foreground);
}
.narrow-prose {
  max-width: 48rem;
  margin-top: 1rem;
}
.center-prose {
  text-align: center;
}

/* Hero */
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.hero-grid > .hero-title {
  margin: 0;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
    grid-template-areas:
      "title image"
      "copy  image"
      "cta   image"
      "rating image";
    align-items: start;
  }
  .hero-grid > .hero-title {
    grid-area: title;
  }
  .hero-grid > .hero-image {
    grid-area: image;
    align-self: start;
  }
  .hero-grid > .hero-copy {
    grid-area: copy;
  }
  .hero-grid > .cta-row {
    grid-area: cta;
  }
  .hero-grid > .rating-row {
    grid-area: rating;
  }
}
.hero {
  border-bottom: 1px solid var(--border);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-image {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
}
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 1rem 1.75rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.15s ease, background-color 0.15s ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover {
  filter: brightness(0.95);
}
.btn-outline {
  border: 1px solid rgba(17, 17, 17, 0.3);
  background: transparent;
  color: var(--foreground);
}
.btn-outline:hover {
  background: rgba(17, 17, 17, 0.05);
}
.btn-block {
  width: 100%;
}
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
  }
}
.center-row {
  justify-content: center;
}
.full-cta {
  margin-top: 2rem;
}

/* Stars */
.stars {
  display: inline-flex;
  gap: 0.15rem;
}
.stars::before {
  content: "\2605\2605\2605\2605\2605";
  letter-spacing: 0.15rem;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
}
.rating-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
}
.stars-inline::before {
  font-size: 1.2rem;
}

/* Plans */
.plans {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.plan {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.plan.is-selected {
  border-color: var(--primary);
  background: var(--secondary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.plan-radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  border: 2px solid var(--muted-foreground);
}
.plan.is-selected .plan-radio {
  border-color: var(--primary);
}
.plan.is-selected .plan-radio::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: var(--primary);
}
.plan-img {
  width: 5rem;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.plan-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.plan-name {
  font-size: 1.25rem;
  font-weight: 800;
}
.plan-sub {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}
.badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  border-radius: 0.375rem;
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.badge-purple {
  background: var(--purple);
  color: #ffffff;
}
.badge-gold {
  background: var(--primary);
  color: var(--primary-foreground);
}
.plan-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.plan-price .old {
  color: var(--muted-foreground);
  text-decoration: line-through;
  font-size: 0.95rem;
}
.plan-price .now {
  font-size: 1.25rem;
  font-weight: 800;
}
.plan-price .each {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted-foreground);
}
.plan-price .off {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--destructive);
}

/* Mobile plan layout: stack info and price so they never overlap */
@media (max-width: 640px) {
  .plan {
    flex-wrap: wrap;
    gap: 0.75rem 0.75rem;
    padding: 1rem;
  }
  .plan-img {
    width: 3.75rem;
  }
  .plan-info {
    flex: 1 1 auto;
  }
  .plan-price {
    flex-basis: 100%;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.6rem;
    padding-left: calc(1.5rem + 0.75rem);
  }
  .plan-name {
    font-size: 1.1rem;
  }
  .plan-price .now {
    font-size: 1.15rem;
  }
}

/* Steps */
.steps {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step-card {
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.step-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.step-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}
.step-card p {
  margin-top: 0.5rem;
}

/* Table */
.table-wrap {
  margin-top: 3rem;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th,
td {
  padding: 1rem 1.5rem 1rem 0;
}
thead tr {
  border-bottom: 1px solid var(--border);
}
th {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
}
tbody tr {
  border-bottom: 1px solid var(--border);
}
td {
  color: var(--muted-foreground);
}

/* Cards */
.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.75rem;
}
.pad-lg {
  padding: 2rem;
}
@media (min-width: 768px) {
  .pad-lg {
    padding: 2.5rem;
  }
}
.icon-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* Icons */
.ico {
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  background-color: var(--primary);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.ico-shield {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}
.ico-truck {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2'/%3E%3Cpath d='M15 18H9'/%3E%3Cpath d='M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14'/%3E%3Ccircle cx='17' cy='18' r='2'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2'/%3E%3Cpath d='M15 18H9'/%3E%3Cpath d='M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14'/%3E%3Ccircle cx='17' cy='18' r='2'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3C/svg%3E");
}
.ico-lock {
  width: 1.25rem;
  height: 1.25rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='11' x='3' y='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='11' x='3' y='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}

/* Reviews */
.reviews {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}
.review {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.review-name {
  margin-top: 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
}
.review-name span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted-foreground);
}

/* FAQ */
.faq {
  margin-top: 2rem;
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--foreground);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .plus {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.2s ease;
}
.faq summary .plus::before,
.faq summary .plus::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
}
.faq summary .plus::before {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq summary .plus::after {
  top: 50%;
  left: 0;
  height: 2px;
  width: 100%;
  transform: translateY(-50%);
}
.faq details[open] summary .plus {
  transform: rotate(45deg);
}
.faq details p {
  margin-top: 1rem;
}

/* Guarantee */
.guarantee-wrap {
  padding: 4rem 0;
}

/* Footer bar */
.footer-bar {
  width: 100%;
  border-top: 1px solid var(--border);
}
.footer-bar .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.05rem;
}
.lock-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
