/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-family: var(--ff-ui);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  line-height: 1;
  white-space: nowrap;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent-deep);
  color: #fff;
  border-color: var(--accent-deep);
}
.btn-primary:hover { background: var(--text); border-color: var(--text); }
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn-wa:hover { background: #1ebd5a; border-color: #1ebd5a; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--text); background: var(--surface); }
.btn-light {
  background: rgba(255,255,255,0.94);
  color: var(--text);
  border-color: rgba(255,255,255,0.94);
}
.btn-light:hover { background: #fff; border-color: #fff; }
.btn-sm { padding: 9px 14px; font-size: 0.84rem; min-height: 38px; }

/* Eyebrow + section heading */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 24ch;
}
.section-title em {
  color: var(--accent-deep);
  font-style: italic;
}
.section-lead {
  font-size: 1.02rem;
  color: var(--text-2);
  max-width: 56ch;
  margin-bottom: 36px;
}
.section-head { margin-bottom: 36px; }
.section-head--centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head--centered .eyebrow,
.section-head--centered .section-title,
.section-head--centered .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Cards (LAY-1 = card line) */
.c-line {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  background: var(--surface);
  transition: border-color var(--transition), transform var(--transition);
}
.c-line:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.c-line__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.c-line__icon svg { width: 24px; height: 24px; }
.c-line__num {
  font-family: var(--ff-display);
  color: var(--accent);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 6px;
  display: block;
}
.c-line__title {
  font-family: var(--ff-display);
  font-size: 1.32rem;
  margin-bottom: 10px;
  color: var(--text);
}
.c-line__text {
  font-size: 0.96rem;
  color: var(--text-2);
  margin-bottom: 14px;
  line-height: 1.55;
}
.c-line__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.c-line__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.4;
}
.c-line__list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Pastilles USP */
.usp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}
.usp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  font-family: var(--ff-ui);
  font-size: 0.86rem;
  color: var(--text);
  font-weight: 500;
}
.usp-pill svg { width: 14px; height: 14px; color: var(--accent-deep); }

/* Chips zone */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--text-2);
}
.chip svg { width: 13px; height: 13px; color: var(--accent); }

/* Open badge */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  color: var(--text-2);
}
.open-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-mute);
  flex-shrink: 0;
}
.open-badge.is-open .dot { background: #2DAA67; box-shadow: 0 0 0 4px rgba(45,170,103,0.18); }
.open-badge.is-closed .dot { background: #C66060; }

/* Form */
.form-grid {
  display: grid;
  gap: 16px;
}
.form-field { display: grid; gap: 6px; min-width: 0; }
.form-field label {
  font-family: var(--ff-ui);
  font-size: 0.86rem;
  color: var(--text-2);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 139, 127, 0.16);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-mute); }
.form-feedback {
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: var(--r-md);
  margin-top: 6px;
}
.form-feedback.is-ok { background: rgba(45,170,103,0.12); color: #1F633B; }
.form-feedback.is-err { background: rgba(198,96,96,0.12); color: #8E3030; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 22, 0.94);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lb-image {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-family: var(--ff-ui);
  font-weight: 300;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background var(--transition);
}
.lb-close { top: 18px; right: 18px; }
.lb-prev  { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }

/* Modal mentions */
.ml-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ml-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 22, 0.5);
}
.ml-box {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  max-width: 520px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-lg);
}
.ml-box h2 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.ml-box h3 {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 18px 0 6px;
  color: var(--accent-deep);
}
.ml-box p { font-size: 0.94rem; line-height: 1.55; color: var(--text-2); }
.ml-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-mute);
  font-size: 1.4rem;
}
.ml-close:hover { color: var(--text); background: var(--bg-alt); }
