:root {
  --sky: #0a9fe3;
  --sky-soft: #dff6ff;
  --gold: #c99516;
  --gold-soft: #fff2c8;
  --navy: #051522;
  --charcoal: #17202a;
  --muted: #607080;
  --line: #dbe8ef;
  --white: #fff;
  --shadow: 0 26px 70px rgba(5, 21, 34, .18);
  --premium: linear-gradient(135deg, #fbfdff 0%, #eef9ff 48%, #fff7dc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 36%, #f5fbff 100%);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar { background: linear-gradient(90deg, #04111d, #082e43); color: #dcebf4; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; flex-wrap: wrap; }
.header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.86); border-bottom: 1px solid rgba(221,232,239,.8); backdrop-filter: blur(18px); box-shadow: 0 14px 34px rgba(5,21,34,.07); }
.nav { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 900; color: var(--navy); letter-spacing: .5px; }
.brand-mark { width: 86px; height: 86px; border-radius: 18px; display: grid; place-items: center; color: var(--navy); background: #101010; border: 1px solid rgba(201,149,22,.38); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 38px rgba(5,21,34,.16); overflow: hidden; transform-style: preserve-3d; animation: logoFloat 5.5s ease-in-out infinite; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand small { display: block; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 800; color: #24323e; }
.nav-links a.active, .nav-links a:hover { color: var(--sky); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.menu-toggle { display: none; border: 0; background: linear-gradient(135deg, var(--navy), #0b3d5b); color: white; border-radius: 16px; width: 54px; height: 54px; font-size: 0; box-shadow: 0 16px 34px rgba(5,21,34,.22); position: relative; cursor: pointer; }
.menu-toggle::before { content: ""; position: absolute; left: 15px; right: 15px; top: 18px; height: 2px; border-radius: 99px; background: white; box-shadow: 0 8px 0 white, 0 16px 0 white; }
.menu-toggle::after { content: ""; position: absolute; inset: 6px; border-radius: 12px; border: 1px solid rgba(244,202,87,.28); pointer-events: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 13px 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; transition: .25s ease; cursor: pointer; position: relative; overflow: hidden; }
.btn::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); transform: translateX(-110%); transition: .45s ease; }
.btn:hover::before { transform: translateX(110%); }
.btn-primary { background: linear-gradient(135deg, var(--sky), #006596); color: white; box-shadow: 0 16px 34px rgba(10,159,227,.32); }
.btn-gold { background: linear-gradient(135deg, #ffdb73, var(--gold)); color: var(--navy); box-shadow: 0 16px 34px rgba(201,149,22,.28); }
.btn-outline { border-color: rgba(255,255,255,.5); color: white; background: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.18); }
.btn:hover { transform: translateY(-3px); filter: saturate(1.1); }
.hero { min-height: calc(100vh - 136px); color: white; position: relative; display: grid; align-items: start; overflow: hidden; background: var(--navy); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,21,34,.97) 0%, rgba(5,21,34,.88) 39%, rgba(5,21,34,.35) 100%), url("assets/fm-furniture-hero.png") center/cover no-repeat; transform: scale(1.01); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(255,255,255,.08); }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .7fr); gap: 34px; align-items: start; }
.hero-content { position: relative; z-index: 1; width: 100%; padding: 54px 0 70px; }
.hero-content::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 54px;
  bottom: 70px;
  width: 5px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--gold), var(--sky));
  box-shadow: 0 0 30px rgba(201,149,22,.45);
}
.hero-panel {
  position: relative;
  z-index: 1;
  align-self: start;
  margin-top: 18px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}
.hero-panel img { border-radius: 14px; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid rgba(255,255,255,.24); }
.hero-panel-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 14px; }
.mini-stat { padding: 16px; border-radius: 12px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18); }
.mini-stat strong { display: block; color: #ffdc75; font-size: 24px; line-height: 1; }
.mini-stat span { color: #e9f6fb; font-size: 13px; font-weight: 800; }
.eyebrow { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: 1.8px; font-size: 13px; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; color: var(--navy); }
.hero h1 { color: white; font-size: clamp(38px, 4.6vw, 60px); letter-spacing: 0; text-wrap: balance; }
.hero p { font-size: clamp(17px, 1.65vw, 20px); max-width: 730px; color: #edf7fc; }
.hero-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; max-width: 760px; }
.badge { flex: 1 1 118px; min-width: 0; padding: 14px 15px; border-radius: 12px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22); color: white; font-weight: 850; backdrop-filter: blur(10px); box-shadow: inset 0 1px 0 rgba(255,255,255,.16); overflow-wrap: anywhere; }
.section { padding: 76px 0; }
.section.alt { background: var(--premium); border-block: 1px solid rgba(219,232,239,.8); }
.section-head { max-width: 780px; margin-bottom: 34px; }
.section-head h1, .section-head h2 { font-size: clamp(32px, 4vw, 50px); }
.section-head p, .lead { color: var(--muted); font-size: 18px; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: rgba(255,255,255,.86); border: 1px solid rgba(219,232,239,.9); border-radius: 14px; padding: 28px; box-shadow: 0 16px 42px rgba(5,21,34,.08); transition: .28s ease; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sky), var(--gold)); opacity: .85; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(10,159,227,.38); }
.icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; margin-bottom: 18px; background: linear-gradient(135deg, var(--sky-soft), #fff, var(--gold-soft)); color: var(--navy); font-size: 18px; font-weight: 950; border: 1px solid rgba(201,149,22,.22); box-shadow: 0 16px 30px rgba(10,159,227,.12); }
.card h3 { font-size: 22px; }
.card p { color: var(--muted); margin: 0 0 16px; }
.stats { background: linear-gradient(135deg, var(--navy), #083f5d 62%, #0a6b99); color: white; border-radius: 18px; padding: 40px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.1); position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.1), transparent 34%, rgba(255,218,115,.11)); pointer-events: none; }
.stats h2, .stats h3 { color: white; }
.stat-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.stat { padding: 22px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; backdrop-filter: blur(10px); }
.stat strong { display: block; color: var(--gold); font-size: 32px; line-height: 1.1; }
.cta { background: linear-gradient(135deg, #061522, #0b5f89 60%, #0b8fca); color: white; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.1), transparent 38%, rgba(255,218,115,.14)); }
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: white; font-size: clamp(30px, 4vw, 48px); }
.cta p { color: #e8f6fb; font-size: 18px; max-width: 760px; }
.page-hero { padding: 96px 0 70px; background: linear-gradient(135deg, rgba(5,21,34,.96), rgba(6,68,99,.92)), url("assets/fm-furniture-hero.png") center/cover no-repeat; color: white; position: relative; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(255,255,255,.08); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(38px, 6vw, 64px); }
.page-hero p { color: #e5f4fa; max-width: 780px; font-size: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.highlight { border-left: 5px solid var(--gold); padding: 28px; background: rgba(255,255,255,.9); border-radius: 14px; box-shadow: var(--shadow); }
.gallery-card { min-height: 300px; position: relative; overflow: hidden; border-radius: 16px; background: linear-gradient(135deg, #dff4ff, #fff1ca); border: 1px solid rgba(219,232,239,.9); box-shadow: 0 18px 44px rgba(5,21,34,.12); }
.gallery-card::before { content: ""; position: absolute; inset: 0; background: url("assets/fm-furniture-hero.png") center/cover no-repeat; transform: scale(1.05); opacity: .55; transition: .35s ease; }
.gallery-card:nth-child(2)::before { background-position: 70% 50%; }
.gallery-card:nth-child(3)::before { background-position: 30% 60%; }
.gallery-card:nth-child(4)::before { background-position: 50% 40%; }
.gallery-card:nth-child(5)::before { background-position: 80% 65%; }
.gallery-card:hover::before { transform: scale(1.14); opacity: .7; }
.gallery-card span { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 15px 17px; border-radius: 12px; background: rgba(5,21,34,.86); color: white; font-weight: 900; border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); }
.category-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 28px; }
.category-tab { border: 1px solid var(--line); background: white; color: var(--navy); border-radius: 999px; padding: 11px 18px; font-weight: 900; cursor: pointer; box-shadow: 0 10px 24px rgba(5,21,34,.06); transition: .22s ease; }
.category-tab.active, .category-tab:hover { background: linear-gradient(135deg, var(--sky), #006596); color: white; border-color: transparent; transform: translateY(-2px); }
.product-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 20px; align-items: stretch; }
.product-card { display: flex; flex-direction: column; width: 100%; height: 100%; min-width: 0; background: linear-gradient(180deg, #ffffff, #fafdff); border: 1px solid rgba(219,232,239,.92); border-radius: 18px; overflow: hidden; box-shadow: 0 18px 48px rgba(5,21,34,.11); transition: box-shadow .28s ease, border-color .28s ease, opacity .5s ease; position: relative; }
.product-card::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; background: transparent; }
.product-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 1px 0 rgba(255,255,255,.9); }
.product-card:hover { box-shadow: 0 32px 82px rgba(5,21,34,.2); border-color: rgba(10,159,227,.42); }
.product-card:hover::before { opacity: 0; }
.product-card img { width: 100%; height: 230px; object-fit: contain; background: radial-gradient(circle at 30% 20%, #fff 0%, #eef9ff 44%, #fff5d4 100%); padding: 10px; border-bottom: 1px solid rgba(219,232,239,.85); transform: none; transition: none; }
.product-card:hover img { transform: none; filter: none; }
.product-card img { cursor: zoom-in; user-select: none; -webkit-user-drag: none; }
.product-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; transform: none; }
.product-card-body small { color: var(--gold); font-weight: 950; text-transform: uppercase; letter-spacing: 1px; }
.product-card-body h3 { font-size: 18px; margin: 8px 0 8px; min-height: 42px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-body p { color: var(--muted); margin: 0; min-height: 44px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-meta { display: flex; gap: 8px; flex-wrap: wrap; align-content: flex-start; min-height: 58px; max-height: 58px; overflow: hidden; margin-bottom: 8px; }
.product-meta span { display: inline-flex; max-width: 100%; padding: 5px 9px; border-radius: 999px; background: var(--sky-soft); color: var(--navy); font-size: 12px; font-weight: 900; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border: 1px solid rgba(10,159,227,.14); }
.product-meta span:last-child { background: var(--gold-soft); }
.product-price { display: none; }
.product-actions { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: auto; padding-top: 12px; }
.product-inquiry { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; border-radius: 999px; background: linear-gradient(135deg, #20c463, #128c48); color: white; font-weight: 950; box-shadow: 0 14px 28px rgba(32,196,99,.22); }
.product-inquiry:hover { filter: saturate(1.08); transform: translateY(-1px); }
.load-more-wrap { display: flex; justify-content: center; margin-top: 24px; }
.load-more-button { border: 0; min-width: 220px; min-height: 52px; border-radius: 999px; padding: 14px 24px; background: linear-gradient(135deg, var(--gold), #f5cd62); color: var(--navy); font-weight: 950; cursor: pointer; box-shadow: 0 18px 38px rgba(201,149,22,.28); transition: .24s ease; }
.load-more-button:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(201,149,22,.34); }
.load-more-button[hidden] { display: none; }
.image-lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 22px; background: rgba(5, 21, 34, .92); backdrop-filter: blur(12px); }
.image-lightbox.open { display: flex; animation: lightboxFade .2s ease both; }
.image-lightbox-content { width: min(1120px, 96vw); max-height: 92vh; display: grid; gap: 12px; }
.image-lightbox-frame { display: grid; place-items: center; min-height: 280px; max-height: 78vh; border-radius: 18px; background: linear-gradient(135deg, #f8fdff, var(--sky-soft), #fff8df); border: 1px solid rgba(255,255,255,.22); overflow: hidden; box-shadow: 0 35px 90px rgba(0,0,0,.35); transform-style: preserve-3d; animation: modalLift .28s cubic-bezier(.2,.8,.2,1) both; }
.image-lightbox img { max-width: 100%; max-height: 78vh; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.image-lightbox-caption { color: white; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 12px; font-weight: 900; }
.image-lightbox-caption span { color: #e8f6fb; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lightbox-whatsapp { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 10px 16px; background: linear-gradient(135deg, #20c463, #128c48); color: white; font-weight: 950; box-shadow: 0 16px 34px rgba(32,196,99,.28); }
.lightbox-close { border: 0; border-radius: 999px; width: 46px; height: 46px; background: linear-gradient(135deg, var(--gold), #f4ca57); color: var(--navy); font-size: 22px; font-weight: 950; cursor: pointer; }
.service-showcase { margin-top: 30px; }
.service-showcase-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-image-tile { min-height: 260px; border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 18px 42px rgba(5,21,34,.12); border: 1px solid var(--line); background: white; }
.service-image-tile img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; transition: .32s ease; background: linear-gradient(135deg, #f8fdff, var(--sky-soft), #fff8df); padding: 10px; }
.service-image-tile:hover img { transform: scale(1.07); }
.service-image-tile span { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 13px 15px; border-radius: 12px; background: rgba(5,21,34,.84); color: white; font-weight: 900; border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); }
.contact-panel { background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 16px; padding: 30px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 7px; color: var(--navy); font-weight: 850; }
input, select, textarea { width: 100%; border: 1px solid #cbdde8; border-radius: 12px; padding: 14px 15px; font: inherit; color: var(--charcoal); background: white; box-shadow: inset 0 1px 2px rgba(5,21,34,.04); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(10,159,227,.18); border-color: var(--sky); }
textarea { min-height: 132px; resize: vertical; }
.full { grid-column: 1 / -1; }
.map { min-height: 360px; border-radius: 16px; display: grid; place-items: center; text-align: center; padding: 34px; background: linear-gradient(135deg, var(--sky-soft), #fff, var(--gold-soft)); border: 1px solid var(--line); color: var(--navy); font-weight: 900; box-shadow: 0 18px 42px rgba(5,21,34,.09); }
.faq details { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; margin-bottom: 12px; box-shadow: 0 12px 28px rgba(5,21,34,.06); }
.faq summary { cursor: pointer; font-weight: 900; color: var(--navy); }
.faq p { color: var(--muted); margin-bottom: 0; }
.footer { background: linear-gradient(135deg, #04111d, #071e31 62%, #082c42); color: #d9e8ef; padding: 68px 0 24px; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 28px; }
.footer h3 { color: white; }
.footer a { display: block; color: #d9e8ef; margin: 7px 0; }
.footer a:hover { color: var(--gold); }
.copyright { border-top: 1px solid rgba(255,255,255,.13); margin-top: 34px; padding-top: 20px; color: #9fb3bf; }
.float-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 30; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #20c463; color: white; box-shadow: 0 16px 34px rgba(32,196,99,.35); font-weight: 900; }
.motion-reveal { opacity: 0; transform: translateY(18px) scale(.985); }
.motion-reveal.in-view { opacity: 1; transform: translateY(0) scale(1); }
.product-card.motion-reveal,
.product-card.motion-reveal.in-view {
  opacity: 1;
  transform: none;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-4px) rotateX(5deg); }
}
@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalLift {
  from { opacity: 0; transform: translateY(22px) scale(.96) rotateX(6deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }
}
@media (max-width: 1120px) {
  .hero { min-height: auto; }
  .hero .container { grid-template-columns: minmax(0, .98fr) minmax(280px, .62fr); gap: 22px; padding: 28px 0 38px; }
  .hero-content { padding: 28px 0 18px; }
  .hero-content::before { top: 30px; bottom: 20px; }
  .hero h1 { font-size: clamp(34px, 4.5vw, 52px); }
  .hero p { font-size: 16px; max-width: 660px; }
  .hero-panel { margin-top: 0; padding: 16px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { min-height: 44px; padding: 11px 16px; }
  .badges { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 610px; gap: 10px; }
  .badge { padding: 12px 13px; font-size: 13px; }
}
@media (max-width: 920px) {
  .nav-links { position: absolute; top: 104px; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 18px 24px; background: white; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-actions .btn-gold { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-panel { margin: -74px 0 64px; }
  .hero-content { padding-bottom: 104px; }
  .product-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .badges, .grid-4, .grid-3, .footer-grid, .stat-list, .service-showcase-row { grid-template-columns: repeat(2, 1fr); }
  .split, .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .topbar { display: none; }
  .brand { gap: 10px; min-width: 0; }
  .brand > span:last-child { min-width: 0; max-width: 150px; font-size: 20px; line-height: 1.25; overflow-wrap: anywhere; }
  .brand small, .nav-actions .btn-primary, .nav-actions .btn-gold { display: none; }
  .brand-mark { width: 62px; height: 62px; border-radius: 16px; flex: 0 0 auto; }
  .nav { min-height: 88px; }
  .nav-links { top: 88px; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(27px, 7.7vw, 34px); max-width: 100%; overflow-wrap: normal; text-wrap: auto; }
  .hero p { font-size: 15px; max-width: 100%; overflow-wrap: break-word; }
  .hero-content { padding: 44px 0 84px 18px; min-width: 0; overflow: visible; }
  .hero-content::before { left: 0; top: 60px; bottom: 94px; }
  .hero-panel { margin: -66px 0 50px; padding: 14px; border-radius: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-actions .btn { width: 100%; min-width: 0; white-space: normal; text-align: center; }
  .badges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; gap: 8px; padding-bottom: 0; max-width: 100%; }
  .badge { min-width: 0; padding: 9px 10px; font-size: 12px; overflow-wrap: break-word; }
  .hero-panel-row { grid-template-columns: 1fr 1fr; }
  .mini-stat { padding: 13px; }
  .mini-stat strong { font-size: 20px; }
  .product-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-card { border-radius: 12px; }
  .product-card img { height: 150px; padding: 6px; }
  .product-card-body { padding: 12px; }
  .product-card-body h3 { font-size: 15px; min-height: 36px; }
  .product-card-body p { font-size: 12px; min-height: 38px; }
  .product-meta { gap: 5px; }
  .product-meta { min-height: 48px; max-height: 48px; }
  .product-meta span { font-size: 10px; padding: 4px 7px; }
  .product-inquiry { min-height: 36px; font-size: 12px; }
  .image-lightbox-caption { grid-template-columns: 1fr; }
  .image-lightbox-caption span { white-space: normal; }
  .lightbox-whatsapp, .lightbox-close { width: 100%; }
  .grid-4, .grid-3, .footer-grid, .stat-list, .form-grid, .service-showcase-row { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .card, .contact-panel, .stats { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .product-card, .product-card:hover, .product-card img, .product-card:hover img, .motion-reveal { transform: none !important; opacity: 1 !important; }
}
