:root {
  --bg: #fff8ef;
  --soft: #f7efe3;
  --card: #ffffff;
  --action: #d97745;
  --action-dark: #b95f32;
  --trust: #6c8f5b;
  --text: #2f2f2f;
  --muted: #6b6b6b;
  --border: #e8dccb;
  --shadow: 0 18px 45px rgba(99, 68, 39, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Manrope", Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button {
  cursor: pointer;
  border: 0;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}
img, svg { max-width: 100%; }
main, section, header, footer, form, .providerCard, .serviceGuidePanel, .searchPanel { min-width: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand, nav, .heroActions, .inlineFilters, .facts, .modalHeader {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

.brandLogo {
  display: block;
  width: clamp(150px, 18vw, 230px);
  height: auto;
  object-fit: contain;
}

.brandMark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--trust);
  color: white;
  font-size: 0.78rem;
}

nav {
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 0;
}

.technicianCta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--trust);
  color: white;
  font-weight: 900;
}

.technicianCta:hover {
  filter: brightness(0.95);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: center;
  padding: 56px clamp(18px, 5vw, 72px) 42px;
  background:
    linear-gradient(120deg, rgba(255,248,239,0.95), rgba(247,239,227,0.78)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.hero > * {
  min-width: 0;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.eyebrow {
  color: var(--trust);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.heroActions { gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.primary, .secondary, .secondaryButton, .ghost {
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 100%;
}

.primary { background: var(--action); color: white; box-shadow: 0 10px 24px rgba(217, 119, 69, 0.25); }
.primary:hover { background: var(--action-dark); }
.secondary, .secondaryButton { background: #fff; color: var(--action-dark); border: 1px solid var(--border); }
.ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.small { min-height: 38px; padding: 8px 12px; }
.full { width: 100%; text-align: center; }

.searchPanel, .form, .providerCard, .serviceGuidePanel, .servicePopup, .providerModal, .requestModal, .adminPanel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.searchPanel {
  padding: 22px;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

input, select, textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fffdf9;
  color: var(--text);
  outline-color: var(--action);
}

input[type="file"] {
  padding: 10px;
  background: #fffdf9;
}

textarea { resize: vertical; }

.section {
  padding: 70px clamp(18px, 5vw, 72px);
}

.soft { background: var(--soft); }
.sectionHeader { max-width: 780px; margin-bottom: 26px; }
.sectionHeader.row { max-width: none; display: flex; justify-content: space-between; gap: 18px; align-items: end; }
h2 { margin: 0; font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.12; letter-spacing: 0; }
h3 { margin: 0; font-size: 1.04rem; }
.muted, .description, .future p { color: var(--muted); line-height: 1.65; }

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

.providerCard {
  padding: 20px;
  box-shadow: 0 10px 26px rgba(99, 68, 39, 0.08);
}

.providerCarousel {
  display: grid;
  gap: 18px;
}

.compactProviderCard {
  min-height: 390px;
  align-content: start;
  justify-items: start;
  overflow: hidden;
  padding: 0;
}

.providerCompactName {
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
}

.providerPhoto {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--trust);
  font-size: 2.4rem;
  font-weight: 900;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

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

.providerCardBody {
  width: 100%;
  display: grid;
  gap: 9px;
  padding: 16px 18px 4px;
}

.providerCardBody p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.providerMiniFacts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.providerMiniFacts span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff8ef;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.compactProviderCard .secondary {
  width: calc(100% - 36px);
  margin: 12px 18px 18px;
}

.carouselControls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.carouselControls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.serviceGuide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  background: var(--soft);
}

.serviceGuidePanel {
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 10px 26px rgba(99, 68, 39, 0.08);
}

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

.serviceItem {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--text);
  text-align: left;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.serviceItem:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 143, 91, 0.45);
  box-shadow: 0 10px 18px rgba(99, 68, 39, 0.08);
}

.serviceIcon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #eef4ea;
  color: var(--trust);
  overflow: hidden;
}

.serviceIcon svg,
.serviceItem .serviceIcon svg,
button.serviceItem .serviceIcon svg {
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  max-height: 23px !important;
  display: block;
  color: var(--trust);
  flex: 0 0 auto;
}

.serviceIcon.large {
  width: 56px;
  height: 56px;
  min-width: 56px;
}

.serviceIcon.large svg {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
}

.popupTitle {
  display: flex;
  align-items: center;
  gap: 14px;
}

.servicePopup {
  width: min(100%, 560px);
  padding: 22px;
}

.servicePopup p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.processGraphic {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.processGraphic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(var(--trust), var(--action));
  opacity: 0.28;
  transform: translateX(-50%);
}

.processCenter {
  display: grid;
  place-items: center;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: var(--trust);
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(108, 143, 91, 0.22);
  z-index: 1;
  grid-column: 1 / -1;
  order: -1;
}

.processStep {
  position: relative;
  width: auto;
  min-height: 112px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 8px 18px rgba(99, 68, 39, 0.06);
  z-index: 1;
}

.processStep span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--action);
  color: white;
  font-weight: 900;
}

.processStep p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.processStep1,
.processStep2,
.processStep3,
.processStep4 {
  inset: auto;
  transform: none;
}

.inlineFilters { gap: 10px; flex-wrap: wrap; }
.inlineFilters select { min-width: 170px; }

.providerCard {
  display: grid;
  gap: 14px;
}

.providerAvatar {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--trust);
  font-size: 1.5rem;
  font-weight: 900;
  overflow: hidden;
}

.providerAvatar img { width: 100%; height: 100%; object-fit: cover; }
.providerMeta { display: grid; gap: 5px; }
.providerMeta p, .facts, footer { color: var(--muted); }
.badge {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef4ea;
  color: var(--trust);
  font-size: 0.78rem;
  font-weight: 900;
}

.facts { justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 0.84rem; }
.empty { color: var(--muted); background: #fff; border: 1px dashed var(--border); padding: 18px; border-radius: 8px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.form {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.dateTimeGroup {
  display: grid;
  gap: 12px;
}

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

.multiSelectLabel {
  position: relative;
}

.multiSelect {
  position: relative;
}

.multiSelectTrigger {
  width: 100%;
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--text);
  text-align: left;
  min-width: 0;
}

.multiSelectTrigger span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multiSelectMenu {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 6px);
  z-index: 15;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.multiSelectMenu input {
  min-height: 40px;
}

.multiSelectOptions {
  max-height: 220px;
  overflow: auto;
  display: grid;
  gap: 6px;
}

.multiSelectOptions button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fffdf9;
  color: var(--text);
  text-align: left;
}

.multiSelectOptions button span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: white;
  font-size: 0.65rem;
  font-weight: 900;
}

.multiSelectOptions button.selected {
  background: #eef4ea;
}

.multiSelectOptions button.selected span {
  background: var(--trust);
  border-color: var(--trust);
}

.smallEmpty {
  margin: 0;
  padding: 10px;
  font-size: 0.86rem;
}

.compact { max-width: 440px; box-shadow: none; }
.notice, .formMessage {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #eef4ea;
  color: var(--trust);
  font-weight: 800;
}

.whatsappActions {
  display: grid;
  gap: 10px;
}

.whatsappButton {
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--trust);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(108, 143, 91, 0.22);
}

.whatsappButton:hover {
  filter: brightness(0.95);
}

.recommendationPanel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffdf9;
}

.recommendationPanel h3,
.recommendationPanel p {
  margin: 0;
}

.recommendationPanel p {
  color: var(--muted);
  line-height: 1.5;
}

.recommendationList {
  display: grid;
  gap: 10px;
}

.recommendationItem {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

.recommendationCheck {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text);
}

.recommendationCheck input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  accent-color: var(--trust);
}

.recommendationCheck span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.recommendationCheck small {
  color: var(--muted);
  line-height: 1.4;
}

.miniWhatsapp {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: #eef4ea;
  color: var(--trust);
  font-weight: 900;
}

.future {
  background: var(--trust);
  color: white;
}
.future p { color: rgba(255,255,255,0.82); max-width: 760px; }

.blogHero {
  min-height: 44vh;
  display: grid;
  align-content: center;
  background: var(--soft);
}

.blogHero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.05;
}

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

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

.articleCard {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 10px 26px rgba(99, 68, 39, 0.08);
}

.articleCard img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.articleCardBody {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.articleCardBody h2 {
  font-size: 1.24rem;
  line-height: 1.25;
}

.articleCardBody p,
.articleMeta,
.breadcrumb {
  color: var(--muted);
}

.articleTag {
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: #eef4ea;
  color: var(--trust);
  font-size: 0.76rem;
  font-weight: 900;
}

.articlePage {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 18px 72px;
}

.breadcrumb {
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--trust);
  font-weight: 800;
}

.articleMeta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
  font-size: 0.9rem;
}

.articlePage h1 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.08;
}

.articleHeroImage {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 28px;
}

.articlePage p,
.articlePage li {
  color: var(--muted);
  line-height: 1.75;
}

.articlePage h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.articleNotice {
  margin-top: 36px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--muted);
}

.articleCta {
  margin-top: 28px;
  padding: 26px;
  border-radius: 8px;
  background: #243d29;
  color: white;
}

.articleCta h2,
.articleCta p {
  color: white;
}

.technicianPage {
  background: var(--soft);
}

.technicianHero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 640px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 72px clamp(22px, 7vw, 120px);
  background:
    linear-gradient(110deg, rgba(108, 143, 91, 0.94), rgba(47, 47, 47, 0.88)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.technicianIntro {
  color: white;
  display: grid;
  gap: 20px;
}

.technicianIntro .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.technicianIntro h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
}

.technicianIntro p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.65;
}

.technicianIntro ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 10px 0;
  list-style: none;
}

.technicianIntro li {
  position: relative;
  padding-left: 34px;
  color: white;
  line-height: 1.5;
  font-weight: 700;
}

.technicianIntro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #a8c79a;
}

.technicianIntro li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 7px;
  height: 12px;
  border-right: 2px solid #dff0d8;
  border-bottom: 2px solid #dff0d8;
  transform: rotate(40deg);
}

.timeNote {
  font-weight: 800;
}

.technicianFormPanel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(47, 47, 47, 0.2);
  padding: clamp(20px, 4vw, 34px);
}

.technicianFormPanel h2 {
  margin-bottom: 10px;
}

.technicianFormPanel .form {
  margin-top: 20px;
  border: 0;
  box-shadow: none;
  padding: 0;
}

footer {
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--border);
}

.siteFooter {
  padding: 42px clamp(18px, 6vw, 96px) 24px;
  background: #243d29;
  color: rgba(255, 255, 255, 0.9);
  border-top: 0;
}

.footerGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  gap: clamp(28px, 6vw, 84px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footerBrand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.footerLogo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.siteFooter .brandLogo {
  width: min(220px, 100%);
  filter: brightness(0) invert(1);
}

.siteFooter p,
.siteFooter a {
  color: rgba(255, 255, 255, 0.86);
}

.siteFooter p {
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}

.siteFooter h3 {
  color: white;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.siteFooter .footerGrid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.siteFooter a:hover {
  color: white;
}

.socialLinks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.socialLinks a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.footerBottom {
  padding-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.legalPage {
  background: var(--bg);
}

.legalHero {
  padding: 58px clamp(18px, 6vw, 96px);
  background: var(--soft);
}

.legalHero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
}

.legalHero p:last-child {
  color: var(--muted);
}

.compactLegal {
  padding-bottom: 24px;
}

.legalContent,
.claimSection {
  max-width: 980px;
  margin: 0 auto;
  padding: 46px 18px 70px;
}

.legalContent {
  display: grid;
  gap: 16px;
}

.legalContent h2 {
  font-size: 1.4rem;
  margin-top: 14px;
}

.legalContent p,
.legalContent li {
  color: var(--muted);
  line-height: 1.75;
}

.legalContent a {
  color: var(--action-dark);
  font-weight: 800;
}

.claimForm {
  box-shadow: none;
  border: 0;
  padding: 0;
}

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

.claimDeclaration {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffdf9;
  font-weight: 700;
}

.claimDeclaration input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
}

.claimSubmit {
  width: min(100%, 240px);
}

.modalBackdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(47, 47, 47, 0.56);
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: auto;
}

.providerModal, .requestModal, .adminPanel {
  width: min(100%, 960px);
  max-height: 92vh;
  overflow: auto;
  padding: 22px;
  background: var(--card);
  isolation: isolate;
  position: relative;
  z-index: 1000;
}

.providerModal {
  width: min(100%, 760px);
}

.requestModal {
  width: min(100%, 720px);
}

.requestModal .form {
  box-shadow: none;
  border: 0;
  padding: 0;
}

.providerDetails {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 14px;
}

.providerDetails p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.providerDetails p:last-child {
  grid-column: 1 / -1;
}

.providerDetails strong {
  color: var(--text);
}

.modalActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.modalHeader { justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.adminContent { display: grid; gap: 14px; }
.adminList { display: grid; gap: 10px; }
.adminItem {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffdf9;
}
.adminItem button, .adminItem select { width: fit-content; min-width: 140px; }
.adminItem button {
  min-height: 38px;
  border-radius: 8px;
  background: var(--trust);
  color: white;
  font-weight: 800;
  padding: 8px 12px;
}
.adminItem .danger { background: #9b6252; }

@media (max-width: 1100px) {
  .section {
    padding-inline: 28px;
  }

  .hero {
    padding-inline: 28px;
  }

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

@media (max-width: 900px) {
  .hero, .split { grid-template-columns: 1fr; }
  .technicianHero { grid-template-columns: 1fr; }
  .footerGrid { grid-template-columns: 1fr; }
  .serviceGuide { grid-template-columns: 1fr; }
  .blogList, .articleCards { grid-template-columns: 1fr; }
  .providerGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sectionHeader.row {
    display: grid;
    align-items: start;
  }
  .inlineFilters {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inlineFilters select {
    min-width: 0;
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .technicianHero {
    min-height: auto;
    padding: 48px 24px;
  }

  .searchPanel {
    max-width: 560px;
  }

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

@media (max-width: 720px) {
  .topbar {
    align-items: start;
    flex-direction: column;
    padding: 12px 16px;
  }
  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }
  nav a, nav button {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    text-align: center;
    font-size: 0.86rem;
  }
  .technicianCta {
    min-height: 38px;
    border-radius: 8px;
    padding: 8px 10px;
  }
  .hero {
    min-height: auto;
    padding: 30px 16px;
    gap: 22px;
  }
  .technicianHero {
    padding: 34px 14px;
    gap: 22px;
  }
  .technicianIntro h1 {
    font-size: 2rem;
  }
  .technicianIntro p {
    font-size: 0.98rem;
  }
  .technicianFormPanel {
    padding: 16px;
  }
  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }
  .lead {
    font-size: 1rem;
  }
  .section {
    padding: 44px 16px;
  }
  h2 {
    font-size: 1.85rem;
    line-height: 1.15;
  }
  .serviceList, .providerGrid, .providerDetails { grid-template-columns: 1fr; }
  .formTwo { grid-template-columns: 1fr; }
  .serviceList {
    gap: 10px;
  }
  .serviceItem,
  button.serviceItem {
    width: 100%;
    min-height: 56px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 12px;
    padding: 12px;
    background: #fffdf9;
    color: var(--text);
    text-align: left;
    overflow: hidden;
  }
  .serviceItem .serviceIcon {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }
  .serviceItem > span:last-child {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--text);
  }
  .recommendationItem { grid-template-columns: 1fr; }
  .inlineFilters {
    grid-template-columns: 1fr;
  }
  .inlineFilters, .inlineFilters select { width: 100%; }
  .serviceGuidePanel,
  .searchPanel,
  .form,
  .providerCard {
    padding: 16px;
  }
  .compactProviderCard {
    min-height: auto;
  }
  .providerPhoto {
    aspect-ratio: 16 / 10;
  }
  .carouselControls {
    flex-wrap: wrap;
  }
  .modalBackdrop {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
  }
  .providerModal, .requestModal, .adminPanel, .servicePopup {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 16px;
    overflow-y: auto;
    border-radius: 8px;
    background: var(--card);
    box-shadow: 0 18px 48px rgba(47, 47, 47, 0.22);
  }
  .modalHeader {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .modalHeader .ghost {
    width: 100%;
  }
  .popupTitle {
    align-items: start;
    width: 100%;
  }
  .modalActions {
    display: grid;
  }
  .timeRange { grid-template-columns: 1fr; }
  .processGraphic { grid-template-columns: 1fr; }
  .processGraphic::before { display: none; }
  .processStep,
  .processStep1,
  .processStep2,
  .processStep3,
  .processStep4 {
    width: 100%;
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 1rem;
  }

  .brandLogo {
    width: 150px;
  }

  .brandMark {
    width: 38px;
    height: 38px;
  }

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

  .hero {
    padding: 24px 14px;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

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

  .heroActions .primary,
  .heroActions .secondaryButton {
    width: 100%;
  }

  .section {
    padding: 38px 14px;
  }

  .sectionHeader {
    margin-bottom: 18px;
  }

  h2 {
    font-size: 1.55rem;
  }

  .serviceGuide {
    gap: 14px;
  }

  .serviceItem {
    min-height: 54px;
    gap: 10px;
  }

  .serviceIcon {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .serviceIcon svg,
  .serviceItem .serviceIcon svg,
  button.serviceItem .serviceIcon svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
  }

  .providerPhoto {
    aspect-ratio: 4 / 3;
    font-size: 2rem;
  }

  .providerCompactName {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

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

  .carouselControls span {
    text-align: center;
  }

  .providerAvatar {
    width: 52px;
    height: 52px;
  }

  .popupTitle {
    gap: 10px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .providerDetails {
    gap: 9px;
  }

  .recommendationCheck {
    align-items: flex-start;
  }

  .whatsappButton,
  .miniWhatsapp,
  .primary,
  .secondary,
  .secondaryButton,
  .ghost {
    width: 100%;
  }

  .multiSelectMenu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 14px;
    max-height: 70vh;
    overflow: auto;
  }
}

@media (max-width: 360px) {
  .topbar,
  .hero,
  .section,
  footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero h1 {
    font-size: 1.72rem;
  }

  h2 {
    font-size: 1.38rem;
  }

  .lead,
  .muted,
  .servicePopup p {
    font-size: 0.95rem;
  }

  .serviceGuidePanel,
  .searchPanel,
  .form,
  .providerCard,
  .providerModal,
  .requestModal,
  .adminPanel {
    padding: 12px;
  }

  .processStep {
    padding: 12px;
  }
}
