/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.1;
  letter-spacing: .005em;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 14px 22px; font-size: 1rem; min-height: 50px; }
.btn-block { width: 100%; }

.btn-primary{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(46,91,62,0.18);
}
.btn-primary:hover{ background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }

.btn-outline-light{
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline-light:hover{
  background: rgba(255,255,255,0.20);
  border-color: #fff;
  color: #fff;
}

.btn-ghost{
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
  padding: 10px 14px;
  font-size: 0.88rem;
  min-height: 40px;
}
.btn-ghost:hover{ background: var(--surface); border-color: var(--accent); color: var(--accent); }

.btn-wa{
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn-wa:hover{ background: #1FB955; border-color: #1FB955; color: #fff; }

/* Cards */
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}

/* Hero trust badge */
.hero-trust{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-trust__stars { display: inline-flex; gap: 1px; }
.hero-trust__txt { color: #fff; }

/* Section heads */
.section-eyebrow{
  display: inline-block;
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 0.74rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -.005em;
  color: var(--text);
  margin: 0 0 16px;
  max-width: 28ch;
}
.section-lede{
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 0 38px;
}

.section-head-row{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px){
  .section-head-row{
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }
  .section-head-row > div { max-width: 64%; }
  .section-head-row .section-lede { margin-bottom: 0; }
}

.link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  transition: gap .25s ease, border-color .25s ease;
}
.link-arrow:hover{ gap: 12px; border-bottom-color: var(--accent); }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(15,15,15,0.92);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 6px; }
.lb-close, .lb-prev, .lb-next{
  position: absolute;
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: background .2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.20); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Mentions modal */
.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,15,15,0.55);
  backdrop-filter: blur(2px);
}
.ml-box{
  position: relative;
  background: var(--surface);
  color: var(--text);
  max-width: 540px;
  width: 100%;
  border-radius: var(--r-lg);
  padding: 28px;
  max-height: 86dvh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.ml-box h2{
  font-family: var(--ff-display);
  font-size: 1.5rem;
  margin: 0 0 16px;
}
.ml-box p{ color: var(--text-2); font-size: 0.95rem; margin: 0 0 12px; }
.ml-close{
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: grid; place-items: center;
}
.ml-close:hover{ background: var(--accent); color: #fff; border-color: var(--accent); }

/* Form */
.contact-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field label{
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}
.field input,
.field textarea{
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--text);
  font-family: var(--ff-body);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.form-note{
  font-size: 0.88rem;
  color: var(--text-2);
  margin: 0;
  min-height: 1.2em;
}
.form-note.is-ok { color: var(--accent); font-weight: 600; }
.form-note.is-err { color: #C44A2B; font-weight: 600; }
