:root {
  --bg: #f6f7fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --accent: #1f6feb;
  --accent-strong: #5b8fff;
  --text: #152033;
  --muted: #5f6b7d;
  --line: rgba(21, 32, 51, 0.1);
  --shadow: 0 24px 50px rgba(18, 30, 52, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 111, 235, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(91, 143, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 32, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 32, 51, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 95%);
  opacity: 0.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.container { width: min(1360px, calc(100% - 48px)); margin: 0 auto; }
.page-backdrop { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.back-glow { position: absolute; border-radius: 999px; filter: blur(18px); opacity: 0.9; }
.back-glow-1 { width: 320px; height: 320px; top: -80px; left: -80px; background: rgba(31, 111, 235, 0.18); }
.back-glow-2 { width: 420px; height: 420px; bottom: -120px; right: -100px; background: rgba(71, 109, 176, 0.16); }
.back-grid { position: absolute; inset: 0; background-image: radial-gradient(circle at center, rgba(21, 32, 51, 0.05) 0 1px, transparent 1.2px); background-size: 34px 34px; opacity: 0.08; }

body.modal-open { overflow: hidden; }

body.page-ready .hero-copy,
body.page-ready .hero-showcase,
body.page-ready .catalog-tools,
body.page-ready .product-card,
body.page-ready .value-grid article,
body.page-ready .workflow-steps article,
body.page-ready .contact-card,
body.page-ready .faq-card,
body.page-ready .site-footer,
body.page-ready .section-heading,
body.page-ready .catalog-meta,
body.page-ready .catalog-pagination {
  animation: riseIn 0.8s ease both;
}

body.page-ready .hero-showcase { animation-delay: 0.06s; }
body.page-ready .catalog-tools { animation-delay: 0.12s; }
body.page-ready .section-heading { animation-delay: 0.16s; }
body.page-ready .product-card:nth-child(1) { animation-delay: 0.08s; }
body.page-ready .product-card:nth-child(2) { animation-delay: 0.14s; }
body.page-ready .product-card:nth-child(3) { animation-delay: 0.2s; }
body.page-ready .product-card:nth-child(4) { animation-delay: 0.26s; }
body.page-ready .product-card:nth-child(5) { animation-delay: 0.32s; }
body.page-ready .product-card:nth-child(6) { animation-delay: 0.38s; }

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(18px); background: rgba(255, 255, 255, 0.82); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 98px; display: grid; grid-template-columns: auto minmax(220px, 1fr) auto auto; gap: 18px; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(160deg, #1f6feb, #0b4fc4); color: #090e17; font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 700; box-shadow: 0 16px 30px rgba(31, 111, 235, 0.24); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-family: 'Nunito', sans-serif; font-size: 18px; letter-spacing: 0.02em; }
.brand-copy small { color: var(--muted); margin-top: 4px; }
.header-search { display: flex; align-items: center; gap: 12px; min-height: 54px; padding: 0 18px; border-radius: 16px; background: rgba(255, 255, 255, 0.98); color: #20304d; border: 1px solid rgba(21, 32, 51, 0.08); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08); }
.header-search svg { width: 18px; height: 18px; stroke: #ef7f3b; stroke-width: 2; fill: none; flex-shrink: 0; }
.header-search input { width: 100%; border: 0; outline: 0; background: transparent; color: #1d2a44; }
.header-search input::placeholder { color: #5f6c82; }
.header-search-wrap { position: relative; }
.header-search-results { position: absolute; left: 0; right: 0; top: calc(100% + 10px); z-index: 60; display: grid; gap: 10px; padding: 12px; border-radius: 18px; background: rgba(255, 255, 255, 0.98); border: 1px solid rgba(21, 32, 51, 0.08); box-shadow: 0 24px 50px rgba(18, 30, 52, 0.16); backdrop-filter: blur(16px); }
.header-search-results[hidden] { display: none !important; }
.header-search-result { width: 100%; display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 12px; align-items: center; padding: 8px; border: 0; border-radius: 14px; background: rgba(21, 32, 51, 0.03); color: inherit; text-align: left; cursor: pointer; }
.header-search-result:hover { background: rgba(31, 111, 235, 0.12); }
.header-search-result img { width: 64px; height: 56px; border-radius: 12px; object-fit: cover; }
.header-search-result-copy { display: grid; gap: 4px; min-width: 0; }
.header-search-result-copy strong { font-size: 0.95rem; line-height: 1.2; }
.header-search-result-copy small { color: var(--muted); font-size: 0.82rem; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-action-icon, .header-action-cart { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; width: 44px; padding: 0; border-radius: 14px; background: rgba(255, 255, 255, 0.96); border: 1px solid rgba(21, 32, 51, 0.08); color: var(--text); font-size: 13px; font-weight: 700; box-shadow: 0 10px 22px rgba(18, 30, 52, 0.08); }
.header-action-whatsapp img { width: 20px; height: 20px; display: block; }
.header-action-cart svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 14px; font-weight: 700; border: 1px solid transparent; transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent) 0%, #1558cb 100%); color: #ffffff; box-shadow: 0 16px 30px rgba(31, 111, 235, 0.22); }
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-strong) 0%, #2d79ff 100%); }
.btn-outline { background: rgba(21, 32, 51, 0.02); color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: rgba(31, 111, 235, 0.65); color: var(--accent-strong); }

.hero-section { padding: 28px 0 18px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 22px; align-items: stretch; }
.hero-copy, .hero-showcase, .contact-card, .catalog-tools, .value-grid article, .workflow-steps article { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.hero-copy { border-radius: 28px; padding: clamp(24px, 4vw, 40px); position: relative; overflow: hidden; }
.hero-copy::after { content: ''; position: absolute; inset: auto -20% -48% auto; width: 320px; height: 320px; border-radius: 999px; background: radial-gradient(circle, rgba(31, 111, 235, 0.16), transparent 70%); pointer-events: none; }
.eyebrow { color: var(--accent-strong); font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-copy h1, .section-heading h2, .workflow-grid h2, .contact-card h2 { font-family: 'Nunito', sans-serif; font-size: clamp(2.1rem, 4.8vw, 4.35rem); line-height: 0.96; margin: 14px 0 16px; font-weight: 900; letter-spacing: -0.02em; }
.hero-copy p, .section-heading p, .value-grid p, .workflow-steps p, .contact-card p, .hero-slide-overlay p, .site-footer p, .product-card p, .empty-state, .filter-grid label span { color: var(--muted); }
.hero-copy p { max-width: 60ch; font-size: 1.02rem; line-height: 1.78; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.hero-mini-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
.hero-mini-cards article { padding: 16px 16px 15px; border-radius: 18px; background: linear-gradient(180deg, rgba(21, 32, 51, 0.03), rgba(21, 32, 51, 0.02)); border: 1px solid rgba(21, 32, 51, 0.06); }
.hero-mini-cards span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-mini-cards strong { font-family: 'Nunito', sans-serif; color: var(--text); font-size: 1rem; font-weight: 800; }
.hero-showcase { position: relative; overflow: hidden; border-radius: 30px; min-height: 560px; padding: 18px; background: radial-gradient(circle at 20% 20%, rgba(31, 111, 235, 0.12), transparent 28%), linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.96)); }
.hero-carousel { position: relative; height: 100%; min-height: 480px; border-radius: 26px; overflow: hidden; background: #edf1f7; }
.hero-carousel-track { position: relative; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.035); transition: opacity 0.8s ease, transform 0.9s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17, 26, 41, 0.6) 0%, rgba(17, 26, 41, 0.24) 48%, rgba(17, 26, 41, 0.04) 100%); }
.hero-slide-overlay { position: absolute; left: 26px; bottom: 26px; z-index: 1; max-width: 360px; padding: 20px; border-radius: 22px; background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(10px); border: 1px solid rgba(21, 32, 51, 0.08); }
.hero-slide-overlay span { display: inline-flex; margin-bottom: 8px; padding: 6px 10px; border-radius: 999px; background: rgba(31, 111, 235, 0.12); color: var(--accent-strong); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-slide-overlay strong { display: block; font-family: 'Nunito', sans-serif; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.02; margin-bottom: 8px; font-weight: 900; }
.hero-carousel-dots { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-carousel-dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(21, 32, 51, 0.18); cursor: pointer; }
.hero-carousel-dots button.active { width: 30px; background: var(--accent); }
.hero-floating-card { position: absolute; z-index: 2; padding: 14px 16px; border-radius: 18px; background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(21, 32, 51, 0.08); box-shadow: 0 18px 34px rgba(18, 30, 52, 0.1); min-width: 180px; }
.hero-floating-card strong { display: block; font-family: 'Nunito', sans-serif; font-size: 1.05rem; margin-bottom: 4px; font-weight: 900; }
.hero-floating-card span { color: var(--muted); font-size: 13px; }
.hero-floating-card-left { top: 28px; left: 26px; }
/* hero floating card removed */

.catalog-section, .why-section, .value-section, .workflow-section, .contact-section { padding: 18px 0 34px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 22px; }
.section-heading--split p { max-width: 46ch; text-align: right; }
.section-heading h2, .workflow-grid h2, .contact-card h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.05; margin: 10px 0 0; }
.catalog-tools { border-radius: calc(var(--radius) + 2px); padding: 20px; }
.search-field { display: flex; align-items: center; gap: 12px; padding: 0 18px; min-height: 58px; border-radius: 18px; background: rgba(255, 255, 255, 0.96); border: 1px solid var(--line); }
.search-field svg { width: 20px; height: 20px; stroke: var(--accent-strong); stroke-width: 2; fill: none; flex-shrink: 0; }
.search-field input { width: 100%; background: transparent; border: 0; outline: 0; color: var(--text); }
.search-field input::placeholder { color: #8893a9; }
.search-field:focus-within, .header-search:focus-within { border-color: rgba(31, 111, 235, 0.55); box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.08); }
.filter-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
.filter-grid label { display: grid; gap: 10px; font-size: 14px; }
.filter-grid select, .filter-grid input[type='range'] { width: 100%; }
.filter-grid select { min-height: 50px; padding: 0 14px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.96); color: var(--text); }
.filter-grid input[type='range'] { accent-color: var(--accent); }
.catalog-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 16px 0 18px; }
.catalog-meta p { margin: 0; color: var(--muted); }
.link-button { background: transparent; border: 0; color: var(--accent-strong); font-weight: 700; cursor: pointer; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { overflow: hidden; border-radius: 22px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.98)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.product-card-button { width: 100%; padding: 0; text-align: left; cursor: pointer; color: inherit; appearance: none; -webkit-appearance: none; }
.product-card img { width: 100%; aspect-ratio: 1.18; object-fit: contain; object-position: center; background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.96)); }
.product-card-body { padding: 18px; }
.product-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.badge { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge-accent { background: rgba(31, 111, 235, 0.12); color: var(--accent-strong); }
.badge-dark { background: rgba(21, 32, 51, 0.06); color: var(--text); }
.product-card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.product-price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--line); }
.product-price strong { font-family: 'Nunito', sans-serif; font-size: 1.35rem; color: #d62828; font-weight: 900; }
.product-card-link { color: #22406f; font-weight: 700; }
.empty-state { margin: 26px 0 0; padding: 18px 20px; border-radius: 18px; border: 1px dashed var(--line); background: rgba(255, 255, 255, 0.03); }
.catalog-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.catalog-page { min-width: 42px; height: 42px; padding: 0 14px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.96); color: var(--text); font-weight: 700; cursor: pointer; box-shadow: 0 10px 22px rgba(18, 30, 52, 0.08); }
.catalog-page:hover { border-color: rgba(31, 111, 235, 0.55); }
.catalog-page.active { background: linear-gradient(135deg, var(--accent) 0%, #1558cb 100%); color: #ffffff; border-color: transparent; }
.value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.value-grid article, .workflow-steps article { border-radius: 22px; padding: 22px; }
.value-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 16px; background: rgba(31, 111, 235, 0.12); color: var(--accent-strong); font-weight: 800; }
.value-grid h3, .workflow-steps h3 { margin: 18px 0 10px; font-size: 1.08rem; }
.workflow-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 24px; align-items: start; }
.workflow-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.workflow-steps strong { width: 46px; height: 46px; border-radius: 16px; display: inline-grid; place-items: center; background: rgba(31, 111, 235, 0.16); color: #1558cb; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 20px; align-items: stretch; }
.contact-card { border-radius: calc(var(--radius) + 8px); padding: 28px; }
.contact-section .contact-card { background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.98)); }
.contact-copy { display: grid; gap: 22px; align-content: center; }
.contact-copy h2 { margin-top: 8px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 0.98; color: #000; }
.contact-copy p { max-width: 58ch; }
.contact-details { display: grid; gap: 10px; padding: 18px 20px; border-radius: 20px; background: rgba(21, 32, 51, 0.03); border: 1px solid rgba(21, 32, 51, 0.08); }
.contact-details p { margin: 0; color: var(--text); line-height: 1.55; }
.contact-details strong { color: #18345f; }
.contact-map { padding: 0; overflow: hidden; position: relative; min-height: 310px; }
.contact-map-link { position: relative; display: block; width: 100%; height: 100%; min-height: 310px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 310px; border: 0; display: block; background: #eef2f8; }
.contact-map-badge { position: absolute; top: 16px; left: 16px; z-index: 2; display: inline-flex; align-items: center; min-height: 38px; padding: 0 14px; border-radius: 10px; background: rgba(255, 255, 255, 0.98); color: #1e64db; font-weight: 700; box-shadow: 0 10px 20px rgba(18, 30, 52, 0.14); }

.faq-section { padding: 18px 0 34px; }
.faq-card { padding: 28px; border-radius: calc(var(--radius) + 8px); background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.98)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.faq-heading { margin-bottom: 18px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border-radius: 18px; border: 1px solid rgba(21, 32, 51, 0.08); background: rgba(255, 255, 255, 0.92); }
.faq-question { width: 100%; padding: 18px 20px; border: 0; background: transparent; color: var(--text); text-align: left; font-size: 1rem; font-weight: 700; cursor: pointer; }
.faq-question[aria-expanded='true'] { background: rgba(31, 111, 235, 0.08); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.28s ease, opacity 0.28s ease; opacity: 0; }
.faq-answer.is-open { grid-template-rows: 1fr; opacity: 1; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 20px 18px; color: var(--muted); line-height: 1.7; }
.site-footer { padding: 24px 0 36px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0 0; border-top: 1px solid var(--line); }
.footer-inner strong { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 900; }

.product-modal[hidden] { display: none; }
.product-modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px; }
.product-modal-backdrop { position: absolute; inset: 0; background: rgba(17, 26, 41, 0.28); backdrop-filter: blur(10px); }
.product-modal-panel { position: relative; z-index: 1; width: min(1100px, 100%); max-height: min(88vh, 920px); overflow: auto; border-radius: 30px; padding: 24px; background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(21, 32, 51, 0.08); box-shadow: 0 36px 80px rgba(18, 30, 52, 0.22); transform: translateY(14px) scale(0.98); opacity: 0; transition: opacity 0.22s ease, transform 0.22s ease; }
.product-modal.is-open .product-modal-panel { opacity: 1; transform: translateY(0) scale(1); }
.product-modal-close { position: absolute; top: 16px; right: 16px; width: 48px; height: 48px; border: 1px solid rgba(21, 32, 51, 0.08); border-radius: 999px; background: rgba(255, 255, 255, 0.96); color: var(--text); font-size: 24px; font-weight: 800; cursor: pointer; box-shadow: 0 12px 24px rgba(18, 30, 52, 0.12); z-index: 3; }
.product-modal-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 22px; }
.product-modal-gallery { position: relative; display: grid; gap: 14px; }
.product-modal-image-wrap { position: relative; overflow: hidden; border-radius: 24px; background: #f4f6fa; min-height: clamp(320px, 46vw, 620px); display: grid; place-items: center; padding: 16px; }
.product-modal-image-wrap img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.product-modal-gallery-actions { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 12px; z-index: 2; }
.product-modal-gallery-actions span { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); color: #fff; font-weight: 700; padding: 6px 10px; border-radius: 999px; background: rgba(17, 26, 41, 0.42); backdrop-filter: blur(8px); pointer-events: none; }
.product-modal-arrow { width: 44px; height: 44px; border: 1px solid rgba(21, 32, 51, 0.08); border-radius: 999px; background: rgba(255, 255, 255, 0.96); color: var(--text); font-size: 1.1rem; font-weight: 800; cursor: pointer; box-shadow: 0 10px 22px rgba(18, 30, 52, 0.08); }
.product-modal-arrow:hover { border-color: rgba(31, 111, 235, 0.55); color: #1558cb; }
.product-modal-content { display: grid; align-content: start; gap: 16px; padding-top: 28px; }
.product-modal-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.product-modal-content h2 { margin: 0; font-family: 'Nunito', sans-serif; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.02; font-weight: 900; }
.product-modal-content p { margin: 0; color: var(--muted); line-height: 1.75; }
.product-modal-price { display: flex; align-items: baseline; gap: 12px; padding-top: 2px; }
.product-modal-price strong { font-family: 'Nunito', sans-serif; color: #d62828; font-size: 2rem; font-weight: 900; }
.product-modal-options { padding: 18px; border-radius: 22px; background: rgba(21, 32, 51, 0.03); border: 1px solid rgba(21, 32, 51, 0.08); }
.product-modal-options h3 { margin: 0 0 12px; font-size: 1rem; }
.product-modal-options ul { margin: 0; padding-left: 18px; color: var(--text); display: grid; gap: 8px; }
.product-modal-options li { line-height: 1.5; }
.product-modal-content .btn { width: fit-content; }

@media (max-width: 1200px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions, .header-cta { display: none; }
}
@media (max-width: 1024px) {
  .top-utility-inner { flex-wrap: wrap; }
  .header-search { grid-column: 1 / -1; order: 3; width: 100%; }
  .hero-grid, .workflow-grid { grid-template-columns: 1fr; }
  .product-grid, .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading, .section-heading--split { align-items: start; flex-direction: column; }
  .section-heading--split p { text-align: left; max-width: none; }
  .hero-showcase { min-height: 520px; }
  .product-modal-grid { grid-template-columns: 1fr; }
  .product-modal-content { padding-top: 0; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 16px, 1360px); }
  .header-inner { gap: 8px; padding: 10px 0; grid-template-columns: auto 1fr auto; }
  .header-search { grid-column: 1 / -1; min-height: 48px; padding: 0 14px; }
  .header-actions { gap: 8px; }
  .brand { gap: 10px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { display: none; }
  .hero-section { padding: 16px 0 10px; }
  .quick-categories, .catalog-section, .value-section, .workflow-section, .faq-section, .contact-section { padding: 12px 0 24px; }
  .hero-grid { gap: 14px; }
  .hero-copy { padding: 20px 18px; }
  .hero-copy h1 { font-size: clamp(1.95rem, 9vw, 3rem); }
  .hero-copy p { font-size: 0.98rem; line-height: 1.72; }
  .hero-actions, .contact-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .hero-mini-cards, .product-grid, .value-grid, .workflow-steps, .filter-grid { grid-template-columns: 1fr; }
  .hero-mini-cards { margin-top: 18px; gap: 10px; }
  .hero-showcase { min-height: 430px; padding: 10px; }
  .hero-carousel { min-height: 385px; border-radius: 20px; }
  .hero-slide img { object-position: center center; }
  .hero-slide-overlay { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 12px; border-radius: 16px; }
  .hero-slide-overlay strong { font-size: clamp(1.3rem, 7vw, 2rem); }
  .hero-floating-card { width: calc(100% - 24px); left: 12px; right: 12px; }
  .hero-floating-card-left { top: 12px; }
  .hero-floating-card { display: none; }
  .catalog-tools { padding: 16px; }
  .search-field { min-height: 52px; padding: 0 14px; border-radius: 16px; }
  .catalog-meta { flex-direction: column; align-items: stretch; gap: 10px; }
  .product-grid { gap: 14px; }
  .product-card-body { padding: 16px; }
  .product-price { margin-top: 14px; padding-top: 12px; }
  .catalog-pagination { gap: 8px; }
  .catalog-page { min-width: 40px; height: 40px; }
  .value-grid article, .workflow-steps article, .faq-card, .contact-card { border-radius: 16px; }
  .value-grid article, .workflow-steps article { padding: 18px; }
  .contact-card { padding: 18px; }
  .contact-copy { gap: 16px; }
  .contact-copy h2 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .contact-details { padding: 16px; border-radius: 16px; }
  .contact-map, .contact-map-link, .contact-map iframe { min-height: 240px; }
  .contact-map-badge { top: 12px; left: 12px; min-height: 34px; padding: 0 12px; }
  .faq-card { padding: 18px; }
  .faq-question { padding: 16px 16px; font-size: 0.98rem; }
  .faq-answer p { padding: 0 16px 16px; }
  .footer-inner { gap: 12px; }
  .product-modal { padding: 10px; }
  .product-modal-panel { border-radius: 18px; padding: 14px; }
  .product-modal-image-wrap { border-radius: 16px; min-height: clamp(280px, 74vw, 460px); padding: 10px; }
  .product-modal-gallery-actions { padding: 0 6px; }
  .product-modal-arrow { width: 46px; height: 46px; border-width: 2px; box-shadow: 0 14px 26px rgba(18, 30, 52, 0.14); }
  .product-modal-close { top: 10px; right: 10px; width: 56px; height: 56px; font-size: 28px; background: rgba(255, 255, 255, 0.98); box-shadow: 0 14px 30px rgba(18, 30, 52, 0.2); }
  .product-modal-content { gap: 12px; }
}

@media (max-width: 480px) {
  .header-actions { display: none; }
  .hero-copy h1 { font-size: clamp(1.8rem, 10vw, 2.5rem); }
  .hero-showcase { min-height: 390px; }
  .hero-carousel { min-height: 340px; }
  .product-modal-price strong { font-size: 1.6rem; }
  .product-modal-options { padding: 16px; }
}
