:root {
  --navy-950: #04142e;
  --navy-900: #071d3d;
  --navy-800: #0b2a55;
  --blue-700: #075ed1;
  --blue-600: #0b6bea;
  --blue-500: #1e82ff;
  --cyan-400: #57c5ff;
  --ink-900: #101828;
  --ink-700: #344054;
  --ink-500: #667085;
  --line: #dce5f0;
  --surface: #f4f8fc;
  --white: #ffffff;
  --success: #067647;
  --shadow-sm: 0 10px 30px rgba(7, 29, 61, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 29, 61, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }
.surface { background: var(--surface); }
.dark-section { background: var(--navy-950); color: var(--white); }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.dark-section .eyebrow, .hero .eyebrow { color: #85d5ff; }
h1, h2, h3 { margin: 0; color: inherit; letter-spacing: -.035em; line-height: 1.08; }
h1 { font-size: clamp(44px, 6.5vw, 78px); }
h2 { font-size: clamp(34px, 4.4vw, 54px); }
h3 { font-size: 22px; }
p { margin: 0; }
.lead { color: var(--ink-500); font-size: 19px; line-height: 1.75; }
.dark-section .lead { color: #b9c9dc; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2 + p { margin-top: 20px; }

.topbar { background: var(--navy-950); color: #ccdaeb; font-size: 13px; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { color: #9edcff; font-weight: 700; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(220,229,240,.9);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand {
  width: 210px;
  height: 54px;
  flex: 0 0 auto;
  background: url("/assets/images/brand/novabridge-logo.jpg") center / 235px 235px no-repeat;
  overflow: hidden;
  text-indent: -9999px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav > a { color: var(--ink-700); font-size: 14px; font-weight: 700; }
.nav > a:hover, .nav > a.active { color: var(--blue-700); }
.nav-cta { padding: 11px 18px; border-radius: 999px; background: var(--blue-600); color: var(--white) !important; }
.nav-cta:hover { background: var(--blue-700); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--navy-900); font-size: 22px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(30,130,255,.42), transparent 30%),
    linear-gradient(122deg, #031229 0%, #082d5d 58%, #075ed1 130%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}
.hero-inner { position: relative; z-index: 2; min-height: 720px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 56px; padding: 80px 0; }
.hero-copy p { max-width: 700px; margin-top: 26px; color: #c7d8eb; font-size: 20px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 13px 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: .2s ease; }
.btn-primary { background: var(--blue-500); color: #fff; box-shadow: 0 12px 30px rgba(30,130,255,.32); }
.btn-primary:hover { transform: translateY(-2px); background: #3690ff; }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.38); color: #fff; background: rgba(255,255,255,.07); }
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn-dark { background: var(--navy-900); color: #fff; }

.hero-visual { position: relative; }
.hero-product { position: relative; padding: 18px; border-radius: 36px; background: rgba(255,255,255,.12); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.2); }
.hero-product img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 24px; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border-radius: 16px; color: var(--navy-900); background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.floating-card strong { display: block; font-size: 14px; }
.floating-card span { display: block; color: var(--ink-500); font-size: 12px; }
.floating-card.one { left: -42px; bottom: 60px; }
.floating-card.two { right: -26px; top: 48px; }
.float-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-700); background: #e9f3ff; font-weight: 900; }

.trust-strip { position: relative; z-index: 3; margin-top: -44px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-lg); }
.trust-item { padding: 28px; text-align: center; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--navy-900); font-size: 30px; line-height: 1; }
.trust-item span { display: block; margin-top: 9px; color: var(--ink-500); font-size: 13px; }

.family-card { position: relative; min-height: 280px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); transition: .25s ease; }
.family-card:hover { transform: translateY(-6px); border-color: #9bc9ff; box-shadow: 0 20px 50px rgba(7,29,61,.13); }
.family-card::after { content: attr(data-number); position: absolute; right: 18px; bottom: -30px; color: #edf4fc; font-size: 112px; font-weight: 900; line-height: 1; }
.family-card .family-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 32px; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--cyan-400)); font-weight: 900; }
.family-card h3 { max-width: 230px; }
.family-card p { position: relative; z-index: 2; margin-top: 15px; color: var(--ink-500); }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--blue-700); font-weight: 800; }

.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); transition: .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(7,29,61,.14); }
.product-card-image { position: relative; overflow: hidden; background: #eef4fa; }
.product-card-image img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .45s ease; }
.product-card:hover img { transform: scale(1.035); }
.product-card-image span { position: absolute; left: 16px; top: 16px; padding: 7px 11px; border-radius: 999px; background: rgba(4,20,46,.84); color: #fff; font-size: 11px; font-weight: 800; }
.product-card-body { padding: 22px; }
.product-card-body h3 { font-size: 20px; }
.product-card-body p { margin-top: 11px; color: var(--ink-500); font-size: 14px; }
.mini-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.mini-specs span { padding: 6px 9px; border-radius: 8px; color: var(--navy-800); background: #edf5ff; font-size: 11px; font-weight: 750; }

.solution-card { min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; overflow: hidden; border-radius: 24px; color: #fff; background: var(--navy-900); }
.solution-card:nth-child(2) { background: #0b3f78; }
.solution-card:nth-child(3) { background: #075ed1; }
.solution-card:nth-child(4) { background: #0a6f82; }
.solution-card p { margin-top: 14px; color: rgba(255,255,255,.78); }
.solution-card .solution-num { margin-bottom: auto; color: rgba(255,255,255,.45); font-size: 14px; font-weight: 900; }

.quality-layout { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; }
.quality-image { position: relative; }
.quality-image img { width: 100%; min-height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.image-note { position: absolute; left: 18px; bottom: 18px; padding: 8px 12px; border-radius: 999px; color: #fff; background: rgba(4,20,46,.78); font-size: 11px; backdrop-filter: blur(8px); }
.process-list { display: grid; gap: 8px; margin-top: 30px; }
.process-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.process-item:last-child { border-bottom: 0; }
.process-number { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; color: var(--blue-700); background: #eaf4ff; font-weight: 900; }
.process-item p { margin-top: 5px; color: var(--ink-500); font-size: 14px; }

.cert-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.cert-badge { min-width: 104px; padding: 15px 18px; border: 1px solid #b9cce1; border-radius: 14px; color: var(--navy-900); background: #fff; text-align: center; font-size: 17px; font-weight: 900; letter-spacing: .02em; }
.cert-note { margin-top: 18px; color: var(--ink-500); text-align: center; font-size: 12px; }

.cta-band { position: relative; overflow: hidden; padding: 72px; border-radius: 34px; color: #fff; background: linear-gradient(120deg, var(--navy-950), var(--blue-700)); }
.cta-band::after { content: ""; position: absolute; width: 440px; height: 440px; right: -180px; top: -210px; border: 80px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band h2 { max-width: 680px; }
.cta-band p { max-width: 640px; margin-top: 17px; color: #c6d8ed; }

.page-hero { padding: 84px 0 72px; color: #fff; background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); }
.page-hero .lead { max-width: 760px; margin-top: 22px; color: #c3d4e8; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 24px; color: #9fc2e7; font-size: 13px; }
.breadcrumbs span { opacity: .6; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-700); background: #fff; font-weight: 750; }
.filter-btn.active, .filter-btn:hover { border-color: var(--blue-600); color: #fff; background: var(--blue-600); }

.product-hero { padding: 70px 0 82px; background: linear-gradient(#f7faff, #fff); }
.product-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: start; gap: 60px; }
.gallery-main { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #eff4fa; box-shadow: var(--shadow-sm); }
.gallery-main img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.gallery-thumb { padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 13px; background: #fff; }
.gallery-thumb.active { border-color: var(--blue-600); }
.gallery-thumb img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-summary h1 { font-size: clamp(38px, 5vw, 60px); }
.product-summary .tagline { margin-top: 18px; color: var(--blue-700); font-size: 20px; font-weight: 750; }
.product-summary .intro { margin-top: 22px; color: var(--ink-500); font-size: 17px; }
.product-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.meta-card { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.meta-card span { display: block; color: var(--ink-500); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.meta-card strong { display: block; margin-top: 5px; color: var(--navy-900); font-size: 14px; }
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.product-actions .btn-outline { border-color: var(--line); color: var(--navy-900); background: #fff; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.feature-card .feature-mark { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 13px; color: #fff; background: var(--blue-600); font-weight: 900; }
.feature-card p { margin-top: 10px; color: var(--ink-500); font-size: 14px; }

.details-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 58px; align-items: start; }
.spec-table { width: 100%; overflow: hidden; border-collapse: collapse; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.spec-table th, .spec-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th { width: 34%; color: var(--navy-900); background: #f5f9fd; font-size: 13px; }
.spec-table td { color: var(--ink-700); font-size: 14px; }
.application-card { position: sticky; top: 112px; padding: 30px; border-radius: 24px; color: #fff; background: var(--navy-900); }
.application-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.application-list span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #d6e5f6; background: rgba(255,255,255,.06); font-size: 12px; }
.config-note { margin-top: 26px; padding: 17px; border-left: 3px solid var(--cyan-400); color: #c4d5e8; background: rgba(255,255,255,.06); font-size: 12px; }

.content-card { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.content-card p { margin-top: 15px; color: var(--ink-500); }
.icon-list { display: grid; gap: 14px; margin-top: 22px; }
.icon-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; color: var(--ink-700); }
.icon-list li::before { content: "✓"; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: var(--success); background: #e8f7f0; font-weight: 900; }

.form-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--ink-700); font-size: 13px; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #cbd7e5; border-radius: 12px; outline: none; padding: 13px 14px; color: var(--ink-900); background: #fff; transition: .2s ease; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(11,107,234,.1); }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; color: var(--ink-500); font-size: 12px; }
.form-consent input { margin-top: 4px; }
.honeypot { position: absolute; left: -9999px; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 13px; }
.form-status.success { display: block; color: #05603a; background: #e9f8f1; }
.form-status.error { display: block; color: #9b1c1c; background: #fff0f0; }

.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 44px; }
.contact-panel { padding: 34px; border-radius: 24px; color: #fff; background: var(--navy-900); }
.contact-item { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-item:last-child { border-bottom: 0; }
.contact-item span { display: block; color: #99b2cd; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.contact-item strong { display: block; margin-top: 7px; font-size: 17px; }

.faq-list { display: grid; gap: 12px; max-width: 900px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; color: var(--navy-900); background: transparent; text-align: left; font-weight: 800; }
.faq-answer { display: none; padding: 0 22px 22px; color: var(--ink-500); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.legal { max-width: 860px; }
.legal h2 { margin-top: 42px; font-size: 28px; }
.legal h3 { margin-top: 28px; font-size: 20px; }
.legal p, .legal li { color: var(--ink-700); }
.legal p { margin-top: 14px; }
.legal ul { padding-left: 22px; }

.footer { color: #c7d5e5; background: var(--navy-950); }
.footer-main { padding: 72px 0 50px; display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 48px; }
.footer-brand .brand { margin-left: -12px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 360px; margin-top: 18px; color: #91a7c0; font-size: 14px; }
.footer h3 { margin-bottom: 18px; color: #fff; font-size: 15px; letter-spacing: 0; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #9fb2c9; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #7890aa; font-size: 12px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 45; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #20b858; box-shadow: 0 12px 28px rgba(17,142,76,.35); font-weight: 900; }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 18px; z-index: 60; display: none; max-width: 880px; margin-inline: auto; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; color: #dce7f5; background: rgba(4,20,46,.97); box-shadow: var(--shadow-lg); }
.cookie-banner.show { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-banner p { font-size: 12px; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-actions button { padding: 8px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 9px; color: #fff; background: transparent; font-size: 12px; }
.cookie-actions .accept { border-color: var(--blue-500); background: var(--blue-600); }

@media (max-width: 1020px) {
  .nav { position: fixed; left: 0; right: 0; top: 114px; bottom: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 24px; background: #fff; }
  .nav.open { display: flex; }
  .nav > a { padding: 15px 8px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-cta { margin-top: 16px; text-align: center; }
  .menu-toggle { display: block; }
  .hero-inner, .quality-layout, .product-hero-grid, .details-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 70px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 650px; margin-inline: auto; }
  .grid-4, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .application-card { position: static; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --container: min(100% - 28px, 1180px); }
  .topbar-inner { min-height: 42px; justify-content: center; text-align: center; }
  .topbar-inner span:last-child { display: none; }
  .header-inner { min-height: 72px; }
  .brand { width: 176px; height: 48px; background-size: 205px 205px; }
  .nav { top: 114px; }
  .section { padding: 68px 0; }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner { padding: 64px 0 100px; }
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  .hero-copy p { font-size: 17px; }
  .floating-card.one { left: 5px; bottom: 28px; }
  .floating-card.two { right: 5px; top: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .grid-2, .grid-3, .grid-4, .feature-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .product-meta { grid-template-columns: 1fr; }
  .quality-image img { min-height: 360px; }
  .cta-band { padding: 44px 26px; }
  .cta-inner { display: block; }
  .cta-inner .btn { margin-top: 26px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > :last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner.show { align-items: stretch; flex-direction: column; }
  .cookie-actions { justify-content: flex-end; }
}

/* Homepage brand visual, company video and product-detail framework */
.brand-hero { position: relative; overflow: hidden; color: #fff; background: #031229; }
.brand-hero > img { width: 100%; aspect-ratio: 2048 / 965; object-fit: cover; object-position: center; }
.brand-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 32%; pointer-events: none; background: linear-gradient(transparent, rgba(3,18,41,.68)); }
.brand-hero-actions { position: absolute; z-index: 2; left: max(28px, calc((100% - 1180px) / 2)); bottom: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.home-intro { padding: 74px 0 58px; background: #fff; }
.home-intro-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: end; gap: 64px; }
.home-intro h1 { color: var(--navy-950); font-size: clamp(42px, 5.5vw, 70px); }
.home-intro p { color: var(--ink-500); font-size: 19px; line-height: 1.75; }
.video-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 58px; }
.video-points { display: grid; gap: 10px; margin: 28px 0; }
.video-points span { display: flex; align-items: center; gap: 10px; color: #c8d7e9; font-size: 14px; }
.video-points span::before { content: ""; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--cyan-400); }
.video-frame { overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 26px; background: #000; box-shadow: var(--shadow-lg); }
.video-frame video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.workflow-layout { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 56px; }
.workflow-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.workflow-card { min-height: 190px; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055)); box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.workflow-card > span { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 22px; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--cyan-400)); font-weight: 900; }
.workflow-card h3 { color: #fff; font-size: 20px; }
.workflow-card p { margin-top: 12px; color: #c8d7e9; font-size: 14px; line-height: 1.65; }
.detail-asset-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.detail-asset-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.detail-asset-placeholder { min-height: 190px; display: grid; place-items: center; padding: 28px; background: repeating-linear-gradient(135deg, #edf4fb 0, #edf4fb 18px, #f7faff 18px, #f7faff 36px); }
.detail-asset-placeholder span { padding: 11px 16px; border: 1px solid #b9cce1; border-radius: 999px; color: var(--navy-800); background: rgba(255,255,255,.9); font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.detail-asset-copy { position: relative; padding: 26px 28px 30px; }
.detail-asset-number { position: absolute; right: 24px; top: 20px; color: #d7e6f6; font-size: 34px; font-weight: 900; }
.detail-asset-copy h3 { padding-right: 48px; }
.detail-asset-copy p { margin-top: 12px; color: var(--ink-500); font-size: 14px; }
@media (max-width: 1020px) {
  .home-intro-grid, .video-layout, .workflow-layout { grid-template-columns: 1fr; }
  .workflow-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-hero-actions { left: 28px; }
}
@media (max-width: 700px) {
  .detail-asset-grid { grid-template-columns: 1fr; }
  .workflow-panel { grid-template-columns: 1fr; }
  .workflow-card { min-height: auto; padding: 22px; }
  .brand-hero > img { aspect-ratio: 16 / 9; object-fit: cover; object-position: 60% center; }
  .brand-hero-actions { position: relative; left: auto; bottom: auto; padding: 18px 14px 24px; justify-content: center; }
  .brand-hero::after { display: none; }
  .brand-hero-actions .btn { flex: 1 1 220px; }
  .home-intro { padding: 58px 0 46px; }
  .home-intro-grid { gap: 26px; }
  .home-intro p { font-size: 17px; }
}
/* Expandable product taxonomy */
.nav-products { position: relative; }
.nav-products > a { display: flex; align-items: center; gap: 5px; color: var(--ink-700); font-size: 14px; font-weight: 700; }
.nav-products > a:hover, .nav-products > a.active { color: var(--blue-700); }
.nav-products > a span { font-size: 12px; transition: transform .2s ease; }
.products-mega { position: absolute; z-index: 80; left: 50%; top: calc(100% + 24px); width: min(760px, calc(100vw - 40px)); padding: 24px; visibility: hidden; opacity: 0; transform: translate(-38%, 10px); border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 24px 70px rgba(4,20,46,.18); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.nav-products:hover .products-mega, .nav-products:focus-within .products-mega { visibility: visible; opacity: 1; transform: translate(-38%, 0); }
.nav-products:hover > a span, .nav-products:focus-within > a span { transform: rotate(180deg); }
.products-mega-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.products-mega-head strong { color: var(--navy-950); font-size: 18px; }
.products-mega-head a { color: var(--blue-700); font-size: 13px; font-weight: 800; }
.products-mega-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 28px; margin-top: 20px; }
.mega-group { display: grid; align-content: start; gap: 7px; }
.mega-category { color: var(--navy-900); font-size: 14px; font-weight: 850; }
.mega-category:hover, .mega-subcategory:hover { color: var(--blue-700); }
.mega-subcategory { position: relative; padding-left: 14px; color: var(--ink-500); font-size: 13px; }
.mega-subcategory::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 1px; background: #91a7c0; }
.product-directory { padding-bottom: 50px; }
.category-directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.category-directory-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.category-directory-head { display: grid; grid-template-columns: 48px 1fr; gap: 16px; }
.category-directory-head > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--cyan-400)); font-weight: 900; }
.category-directory-head h3 { font-size: 24px; }
.category-directory-head h3 a:hover { color: var(--blue-700); }
.category-directory-head p { margin-top: 8px; color: var(--ink-500); font-size: 14px; }
.subcategory-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 24px; }
.subcategory-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink-700); background: #f9fbfe; font-size: 13px; font-weight: 750; }
.subcategory-links a:hover { border-color: #9bc9ff; color: var(--blue-700); background: #eef6ff; }
.subcategory-tile-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.subcategory-tile { min-height: 240px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); transition: .24s ease; }
.subcategory-tile:hover { transform: translateY(-5px); border-color: #9bc9ff; box-shadow: 0 20px 48px rgba(7,29,61,.13); }
.subcategory-tile > span { color: var(--blue-700); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.subcategory-tile h3 { margin-top: 18px; }
.subcategory-tile p { margin-top: 12px; color: var(--ink-500); font-size: 14px; }
.subcategory-tile strong { margin-top: auto; padding-top: 24px; color: var(--blue-700); font-size: 13px; }
.subcategory-parent { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 28px; }
.subcategory-parent a { color: var(--blue-700); font-size: 14px; font-weight: 800; }
@media (max-width: 1020px) {
  .nav-products { width: 100%; }
  .nav-products > a { padding: 15px 8px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .products-mega { position: static; width: 100%; max-height: 48vh; overflow: auto; padding: 16px 8px 22px; visibility: visible; opacity: 1; transform: none; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; }
  .nav-products:hover .products-mega, .nav-products:focus-within .products-mega { transform: none; }
  .products-mega-grid { gap: 18px; }
  .products-mega-head { padding-inline: 4px; }
  .category-directory-grid { grid-template-columns: 1fr; }
  .subcategory-tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .products-mega-grid, .subcategory-links, .subcategory-tile-grid { grid-template-columns: 1fr; }
  .products-mega-head { align-items: flex-start; flex-direction: column; }
  .category-directory-card { padding: 22px; }
  .category-directory-head { grid-template-columns: 40px 1fr; }
  .category-directory-head > span { width: 40px; height: 40px; border-radius: 12px; }
}
/* Online service dock and footer wordmark */
.footer-brand .brand { width: auto; height: auto; margin: 0; overflow: visible; text-indent: 0; filter: none; background: none; color: #fff; font-size: 34px; font-weight: 850; letter-spacing: -.045em; line-height: 1.1; }
.footer-brand .brand { background-image: linear-gradient(90deg, #ffffff 0 42%, #4ea0ff 42% 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-dock { position: fixed; z-index: 56; right: 18px; top: 50%; width: 92px; transform: translateY(-50%); overflow: hidden; border: 1px solid #e1e8f1; border-radius: 46px; background: rgba(255,255,255,.97); box-shadow: 0 18px 48px rgba(4,20,46,.17); backdrop-filter: blur(12px); }
.dock-service { display: grid; justify-items: center; gap: 2px; padding: 13px 8px 8px; color: var(--navy-800); font-size: 12px; }
.service-avatar { width: 46px; height: 46px; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: linear-gradient(145deg, #e8f4ff, #fff); box-shadow: 0 8px 18px rgba(7,94,209,.16); font-size: 28px; }
.dock-action { width: 100%; min-height: 76px; display: grid; place-items: center; align-content: center; gap: 4px; padding: 9px 5px; border: 0; border-top: 1px solid #edf1f6; color: #64748b; background: transparent; font-size: 12px; }
.dock-action:hover { color: var(--blue-700); background: #f1f7ff; }
.dock-icon { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #a8b7c9; border-radius: 50%; color: var(--navy-800); font-size: 11px; font-weight: 900; }
.dock-whatsapp { color: #fff; border-color: #20b858; background: #20b858; }
.dock-wechat { position: relative; font-size: 16px; letter-spacing: -3px; }
.dock-inquiry { border-radius: 9px; font-size: 16px; }
.qr-popover, .wechat-popover { position: fixed; z-index: 57; right: 124px; top: 50%; width: 280px; transform: translateY(-50%); padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 24px 70px rgba(4,20,46,.22); text-align: center; }
.qr-popover[hidden], .wechat-popover[hidden] { display: none; }
.qr-popover h3, .wechat-popover h3 { color: var(--navy-900); font-size: 21px; }
.qr-popover img, .wechat-popover img { width: 220px; aspect-ratio: 1; margin: 16px auto 10px; object-fit: contain; }
.qr-popover p, .wechat-popover p { color: var(--ink-500); font-size: 12px; }
.wechat-close { position: absolute; right: 11px; top: 9px; width: 32px; height: 32px; border: 0; border-radius: 50%; color: var(--ink-500); background: #f0f4f8; font-size: 20px; }
@media (max-width: 700px) {
  .contact-dock { right: 8px; width: 68px; border-radius: 34px; }
  .dock-service { padding-top: 8px; }
  .service-avatar { width: 38px; height: 38px; font-size: 23px; }
  .dock-action { min-height: 61px; font-size: 10px; }
  .dock-icon { width: 27px; height: 27px; }
  .qr-popover, .qr-popover, .wechat-popover { right: 84px; width: min(270px, calc(100vw - 100px)); padding: 18px; }
  .qr-popover img, .qr-popover img, .wechat-popover img { width: min(210px, 100%); }
}
/* Product quick category navigation */
.product-quick-nav { margin-top: -34px; padding-bottom: 30px; background: linear-gradient(180deg, var(--navy-800) 0, var(--navy-800) 34px, #fff 34px, #fff 100%); }
.quick-nav-shell { position: relative; z-index: 3; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 24px 70px rgba(4,20,46,.16); }
.quick-nav-heading { display: grid; grid-template-columns: 1fr 1.25fr; gap: 18px 34px; align-items: end; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.quick-nav-heading span { color: var(--blue-700); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.quick-nav-heading h2 { color: var(--navy-950); font-size: clamp(28px, 3.2vw, 42px); }
.quick-nav-heading p { color: var(--ink-500); font-size: 15px; }
.quick-family-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.quick-family-tabs a { padding: 11px 15px; border: 1px solid #cfe0f2; border-radius: 999px; color: var(--navy-900); background: #f7fbff; font-size: 13px; font-weight: 850; }
.quick-family-tabs a:hover { border-color: var(--blue-600); color: #fff; background: var(--blue-600); }
.quick-subcategory-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.quick-subcategory-group { padding: 18px; border: 1px solid #dce6f2; border-radius: 18px; background: #fbfdff; }
.quick-subcategory-group h3 { margin-bottom: 13px; color: var(--navy-950); font-size: 16px; letter-spacing: 0; }
.quick-subcategory-group a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; border-top: 1px solid #edf2f7; color: var(--ink-700); font-size: 13px; font-weight: 750; }
.quick-subcategory-group a:hover { color: var(--blue-700); }
.quick-subcategory-group a span { color: var(--blue-700); font-weight: 900; }
@media (max-width: 1020px) {
  .quick-nav-heading, .quick-subcategory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .product-quick-nav { margin-top: 0; padding: 18px 0 12px; background: #fff; }
  .quick-nav-shell { padding: 20px; border-radius: 18px; }
  .quick-nav-heading, .quick-subcategory-grid { grid-template-columns: 1fr; }
  .quick-family-tabs a { flex: 1 1 100%; text-align: center; }
}



/* News article center */
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); transition: .25s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(7,29,61,.14); }
.article-image { position: relative; overflow: hidden; display: block; background: #eef4fa; }
.article-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .45s ease; }
.article-card:hover .article-image img { transform: scale(1.04); }
.article-image span { position: absolute; left: 16px; top: 16px; padding: 7px 12px; border-radius: 999px; color: #fff; background: rgba(4,20,46,.82); font-size: 11px; font-weight: 850; }
.article-body { padding: 24px; }
.article-body time { color: var(--blue-700); font-size: 12px; font-weight: 850; letter-spacing: .04em; }
.article-body h3 { margin-top: 10px; font-size: 22px; line-height: 1.18; }
.article-body h3 a:hover { color: var(--blue-700); }
.article-body p { margin-top: 13px; color: var(--ink-500); font-size: 14px; }
.article-hero { padding: 74px 0; color: #fff; background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); }
.article-hero-grid { display: grid; grid-template-columns: 1fr .86fr; align-items: center; gap: 54px; }
.article-hero .lead { margin-top: 22px; color: #c3d4e8; }
.article-hero time { display: inline-block; margin-top: 20px; color: #9fc2e7; font-weight: 800; }
.article-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-lg); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: start; }
.article-content { max-width: 820px; color: var(--ink-700); font-size: 18px; line-height: 1.85; }
.article-content p + p { margin-top: 24px; }
.article-sidebar { position: sticky; top: 112px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.article-sidebar h3 { margin-bottom: 14px; color: var(--navy-950); font-size: 20px; }
.article-sidebar a { display: block; padding: 14px 0; border-top: 1px solid var(--line); color: var(--navy-900); font-weight: 800; line-height: 1.35; }
.article-sidebar a:hover { color: var(--blue-700); }
.article-sidebar span { display: block; margin-bottom: 5px; color: var(--ink-500); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 1020px) { .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .article-hero-grid, .article-layout { grid-template-columns: 1fr; } .article-sidebar { position: static; } }
@media (max-width: 700px) { .article-grid { grid-template-columns: 1fr; } .article-hero { padding: 58px 0; } .article-content { font-size: 16px; } }

/* 2026-07-22 fixes: homepage carousel, clean dock, mobile menu */
.hero-carousel { position: relative; overflow: hidden; min-height: 720px; color: #fff; background: #031229; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .65s ease, visibility .65s ease; }
.hero-slide.active { opacity: 1; visibility: visible; position: relative; }
.hero-slide-bg { position: absolute; inset: 0; overflow: hidden; background: #031229; }
.hero-slide-bg::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(3,18,41,.95) 0%, rgba(3,18,41,.82) 34%, rgba(7,29,61,.46) 62%, rgba(3,18,41,.78) 100%); }
.hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) brightness(.72) blur(1px); transform: scale(1.06); }
.hero-slide-inner { position: relative; z-index: 2; min-height: 720px; display: grid; grid-template-columns: minmax(0, 1fr) 480px; align-items: center; gap: 64px; padding: 88px 0 96px; }
.hero-slide-copy { max-width: 780px; }
.hero-slide-copy h1 { font-size: clamp(46px, 6vw, 78px); }
.hero-slide-copy p { max-width: 720px; margin-top: 24px; color: #d6e5f6; font-size: 20px; line-height: 1.7; }
.hero-slide-product { justify-self: end; width: min(450px, 100%); padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 30px; background: rgba(255,255,255,.12); box-shadow: 0 30px 80px rgba(0,0,0,.28); backdrop-filter: blur(12px); }
.hero-slide-product img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 22px; background: #eef4fa; }
.hero-slide-product strong { display: block; margin-top: 16px; color: #fff; font-size: 18px; line-height: 1.25; }
.hero-slide-product span { display: block; margin-top: 5px; color: #b9cce5; font-size: 13px; }
.hero-dots { position: absolute; z-index: 3; left: 50%; bottom: 28px; display: flex; gap: 10px; transform: translateX(-50%); }
.hero-dots button { width: 10px; height: 10px; padding: 0; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; background: transparent; }
.hero-dots button.active { width: 30px; background: #fff; }
.contact-dock { overflow: hidden; }
.service-avatar { color: var(--blue-700); font-size: 15px; font-weight: 950; }
.dock-wechat { letter-spacing: 0; font-size: 10px; }
.dock-inquiry { font-size: 10px; }
@media (max-width: 1020px) {
  .header { z-index: 100; }
  .nav { top: 114px; bottom: 0; overflow-y: auto; overscroll-behavior: contain; padding: 18px 24px 32px; background: rgba(255,255,255,.98); box-shadow: 0 28px 80px rgba(4,20,46,.2); }
  .nav.open { display: flex; }
  .nav > a, .nav-products > a { color: var(--navy-900); background: #fff; }
  .nav-products { background: #fff; border-bottom: 1px solid var(--line); }
  .products-mega { display: none; max-height: none; overflow: visible; padding: 16px 0 18px; background: #fff; }
  .nav-products:hover .products-mega, .nav-products:focus-within .products-mega { display: block; }
  .products-mega-grid { grid-template-columns: 1fr; }
  .hero-slide-inner { grid-template-columns: 1fr; min-height: 660px; gap: 28px; padding: 64px 0 92px; }
  .hero-slide-product { justify-self: start; max-width: 330px; }
}
@media (max-width: 700px) {
  .topbar { position: relative; z-index: 101; }
  .nav { top: 114px; left: 0; right: 0; width: 100%; padding: 18px 20px 34px; background: #fff; }
  .products-mega-head { gap: 10px; }
  .products-mega-head strong { font-size: 18px; }
  .mega-category { font-size: 15px; }
  .mega-subcategory { font-size: 14px; }
  .hero-carousel { min-height: 620px; }
  .hero-slide-inner { min-height: 620px; padding: 52px 0 82px; }
  .hero-slide-copy h1 { font-size: 40px; }
  .hero-slide-copy p { font-size: 16px; }
  .hero-slide-product { max-width: 250px; padding: 12px; border-radius: 20px; }
  .hero-slide-product img { border-radius: 14px; }
  .contact-dock { right: 8px; top: 58%; width: 66px; border-radius: 34px; }
  .dock-service strong { font-size: 11px; }
  .dock-action { min-height: 58px; padding: 7px 4px; line-height: 1.2; }
  .qr-popover, .wechat-popover { right: 82px; width: min(260px, calc(100vw - 96px)); }
}

/* 2026-07-22 layout repair: fixed carousel height and safe homepage grids */
html, body { max-width: 100%; overflow-x: hidden; }
.hero-carousel { height: 720px; min-height: 0; }
.hero-slide, .hero-slide.active { position: absolute; inset: 0; height: 100%; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide-inner { height: 100%; min-height: 0; }
.home-intro { padding-bottom: 86px; }
.trust-strip { margin-top: -34px; margin-bottom: 28px; }
.trust-grid { max-width: 100%; }
.family-card { min-width: 0; }
.family-card .text-link, .product-card .text-link { position: relative; z-index: 3; }
.section .grid.grid-4 { align-items: stretch; }
.cert-row { max-width: 100%; }
.footer { overflow: hidden; }
.footer-main { align-items: start; }
@media (max-width: 1020px) {
  .hero-carousel { height: 660px; }
  .hero-slide-inner { height: 100%; min-height: 0; }
}
@media (max-width: 700px) {
  .hero-carousel { height: 620px; }
  .home-intro { padding-bottom: 48px; }
  .trust-strip { margin-top: 0; margin-bottom: 18px; }
}

/* 2026-07-22 carousel balance repair: smaller headline, larger product visual, fixed slide box */
.hero-carousel { height: 680px; min-height: 0; }
.hero-slide,
.hero-slide.active {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
}
.hero-slide { opacity: 0; visibility: hidden; transition: none; pointer-events: none; }
.hero-slide.active { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-slide-inner {
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 560px);
  gap: 72px;
  padding: 62px 0 74px;
}
.hero-slide-copy { max-width: 680px; }
.hero-slide-copy h1 {
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.hero-slide-copy p {
  max-width: 650px;
  margin-top: 22px;
  font-size: 19px;
}
.hero-slide-product {
  width: min(560px, 100%);
  padding: 20px;
}
.hero-slide-product img {
  aspect-ratio: 1.12 / 1;
}
.hero-dots { bottom: 22px; }
@media (max-width: 1180px) {
  .hero-carousel { height: 660px; }
  .hero-slide-inner {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
    gap: 46px;
    padding: 56px 0 72px;
  }
  .hero-slide-copy h1 { font-size: clamp(38px, 4.8vw, 56px); }
}
@media (max-width: 1020px) {
  .hero-carousel { height: auto; min-height: 660px; }
  .hero-slide,
  .hero-slide.active { min-height: 660px; }
  .hero-slide-inner {
    min-height: 660px;
    height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 54px 0 86px;
  }
  .hero-slide-product { justify-self: start; width: min(360px, 100%); }
  .hero-slide-copy h1 { font-size: clamp(36px, 8vw, 48px); }
}
@media (max-width: 700px) {
  .hero-carousel { min-height: 620px; }
  .hero-slide,
  .hero-slide.active { min-height: 620px; }
  .hero-slide-inner { min-height: 620px; padding: 44px 0 78px; }
  .hero-slide-copy h1 { font-size: 34px; }
  .hero-slide-copy p { font-size: 16px; }
}
