:root {
  --ink: #151b22;
  --muted: #66717c;
  --line: #dde2e6;
  --paper: #f6f7f8;
  --white: #fff;
  --teal: #26313d;
  --teal-dark: #111820;
  --clay: #7a828c;
  --mist: #edf0f2;
  --soft: #f1f3f5;
  --warn: #b56d12;
  --danger: #b93131;
  --shadow: 0 18px 45px rgba(23, 33, 41, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
body[data-page="products"] #products .wrap {
  width: min(1460px, calc(100% - 20px));
}
.topbar { background: var(--ink); color: #dfe4e8; font-size: 13px; }
.topbar .wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 700; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav .wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 250px; }
.mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 800;
  border-radius: 4px;
}
.brand strong { display: block; font-size: 17px; line-height: 1.1; }
.brand span { display: block; color: var(--muted); font-size: 12px; }
.links { display: flex; align-items: center; gap: 22px; font-size: 14px; color: #2c3742; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
body[data-page="home"] .topbar {
  display: none;
}
body[data-page="home"] .nav {
  position: absolute;
  inset: 34px 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
body[data-page="home"] .nav .wrap {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
body[data-page="home"] .brand {
  display: none;
}
body[data-page="home"] .mark {
  background: #151b22;
}
body[data-page="home"] .brand strong {
  color: #151b22;
}
body[data-page="home"] .brand span {
  color: rgba(21, 27, 34, .68);
}
body[data-page="home"] .links {
  grid-column: 2;
  gap: 34px;
}
body[data-page="home"] .links a {
  color: #111820;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 0 10px;
  border-bottom: 2px solid transparent;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: auto;
}
body[data-page="home"] .links a:first-child {
  border-bottom-color: #151b22;
}
body[data-page="home"] .language {
  background: rgba(255, 255, 255, .72);
  border-color: rgba(21, 27, 34, .14);
}
body[data-page="home"] .nav-actions .btn {
  background: #151b22;
  border-color: #151b22;
  color: #fff;
  min-height: 42px;
  padding: 0 18px;
}
body[data-page="home"] .nav-actions {
  grid-column: 3;
  justify-self: end;
}
body[data-page="products"] .topbar {
  display: none;
}
body[data-page="products"] .nav {
  position: absolute;
  inset: 34px 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
body[data-page="products"] .nav .wrap {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
body[data-page="products"] .brand {
  display: none;
}
body[data-page="products"] .links {
  grid-column: 2;
  gap: 34px;
}
body[data-page="products"] .links a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 0 10px;
  border-bottom: 2px solid transparent;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .24);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
body[data-page="products"] .links a:nth-child(2) {
  border-bottom-color: #fff;
}
body[data-page="products"] .language {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(255, 255, 255, .22);
}
body[data-page="products"] .nav-actions {
  grid-column: 3;
  justify-self: end;
}
body[data-page="products"] .nav-actions .btn {
  background: #fff;
  border-color: #fff;
  color: #151b22;
  min-height: 42px;
  padding: 0 18px;
}
.language {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
  padding: 0 10px;
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  border: 1px solid var(--teal);
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.btn:disabled,
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  opacity: .62;
  cursor: not-allowed;
}
.btn.secondary { background: rgba(255,255,255,.78); color: var(--ink); border-color: rgba(21, 27, 34, .18); }
.btn.light { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn.danger { background: var(--danger); border-color: var(--danger); }
.hero {
  min-height: clamp(560px, 42vw, 760px);
  display: grid;
  align-items: end;
  position: relative;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(248, 250, 251, .95), rgba(248, 250, 251, .72) 34%, rgba(248, 250, 251, .12) 62%),
    url("/hero-bg-option2-fcm11.webp");
  background-color: #f7f8f9;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, contain;
}
body[data-page="home"] .hero {
  padding-top: 118px;
}
.hero-content { padding: 76px 0 46px; width: min(620px, 100%); }
.eyebrow {
  color: #4d5965;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  margin: 0 0 14px;
}
h1 { margin: 0 0 16px; font-size: clamp(34px, 4.1vw, 54px); line-height: 1.05; letter-spacing: 0; }
.hero p { max-width: 560px; margin: 0 0 24px; color: #48535f; font-size: 16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(42px);
  border-radius: 6px;
  overflow: hidden;
}
.stat { padding: 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 29px; color: var(--teal-dark); }
.stat span { color: var(--muted); font-size: 13px; }
section { padding: 98px 0; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 34px; }
.section-head h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.06; letter-spacing: 0; }
.section-head p { margin: 0; max-width: 520px; color: var(--muted); }
.category-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 18px; align-items: start; }
body[data-page="products"] .category-layout {
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 16px;
}
.category-panel {
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  padding: 24px;
  min-height: 100%;
}
body[data-page="home"] .category-panel {
  padding: 22px;
}
body[data-page="products"] .category-panel {
  padding: 24px;
}
.category-panel p { color: #d8e5e2; margin: 0 0 22px; }
.filter-section {
  margin-top: 22px;
}
.filter-section:first-of-type {
  margin-top: 0;
}
.filter-section h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
}
.pill-grid { display: grid; gap: 10px; }
.pill {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  color: #f7fbfa;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.pill span,
.pill strong {
  min-width: 0;
  white-space: nowrap;
}
.pill strong {
  justify-self: start;
  font-size: 13px;
}
body[data-page="home"] .pill {
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  padding: 11px 12px;
  font-size: 13px;
}
body[data-page="home"] .pill strong {
  font-size: 12px;
}
.pill:hover, .pill.active {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.38);
}
.quick-filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.quick-filter-grid button,
.quick-filter-grid a {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  color: #f7fbfa;
  border-radius: 4px;
  padding: 7px 9px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
body[data-page="home"] .quick-filter-grid {
  gap: 7px;
  margin-top: 12px;
}
body[data-page="home"] .quick-filter-grid button,
body[data-page="home"] .quick-filter-grid a {
  padding: 6px 8px;
  font-size: 12px;
}
.quick-filter-grid button:hover, .quick-filter-grid button.active,
.quick-filter-grid a:hover, .quick-filter-grid a.active {
  background: #e4e8eb;
  color: var(--ink);
}
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
body[data-page="products"] .grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.filter-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.result-count {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.pagination button {
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.pagination button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.pagination button:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.pagination-gap {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--muted);
  font-weight: 800;
}
.product, .service, .card, .admin-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.product {
  transition: box-shadow .18s ease, transform .18s ease;
}
.product[data-product-link] { cursor: pointer; }
.product[data-product-link]:hover {
  box-shadow: 0 16px 36px rgba(21, 27, 34, .12);
  transform: translateY(-2px);
}
.product .photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #fbfdfc, var(--mist));
  padding: 14px;
}
body[data-page="products"] .product .photo {
  padding: 10px;
}
.product .photo img {
  object-fit: contain;
  object-position: center;
}
.zoom-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 33, 41, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--teal-dark);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(23, 33, 41, .16);
  cursor: pointer;
}
.zoom-btn:hover {
  background: var(--teal-dark);
  color: #fff;
}
.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(14, 24, 31, .82);
}
.zoom-modal.open { display: flex; }
.zoom-dialog {
  position: relative;
  width: min(980px, 96vw);
  max-height: 92vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}
.zoom-dialog img {
  width: 100%;
  max-height: calc(92vh - 86px);
  object-fit: contain;
  background: #f8faf9;
  border-radius: 5px;
}
.zoom-caption {
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}
.zoom-close {
  position: absolute;
  right: -14px;
  top: -14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.zoom-open { overflow: hidden; }
.product .body { padding: 20px; }
body[data-page="home"] .product .body { padding: 14px; }
body[data-page="products"] .product .body { padding: 14px; }
.product h3 { margin: 0 0 8px; font-size: 20px; }
body[data-page="home"] .product h3 {
  font-size: 18px;
  line-height: 1.25;
  min-height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body[data-page="products"] .product h3 { font-size: 17px; line-height: 1.28; }
.product p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
body[data-page="home"] .product p {
  font-size: 13px;
  line-height: 1.42;
  margin-bottom: 10px;
  min-height: 55px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body[data-page="products"] .product p { font-size: 13px; line-height: 1.48; margin-bottom: 12px; }
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 14px 0;
  font-size: 12px;
}
body[data-page="products"] .specs {
  gap: 6px;
  margin: 10px 0 12px;
  font-size: 11px;
}
body[data-page="home"] .specs {
  gap: 6px;
  margin: 9px 0 10px;
  font-size: 11px;
}
.specs span {
  min-height: 34px;
  padding: 8px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #3c4a52;
}
body[data-page="products"] .specs span {
  min-height: 48px;
  padding: 7px;
}
body[data-page="home"] .specs span {
  min-height: 43px;
  padding: 6px 7px;
}
.specs strong { display: block; color: var(--ink); }
body[data-page="products"] .specs strong {
  white-space: nowrap;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 5px 9px; background: var(--soft); color: #34504e; border-radius: 3px; font-size: 12px; font-weight: 800; }
body[data-page="home"] .tags {
  gap: 6px;
}
body[data-page="home"] .tag {
  padding: 4px 7px;
  font-size: 11px;
}
.band { background: var(--ink); color: var(--white); }
.page-hero {
  padding: 156px 0 64px;
  background:
    linear-gradient(90deg, rgba(21, 27, 34, .88), rgba(21, 27, 34, .62)),
    url("/hero-bg-option2-fcm11.webp") center/cover;
  color: #fff;
}
.page-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 58px);
}
.page-hero p {
  max-width: 680px;
  margin: 0;
  color: #e6ebef;
  font-size: 18px;
}
.split { display: grid; grid-template-columns: .94fr 1.06fr; gap: 48px; align-items: center; }
.split .image { aspect-ratio: 5 / 4; overflow: hidden; border-radius: 6px; }
.split p { color: #dce7e5; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; }
.check { padding: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 5px; color: #e4eeee; }
.check strong { display: block; color: var(--white); margin-bottom: 4px; }
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service { padding: 24px; min-height: 205px; }
.service .num { color: var(--clay); font-weight: 800; margin-bottom: 22px; }
.service h3 { margin: 0 0 10px; font-size: 18px; }
.service p { margin: 0; color: var(--muted); font-size: 14px; }
.about-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.about-strip div { padding: 18px; background: var(--soft); border-radius: 5px; }
.about-strip strong { display: block; color: var(--teal-dark); font-size: 23px; }
.about-strip span { color: var(--muted); font-size: 13px; }
.markets { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; }
.map-card, .quote-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 28px; }
.market-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.market-list span { background: var(--soft); padding: 10px 12px; border-radius: 4px; color: #34504e; font-weight: 800; font-size: 13px; }
form { display: grid; gap: 12px; }
input, textarea, select {
  width: 100%;
  min-height: 44px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}
textarea { min-height: 118px; resize: vertical; }
.contact-line { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
.contact-line a { display: block; padding: 12px; background: var(--soft); border-radius: 4px; font-weight: 800; color: var(--teal-dark); }
.docs-list { display: grid; gap: 10px; margin-top: 18px; }
.doc-link { display: flex; justify-content: space-between; gap: 12px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); }
.floating-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 30; box-shadow: 0 12px 28px rgba(0,0,0,.18); }
footer { padding: 48px 0; background: #111820; color: #bec8c9; font-size: 14px; }
footer .wrap { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
footer strong, footer a { color: #fff; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 60; padding: 12px 16px; color: #fff; background: var(--teal-dark); border-radius: 4px; box-shadow: var(--shadow); font-weight: 800; }
.toast.success { background: #1f6f43; }
.toast.error { background: #a83232; }

.admin-body { background: #eef3f1; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 260px 1fr; }
.sidebar {
  background: var(--ink);
  color: #dce9e6;
  padding: 24px;
  position: sticky;
  top: 0;
  height: 100vh;
}
.sidebar .brand { min-width: 0; margin-bottom: 28px; }
.sidebar .brand strong { color: #fff; }
.side-links { display: grid; gap: 8px; }
.side-links button {
  text-align: left;
  color: #dce9e6;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px;
  cursor: pointer;
}
.side-links button.active, .side-links button:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.admin-main { padding: 26px; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.admin-head h1 { font-size: 30px; margin: 0; }
.admin-notice {
  margin: -8px 0 18px;
  padding: 12px 14px;
  border: 1px solid #d7dee3;
  border-left: 4px solid var(--teal);
  border-radius: 5px;
  background: #fff;
  color: #40505c;
  font-size: 14px;
  font-weight: 700;
}
.admin-notice.success {
  border-left-color: #1f6f43;
  background: #f0f8f3;
  color: #1f5637;
}
.admin-notice.error {
  border-left-color: #a83232;
  background: #fff2f2;
  color: #8b2424;
}
.admin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.metric { padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; }
.metric strong { display: block; font-size: 28px; color: var(--teal-dark); }
.admin-card { padding: 20px; margin-bottom: 18px; }
.admin-card h2 { margin: 0 0 16px; font-size: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.span-2 { grid-column: span 2; }
.table { display: grid; gap: 10px; }
.row {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.row img { width: 86px; height: 64px; border-radius: 4px; object-fit: cover; background: var(--mist); }
.row h3 { margin: 0 0 4px; font-size: 16px; }
.row p { margin: 0; color: var(--muted); font-size: 13px; }
.row-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.hidden { display: none !important; }
.login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(23, 33, 41, .88), rgba(23, 33, 41, .72)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.login-card { width: min(420px, 100%); background: #fff; border-radius: 6px; padding: 28px; box-shadow: var(--shadow); }
.login-card h1 { font-size: 28px; margin: 0 0 8px; }
.login-card p { color: var(--muted); margin: 0 0 18px; }

@media (max-width: 980px) {
  .links { display: none; }
  .hero {
    min-height: 660px;
    background-size: auto 100%, auto 100%;
    background-position: center center, 62% center;
  }
  .stats, .grid, .services, .markets, .split, .category-layout, .about-strip, footer .wrap, .admin-shell, .admin-grid, .form-grid, .filter-bar { grid-template-columns: 1fr; }
  .stats { transform: none; margin-top: 26px; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .check-list, .market-list, .contact-line { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .nav .wrap { align-items: flex-start; padding: 14px 0; }
  .nav-actions { margin-left: auto; }
  .sidebar { height: auto; position: static; }
  .row { grid-template-columns: 72px 1fr; }
  .row-actions { grid-column: span 2; justify-content: flex-start; }
  .span-2 { grid-column: span 1; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1200px); }
  .brand { min-width: 0; }
  .brand strong { font-size: 15px; }
  .brand span span { display: none; }
  .nav-actions .btn { display: none; }
  h1 { font-size: 34px; }
  .hero p { font-size: 15px; }
  .topbar .wrap { display: block; padding: 8px 0; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}
