:root {
  /* Brand */
  --brand-primary: #105090;
  --brand-primary-hover: #0B4074;
  --brand-primary-active: #082F59;
  --brand-primary-soft: #EEF6FC;
  --brand-secondary: #48C0E8;
  --brand-secondary-hover: #2CB1DD;
  --brand-secondary-text: #15688A;
  --brand-secondary-soft: #EDF9FD;

  /* Neutrals */
  --bg: #FFFFFF;
  --bg-subtle: #F9FAFB;
  --surface: #F3F5F7;
  --border: #E4E8EC;
  --border-strong: #D0D5DC;
  --text: #343B46;
  --text-strong: #1B2027;
  --text-muted: #545E6D;

  /* Semantic */
  --success: #1F9D5B;
  --success-bg: #E7F6EE;
  --success-text: #147A45;
  --warning: #E89B16;
  --warning-bg: #FCF1DD;
  --warning-text: #A86C08;
  --danger: #D94A40;
  --danger-bg: #FBE9E7;
  --danger-text: #A8332B;
  --info: #1E8FB8;
  --info-bg: #EDF9FD;
  --info-text: #15688A;

  /* Optional warm accent */
  --accent: #F4A521;
  --accent-hover: #D98A0C;

  /* Local aliases used by the existing component system. */
  --color-ink: var(--text);
  --color-muted: var(--text-muted);
  --color-soft: #6B7280;
  --color-line: var(--border);
  --color-page: var(--bg);
  --color-surface: var(--bg);
  --color-green: var(--brand-primary);
  --color-green-dark: var(--brand-primary-active);
  --color-green-soft: var(--brand-primary-soft);
  --color-yellow: var(--brand-secondary);
  --color-yellow-soft: var(--brand-secondary-soft);
  --color-whatsapp: var(--success);
  --shadow-soft: 0 18px 45px rgba(16, 80, 144, 0.12);
  --shadow-small: 0 8px 22px rgba(16, 80, 144, 0.09);
  --radius: 8px;
  --container: 1180px;
  --font-body: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Archivo", var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-page);
  color: var(--color-ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.nav-open,
body.drawer-open,
body.modal-open {
  overflow: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

::placeholder {
  color: var(--color-soft);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--color-yellow);
  color: var(--color-ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section-tight {
  padding: 52px 0;
}

.section-green {
  background: var(--color-green);
  color: var(--bg);
}

.section-dark {
  background: var(--color-green-dark);
  color: var(--bg-subtle);
}

.section-border {
  border-top: 1px solid var(--color-line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--color-yellow);
  color: var(--color-ink);
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-green .section-kicker,
.section-dark .section-kicker {
  color: var(--color-yellow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h1,
.section-heading h2 {
  margin: 10px 0 0;
  color: inherit;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.08;
}

.section-heading h1 {
  font-size: 58px;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-green .section-heading p,
.section-dark .section-heading p {
  color: var(--brand-primary-soft);
}

.top-strip {
  background: var(--color-green-dark);
  color: var(--brand-primary-soft);
  font-size: 13px;
}

.top-strip-inner {
  min-height: 34px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.top-strip span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  flex-wrap: wrap;
  line-height: 1.35;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand picture {
  display: block;
  line-height: 0;
}

.brand-logo {
  width: auto;
  max-width: min(252px, 48vw);
  height: 52px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--brand-primary);
}

.nav-link[aria-current="page"] {
  color: var(--color-green);
}

.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  height: 3px;
  background: var(--color-yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-green);
}

.menu-toggle-lines {
  display: grid;
  gap: 5px;
}

.menu-toggle-lines span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 11px 16px;
  color: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-strong);
  box-shadow: 0 10px 24px rgba(244, 165, 33, 0.24);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: var(--color-green);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--brand-primary-hover);
}

.btn-secondary:active {
  background: var(--brand-primary-active);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 157, 91, 0.25);
}

.btn-whatsapp:hover {
  background: var(--success-text);
}

.btn-outline {
  border-color: rgba(16, 80, 144, 0.28);
  background: transparent;
  color: var(--color-green);
}

.btn-outline:hover,
.btn-ghost:hover,
.icon-btn:hover,
.menu-toggle:hover {
  background: var(--brand-primary-soft);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-green);
}

.btn-small {
  min-height: 36px;
  padding: 9px 12px;
  font-size: 13px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-green);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 1;
  vertical-align: middle;
}

.icon-btn[data-phone-link] {
  font-size: 0;
  text-decoration: none;
}

.icon-btn[data-phone-link]::before {
  content: "☎";
  font-size: 18px;
  line-height: 1;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M22%2016.92v3a2%202%200%200%201-2.18%202%2019.8%2019.8%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6A19.8%2019.8%200%200%201%202.12%204.18%202%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72c.13.96.35%201.9.67%202.8a2%202%200%200%201-.45%202.11L8.1%209.86a16%2016%200%200%200%206%206l1.23-1.23a2%202%200%200%201%202.11-.45c.9.32%201.84.54%202.8.67A2%202%200%200%201%2022%2016.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M22%2016.92v3a2%202%200%200%201-2.18%202%2019.8%2019.8%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6A19.8%2019.8%200%200%201%202.12%204.18%202%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72c.13.96.35%201.9.67%202.8a2%202%200%200%201-.45%202.11L8.1%209.86a16%2016%200%200%200%206%206l1.23-1.23a2%202%200%200%201%202.11-.45c.9.32%201.84.54%202.8.67A2%202%200%200%201%2022%2016.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-btn[data-phone-link]::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: transparent url("../icons/telephone-icon-primary.png") center / contain no-repeat;
  -webkit-mask: none;
  mask: none;
  transform: translateY(4px);
}

.hero {
  background: var(--color-green);
  color: var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 54px;
  align-items: center;
  min-height: 680px;
  padding: 60px 0 70px;
}

.hero h1 {
  margin: 20px 0 0;
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1.03;
}

.hero p {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--brand-primary-soft);
  font-size: 18px;
  line-height: 1.68;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
  color: var(--brand-secondary-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.proof-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--color-line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 22px 0;
}

.proof-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 800;
  line-height: 1.45;
}

.check-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--color-green);
  color: var(--color-yellow);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.brand-chip {
  min-width: 100px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  padding: 11px 16px;
  text-align: center;
  color: var(--color-muted);
  font-family: var(--font-heading);
  font-weight: 800;
}

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

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

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

.feature-card,
.category-card,
.product-card,
.info-card,
.gallery-card,
.faq-item,
.form-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 1px 0 rgba(27, 32, 39, 0.04);
}

.feature-card,
.info-card {
  padding: 24px;
}

.feature-card h3,
.info-card h3,
.category-card h3,
.product-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.feature-card p,
.info-card p,
.category-card p,
.product-card p {
  color: var(--color-muted);
  line-height: 1.58;
}

.category-card {
  overflow: hidden;
  text-decoration: none;
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--color-line);
}

.category-card-body {
  display: block;
  padding: 20px 22px 22px;
}

.category-card p {
  margin: 8px 0 0;
  font-size: 14px;
}

.page-hero {
  background: var(--color-green);
  color: var(--bg);
  padding: 62px 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 42px;
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 1.08;
}

.page-hero p {
  max-width: 720px;
  color: var(--brand-primary-soft);
  font-size: 17px;
  line-height: 1.65;
}

.page-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.search-box,
.select-box,
.form-control {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-ink);
  padding: 13px 14px;
  outline: none;
}

.search-box:focus,
.select-box:focus,
.form-control:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(16, 80, 144, 0.12);
}

textarea.form-control {
  min-width: 0;
  resize: vertical;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.filter-chip {
  border: 1.5px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--text-strong);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 900;
}

.filter-chip[aria-pressed="true"] {
  border-color: var(--color-green);
  background: var(--color-green);
  color: #fff;
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--color-line);
}

.product-card-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.tag {
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
}

.tag-ready {
  background: var(--success-bg);
  color: var(--success-text);
}

.tag-order {
  background: var(--warning-bg);
  color: var(--warning-text);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.empty-state {
  border: 1px dashed var(--color-line);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--color-muted);
  text-align: center;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.timeline-item h3 {
  min-height: 42px;
  display: flex;
  align-items: center;
  margin: 0 0 8px;
}

.timeline-item p {
  margin: 0;
}

.timeline-number {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--color-yellow);
  color: var(--color-ink);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 900;
}

.form-panel {
  padding: 24px;
}

.contact-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-info-grid {
  gap: 18px;
  align-items: stretch;
}

.contact-info-grid .info-card {
  display: flex;
  flex-direction: column;
}

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

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  background: var(--color-line);
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 14px 16px 16px;
  color: var(--color-muted);
  font-weight: 800;
}

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

.faq-item {
  overflow: hidden;
}

.faq-button {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--color-ink);
  font-weight: 900;
  text-align: left;
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--color-muted);
  line-height: 1.65;
}

.faq-item[aria-expanded="false"] .faq-answer {
  display: none;
}

.footer {
  background: var(--color-green-dark);
  color: var(--brand-primary-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: 34px;
  padding: 52px 0 28px;
}

.footer h3,
.footer h4 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
}

.footer h4 {
  color: var(--color-yellow);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer p,
.footer li {
  color: var(--brand-primary-soft);
  line-height: 1.6;
}

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

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--brand-primary-hover);
  padding: 18px 0;
  color: rgba(237, 249, 253, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12px;
}

.quote-drawer {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  background: rgba(8, 47, 89, 0.55);
}

.quote-drawer[aria-hidden="false"] {
  display: block;
}

.quote-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100%;
  background: var(--color-surface);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.22);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.quote-header {
  padding: 18px 20px;
  background: var(--color-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
}

.quote-body {
  overflow: auto;
  padding: 18px;
}

.quote-items {
  display: grid;
  gap: 12px;
}

.quote-item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 13px;
  background: #fff;
}

.quote-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: var(--color-page);
  color: var(--color-green);
  font-weight: 900;
}

.quote-footer {
  border-top: 1px solid var(--color-line);
  padding: 16px 18px;
  display: grid;
  gap: 12px;
}

.quote-message-preview {
  width: 100%;
  min-height: 94px;
  resize: vertical;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
  color: var(--color-muted);
  font-size: 13px;
}

.quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-cart {
  display: none;
}

.floating-cart.is-visible {
  display: inline-flex;
}

.count-badge {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-green);
  color: var(--color-yellow);
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 900;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(8, 47, 89, 0.55);
}

.modal[aria-hidden="false"] {
  display: grid;
}

.modal-panel {
  width: min(780px, 100%);
  max-height: min(720px, 92vh);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.modal-close {
  position: sticky;
  top: 12px;
  z-index: 2;
  margin: 12px 12px 0 auto;
}

.modal-product {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1fr;
  gap: 24px;
  padding: 10px 24px 24px;
}

.modal-product img {
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 180;
  display: none;
  transform: translateX(-50%);
  border-radius: var(--radius);
  background: var(--color-green-dark);
  color: #fff;
  padding: 12px 16px;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.toast.is-visible {
  display: block;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 14px;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

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

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

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

@media (max-width: 860px) {
  .top-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 9px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .primary-nav {
    position: fixed;
    inset: 103px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-page);
    padding: 10px 22px 18px;
    box-shadow: var(--shadow-soft);
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .nav-link {
    padding: 13px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .nav-link[aria-current="page"]::after {
    display: none;
  }

  .header-actions .btn-whatsapp {
    display: none;
  }

  .hero h1,
  .section-heading h1 {
    font-size: 43px;
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: 34px;
  }

  .section {
    padding: 56px 0;
  }

  .toolbar,
  .grid-2,
  .form-grid,
  .modal-product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero h1,
  .section-heading h1 {
    font-size: 36px;
  }

  .hero p,
  .page-hero p,
  .section-heading p {
    font-size: 16px;
  }

  .hero-grid {
    padding: 42px 0 52px;
  }

  .proof-grid,
  .grid-4,
  .grid-3,
  .product-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .product-actions,
  .quote-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .floating-actions {
    left: auto;
    right: 16px;
    justify-content: flex-end;
  }

  .floating-actions .btn-whatsapp {
    width: 54px;
    min-width: 54px;
    padding: 0;
    font-size: 0;
  }

  .floating-actions .btn-whatsapp::after {
    content: "WA";
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
