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

:root {
  color-scheme: light;
  --bg: #fdf7f3;
  --text: #3a2f2a;
  --muted: #7a6b64;
  --primary: #e8a3b7;
  --primary-dark: #d989a1;
  --accent: #f6dbe4;
  --card: #ffffff;
  --shadow: 0 20px 40px rgba(58, 47, 42, 0.12);
  --radius: 18px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(253, 247, 243, 0.92);
  backdrop-filter: blur(16px);
  z-index: 10;
  border-bottom: 1px solid rgba(232, 163, 183, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-login {
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  line-height: 1.1;
}

.btn.nav-login {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  box-shadow: none;
}

.btn.nav-login:hover {
  background: rgba(232, 163, 183, 0.16);
  box-shadow: 0 8px 20px rgba(217, 137, 161, 0.2);
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  background: var(--bg);
}

.hero .container {
  width: min(900px, 90vw);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(232, 163, 183, 0.3);
}

.badge svg {
  width: 22px;
  height: 22px;
  fill: var(--primary-dark);
}

h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 auto 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease, color 0.2s ease;
  gap: 0.5rem;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(232, 163, 183, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
  box-shadow: 0 14px 32px rgba(217, 137, 161, 0.45);
}

.btn.secondary {
  background: var(--text);
  color: #fff;
}

.btn.ghost {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(232, 163, 183, 0.16);
  box-shadow: 0 8px 20px rgba(217, 137, 161, 0.2);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats strong {
  font-size: 1.4rem;
  display: block;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  display: none;
}

.card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card li {
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
}

.card li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.section {
  padding: 4rem 0;
}

.section#services {
  background: #fdf1f4;
  padding: 80px 0;
}

.section#services .container {
  width: min(1200px, 90vw);
}

.section#services .section-head {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 720px;
}

.section#services .section-head h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
}

.section#services .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.section#services .panel {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(120, 98, 90, 0.12);
  box-shadow: 0 18px 40px rgba(58, 47, 42, 0.08);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.section#services .panel h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--text);
}

.section#services .panel p {
  font-size: 1rem;
  color: #7a6b64;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f8dfe6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: #d989a1;
}

/* Section 3: Como funciona */
.steps {
  background: var(--bg);
  padding: 80px 0;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f8dfe6;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Section 4: Vendor spotlight */
.spotlight {
  background: #f8eef2;
  padding: 80px 0;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.vendor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vendor-card {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.vendor-card h3 {
  font-size: 1.15rem;
}

.vendor-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.vendor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f8dfe6;
  color: var(--primary-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vendor-rating {
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(120, 98, 90, 0.12);
  font-weight: 600;
  color: var(--text);
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Section 5: Testimonials */
.testimonials {
  background: var(--bg);
  padding: 80px 0;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  min-height: 210px;
  justify-content: space-between;
}

.testimonial-card p {
  color: var(--text);
  font-size: 1rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* Section 6: Pricing */
.pricing {
  background: #fdf1f4;
  padding: 80px 0;
}

#pricing .container {
  width: min(1280px, 94vw);
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(340px, 1fr));
  gap: 22px;
}

.panel.pricing-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 42px 34px;
}

.pricing-card .btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  line-height: 1.1;
  margin-top: 1.5rem;
  align-self: flex-start;
}

.pricing-card h3 {
  font-size: 1.3rem;
}

.price {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-top: 0.3rem;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 1rem;
  color: var(--muted);
}

.pricing-card li::before {
  content: "•";
  color: var(--primary-dark);
  margin-right: 0.5rem;
}

/* Section 7: FAQ */
.faq {
  background: var(--bg);
  padding: 80px 0;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.faq details {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(120, 98, 90, 0.12);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 12px 30px rgba(58, 47, 42, 0.08);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--primary-dark);
  font-weight: 600;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  color: var(--muted);
  margin-top: 0.75rem;
}

/* Section 8: Final CTA */
.final-cta {
  background: #f8eef2;
  padding: 80px 0;
}

.final-cta-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}

.final-cta h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.final-cta p {
  color: var(--muted);
  margin-top: 0.75rem;
}

/* Section 9: Vendor categories */
.vendor-categories {
  background: #fdf7f3;
  padding: 80px 0;
}

.vendor-categories .section-head {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 760px;
}

.vendor-categories .section-head h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 3rem);
  color: var(--text);
}

.vendor-categories .section-head p {
  color: var(--muted);
  margin-top: 0.75rem;
}

.vendor-categories-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.category-card {
  border-radius: 22px;
  padding: 22px;
  background: #fff8f4;
  border: 1px solid rgba(120, 98, 90, 0.1);
  box-shadow: 0 18px 40px rgba(58, 47, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.category-card:nth-child(2) {
  background: #fef3f0;
}

.category-card:nth-child(3) {
  background: #f7f0f4;
}

.category-card:nth-child(4) {
  background: #f5eef1;
}

.category-card:nth-child(5) {
  background: #f6f1ec;
}

.category-card:nth-child(6) {
  background: #f8f0ea;
}

.category-card img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  height: 200px;
}

.category-content h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.4rem;
  color: var(--text);
}

.category-content p {
  color: var(--muted);
  margin: 0.5rem 0 1rem;
}

.category-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.category-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(58, 47, 42, 0.12);
}

.category-card:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 4px;
}

/* SEO category page */
.seo-hero {
  background: #fdf7f3;
  padding: 96px 0 80px;
}

.seo-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.category-nav {
  background: var(--bg);
  padding: 80px 0;
}

.category-pill-grid {
  grid-template-columns: repeat(3, 180px);
  justify-content: center;
  gap: 16px;
}

.category-grid {
  background: var(--bg);
  padding: 80px 0;
}

.category-search {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.5rem;
  max-width: 420px;
}

.category-search label {
  font-size: 0.9rem;
  color: var(--muted);
}

.category-search input {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(58, 47, 42, 0.18);
  font-size: 1rem;
  background: #ffffff;
  color: var(--text);
}

.category-search input:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
}

.auth-section {
  padding: 90px 0;
}

.auth-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.auth-copy .lead {
  margin-left: 0;
  margin-right: 0;
}

.auth-highlights {
  margin-top: 1.5rem;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.auth-highlights li::before {
  content: "•";
  color: var(--primary-dark);
  margin-right: 0.5rem;
}

.auth-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.75rem;
  border: 1px solid rgba(120, 98, 90, 0.12);
}

.auth-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  background: rgba(232, 163, 183, 0.12);
  padding: 0.4rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.auth-tab {
  border: none;
  background: transparent;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
}

.auth-tab.is-active {
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(58, 47, 42, 0.08);
  color: var(--text);
}

.auth-form {
  display: none;
  gap: 1rem;
}

.auth-form.is-active {
  display: grid;
}

.auth-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.auth-form input {
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(58, 47, 42, 0.12);
  font-size: 1rem;
  color: var(--text);
}

.auth-form input:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
}

.auth-helper {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.auth-link {
  background: none;
  border: none;
  color: var(--primary-dark);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.auth-link:hover {
  text-decoration: underline;
}

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

.form-error {
  color: #b42318;
  font-weight: 600;
}

.vendor-dashboard .dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.dashboard-card h2 {
  margin-bottom: 0.75rem;
}

.dashboard-subtitle {
  margin-top: 0.25rem;
  font-size: 1.05rem;
  color: var(--text);
}

.dashboard-card--full {
  grid-column: 1 / -1;
}

.faq-admin {
  margin-top: 1rem;
  border-top: 1px solid rgba(58, 47, 42, 0.1);
  padding-top: 1rem;
}

.faq-admin-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.faq-admin-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.faq-admin-item {
  border: 1px solid rgba(58, 47, 42, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.faq-admin-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.faq-admin-item p {
  color: var(--muted);
  margin: 0;
}

.faq-remove {
  border: 1px solid rgba(58, 47, 42, 0.18);
  background: transparent;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}

.faq-remove:hover {
  background: rgba(232, 163, 183, 0.14);
  border-color: rgba(232, 163, 183, 0.45);
}

.upload-placeholder {
  margin-top: 1rem;
  border: 1px dashed rgba(58, 47, 42, 0.25);
  border-radius: 18px;
  padding: 22px;
  background: rgba(232, 163, 183, 0.08);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.upload-copy {
  display: grid;
  gap: 4px;
}

.upload-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 163, 183, 0.22);
  color: var(--primary-dark);
  font-weight: 800;
  flex-shrink: 0;
}

.upload-placeholder .btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.dashboard-form {
  display: grid;
  gap: 1rem;
}

.dashboard-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.dashboard-form input,
.dashboard-form select,
.dashboard-form textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(58, 47, 42, 0.18);
  font-size: 1rem;
  background: #ffffff;
  color: var(--text);
}

.dashboard-form input:focus-visible,
.dashboard-form select:focus-visible,
.dashboard-form textarea:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
}

.dashboard-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.dashboard-hint {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.category-grid-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.category-card-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(120, 98, 90, 0.12);
  box-shadow: 0 12px 28px rgba(58, 47, 42, 0.08);
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 92px;
  height: 100%;
}

.category-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #111111;
  flex-shrink: 0;
}

.category-card-link span {
  font-weight: 600;
}

.category-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(58, 47, 42, 0.12);
}

.category-card-link:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
}

.vendor-grid-section {
  background: #fef7f4;
  padding: 80px 0;
}

.category-intro {
  padding: 72px 0 8px;
}

.category-intro + .seo-content {
  padding-top: 24px;
  padding-bottom: 32px;
}

.seo-content + .vendor-grid-section {
  padding-top: 0;
}

.guide-wrap {
  padding: 64px 0 56px;
  background: var(--bg);
}

.guide-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(58, 47, 42, 0.08);
  padding: 32px;
}

.guide-card .section {
  padding: 0;
}

.guide-card .container {
  width: 100%;
  margin: 0;
}

.guide-card .category-intro,
.guide-card .seo-content {
  max-width: 820px;
}

.guide-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.guide-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 20px 0;
}

.guide-card .seo-content ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.guide-card .seo-content li {
  display: flex;
  gap: 0.5rem;
  line-height: 1.7;
}

.guide-card .seo-content li::before {
  content: "•";
  color: var(--primary);
}

.category-reading-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(120, 98, 90, 0.12);
  box-shadow: 0 12px 30px rgba(58, 47, 42, 0.08);
  padding: 32px;
}

.category-reading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 240px);
  gap: 28px;
  align-items: start;
}

.category-reading-copy {
  max-width: 65ch;
}

.category-reading-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #9a8b82;
  margin-bottom: 12px;
}

.category-reading-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.category-reading-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.category-reading-copy p:last-child {
  margin-bottom: 0;
}

.category-reading-keypoints {
  border-left: 1px solid rgba(120, 98, 90, 0.12);
  padding-left: 24px;
}

.category-reading-keytitle {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #9a8b82;
  margin-bottom: 0.75rem;
}

.category-reading-keypoints ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.category-reading-keypoints li {
  display: flex;
  gap: 0.5rem;
  color: var(--muted);
  line-height: 1.6;
}

.category-reading-keypoints li::before {
  content: "•";
  color: var(--primary-dark);
}

.help-section {
  background: var(--bg);
  padding: 80px 0;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.help-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(120, 98, 90, 0.12);
  box-shadow: 0 18px 36px rgba(58, 47, 42, 0.08);
  padding: 28px;
}

.help-card-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #9a8b82;
  margin-bottom: 12px;
}

.help-card-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.help-card-subtitle {
  margin: 1.2rem 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.help-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.help-card p:last-child {
  margin-bottom: 0;
}

.help-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.help-list li {
  display: flex;
  gap: 0.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.help-list li::before {
  content: "•";
  color: var(--primary-dark);
}

.help-faq-list details {
  border-top: 1px solid rgba(120, 98, 90, 0.12);
  padding: 0.85rem 0;
}

.help-faq-list details:first-child {
  border-top: none;
  padding-top: 0;
}

.help-faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.help-faq-list summary::marker {
  content: "";
}

.help-faq-list summary::-webkit-details-marker {
  display: none;
}

.help-faq-list details[open] summary {
  margin-bottom: 0.5rem;
}

.help-faq-list details p {
  color: var(--muted);
  line-height: 1.6;
}

.help-faq-list summary:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
}

.vendor-grid-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.vendor-card-page {
  gap: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vendor-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.vendor-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.vendor-card-page .btn.ghost {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.vendor-card-page .btn.ghost:hover {
  transform: translateY(-2px);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(217, 137, 161, 0.25);
}

.vendor-card-page h3 {
  font-size: 1.2rem;
}

.vendor-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.25rem 0 0.75rem;
}


.vendor-image {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, #f3e6e2, #f8dfe6);
}

.trust-strip {
  background: #f8eef2;
  padding: 80px 0;
}

.trust-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.seo-content {
  background: var(--bg);
  padding: 80px 0;
}

.seo-content h2,
.seo-content h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--text);
}

.seo-content p,
.seo-content ul {
  color: var(--muted);
}

.seo-content ul {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.seo-content li::before {
  content: "•";
  color: var(--primary-dark);
  margin-right: 0.5rem;
}

/* Section 10: Build your vendor team */
.vendor-team {
  background: #f8eef2;
  padding: 80px 0;
}

.vendor-team .section-head {
  text-align: center;
  margin: 0 auto 2.5rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(6, 170px);
  gap: 16px 18px;
  justify-content: center;
}

.pill {
  height: 64px;
  width: 170px;
  border-radius: 999px;
  border: 1px solid rgba(120, 98, 90, 0.16);
  background: #fffaf7;
  color: var(--text);
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pill.long {
  font-size: 0.95rem;
}

.pill:hover {
  background: #fbe6ee;
  box-shadow: 0 12px 26px rgba(58, 47, 42, 0.12);
  transform: translateY(-2px);
}

.pill:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
}

.pill-grid .pill:nth-child(7) {
  grid-column: 2;
}

.section.alt {
  background: #f8eef2;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.vendor-categories .vendor-categories-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  background: var(--card);
  padding: 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel h3 {
  margin-bottom: 0.75rem;
}

.work-grid .work-card {
  background: var(--card);
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.work-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.process-grid article {
  background: var(--card);
  padding: 1.6rem;
  border-radius: var(--radius);
}

.step {
  display: inline-block;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.cta {
  background: #3a2f2a;
  color: #fff;
}

.cta-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.cta-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.cta-form label {
  font-size: 0.85rem;
  display: grid;
  gap: 0.35rem;
}

.cta-form input,
.cta-form textarea {
  padding: 0.7rem;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
}

.cta .btn.primary {
  width: 100%;
}

.site-footer {
  padding: 2rem 0 3rem;
  background: #2f2622;
  color: #f6e6eb;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 840px) {
  .nav-links {
    position: absolute;
    right: 5%;
    top: 72px;
    background: var(--card);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 960px) {
  .section#services .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .vendor-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .final-cta-content {
    grid-template-columns: 1fr;
  }

  .vendor-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vendor-categories .vendor-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vendor-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .vendor-dashboard .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-row {
    grid-template-columns: 1fr;
  }

  .category-reading-grid {
    grid-template-columns: 1fr;
  }

  .category-reading-copy {
    max-width: none;
  }

  .category-reading-keypoints {
    border-left: none;
    padding-left: 0;
    margin-top: 1.5rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .section#services {
    padding: 56px 0;
  }

  .section#services .section-head h2 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .section#services .grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .spotlight,
  .testimonials,
  .pricing,
  .faq,
  .final-cta,
  .vendor-categories,
  .vendor-team {
    padding: 56px 0;
  }

  .seo-hero,
  .category-nav,
  .vendor-grid-section,
  .trust-strip,
  .seo-content {
    padding: 56px 0;
  }

  .help-section {
    padding: 56px 0;
  }

  .help-card {
    padding: 24px;
  }

  .category-intro {
    padding: 56px 0 8px;
  }

  .category-reading-card {
    padding: 24px;
  }

  .category-reading-grid {
    gap: 20px;
  }

  .guide-wrap {
    padding: 48px 0 40px;
  }

  .guide-card {
    padding: 22px;
  }

  .category-grid {
    padding: 56px 0;
  }

  .category-card img {
    height: 180px;
  }

  .steps-grid,
  .vendor-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .vendor-categories-grid {
    grid-template-columns: 1fr;
  }

  .category-pill-grid {
    grid-template-columns: 1fr;
  }

  .category-grid-list {
    grid-template-columns: 1fr;
  }

  .pill-grid {
    grid-template-columns: repeat(3, 160px);
    gap: 14px 14px;
  }

  .pill {
    width: 160px;
    height: 58px;
  }

  .pill-grid .pill:nth-child(7) {
    grid-column: auto;
  }

  .vendor-grid-page {
    grid-template-columns: 1fr;
  }

  .vendor-image {
    height: 160px;
  }

  .vendor-categories .vendor-categories-grid {
    grid-template-columns: 1fr;
  }

  .vendor-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq summary::after {
    margin-left: 8px;
  }
}
