﻿:root {
  color-scheme: light;
  --bg: #f6f5f1;
  --ink: #1f2a28;
  --muted: #63706d;
  --line: #d8ded9;
  --panel: #ffffff;
  --brand: #168a4a;
  --brand-dark: #0f6437;
  --accent: #111111;
  --danger: #a2382c;
  --shadow: 0 18px 60px rgba(22, 37, 32, .12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.landing-hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(22, 138, 74, .24), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .64) 48%, rgba(0, 0, 0, .24) 100%),
    url("hero-modelo-verde.svg") center / cover no-repeat;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.nav-brand img {
  width: 138px;
  max-height: 66px;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, .38);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 8px;
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
  width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(0, 0, 0, .42);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-actions a,
.hero-primary,
.hero-secondary {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.nav-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 6px;
}

.nav-actions a:hover {
  background: rgba(255, 255, 255, .12);
}

.nav-whatsapp,
.hero-primary {
  background: var(--brand);
}

.instagram-icon {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
  flex: 0 0 auto;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.instagram-icon::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.nav-whatsapp:hover,
.hero-primary:hover {
  background: var(--brand-dark) !important;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
  gap: 34px;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  min-height: 500px;
  margin: 0 auto;
  padding: 36px 0 64px;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  margin: 0 0 16px;
  background: var(--brand);
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: #fff;
  max-width: 720px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.02;
  text-align: left;
  white-space: normal;
}

.hero-text {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.5;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 0 18px;
}

.hero-secondary {
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(0, 0, 0, .28);
}

.hero-secondary:hover {
  background: rgba(255, 255, 255, .12);
}

.hours-card {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-top: 5px solid var(--brand);
  background: rgba(0, 0, 0, .68);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.hours-card span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hours-card strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.25;
}

.hours-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.45;
}

.hours-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.hours-card a:hover {
  background: var(--brand-dark);
}

.landing-section,
.service-strip {
  width: min(1240px, calc(100% - 32px));
  margin: 24px auto 0;
}

.landing-section {
  display: grid;
  gap: 18px;
  padding: 34px 0 8px;
}

.section-heading {
  display: grid;
  gap: 6px;
}

.section-heading p {
  margin: 0;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-heading h2 {
  color: #000;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
}

.category-grid,
.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-grid article,
.service-strip div {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(22, 37, 32, .08);
}

.category-grid article {
  min-height: 178px;
  align-content: start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.category-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: rgba(22, 138, 74, .08);
}

.category-grid article:hover {
  transform: translateY(-4px);
  border-color: #f2b47d;
  box-shadow: 0 20px 46px rgba(22, 37, 32, .13);
}

.category-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 138, 74, .18), rgba(22, 138, 74, .04)),
    #edf8f1;
  border: 1px solid #f5c499;
}

.category-icon::before,
.category-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-basic::before {
  inset: 13px 10px 12px;
  background: #111;
  clip-path: polygon(12% 100%, 28% 18%, 72% 18%, 88% 100%);
}

.icon-basic::after {
  left: 12px;
  right: 12px;
  top: 18px;
  height: 4px;
  background: var(--brand);
}

.icon-plumbing::before {
  left: 11px;
  top: 14px;
  width: 25px;
  height: 18px;
  border: 5px solid #111;
  border-right-color: transparent;
  border-radius: 14px 0 0 14px;
}

.icon-plumbing::after {
  right: 8px;
  top: 20px;
  width: 14px;
  height: 6px;
  background: var(--brand);
}

.icon-electric::before {
  left: 16px;
  top: 8px;
  width: 15px;
  height: 30px;
  background: #111;
  clip-path: polygon(58% 0, 20% 46%, 48% 46%, 35% 100%, 82% 38%, 55% 38%);
}

.icon-electric::after {
  right: 9px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}

.icon-finish::before {
  left: 10px;
  top: 11px;
  width: 26px;
  height: 26px;
  background:
    linear-gradient(90deg, transparent 47%, #fff 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, #fff 48% 52%, transparent 53%),
    #111;
  transform: rotate(4deg);
}

.icon-finish::after {
  right: 8px;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--brand);
}

.icon-hardware::before {
  left: 11px;
  top: 20px;
  width: 27px;
  height: 7px;
  border-radius: 999px;
  background: #111;
  transform: rotate(-32deg);
}

.icon-hardware::after {
  left: 24px;
  top: 9px;
  width: 8px;
  height: 27px;
  border-radius: 999px;
  background: var(--brand);
  transform: rotate(-32deg);
}

.icon-tools::before {
  left: 12px;
  top: 12px;
  width: 23px;
  height: 23px;
  border: 6px solid #111;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
}

.icon-tools::after {
  left: 23px;
  top: 21px;
  width: 7px;
  height: 20px;
  border-radius: 999px;
  background: var(--brand);
  transform: rotate(-45deg);
}

.icon-paint::before {
  left: 10px;
  top: 13px;
  width: 26px;
  height: 17px;
  border-radius: 4px 4px 8px 8px;
  background: #111;
}

.icon-paint::after {
  left: 16px;
  top: 26px;
  width: 12px;
  height: 13px;
  border-radius: 0 0 8px 8px;
  background: var(--brand);
}

.icon-safety::before {
  left: 10px;
  top: 15px;
  width: 26px;
  height: 17px;
  border-radius: 18px 18px 5px 5px;
  background: #111;
}

.icon-safety::after {
  left: 8px;
  top: 28px;
  width: 30px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
}

.category-grid strong,
.service-strip strong {
  position: relative;
  z-index: 1;
  color: #000;
  font-size: 16px;
}

.category-grid span,
.service-strip span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.service-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 14px 34px rgba(22, 37, 32, .07);
}

.service-strip div {
  border: 0;
  border-left: 4px solid var(--brand);
  box-shadow: none;
  background: #fbfaf6;
}

.page-hub {
  display: grid;
  gap: 18px;
  width: min(1240px, calc(100% - 32px));
  margin: 24px auto 0;
  border: 1px solid #2e2d2a;
  background: #1f1f1d;
  color: #fff;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(22, 37, 32, .16);
}

.home-hub {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

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

.page-hub-grid a {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  min-height: 160px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .72);
  padding: 18px;
  text-decoration: none;
}

.page-hub-grid a::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(22, 138, 74, .12);
}

.page-hub-grid a:hover {
  border-color: rgba(22, 138, 74, .62);
  background: rgba(255, 255, 255, .09);
}

.page-hub-grid strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 17px;
}

.page-hub-grid span {
  position: relative;
  z-index: 1;
  line-height: 1.45;
}

.page-hub .section-heading h2 {
  color: #fff;
}

.quick-tools {
  width: min(1240px, calc(100% - 32px));
  margin: 24px auto 0;
}

.quick-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.quick-tools a {
  display: grid;
  gap: 7px;
  border: 1px solid #2e2d2a;
  border-radius: 8px;
  background: #1f1f1d;
  padding: 18px;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(22, 37, 32, .12);
}

.quick-tools a {
  border-left: 4px solid var(--brand);
}

.quick-tools strong {
  color: #fff;
  font-size: 16px;
}

.quick-tools span {
  line-height: 1.45;
}

.catalog-section {
  display: grid;
  gap: 18px;
  width: min(1240px, calc(100% - 32px));
  min-width: 0;
  margin: 24px auto 0;
  border: 1px solid #2e2d2a;
  border-radius: 8px;
  background: #1f1f1d;
  color: #fff;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(22, 37, 32, .16);
}

.catalog-section .section-heading h2 {
  color: #fff;
}

.catalog-section .section-heading p {
  color: #ffb36f;
}

.catalog-section .section-heading span {
  max-width: 820px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 12px;
  align-items: end;
  min-width: 0;
}

.catalog-tools label {
  color: rgba(255, 255, 255, .82);
}

.catalog-summary {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.catalog-results {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 120px;
  gap: 12px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  padding: 14px;
}

.catalog-card > * {
  min-width: 0;
  max-width: 100%;
}

.catalog-product {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.catalog-product strong {
  color: #fff;
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.catalog-product span,
.catalog-stock {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.catalog-price {
  color: #ffb36f;
  font-size: 18px;
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.catalog-add {
  width: 100%;
  background: var(--brand);
  color: #fff;
  min-width: 0;
  white-space: normal;
}

.catalog-add:hover {
  background: var(--brand-dark);
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: 24px;
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 0;
  border: 1px solid var(--line);
  background: #fff;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(22, 37, 32, .07);
}

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-section h2 {
  color: #000;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.08;
}

.seo-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  padding: 14px;
}

.faq-list summary {
  color: #000;
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  font-size: 14px;
}

.reviews-section {
  width: min(1240px, calc(100% - 32px));
  margin: 24px auto 0;
  border-radius: 8px;
  background: #1f1f1d;
  color: #fff;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(22, 37, 32, .16);
}

.reviews-heading {
  margin-bottom: 18px;
}

.reviews-heading h2 {
  color: #fff;
}

.reviews-heading span {
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  padding: 12px 14px;
}

.reviews-rating img {
  width: 150px;
  max-width: 42vw;
  height: auto;
}

.reviews-rating strong {
  color: #fff;
  font-size: 14px;
}

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

.reviews-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #222;
}

.reviews-grid img {
  display: block;
  width: 100%;
  height: auto;
}

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

.demo-testimonials-grid article {
  min-height: 160px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  padding: 20px;
}

.demo-testimonials-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}

.demo-testimonials-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.5;
}

.partners-section {
  width: min(1240px, calc(100% - 32px));
  margin: 24px auto 0;
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(22, 37, 32, .07);
}

.partners-heading {
  margin-bottom: 18px;
}

.partners-heading span {
  color: var(--muted);
  line-height: 1.45;
}

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

.partners-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  padding: 16px;
}

.partners-grid img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  max-height: 110px;
  object-fit: contain;
  object-position: center;
}

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

.demo-partners-grid article {
  display: grid;
  min-height: 130px;
  place-items: center;
  border: 1px dashed rgba(22, 138, 74, .36);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fbfaf6);
  color: #1f2a28;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: 22px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  scroll-margin-top: 18px;
}

.request-panel,
.preview-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.request-panel {
  padding: 28px;
}

.preview-panel {
  position: sticky;
  top: 24px;
  align-self: start;
  background: #1f1f1d;
  border-color: #1f1f1d;
  padding: 20px;
}

.store-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  justify-items: center;
  margin-bottom: 28px;
}

.brand-intro {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: center;
  text-align: center;
  width: 100%;
}

.brand-logo {
  width: min(260px, 100%);
  max-height: 108px;
  object-fit: contain;
  object-position: center;
}

.store-kicker,
.doc-label {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  color: #000;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  overflow-wrap: anywhere;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 24px;
}

.store-inline-info {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.quote-form {
  display: grid;
  gap: 18px;
}

.customer-section {
  order: 1;
}

.materials-section {
  order: 2;
}

.details-section {
  order: 3;
}

.calculator-section {
  order: 4;
}

fieldset {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  transition: border-color .18s ease, background .18s ease;
}

legend {
  padding: 0 8px;
  color: var(--ink);
  font-weight: 700;
}

.accordion-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: #000;
  padding: 0 6px;
  font-weight: 900;
  cursor: pointer;
}

.accordion-toggle::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f2f0ea;
  color: var(--brand-dark);
  font-size: 16px;
  line-height: 1;
}

.accordion-section.is-open .accordion-toggle::after {
  content: "-";
  background: var(--brand);
  color: #fff;
}

.accordion-section:not(.is-open) {
  background: #fbfaf6;
}

.accordion-section:not(.is-open) > :not(legend) {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

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

.calculator-fieldset {
  background: #f3fbf5;
  border-color: #9bd2ad;
}

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

.calculator-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid #c9e6d2;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.calculator-title {
  display: grid;
  gap: 3px;
}

.calculator-title strong {
  font-size: 15px;
}

.calculator-title span {
  color: var(--muted);
  font-size: 12px;
}

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

.calculator-card[data-calculator="paint"] .mini-grid,
.calculator-card[data-calculator="bricks"] .mini-grid,
.calculator-card[data-calculator="roof"] .mini-grid,
.calculator-card[data-calculator="ceiling"] .mini-grid,
.calculator-card[data-calculator="plumbing"] .mini-grid,
.electrical-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.calculator-card-wide {
  grid-column: 1 / -1;
}

.calculator-result {
  display: block;
  min-height: 48px;
  border-left: 4px solid var(--brand);
  background: #fbfaf6;
  color: var(--ink);
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
}

.calc-add {
  width: 100%;
}

.calculator-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.choice-acknowledgement {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 12px;
  border: 1px solid #9bd2ad;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  color: #1f2a28;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.choice-acknowledgement input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(25, 114, 75, .14);
}

textarea {
  resize: vertical;
}

.freight-box,
.draft-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #c9e6d2;
  border-radius: 8px;
  background: #f3fbf5;
  padding: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.freight-box strong {
  color: #000;
}

.draft-actions span {
  color: var(--muted);
  font-size: 13px;
}

.items-head,
.item-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 120px 120px 40px;
  gap: 10px;
  align-items: end;
}

.items-head {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.item-row {
  margin-bottom: 10px;
}

.item-row label span {
  display: none;
}

button,
.whatsapp-button {
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.primary,
.whatsapp-button {
  background: var(--brand);
  color: #fff;
}

.primary:hover,
.whatsapp-button:hover {
  background: var(--brand-dark);
}

.secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: var(--line);
}

.secondary:hover {
  border-color: var(--brand);
}

.remove-item {
  width: 40px;
  padding: 0;
  background: #fff;
  border-color: #e7c4be;
  color: var(--danger);
}

.preview-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cart-label {
  margin: 0 0 4px;
  color: #ffb36f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-panel h2 {
  color: #fff;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-panel .secondary {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .24);
}

.preview-panel .secondary:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .44);
}

.icon-button {
  min-width: 54px;
  padding: 0 12px;
}

.quote-document {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #1f1f1d;
  color: #fff;
  padding: 22px;
  box-shadow: inset 0 4px 0 var(--brand);
  overflow: hidden;
}

.document-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brand);
}

.document-brand {
  display: grid;
  gap: 6px;
}

.document-logo {
  width: 180px;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.document-top p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.document-body {
  display: grid;
  gap: 16px;
  padding-top: 16px;
  font-size: 14px;
  line-height: 1.45;
}

.doc-section {
  display: grid;
  gap: 7px;
}

.doc-empty-state {
  display: grid;
  place-items: center;
  min-height: 280px;
  gap: 8px;
  text-align: center;
  color: rgba(255, 255, 255, .72);
}

.doc-empty-state strong {
  color: #fff;
  font-size: 18px;
}

.doc-section strong {
  color: #fff;
}

.doc-section span {
  color: rgba(255, 255, 255, .82);
}

.document-body table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
}

.document-body th,
.document-body td {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  padding: 8px 3px;
  text-align: left;
  vertical-align: top;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.document-body th {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  text-transform: uppercase;
}

.document-body th:nth-child(1),
.document-body td:nth-child(1) {
  width: 18px;
}

.document-body th:nth-child(3),
.document-body td:nth-child(3) {
  width: 34px;
}

.document-body th:nth-child(4),
.document-body td:nth-child(4) {
  width: 30px;
}

.document-body th:nth-child(5),
.document-body td:nth-child(5),
.document-body th:nth-child(6),
.document-body td:nth-child(6) {
  width: 58px;
}

.document-body th:nth-child(7),
.document-body td:nth-child(7) {
  width: 62px;
}

.document-body tfoot td {
  border-top: 2px solid rgba(255, 255, 255, .32);
  color: #fff;
}

.quote-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 2px solid rgba(255, 255, 255, .26);
  padding-top: 12px;
  margin-top: 10px;
}

.quote-total strong,
.quote-total span {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.cart-action-head,
.cart-action-cell {
  width: 62px;
  white-space: nowrap;
}

.cart-remove-item {
  min-height: 30px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 800;
}

.cart-remove-item:hover {
  background: rgba(255, 255, 255, .16);
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
}

.whatsapp-button.is-loading {
  pointer-events: none;
  opacity: .72;
}

.panel-submit-button {
  width: 100%;
  margin-top: 10px;
  background: #fff;
  color: #111;
  border-color: transparent;
}

.panel-submit-button:hover {
  background: #f3f1ec;
}

.panel-submit-button:disabled {
  cursor: wait;
  opacity: .72;
}

.panel-submit-status {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.4;
}

.panel-submit-status[data-status="success"] {
  color: #8ee0b1;
}

.panel-submit-status[data-status="error"] {
  color: #ffb2a8;
}

.panel-submit-status[data-status="loading"] {
  color: #ffcf9e;
}

.submitted-order-success {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 179, 111, .55);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: rgba(22, 138, 74, .12);
  padding: 12px;
  color: #fff;
}

.submitted-order-success strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  background: #edf8f1;
  color: #0f6437;
  padding: 0 12px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .03em;
}

.copy-submitted-order {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  padding: 0 12px;
  font-weight: 900;
}

.copy-submitted-feedback {
  color: #8ee0b1;
  font-size: 12px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 24px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer-store,
.creator-credit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-store strong {
  color: var(--ink);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.footer-social:hover {
  color: #000;
}

.creator-credit {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.creator-credit:hover {
  color: var(--brand-dark);
}

.creator-logo {
  display: block;
  width: 92px;
  max-height: 46px;
  object-fit: contain;
}

.creator-text {
  display: grid;
  gap: 3px;
  line-height: 1.2;
}

.creator-text span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .app,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .landing-nav,
  .hero-content {
    grid-template-columns: 1fr;
  }

  .landing-nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-content {
    align-items: start;
    min-height: auto;
    padding: 34px 0 56px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 7vw, 46px);
  }

  .category-grid,
  .service-strip,
  .page-hub-grid,
  .quick-tools,
  .seo-section,
  .reviews-grid,
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hub {
    margin-top: 18px;
  }

  .preview-panel {
    position: static;
  }

  h1 {
    font-size: 34px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .app {
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
    gap: 18px;
  }

  .request-panel {
    padding: 24px;
  }

  .preview-panel {
    padding: 18px;
  }

  #page-title {
    font-size: clamp(28px, 3vw, 38px);
  }

  .quote-document {
    padding: 18px;
  }

  .document-body {
    font-size: 13px;
  }

  .document-body table {
    font-size: 11px;
  }

  .document-body th,
  .document-body td {
    padding: 7px 2px;
  }

  .document-body th:nth-child(5),
  .document-body td:nth-child(5),
  .document-body th:nth-child(6),
  .document-body td:nth-child(6) {
    width: 54px;
  }

  .document-body th:nth-child(7),
  .document-body td:nth-child(7),
  .cart-action-head,
  .cart-action-cell {
    width: 58px;
  }

  .cart-remove-item {
    font-size: 10px;
    padding: 0 3px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .landing-hero {
    min-height: auto;
  }

  .landing-nav,
  .hero-content,
  .landing-section,
  .service-strip {
    width: calc(100% - 20px);
  }

  .landing-nav {
    gap: 10px;
    padding: 12px 0;
  }

  .nav-brand img {
    width: 104px;
  }

  .nav-actions {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    justify-content: stretch;
    padding: 10px;
    margin-top: 8px;
    background: rgba(0, 0, 0, .7);
  }

  .nav-actions.is-open {
    display: grid;
  }

  .nav-actions a {
    justify-content: center;
    min-width: 0;
    min-height: 40px;
    padding: 0 8px;
    font-size: 13px;
  }

  .nav-actions .nav-whatsapp {
    grid-column: 1 / -1;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.04;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-content {
    gap: 18px;
    padding: 24px 0 36px;
  }

  .hours-card {
    padding: 16px;
  }

  .landing-section {
    padding: 22px 0 6px;
  }

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

  .hero-primary,
  .hero-secondary {
    width: 100%;
  }

  .category-grid,
  .service-strip,
  .page-hub-grid,
  .quick-tools,
  .seo-section,
  .reviews-grid,
  .demo-testimonials-grid,
  .partners-grid,
  .demo-partners-grid {
    grid-template-columns: 1fr;
  }

  .home-hub {
    margin-top: 16px;
  }

  .reviews-section,
  .page-hub,
  .quick-tools,
  .catalog-section,
  .seo-section,
  .partners-section {
    width: calc(100% - 20px);
    padding: 16px;
  }

  .quick-tools {
    padding: 0;
  }

  .category-grid article,
  .page-hub-grid a,
  .quick-tools a,
  .faq-list details,
  .review-feature,
  .partners-grid a {
    padding: 14px;
  }

  .category-grid strong,
  .page-hub-grid strong,
  .quick-tools strong {
    font-size: 15px;
    line-height: 1.2;
  }

  .category-grid span,
  .page-hub-grid span,
  .quick-tools span {
    font-size: 13px;
    line-height: 1.35;
  }

  .catalog-section {
    gap: 14px;
  }

  .catalog-tools,
  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    gap: 10px;
  }

  .catalog-card {
    gap: 10px;
    padding: 12px;
  }

  .catalog-price {
    text-align: left;
    font-size: 17px;
  }

  .freight-box,
  .draft-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-rating {
    align-items: flex-start;
    flex-direction: column;
  }

  .app {
    width: calc(100% - 20px);
    padding: 12px 0;
    gap: 12px;
  }

  .request-panel,
  .preview-panel {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(22, 37, 32, .08);
    padding: 16px;
  }

  .site-footer {
    width: 100%;
    margin-bottom: 0;
    border-left: 0;
    border-right: 0;
    padding: 16px 18px;
  }

  .brand-logo {
    width: min(220px, 100%);
  }

  h1 {
    font-size: clamp(28px, 9vw, 34px);
  }

  .store-header {
    gap: 12px;
  }

  .store-kicker,
  .store-inline-info {
    font-size: 12px;
    line-height: 1.35;
  }

  .accordion-toggle {
    min-height: 44px;
    padding: 0 8px;
    text-align: left;
  }

  .accordion-content,
  .accordion-section.is-open .accordion-content {
    gap: 12px;
  }

  .form-grid,
  .calculator-grid,
  .mini-grid,
  .electrical-grid {
    gap: 10px;
  }

  input,
  select,
  textarea {
    min-height: 44px;
    padding: 10px 11px;
  }

  .calculator-grid,
  .mini-grid,
  .calculator-card[data-calculator="paint"] .mini-grid,
  .calculator-card[data-calculator="bricks"] .mini-grid,
  .calculator-card[data-calculator="roof"] .mini-grid,
  .calculator-card[data-calculator="ceiling"] .mini-grid,
  .calculator-card[data-calculator="plumbing"] .mini-grid,
  .electrical-grid {
    grid-template-columns: 1fr;
  }

  .calculator-card-wide {
    grid-column: auto;
  }

  .items-head {
    display: none;
  }

  .item-row {
    grid-template-columns: minmax(0, 1fr) minmax(82px, .55fr) 44px;
    gap: 8px;
    padding: 12px;
  }

  .item-row label:first-child {
    grid-column: 1 / -1;
  }

  .item-row label span {
    display: block;
  }

  .remove-item {
    height: 44px;
  }

  .preview-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .document-body table,
  .document-body thead,
  .document-body tbody,
  .document-body tr,
  .document-body th,
  .document-body td {
    display: block;
    width: 100% !important;
  }

  .document-body thead {
    display: none;
  }

  .document-body tr {
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    padding: 10px 0;
  }

  .document-body td {
    border-bottom: 0;
    padding: 3px 0;
  }

  .document-body td:first-child {
    color: #ffb36f;
    font-weight: 900;
  }

  .cart-action-cell {
    margin-top: 8px;
    white-space: normal;
  }

  .cart-remove-item {
    width: 100%;
  }

  .preview-actions button,
  .preview-actions a,
  .panel-submit-button,
  .whatsapp-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .landing-nav,
  .hero-content,
  .landing-section,
  .service-strip,
  .reviews-section,
  .page-hub,
  .quick-tools,
  .catalog-section,
  .seo-section,
  .partners-section,
  .app {
    width: calc(100% - 16px);
  }

  .reviews-section,
  .page-hub,
  .catalog-section,
  .seo-section,
  .partners-section,
  .request-panel,
  .preview-panel {
    padding: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 9vw, 32px);
  }

  .service-strip {
    padding: 12px;
  }

  .catalog-card,
  .category-grid article,
  .page-hub-grid a,
  .quick-tools a {
    padding: 12px;
  }

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

  .item-row label:first-child,
  .item-row label {
    grid-column: auto;
  }

  .remove-item {
    width: 100%;
  }
}

@media print {
  body {
    background: #fff;
  }

  body * {
    visibility: hidden;
  }

  #quoteDocument,
  #quoteDocument * {
    visibility: visible;
  }

  #quoteDocument img {
    display: block !important;
    visibility: visible !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .cart-action-head,
  .cart-action-cell {
    display: none !important;
  }

  #quoteDocument {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: auto;
    border: 0;
    background: #fff !important;
    color: #111 !important;
    padding: 24px;
    box-shadow: none !important;
  }

  #quoteDocument .document-top {
    border-bottom-color: #111 !important;
  }

  #quoteDocument .doc-label {
    color: #0f6437 !important;
  }

  #quoteDocument h3,
  #quoteDocument p,
  #quoteDocument strong,
  #quoteDocument span,
  #quoteDocument th,
  #quoteDocument td {
    color: #111 !important;
  }

  #quoteDocument th,
  #quoteDocument td {
    border-bottom-color: #cfd5d0 !important;
  }

  #quoteDocument .quote-total {
    border-top-color: #111 !important;
  }

  #quoteDocument .quote-total strong,
  #quoteDocument .quote-total span {
    color: #111 !important;
  }
}



