:root {
  --green-forest: #2D5A27;
  --green-forest-dark: #1A3A16;
  --orange-fire: #F97316;
  --orange-fire-light: #FBBF24;
  --beige-tent: #F5E6D9;
  --beige-tent-light: #FFF5EA;
  --grey-slate: #2B2B2B;
  --grey-medium: #5A5A5A;
  --blue-night: #1E3D5F;
  --sand: #E5C9A6;
  --red-brick: #A63C2E;
  --green-moss: #7C9A6B;

  --bg-primary: var(--beige-tent-light);
  --bg-secondary: var(--beige-tent);
  --text-primary: var(--grey-slate);
  --text-secondary: var(--grey-medium);
  --border-color: var(--sand);
}

[data-theme="dark"] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2a2a2a;
  --text-primary: #f5f5f5;
  --text-secondary: #d4d4d4;
  --border-color: #404040;
  --beige-tent: #2a2a2a;
  --beige-tent-light: #1a1a1a;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background-color 0.3s, color 0.3s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.lead {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.small-text {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.navbar {
  background: var(--bg-secondary);
  border-bottom: 3px dashed var(--green-forest);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.3s;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo-full {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s;
}

.logo-full:hover {
  transform: scale(1.05);
}

.logo-full img {
  height: 40px;
  width: auto;
}

.logo-full span {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--green-forest);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange-fire);
}

.theme-toggle {
  background: transparent;
  border: 2px solid var(--green-forest);
  border-radius: 40px;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--green-forest);
  transition: all 0.2s;
}

.theme-toggle:hover {
  background: var(--green-forest);
  color: white;
}

[data-theme="light"] .moon-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-fire-light));
  color: white;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--green-forest);
  border: 2px solid var(--green-forest);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 40px;
  transition: all 0.2s;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--green-forest);
  color: white;
}

.user-menu-btn {
  background: var(--green-forest);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.user-menu-btn:hover {
  background: var(--green-forest-dark);
  transform: scale(1.1);
}

.hero {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.hero .lead {
  max-width: 800px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-fire), var(--orange-fire-light));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.tag {
  background: var(--sand);
  color: var(--text-primary);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.tag:hover {
  background: var(--green-forest);
  color: white;
}

.tag.active {
  background: var(--orange-fire);
  color: white;
  border-color: var(--orange-fire-light);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: linear-gradient(145deg, var(--beige-tent), var(--beige-tent-light));
  border-radius: 20px 20px 5px 5px;
  padding: 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--green-forest);
  transition: all 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.2);
  border-left-color: var(--orange-fire);
}

.card-image {
  width: 100%;
  height: 200px;
  background: var(--green-forest);
  border-radius: 15px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  background: var(--green-forest);
  color: white;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed var(--border-color);
}

.card-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--orange-fire);
}

.card-price .currency {
  font-size: 1.2rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-content {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-large {
  max-width: 800px;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange-fire);
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--red-brick);
  transform: rotate(90deg);
}

.auth-form {
  padding: 1rem 0;
}

.auth-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--orange-fire);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-toggle {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.form-toggle a {
  color: var(--orange-fire);
  text-decoration: none;
  font-weight: 600;
}

.form-toggle a:hover {
  text-decoration: underline;
}

.alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(124, 154, 107, 0.1);
  border-left: 4px solid var(--green-moss);
  color: var(--text-primary);
}

.alert-error {
  background: rgba(166, 60, 46, 0.1);
  border-left: 4px solid var(--red-brick);
  color: var(--red-brick);
}

.checklist-detail {
  padding: 2rem 0;
}

.checklist-header {
  text-align: center;
  margin-bottom: 2rem;
}

.checklist-header img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.checklist-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.checklist-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--orange-fire);
  margin: 1rem 0;
}

.checklist-description {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

.checklist-features {
  background: linear-gradient(145deg, var(--beige-tent), var(--beige-tent-light));
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 5px solid var(--orange-fire);
}

.checklist-features h3 {
  margin-bottom: 1rem;
}

.checklist-features ul {
  list-style: none;
  padding: 0;
}

.checklist-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.checklist-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-moss);
  font-weight: 700;
  font-size: 1.2rem;
}

.purchase-section {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(145deg, var(--orange-fire), var(--orange-fire-light));
  border-radius: 15px;
  color: white;
}

.purchase-section .btn-primary {
  background: white;
  color: var(--orange-fire);
  font-size: 1.2rem;
  padding: 16px 32px;
}

.dashboard {
  padding: 2rem 0;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 3rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.empty-state svg {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  opacity: 0.3;
}

.footer {
  background: var(--bg-secondary);
  border-top: 3px dashed var(--green-forest);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-brand img {
  width: 50px;
  height: auto;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange-fire);
}

.footer-legal {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content {
  text-align: left;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--green-forest);
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--orange-fire);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--orange-fire-light);
}

.how-it-works-content {
  display: grid;
  gap: 3rem;
  margin: 3rem 0;
}

.step {
  background: linear-gradient(145deg, var(--beige-tent), var(--beige-tent-light));
  border-radius: 20px;
  padding: 2rem;
  border-left: 5px solid var(--green-forest);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 2rem;
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-fire-light));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.step h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.faq-section {
  margin: 4rem 0;
  padding-top: 3rem;
  border-top: 3px dashed var(--border-color);
}

.faq-item {
  background: linear-gradient(145deg, var(--beige-tent), var(--beige-tent-light));
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--green-moss);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--green-forest);
}

.cta-section {
  text-align: center;
  margin: 4rem 0 2rem;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, var(--green-forest), var(--green-forest-dark));
  border-radius: 20px;
  color: white;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    display: none;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

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

  .modal-content {
    padding: 1.5rem;
  }
}

.loading {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
}

.spinner {
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--orange-fire);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.logo-full span {
  display: none;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin: 1rem auto;
  display: block;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--border-color);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ===========================
   AUTH PAGE STYLES
   =========================== */

.auth-section {
  padding: 3rem 0 5rem;
  min-height: calc(100vh - 80px);
  background: linear-gradient(160deg, var(--bg-secondary) 0%, var(--bg-primary) 60%);
  display: flex;
  align-items: center;
}

.auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Side panel */
.auth-side {
  background: linear-gradient(160deg, var(--green-forest), var(--green-forest-dark));
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-side-inner { color: white; }

.auth-side-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.auth-side-title {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 0.75rem;
}

.auth-side-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.auth-side-perks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.auth-side-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.auth-perk-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-side-perks li strong {
  display: block;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 2px;
}

.auth-side-perks li span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* Form panel */
.auth-form-panel {
  background: var(--bg-primary);
  padding: 2.5rem;
  overflow-y: auto;
  max-height: 90vh;
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.75rem;
  border-bottom: 2px solid var(--border-color);
}

.auth-tab {
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--text-secondary);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.auth-tab:hover { color: var(--text-primary); }

.auth-tab.active {
  color: var(--orange-fire);
  border-bottom-color: var(--orange-fire);
}

.auth-form-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Form rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Input with icon */
.input-with-icon {
  position: relative;
}

.input-with-icon > svg:first-child {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

.input-with-icon input {
  padding-left: 42px !important;
}

/* Toggle password */
.input-password { position: relative; }

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px;
  transition: color 0.2s;
}

.toggle-password:hover { color: var(--orange-fire); }

/* Password strength meter */
.password-strength {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pwd-bar {
  flex: 1;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}

.pwd-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 0.3s, background 0.3s;
}

#pwd-label {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  min-width: 70px;
  color: var(--text-secondary);
}

/* Form utilities */
.required {
  color: var(--red-brick);
  font-size: 0.85rem;
}

.form-label-optional {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-left: 6px;
  background: var(--sand);
  padding: 1px 8px;
  border-radius: 40px;
}

.form-label-link {
  float: right;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--orange-fire);
  text-decoration: none;
}

.form-label-link:hover { text-decoration: underline; }

/* Select */
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.2s;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%235A5A5A' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select:focus {
  outline: none;
  border-color: var(--orange-fire);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Address section toggle */
.form-section-toggle {
  margin: 0.5rem 0 0;
}

.form-section-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px dashed var(--border-color);
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  width: 100%;
  text-align: left;
  transition: all 0.2s;
}

.form-section-btn:hover {
  border-color: var(--green-forest);
  color: var(--green-forest);
}

.form-section-hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
  flex: 1;
}

.toggle-arrow {
  margin-left: auto;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.form-section-address {
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Checkbox custom */
.form-checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--orange-fire);
  border-color: var(--orange-fire);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.checkbox-label a {
  color: var(--orange-fire);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-label a:hover { text-decoration: underline; }

/* Auth button */
.btn-auth {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
  margin-top: 0.5rem;
  border-radius: 12px;
}

/* Confirmation note */
.auth-confirmation-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: rgba(45, 90, 39, 0.06);
  border: 1px solid rgba(45, 90, 39, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 0.5rem;
}

.auth-confirmation-note svg { color: var(--green-forest); flex-shrink: 0; }

.auth-switch-hint {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.auth-switch-hint a {
  color: var(--orange-fire);
  font-weight: 600;
  text-decoration: none;
}

.auth-switch-hint a:hover { text-decoration: underline; }

/* Confirm email page */
.confirm-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.confirm-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.confirm-success-icon { background: rgba(45, 90, 39, 0.12); color: var(--green-forest); }
.confirm-error-icon   { background: rgba(166, 60, 46, 0.12); color: var(--red-brick); }
.confirm-warn-icon    { background: rgba(249, 115, 22, 0.1); color: var(--orange-fire); }
.confirm-info-icon    { background: rgba(30, 61, 95, 0.1); color: var(--blue-night); }

.confirm-box h1 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.confirm-box p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.confirm-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive auth */
@media (max-width: 768px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
    max-width: 480px;
    border-radius: 16px;
  }

  .auth-side { display: none; }

  .auth-form-panel {
    max-height: none;
    padding: 2rem 1.5rem;
  }

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

/* ===========================
   PRODUCT PAGE STYLES
   =========================== */

/* Breadcrumb */
.breadcrumb-nav {
  padding: 0.75rem 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--orange-fire); }
.breadcrumb-sep { color: var(--border-color); }
.breadcrumb-current { color: var(--text-primary); font-weight: 600; }

/* Product Hero */
.product-hero {
  padding: 3rem 0;
  background: linear-gradient(160deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.product-hero-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

/* Visual left */
.product-visual-wrapper {
  position: relative;
}

.product-cover {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 440px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.product-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  color: white;
}

.product-cover-badge {
  display: inline-block;
  background: var(--orange-fire);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 40px;
  width: fit-content;
}

.product-cover-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
}

.product-cover-icon {
  font-size: 2rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.product-bubble {
  position: absolute;
  background: white;
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  color: var(--grey-slate);
  white-space: nowrap;
}

[data-theme="dark"] .product-bubble {
  background: #333;
  color: #f5f5f5;
}

.product-bubble span { font-weight: 800; color: var(--orange-fire); }

.pb-top {
  top: -12px;
  right: -16px;
}

.pb-bottom {
  bottom: -12px;
  left: -16px;
}

/* Right content */
.product-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 90, 39, 0.1);
  color: var(--green-forest);
  border: 1px solid rgba(45, 90, 39, 0.2);
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-hero-content h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.product-hook {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.product-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-stars { color: var(--orange-fire-light); font-size: 1rem; letter-spacing: 2px; }
.product-reviews { font-size: 0.85rem; color: var(--text-secondary); font-weight: 600; }
.product-downloads {
  font-size: 0.8rem;
  background: rgba(45, 90, 39, 0.1);
  color: var(--green-forest);
  padding: 2px 10px;
  border-radius: 40px;
  font-weight: 700;
}

/* Purchase box */
.product-purchase-box {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.product-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--orange-fire);
  line-height: 1;
}

.product-currency {
  font-size: 1.8rem;
}

.product-price-desc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-once {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.product-forever {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-forest);
}

.btn-purchase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-fire-light));
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
  text-align: center;
}

.btn-purchase:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
}

.btn-purchase-sidebar {
  font-size: 0.95rem;
  padding: 14px 20px;
}

.btn-purchase-large {
  font-size: 1.15rem;
  padding: 18px 32px;
  width: auto;
  display: inline-flex;
}

.product-form { width: 100%; }

.product-login-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

.product-login-hint a {
  color: var(--orange-fire);
  text-decoration: none;
  font-weight: 600;
}

.product-guarantees {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.product-guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.product-guarantee-item svg { color: var(--green-moss); flex-shrink: 0; }

/* Urgency strip */
.product-urgency {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.product-urgency svg { color: var(--orange-fire); flex-shrink: 0; margin-top: 2px; }

/* Product body */
.product-body {
  padding: 3rem 0;
  background: var(--bg-primary);
}

.product-body-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: flex-start;
}

/* Product blocks */
.product-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.product-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.product-block h2 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

/* Pain list */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(166, 60, 46, 0.05);
  border-left: 3px solid var(--red-brick);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
}

.pain-icon {
  color: var(--red-brick);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.pain-conclusion {
  font-weight: 700;
  color: var(--green-forest);
  font-size: 1rem;
  padding: 12px 16px;
  background: rgba(45, 90, 39, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--green-forest);
}

/* Benefits list */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(124, 154, 107, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--green-moss);
  font-size: 0.95rem;
}

.benefit-icon {
  color: var(--green-moss);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.4;
}

/* Description complète */
.product-description-full {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Content preview */
.preview-intro {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.content-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.content-preview-cat {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 1rem;
  border-top: 3px solid var(--green-forest);
}

.cpc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cpc-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.cpc-count {
  font-size: 0.7rem;
  background: var(--green-forest);
  color: white;
  padding: 2px 8px;
  border-radius: 40px;
  font-weight: 700;
}

.cpc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cpc-list li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 3px 0;
  border-bottom: 1px dashed var(--border-color);
}

.cpc-list li:last-child { border-bottom: none; }

.cpc-more {
  font-style: italic;
  color: var(--orange-fire) !important;
  font-weight: 600;
}

.btn-show-more {
  margin-top: 1rem;
  background: transparent;
  border: 2px solid var(--green-forest);
  color: var(--green-forest);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-show-more:hover {
  background: var(--green-forest);
  color: white;
}

/* Product highlight block */
.product-block-highlight {
  background: linear-gradient(145deg, var(--beige-tent), var(--beige-tent-light));
  border-radius: 16px;
  padding: 2rem;
  border: none;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.included-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.included-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.included-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Product testimonial */
.product-testimonial {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 1.75rem;
  border-left: 5px solid var(--orange-fire);
}

.product-testimonial-stars {
  color: var(--orange-fire-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.product-testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.25rem;
  border: none;
  padding: 0;
}

.product-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--green-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.product-testimonial-author strong { display: block; font-size: 0.9rem; }
.product-testimonial-author span { font-size: 0.8rem; color: var(--text-secondary); }

/* Product FAQ */
.product-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-item {
  background: var(--bg-secondary);
  border-radius: 10px;
  border: 1.5px solid var(--border-color);
  overflow: hidden;
}

.pf-item[open] { border-color: var(--green-forest); }

.pf-item summary {
  padding: 0.875rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.pf-item summary::-webkit-details-marker { display: none; }
.pf-item summary::after { content: '+'; font-size: 1.3rem; color: var(--orange-fire); line-height: 1; }
.pf-item[open] summary::after { content: '−'; }

.pf-item p {
  padding: 0 1rem 0.875rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Sidebar */
.product-sidebar {
  position: sticky;
  top: 90px;
}

.product-sidebar-box {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
}

.psb-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--orange-fire);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.psb-price::after { content: " €"; font-size: 1.4rem; }

.psb-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.psb-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.psb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.psb-item svg { color: var(--green-moss); flex-shrink: 0; }

.psb-urgency {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.psb-urgency svg { color: var(--orange-fire); flex-shrink: 0; margin-top: 2px; }

/* Final CTA bar */
.product-final-cta {
  background: linear-gradient(135deg, var(--green-forest-dark), var(--green-forest));
  padding: 3rem 0;
}

.pfc-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.pfc-text h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.pfc-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.pfc-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.pfc-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

/* Related products */
.product-related { background: var(--bg-secondary); }

/* Responsive product page */
@media (max-width: 1024px) {
  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-visual-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .product-body-inner {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 640px) {
  .product-hero-content h1 { font-size: 1.8rem; }
  .included-grid { grid-template-columns: 1fr; }
  .pfc-inner { flex-direction: column; align-items: flex-start; }
  .pfc-action { align-items: flex-start; }
  .btn-purchase-large { width: 100%; }
  .content-preview-grid { grid-template-columns: 1fr; }
}

/* ===========================
   HOMEPAGE SPECIFIC STYLES
   =========================== */

/* Hero Home */
.hero-home {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-secondary) 0%, var(--bg-primary) 60%);
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(45, 90, 39, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-home-text {
  animation: fadeInUp 0.6s ease-out both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 90, 39, 0.1);
  color: var(--green-forest);
  border: 1px solid rgba(45, 90, 39, 0.2);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-forest);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-home-text h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  padding-bottom: 2px;
}

.btn-ghost:hover {
  color: var(--orange-fire);
  border-bottom-color: var(--orange-fire);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 8px 18px;
}

.mt-2 {
  margin-top: 2rem;
}

.hero-proof {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
}

.hero-proof-item strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.hero-proof-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.hero-proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
}

/* Hero visual - checklist preview */
.hero-home-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-checklist-preview {
  background: var(--bg-primary);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px var(--border-color);
  overflow: hidden;
  width: 100%;
  max-width: 340px;
}

.hcp-header {
  background: var(--bg-secondary);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.hcp-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.hcp-dot.red { background: #ff5f57; }
.hcp-dot.yellow { background: #febc2e; }
.hcp-dot.green { background: #28c840; }

.hcp-header span { margin-left: 4px; }

.hcp-body {
  padding: 16px;
}

.hcp-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin: 12px 0 8px;
}

.hcp-category:first-child { margin-top: 0; }

.hcp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.hcp-item.checked {
  background: rgba(45, 90, 39, 0.06);
  color: var(--text-secondary);
  text-decoration: line-through;
  text-decoration-color: var(--green-moss);
}

.hcp-check {
  color: var(--green-moss);
  font-weight: 700;
  width: 18px;
  flex-shrink: 0;
}

.hcp-uncheck {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
}

.hero-float-badge {
  position: absolute;
  background: white;
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--grey-slate);
  white-space: nowrap;
}

[data-theme="dark"] .hero-float-badge {
  background: #333;
  color: #f5f5f5;
}

.hero-float-badge.top-right {
  top: -12px;
  right: -16px;
}

.hero-float-badge.bottom-left {
  bottom: -12px;
  left: -16px;
}

/* Categories strip */
.categories-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.cats-strip-inner {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s;
}

.cat-pill:hover {
  border-color: var(--green-forest);
  background: var(--green-forest);
  color: white;
  transform: translateY(-2px);
}

.cat-pill-icon { font-size: 1rem; }

.cat-pill-count {
  background: var(--sand);
  color: var(--grey-slate);
  border-radius: 40px;
  padding: 1px 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.cat-pill:hover .cat-pill-count {
  background: rgba(255,255,255,0.25);
  color: white;
}

/* Section utilities */
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-fire);
  display: block;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

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

/* Featured section */
.featured-section { background: var(--bg-primary); }

.card-icon-placeholder {
  font-size: 4rem;
}

/* Why section */
.why-section {
  background: var(--bg-secondary);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.why-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(45, 90, 39, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-forest);
  margin-top: 2px;
}

.why-list li strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.why-list li span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Why card stack */
.why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.why-card-stack {
  position: relative;
  width: 280px;
  height: 360px;
}

.why-card {
  position: absolute;
  width: 260px;
  border-radius: 20px;
  top: 50%;
  left: 50%;
}

.wc-back {
  background: var(--green-moss);
  height: 300px;
  transform: translate(-50%, -50%) rotate(-6deg);
  opacity: 0.3;
}

.wc-mid {
  background: var(--green-forest);
  height: 310px;
  transform: translate(-50%, -50%) rotate(-3deg);
  opacity: 0.6;
}

.wc-front {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transform: translate(-50%, -50%) rotate(0deg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wc-icon { font-size: 2.5rem; }

.wc-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.wc-items { display: flex; flex-direction: column; gap: 8px; }

.wc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.wc-check {
  color: var(--green-moss);
  font-weight: 700;
}

.wc-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--orange-fire);
  margin-top: 4px;
}

/* How section */
.how-section {
  background: var(--bg-primary);
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.step-item {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  border-top: 4px solid var(--orange-fire);
  text-align: center;
}

.step-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-fire-light));
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-arrow {
  color: var(--border-color);
  flex-shrink: 0;
}

/* Categories visual grid */
.cats-visual-section { background: var(--bg-secondary); }

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

.cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.cat-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.cat-card:hover .cat-card-img {
  transform: scale(1.06);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  transition: background 0.3s;
}

.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(45,90,39,0.85) 0%, rgba(45,90,39,0.4) 60%, transparent 100%);
}

.cat-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cat-card-overlay h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.cat-card-overlay p {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: none;
}

.cat-card:hover .cat-card-overlay p {
  display: block;
}

.cat-card-count {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 40px;
  display: inline-block;
  backdrop-filter: blur(4px);
}

/* Testimonials */
.testimonials-section { background: var(--bg-primary); }

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

.testimonial-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  border-top: 4px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.featured-testimonial {
  border-top-color: var(--orange-fire);
  background: linear-gradient(145deg, var(--beige-tent), var(--beige-tent-light));
}

.testimonial-stars {
  color: var(--orange-fire-light);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--green-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-home-section { background: var(--bg-secondary); }

.faq-home-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.faq-home-left h2 {
  margin-bottom: 1rem;
}

.faq-home-left p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-home-left a {
  color: var(--orange-fire);
  text-decoration: none;
  font-weight: 600;
}

.faq-home-left a:hover {
  text-decoration: underline;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item-acc {
  background: var(--bg-primary);
  border-radius: 12px;
  border: 1.5px solid var(--border-color);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item-acc[open] {
  border-color: var(--green-forest);
}

.faq-item-acc summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-primary);
}

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

.faq-item-acc summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange-fire);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item-acc[open] summary::after {
  content: '−';
}

.faq-item-acc p {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Home */
.cta-home-section {
  background: linear-gradient(135deg, var(--green-forest-dark), var(--green-forest));
  padding: 5rem 0;
  margin-top: 4rem;
}

.cta-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-home-text h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-home-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-home-text .btn-primary {
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-fire-light));
}

.cta-home-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  height: 300px;
}

.cta-home-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive homepage */
@media (max-width: 900px) {
  .hero-home-inner,
  .why-inner,
  .cta-home-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-home-visual {
    display: none;
  }

  .why-visual {
    display: none;
  }

  .cta-home-visual {
    height: 200px;
  }

  .faq-home-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-home-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .steps-row {
    flex-direction: column;
    align-items: stretch;
  }

  .step-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .step-item {
    max-width: 100%;
  }

  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-card { height: 200px; }

  .hero-proof {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-proof-divider { display: none; }

  .cats-strip-inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .cat-pill { flex-shrink: 0; }
}
