/* ===== Top Bar ===== */
.topbar {
  background: var(--mint);
  padding: 0.625rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  min-height: 52px;
}

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-text);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-block { width: 100%; }

@media (max-width: 767px) {
  .btn { width: 100%; }
}

/* ===== Microcopy ===== */
.microcopy {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card-mint {
  background: var(--mint);
  border-color: transparent;
}

.card-sand {
  background: var(--sand);
  border-color: transparent;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--mint);
  color: var(--teal);
  margin-bottom: 1rem;
}

.card-icon svg { width: 22px; height: 22px; }

.card h3 { margin-bottom: 0.5rem; color: var(--ink); }
.card p { font-size: 0.9375rem; line-height: 1.6; }

/* ===== Grids ===== */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  background: var(--gold);
  color: var(--navy);
}

.badge-mint {
  background: var(--mint);
  color: var(--teal);
}

/* ===== Check List ===== */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  color: var(--ink);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.check-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--teal);
  margin-top: 1px;
}

.x-list { list-style: none; padding: 0; }
.x-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.x-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--coral);
  margin-top: 1px;
  opacity: 0.7;
}

/* ===== Offer Box ===== */
.offer-box {
  background: var(--sand);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .offer-box { padding: 3rem; }
}

.offer-box h3 { font-family: var(--font-head); font-size: 1.5rem; text-align: center; }

.offer-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1;
  margin: 1rem 0;
}

.offer-price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
}

/* ===== Guarantee Seal ===== */
.seal {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.seal-number { font-size: 2.25rem; font-family: var(--font-head); line-height: 1; }
.seal-text { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }

/* ===== Accordion ===== */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.accordion-header:hover { color: var(--teal); }
.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: transform 0.25s ease;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content-inner {
  padding: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== Section Headers ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { margin: 0 auto; font-size: 1.0625rem; max-width: 60ch; }

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 1.5rem 2rem;
}
.footer a { color: rgba(255, 255, 255, 0.7); }
.footer a:hover { color: var(--white); }
.footer-disclaimer {
  font-size: 0.8125rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Site Header (blog/pages) ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.875rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
  text-decoration: none;
}
.site-logo:hover { color: var(--teal); }
.site-nav { display: none; gap: 1.5rem; }
.site-nav a { color: var(--ink); font-size: 0.9375rem; font-weight: 500; }
@media (min-width: 768px) {
  .site-nav { display: flex; }
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--teal); }
.breadcrumbs span { margin: 0 0.5rem; opacity: 0.5; }
