:root {
  --page-bg: #eaf6ff;
  --section-bg: #dff0ff;
  --card-bg: #f6fbff;
  --card-bg-soft: #edf7ff;
  --snow: #fbfcfe;
  --ink: #1a2536;
  --text: #4a5568;
  --muted: #64748b;
  --line: #e2e8f0;
  --blue: #0066cc;
  --blue-dark: #1a2536;
  --blue-deep: #0052cc;
  --blue-soft: #e8f2ff;
  --red: #ff4b5f;
  --orange: #ff6600;
  --orange-soft: #fcebdd;
  --teal: #0ea5b7;
  --lime: #8ccf5d;
  --white: #fbfcfe;
  --on-dark: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, .04);
  --shadow-hover: 0 18px 46px rgba(0, 102, 204, .14);
  --product-bg: #e4f4ff;
  --product-bg-hot: #eef8ff;
  --product-ink: #050b14;
  --product-card: #f7fbff;
  --product-card-soft: #eaf6ff;
  --product-card-line: rgba(0, 102, 204, .18);
  --product-text: #1a2536;
  --product-muted: #4a5568;
  --neon-blue: #00d2ff;
  --neon-blue-strong: #0077ff;
  --neon-orange: #ff5500;
  --neon-shadow-blue: 0 18px 52px rgba(0, 210, 255, .30);
  --neon-shadow-orange: 0 18px 52px rgba(255, 85, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 102, 204, .08), transparent 34vw),
    linear-gradient(180deg, var(--page-bg) 0%, #f7f8fa 42%, var(--page-bg) 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 12px clamp(18px, 16vw, 330px);
  background: rgba(234, 246, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; justify-self: start; gap: 0; font-weight: 900; line-height: 1; color: var(--blue); }
.brand-jsw { font-size: 36px; letter-spacing: 0; }
.brand-machines { align-self: center; margin-left: 4px; padding: 9px 10px 8px; color: var(--on-dark); background: var(--red); font-size: 14px; letter-spacing: 0; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 24px; font-size: 14px; font-weight: 800; color: var(--blue-dark); white-space: nowrap; }
.site-nav a { padding: 10px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a.active { color: var(--blue); border-color: var(--blue); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  cursor: pointer;
  box-shadow: var(--shadow);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: var(--on-dark);
  background: var(--red);
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.hero, .product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  min-height: calc(100vh - 82px);
  align-items: center;
  gap: clamp(26px, 5vw, 76px);
  padding: clamp(32px, 6vw, 82px) clamp(18px, 5vw, 76px);
  overflow: hidden;
}
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 82px);
  color: var(--on-dark);
  background:
    linear-gradient(90deg, rgba(9, 16, 26, .82) 0%, rgba(9, 16, 26, .64) 42%, rgba(9, 16, 26, .22) 72%),
    linear-gradient(0deg, rgba(9, 16, 26, .84), rgba(9, 16, 26, .08) 42%),
    url("assets/hero-machine.png") center right / cover no-repeat;
}
.hero-media { order: 2; min-height: 320px; display: grid; place-items: center; }
.hero-media img, .product-hero img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.22));
}
.hero-content { order: 1; max-width: 910px; }
.home-hero .hero-content { width: min(100%, 820px); margin-left: clamp(0px, 11vw, 260px); padding-top: 70px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-hero .eyebrow { color: var(--on-dark); }
.line-eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.line-eyebrow::before { content: ""; display: inline-block; width: 34px; height: 2px; background: var(--red); }
h1, h2, h3 { margin: 0; line-height: 1.08; color: var(--ink); letter-spacing: 0; }
.home-hero h1, .home-hero p { color: var(--on-dark); }
.home-hero h1 { font-size: clamp(48px, 5.2vw, 92px); max-width: 860px; }
h1 { font-size: clamp(42px, 7vw, 82px); max-width: 980px; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: 22px; }
.hero p, .product-hero p { max-width: 680px; font-size: clamp(17px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}
.primary { color: var(--on-dark); background: var(--blue); box-shadow: var(--shadow); }
.primary:hover, .header-cta:hover { background: var(--blue-deep); box-shadow: var(--shadow-hover); }
.secondary { color: var(--on-dark); border-color: rgba(248,249,250,.48); background: rgba(248,249,250,.10); }
.red-button { background: var(--red); }
.glass-button { background: rgba(248,249,250,.10); border-color: rgba(248,249,250,.48); box-shadow: none; }
.tahara-button { background: var(--orange); }
.liad-button { background: var(--teal); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  width: min(100%, 1060px);
  background: rgba(248, 249, 250, .16);
  border: 1px solid rgba(248, 249, 250, .28);
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.hero-stats article { padding: 20px 22px; border-right: 1px solid rgba(248, 249, 250, .22); }
.hero-stats article:last-child { border-right: 0; }
.hero-stats strong { display: block; color: var(--on-dark); font-size: 26px; line-height: 1; margin-bottom: 8px; }
.hero-stats span { display: block; color: rgba(248,249,250,.86); font-size: 13px; line-height: 1.35; }

.section { padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 76px); }
.section-heading { max-width: 900px; margin-bottom: 28px; }
.intro-band { background: var(--section-bg); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pillar-card, .product-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}
.pillar-card:hover, .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pillar-card img { width: 100%; height: 210px; object-fit: contain; background: linear-gradient(135deg, var(--card-bg-soft), #eef3f8); }
.chip {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.tahara .chip, .tahara-chip { color: var(--orange); background: var(--orange-soft); }
.liad .chip, .liad-chip { color: var(--blue); background: var(--blue-soft); }
.proof-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.proof-copy p { color: var(--muted); }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.metrics article { padding: 22px; border-left: 4px solid var(--orange); background: var(--card-bg); border-radius: 8px; box-shadow: var(--shadow); transition: transform .24s ease, box-shadow .24s ease; }
.metrics article:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.metrics strong { display: block; color: var(--blue); font-size: 44px; line-height: 1; }
.metrics span { color: var(--muted); font-size: 14px; }
.partner-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; color: var(--muted); background: var(--section-bg); }
.partner-strip span { padding: 10px 18px; color: var(--ink); border: 1px solid var(--line); background: rgba(251,252,254,.74); }

.product-hero { min-height: 72vh; background: linear-gradient(135deg, var(--page-bg), var(--card-bg) 48%, var(--section-bg)); }
.product-hero h1 { color: var(--ink); }
.product-hero > div { max-width: 760px; }
.tahara-hero .eyebrow { color: var(--orange); }
.liad-hero .eyebrow { color: var(--teal); }
.liad-main-image {
  width: min(100%, 560px);
  justify-self: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--product-card-line);
  border-radius: 8px;
  background: var(--card-bg);
  box-shadow: 0 18px 46px rgba(0, 102, 204, .13);
}
.tabs-section { padding-top: 28px; }
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.tab-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
  background: var(--card-bg);
  font-weight: 800;
  cursor: pointer;
}
.tab-button:hover { color: var(--blue); border-color: var(--blue); }
.tab-button.active { color: var(--on-dark); background: var(--blue); border-color: var(--blue); box-shadow: var(--shadow); }
.tab-panel { display: none; animation: rise .28s ease; }
.tab-panel.active { display: block; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.machine-layout, .product-card.feature {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  margin-bottom: 28px;
}
.machine-layout img, .product-card.feature img { width: 100%; max-height: 470px; object-fit: contain; }
.benefit-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.benefit-row span { padding: 8px 10px; color: var(--ink); border: 1px solid var(--line); background: var(--card-bg); font-size: 13px; font-weight: 800; }
.detail-image {
  width: min(100%, 780px);
  max-height: 520px;
  object-fit: contain;
  margin: 12px auto 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}
.compact-detail { max-height: 430px; }
.accordion { display: grid; gap: 10px; }
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .24s ease, border-color .24s ease;
}
details:hover { border-color: rgba(0, 102, 204, .28); box-shadow: var(--shadow-hover); }
summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
details p { margin: 0; padding: 0 18px 18px 48px; color: var(--muted); }
.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--on-dark);
  background: var(--blue);
  border-radius: 50%;
  flex: 0 0 auto;
}
.product-grid { display: grid; gap: 26px; }
.product-card.feature.alt { grid-template-columns: minmax(320px, 1.1fr) minmax(0, .9fr); }
.product-card.feature.alt img { order: 2; }
.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.compact .product-card img { height: 260px; width: 100%; object-fit: contain; background: var(--card-bg-soft); }
.check-list { padding-left: 20px; color: var(--muted); }
.check-list li + li { margin-top: 8px; }

.subpage-hero {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 16vw, 330px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(26, 37, 54, .72), rgba(0, 102, 204, .26)),
    url("assets/hero-machine.png") center right / cover no-repeat;
}
.subpage-hero h1, .subpage-hero p { color: var(--on-dark); }
.subpage-hero p:not(.eyebrow) { max-width: 740px; font-size: 20px; }
.contact-hero { background: linear-gradient(90deg, rgba(26, 37, 54, .72), rgba(0,102,204,.24)), url("Vyfukovačky pro sériovou výrobu Vyfukovačky.png") center / cover no-repeat; }
.text-card img { display: none; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: start; }
.contact-info-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; padding-top: 0; }
.contact-panel, .contact-form {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}
.contact-panel:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.contact-panel a { color: var(--blue); font-weight: 800; }
.contact-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); }
.contact-stack { display: grid; gap: 18px; }
.contact-role-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}
.contact-role-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.contact-role-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--card-bg-soft);
}
.contact-role-card a { color: var(--blue); font-weight: 800; }
.contact-form { display: grid; gap: 12px; }
.contact-form textarea { min-height: 160px; }
.map-band iframe { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(.2); }

.floating-cta {
  position: sticky;
  bottom: 0;
  z-index: 20;
  padding: 14px clamp(18px, 5vw, 76px);
  background: rgba(234,246,255,.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.floating-cta form {
  display: grid;
  grid-template-columns: 1.2fr minmax(180px, .55fr) minmax(220px, .8fr) auto;
  gap: 10px;
  align-items: center;
}
.floating-cta h2 { font-size: 18px; }
input, textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  font: inherit;
  background: var(--card-bg);
}
textarea { height: 44px; resize: vertical; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 42px clamp(18px, 5vw, 76px);
  color: var(--ink);
  background: var(--section-bg);
  border-top: 1px solid var(--line);
}
.site-footer h2 { color: var(--ink); font-size: 24px; }
.site-footer a { color: var(--blue); font-weight: 800; }
.footer-links { display: grid; gap: 9px; align-content: start; }

body.product-page {
  color: var(--product-ink);
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 210, 255, .32), transparent 28vw),
    linear-gradient(180deg, var(--product-bg-hot) 0%, var(--product-bg) 54%, #d8ecff 100%);
}

body.subpage-blue {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 102, 204, .12), transparent 30vw),
    linear-gradient(180deg, var(--product-bg-hot) 0%, var(--product-bg) 56%, #d8ecff 100%);
}

body.subpage-blue .site-header {
  background: rgba(230, 242, 255, .94);
  border-bottom-color: rgba(0, 119, 255, .18);
}

body.subpage-blue .section,
body.subpage-blue .intro-band,
body.subpage-blue .proof-section,
body.subpage-blue .contact-layout,
body.subpage-blue .contact-info-section {
  background: transparent;
}

body.subpage-blue .pillar-card,
body.subpage-blue .contact-panel,
body.subpage-blue .contact-form,
body.subpage-blue .contact-role-card {
  background: linear-gradient(145deg, var(--product-card), var(--product-card-soft));
  border-color: var(--product-card-line);
  box-shadow: 0 10px 30px rgba(0, 102, 204, .08);
}

body.subpage-blue .site-footer {
  background: #d8ecff;
  border-top-color: var(--product-card-line);
}

.contact-map-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(18px, 12vw, 240px);
  background:
    radial-gradient(circle at 75% 20%, rgba(0, 210, 255, .18), transparent 30vw),
    linear-gradient(135deg, var(--product-bg-hot), var(--product-bg));
}

.contact-map-hero h1 {
  color: var(--product-ink);
}

.contact-map-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--text);
  font-size: 20px;
}

.contact-map-hero iframe {
  width: 100%;
  min-height: 430px;
  border: 1px solid var(--product-card-line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 102, 204, .16);
  background: var(--product-card);
}

body.product-page .site-header {
  background: rgba(230, 242, 255, .94);
  border-bottom-color: rgba(0, 119, 255, .22);
}

body.product-page .site-nav {
  color: var(--product-ink);
}

body.product-page .site-nav a:hover,
body.product-page .site-nav a.active {
  color: var(--neon-blue-strong);
  border-color: var(--neon-blue);
}

body.tahara-page .site-nav a:hover,
body.tahara-page .site-nav a.active {
  color: var(--neon-orange);
  border-color: var(--neon-orange);
}

body.product-page .header-cta,
body.product-page .primary,
body.product-page .tab-button.active {
  color: var(--on-dark);
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-blue-strong));
  border-color: transparent;
  box-shadow: var(--neon-shadow-blue);
}

body.tahara-page .header-cta,
body.tahara-page .primary,
body.tahara-page .tab-button.active,
body.tahara-page .tahara-button {
  background: linear-gradient(135deg, #ff8a00, var(--neon-orange));
  box-shadow: var(--neon-shadow-orange);
}

body.product-page .product-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 210, 255, .26), transparent 28vw),
    linear-gradient(135deg, var(--product-bg-hot), var(--product-bg));
}

body.product-page .product-hero h1,
body.product-page .product-hero h2,
body.product-page .product-hero h3,
body.product-page .machine-layout h2,
body.product-page .section-heading h2,
body.product-page .floating-cta h2 {
  color: var(--product-ink);
}

body.product-page .product-hero p,
body.product-page .machine-layout p {
  color: #142033;
}

body.product-page .eyebrow {
  color: var(--neon-blue-strong);
}

body.tahara-page .eyebrow {
  color: var(--neon-orange);
}

body.product-page .section,
body.product-page .tabs-section,
body.product-page .product-grid,
body.product-page .compact {
  background: transparent;
}

body.product-page .pillar-card,
body.product-page .product-card,
body.product-page details,
body.product-page .floating-cta form,
body.product-page .contact-panel,
body.product-page .contact-form,
body.product-page .contact-role-card {
  color: var(--product-text);
  background: linear-gradient(145deg, var(--product-card), var(--product-card-soft));
  border: 1px solid var(--product-card-line);
  box-shadow: 0 10px 30px rgba(0, 102, 204, .08);
}

body.product-page .product-card:hover,
body.product-page details:hover,
body.product-page .pillar-card:hover {
  box-shadow: 0 16px 42px rgba(0, 119, 255, .18);
}

body.tahara-page .product-card:hover,
body.tahara-page details:hover,
body.tahara-page .pillar-card:hover {
  box-shadow: 0 16px 42px rgba(255, 85, 0, .18);
}

body.product-page .product-card h2,
body.product-page .product-card h3,
body.product-page details summary,
body.product-page details p,
body.product-page .check-list,
body.product-page .check-list li {
  color: var(--product-ink);
}

body.product-page .product-card p,
body.product-page details p {
  color: var(--product-muted);
}

body.product-page .tabs {
  border-bottom-color: rgba(5, 11, 20, .26);
}

body.product-page .tab-button {
  color: var(--product-ink);
  background: var(--product-card);
  border-color: var(--product-card-line);
  box-shadow: 0 10px 30px rgba(0, 102, 204, .06);
}

body.product-page .tab-button:hover {
  color: var(--neon-blue-strong);
  border-color: var(--neon-blue);
  box-shadow: 0 16px 42px rgba(0, 119, 255, .16);
}

body.tahara-page .tab-button:hover {
  color: var(--neon-orange);
  border-color: var(--neon-orange);
  box-shadow: 0 16px 42px rgba(255, 85, 0, .18);
}

body.product-page .chip,
body.product-page .liad-chip {
  color: var(--neon-blue-strong);
  background: #d8f3ff;
}

body.tahara-page .chip,
body.tahara-page .tahara-chip {
  color: var(--neon-orange);
  background: #ffe8dc;
}

body.product-page .benefit-row span {
  color: var(--product-ink);
  background: var(--product-card);
  border-color: var(--product-card-line);
}

body.product-page .benefit-icon {
  color: var(--on-dark);
  background: var(--neon-blue);
  box-shadow: 0 0 14px rgba(0, 210, 255, .30);
}

body.tahara-page .benefit-icon {
  background: var(--neon-orange);
  box-shadow: 0 0 18px rgba(255, 85, 0, .44);
}

body.product-page .detail-image,
body.product-page .compact .product-card img,
body.product-page .machine-layout img,
body.product-page .product-card.feature img {
  background: linear-gradient(145deg, var(--product-card), var(--product-card-soft));
  border-color: var(--product-card-line);
  box-shadow: 0 14px 40px rgba(0, 102, 204, .10);
}

body.product-page .floating-cta {
  background: rgba(224, 240, 255, .88);
  border-top-color: rgba(0, 119, 255, .26);
}

body.product-page input,
body.product-page textarea {
  color: var(--product-ink);
  background: var(--product-card);
  border-color: var(--product-card-line);
}

body.product-page input::placeholder,
body.product-page textarea::placeholder {
  color: var(--product-muted);
}

body.product-page .site-footer {
  color: var(--product-ink);
  background: #d8ecff;
  border-top-color: var(--product-card-line);
}

body.product-page .site-footer h2,
body.product-page .site-footer p {
  color: var(--product-ink);
}

body.product-page .site-footer a {
  color: var(--neon-blue);
}

body.tahara-page .site-footer a {
  color: var(--neon-orange);
}

@media (max-width: 980px) {
  .hero, .product-hero, .machine-layout, .product-card.feature, .product-card.feature.alt, .proof-section {
    grid-template-columns: 1fr;
  }
  .contact-map-hero {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 18px; }
  .header-cta { display: none; }
  .home-hero .hero-content { margin-left: 0; }
  .hero-stats, .contact-layout, .contact-info-section { grid-template-columns: 1fr; }
  .hero-stats article { border-right: 0; border-bottom: 1px solid rgba(248,249,250,.22); }
  .hero-stats article:last-child { border-bottom: 0; }
  .product-card.feature.alt img { order: 0; }
  .pillar-grid, .metrics, .compact { grid-template-columns: 1fr; }
  .floating-cta form { grid-template-columns: 1fr; }
  .product-hero { min-height: auto; }
}

@media (max-width: 720px) {
  .site-header { align-items: center; min-height: 72px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(246, 251, 255, .98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(0, 102, 204, .16);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a:last-child { border-bottom: 0; }
  .brand-jsw { font-size: 30px; }
  .brand-machines { font-size: 12px; padding: 7px 8px; }
  h1, .home-hero h1 { font-size: 40px; }
  .hero, .product-hero { padding-top: 34px; }
  .home-hero { min-height: auto; background-position: 58% center; }
  .home-hero .hero-content { padding-top: 22px; }
  .hero-media { min-height: 240px; }
  .pillar-card img { height: 170px; }
  .floating-cta { position: static; }
  .site-footer { grid-template-columns: 1fr; }
  .contact-role-card { grid-template-columns: 1fr; }
  .contact-role-card img { max-height: 220px; }
  .contact-map-hero iframe { min-height: 320px; }
  .liad-main-image {
    width: 100%;
    padding: 14px;
  }
}
