/*
Theme Name: UHMWPE Trade Theme
Theme URI: https://example.com/
Author: OpenAI Codex
Description: A WordPress landing theme for UHMWPE sheet export businesses focused on distributor trust and inquiry conversion.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: uhmwpe-trade-theme
*/

:root {
  --navy: #0c2248;
  --navy-deep: #081730;
  --navy-soft: #12366b;
  --orange: #ff8a1f;
  --orange-deep: #ef6c00;
  --white: #ffffff;
  --text: #25324a;
  --muted: #66748f;
  --line: #dfe6f1;
  --bg: #f5f8fc;
  --bg-alt: #eff4fb;
  --success: #1c74d9;
  --shadow: 0 20px 50px rgba(12, 34, 72, 0.12);
  --radius: 14px;
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-shell {
  overflow: hidden;
}

.top-strip {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.top-strip-inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-strip-left,
.top-strip-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 22px rgba(12, 34, 72, 0.06);
}

.site-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  border: 3px solid var(--navy-soft);
  position: relative;
  display: grid;
  place-items: center;
  color: var(--navy-soft);
  font-weight: 700;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--orange);
  border-radius: 10px;
  transform: rotate(45deg);
}

.brand-mark::after {
  inset: 18px;
  border-color: var(--navy-soft);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-title {
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--navy);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #ff982f 0%, var(--orange) 100%);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(255, 138, 31, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.94);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  color: var(--navy);
}

.button-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(7, 22, 47, 0.92) 0%, rgba(7, 22, 47, 0.82) 30%, rgba(7, 22, 47, 0.18) 52%, rgba(7, 22, 47, 0) 70%, rgba(7, 22, 47, 0) 100%),
    var(--hero-image, url("hero-banner.png")) center center / cover no-repeat;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 110px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: center;
  padding: 44px 0 54px;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-copy h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
}

.hero-copy p {
  max-width: 470px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.feature-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 520px;
  margin-bottom: 30px;
}

.feature-item {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.feature-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.68);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
}

.feature-label {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-assurance {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-assurance .assurance-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(7, 22, 47, 0.16);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.sheet-stack {
  display: none;
}

.sheet-layer {
  position: absolute;
  right: 0;
  width: 100%;
  border-radius: 22px 22px 16px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #eef1f4 68%, #dde3e9 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.sheet-layer::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 10%;
  height: 22%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.sheet-layer.layer-1 {
  bottom: 0;
  height: 188px;
  transform: perspective(800px) rotateX(62deg);
}

.sheet-layer.layer-2 {
  bottom: 44px;
  height: 162px;
  width: 95%;
  transform: perspective(800px) rotateX(62deg);
}

.sheet-layer.layer-3 {
  bottom: 82px;
  height: 142px;
  width: 90%;
  transform: perspective(800px) rotateX(62deg);
}

.sheet-layer.layer-4 {
  bottom: 116px;
  height: 124px;
  width: 85%;
  transform: perspective(800px) rotateX(62deg);
}

.hero-pallet {
  display: none;
}

.hero-stats {
  background: var(--navy);
  color: var(--white);
}

.hero-stats-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
}

.stat-value {
  font-size: 18px;
  font-weight: 900;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 54px 0;
}

.commercial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.commercial-card {
  padding: 22px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.commercial-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.commercial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-tight {
  padding: 34px 0 54px;
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.section-heading h2,
.split-title,
.footer-title {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading p,
.split-text,
.footer-copy {
  margin: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-media {
  height: 186px;
  background: linear-gradient(135deg, #edf1f7, #c8d4ea);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-media.sheet::before,
.product-media.parts::before,
.product-media.liner::before,
.product-media.rod::before {
  content: "";
  position: absolute;
}

.product-media.sheet::before {
  left: 16%;
  top: 36px;
  width: 68%;
  height: 88px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #ffffff, #e7edf3);
  box-shadow:
    0 20px 0 -6px rgba(221, 229, 238, 0.96),
    0 40px 0 -12px rgba(212, 221, 232, 0.92);
  transform: perspective(600px) rotateX(58deg);
}

.product-media.parts::before {
  inset: 26px 28px;
  background:
    radial-gradient(circle at 16% 24%, #1f2733 0 14px, transparent 15px),
    radial-gradient(circle at 33% 28%, #252f3d 0 16px, transparent 17px),
    radial-gradient(circle at 52% 22%, #222d38 0 18px, transparent 19px),
    radial-gradient(circle at 68% 28%, #1a2531 0 14px, transparent 15px),
    radial-gradient(circle at 84% 22%, #293545 0 18px, transparent 19px),
    radial-gradient(circle at 22% 58%, #1d2834 0 18px, transparent 19px),
    radial-gradient(circle at 42% 56%, #1d2834 0 12px, transparent 13px),
    radial-gradient(circle at 58% 58%, #2a3645 0 20px, transparent 21px),
    radial-gradient(circle at 76% 60%, #1d2834 0 15px, transparent 16px),
    radial-gradient(circle at 88% 62%, #222d38 0 10px, transparent 11px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 36%);
}

.product-media.liner::before {
  left: 20%;
  top: 38px;
  width: 62%;
  height: 90px;
  background:
    linear-gradient(135deg, #1f63d8, #3559d0);
  box-shadow:
    56px 16px 0 0 #21b291,
    18px 38px 0 -8px rgba(34, 93, 221, 0.92);
  transform: skew(-16deg) rotate(-10deg);
}

.product-media.rod::before {
  left: 18%;
  top: 48px;
  width: 66%;
  height: 70px;
  background:
    radial-gradient(circle at 8% 50%, #ffffff 0 28px, #d6dde6 29px, transparent 31px),
    radial-gradient(circle at 28% 50%, #1e5dcf 0 28px, #173e87 29px, transparent 31px),
    radial-gradient(circle at 48% 50%, #1a1f26 0 28px, #38414e 29px, transparent 31px),
    radial-gradient(circle at 68% 50%, #1ea58a 0 28px, #16755f 29px, transparent 31px),
    radial-gradient(circle at 88% 50%, #ffffff 0 28px, #d8e1ea 29px, transparent 31px);
}

.product-body {
  padding: 18px 16px 16px;
}

.product-body h3,
.reason-card h3,
.factory-card h3,
.footer-links h4,
.faq-mini h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
}

.product-body h3 {
  font-size: 24px;
}

.product-body p,
.reason-card p,
.factory-card p,
.footer-links a,
.faq-mini p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.bullet-list {
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 13px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.link-arrow {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-quote-layout {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 24px;
  align-items: start;
}

.reason-panel,
.quote-panel,
.factory-card,
.footer-cta,
.market-strip,
.applications-panel,
.logos-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.reason-panel {
  padding: 28px 24px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.reason-card {
  padding: 10px 6px 0 0;
}

.reason-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #edf5ff, #d8e8ff);
  color: var(--success);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 12px;
}

.reason-card h3 {
  font-size: 16px;
}

.market-strip {
  margin-top: 24px;
  padding: 18px 20px;
}

.market-strip h3,
.applications-panel h3,
.logos-panel h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
}

.flag-row {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
}

.flag-card {
  text-align: center;
}

.flag {
  height: 36px;
  border-radius: 6px;
  border: 1px solid #d7deea;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.flag.us { background: linear-gradient(180deg, #b22234 0 14%, #fff 14% 28%, #b22234 28% 42%, #fff 42% 56%, #b22234 56% 70%, #fff 70% 84%, #b22234 84% 100%), linear-gradient(90deg, #3c3b6e 0 40%, transparent 40%); }
.flag.de { background: linear-gradient(180deg, #000 0 33%, #dd0000 33% 66%, #ffce00 66% 100%); }
.flag.au { background: linear-gradient(135deg, #012169, #1d4ca3); }
.flag.br { background: linear-gradient(135deg, #009b3a, #1ca84b); }
.flag.sa { background: linear-gradient(135deg, #006c35, #0f8744); }
.flag.uk { background: linear-gradient(135deg, #00247d, #1e4bb8); }
.flag.ca { background: linear-gradient(90deg, #d52b1e 0 24%, #fff 24% 76%, #d52b1e 76% 100%); }
.flag.my { background: linear-gradient(180deg, #cc0001 0 14%, #fff 14% 28%, #cc0001 28% 42%, #fff 42% 56%, #cc0001 56% 70%, #fff 70% 84%, #cc0001 84% 100%), linear-gradient(90deg, #010066 0 40%, transparent 40%); }
.flag.more { background: linear-gradient(135deg, #edf2fb, #d9e2f3); }

.flag-card span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.quote-panel {
  padding: 26px 22px 18px;
  background: linear-gradient(180deg, var(--navy) 0%, #0d2c5f 100%);
  color: var(--white);
}

.quote-panel h2 {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-panel p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 11px 14px;
  border: 0;
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}

.quote-form textarea {
  min-height: 84px;
  resize: vertical;
}

.quote-steps {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.quote-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.quote-step strong {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
}

.quote-submit {
  width: 100%;
  margin-top: 12px;
}

.bottom-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.applications-panel,
.factory-card,
.logos-panel {
  padding: 24px;
}

.application-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.application-tile {
  min-height: 220px;
  padding: 18px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(11, 24, 45, 0.08), rgba(11, 24, 45, 0.7)),
    linear-gradient(135deg, #5072aa, #274d87);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.application-tile-accent {
  background:
    linear-gradient(150deg, rgba(5, 28, 67, 0.96), rgba(22, 96, 173, 0.92)),
    linear-gradient(135deg, #1e508e, #102f5d);
}

.application-tile-outline {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.98)),
    linear-gradient(135deg, #d8e6fa, #eef5ff);
  color: var(--navy);
  border: 1px solid #d4e3f6;
}

.application-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, 0.08) 44% 54%, transparent 54% 100%);
}

.application-tile span {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.35;
}

.has-real-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.has-real-image.image-fit {
  background-size: contain;
  background-color: #edf3fb;
  background-origin: content-box;
}

.has-real-image.image-fit-dark {
  background-size: contain;
  background-color: #dfe9f6;
  background-origin: content-box;
}

.has-real-image.image-cover {
  background-size: cover !important;
  background-origin: border-box !important;
  background-color: transparent;
}

.image-soft-bottom {
  background-position: center center;
  padding-bottom: 10px;
}

.image-soft-frame {
  background-position: center;
  padding: 12px;
}

.has-real-image::before,
.has-real-image::after {
  display: none !important;
}

.has-real-image > span,
.has-real-image > strong,
.has-real-image > div {
  position: relative;
  z-index: 1;
}

.view-button {
  margin-top: 14px;
}

.factory-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: start;
}

.factory-card h3,
.applications-panel h3,
.logos-panel h3 {
  font-size: 28px;
}

.factory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.factory-shot {
  min-height: 260px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #8595a9, #495a6d);
  position: relative;
  overflow: hidden;
}

.factory-shot-wide {
  grid-column: span 2;
  min-height: 220px;
}

.factory-shot-note {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, #0c2f6f, #1a5abf);
  color: var(--white);
}

.factory-shot-note strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.factory-shot-note span {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.factory-shot::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 10px, transparent 10px 28px),
    linear-gradient(180deg, transparent 0 56%, rgba(255, 255, 255, 0.12) 56% 60%, transparent 60% 100%);
}

.logos-panel {
  margin-top: 24px;
}

.logo-row {
  display: grid;
  gap: 12px;
}

.certificate-hero {
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  justify-content: center;
}

.certificate-hero img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 10px;
}

.logo-row {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.brand-logo {
  min-height: 52px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfdff, #eef4fb);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #8794aa;
  font-size: 22px;
  font-weight: 900;
}

.site-footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #071227 100%);
  color: var(--white);
  margin-top: 36px;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 47, 0.94) 0%, rgba(7, 22, 47, 0.68) 100%),
    var(--hero-image, linear-gradient(135deg, #30435f 0%, #5d6980 42%, #8e949f 100%)) center center / cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,0.14), rgba(255,255,255,0) 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 14px, transparent 14px 48px);
  pointer-events: none;
}

.page-hero-inner {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
}

.entry-content {
  width: min(100%, 1120px);
  margin: 0 auto;
  color: var(--text);
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--navy);
  line-height: 1.15;
}

.entry-content h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
}

.entry-content h2 {
  margin: 40px 0 16px;
  font-size: clamp(28px, 3vw, 38px);
}

.entry-content h3 {
  margin: 28px 0 12px;
  font-size: clamp(22px, 2.2vw, 28px);
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote,
.entry-content figure {
  margin: 0 0 18px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 20px;
}

.entry-content li + li {
  margin-top: 8px;
}

.entry-content a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content img,
.entry-content .wp-block-image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.entry-content .wp-block-image,
.entry-content figure {
  margin: 24px 0;
}

.entry-content .wp-block-columns {
  gap: 24px;
}

.entry-content .wp-block-group,
.entry-content .wp-block-cover,
.entry-content .wp-block-media-text {
  margin: 28px 0;
}

.entry-content .wp-block-button__link {
  border-radius: 6px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.breadcrumb a,
.breadcrumb span {
  color: rgba(255, 255, 255, 0.76);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.page-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: start;
}

.side-panel,
.content-card,
.media-card,
.info-card-lite,
.contact-card,
.form-card,
.video-card,
.mini-factory-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.side-panel {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
}

.side-panel h3,
.content-card h2,
.info-card-lite h3,
.contact-card h3,
.form-card h3,
.video-card h3,
.mini-factory-card h3 {
  margin: 0 0 16px;
  color: var(--navy);
}

.side-nav {
  display: grid;
  gap: 8px;
}

.side-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.side-nav a.is-active,
.side-nav a:hover,
.side-nav a:focus-visible {
  border-color: #bed0ea;
  background: #f3f7fd;
  transform: translateX(4px);
}

.content-stack {
  display: grid;
  gap: 22px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.content-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.content-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 234, 248, 0.9) 0%, rgba(222, 234, 248, 0) 72%);
  pointer-events: none;
}

.content-card p,
.content-card li,
.contact-card p,
.form-card p,
.video-card p,
.mini-factory-card p {
  color: var(--muted);
  font-size: 14px;
}

.detail-media {
  min-height: 280px;
  border-radius: 16px;
  background: linear-gradient(135deg, #edf1f7, #c8d4ea);
  position: relative;
  overflow: hidden;
}

.detail-media.sheet::before,
.detail-media.liner::before,
.detail-media.rod::before,
.detail-media.parts::before,
.detail-media.conveyor::before,
.detail-media.factory::before,
.detail-media.contact::before {
  content: "";
  position: absolute;
}

.detail-media.sheet::before {
  left: 16%;
  top: 54px;
  width: 68%;
  height: 112px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #e7edf3);
  box-shadow:
    0 26px 0 -8px rgba(221, 229, 238, 0.96),
    0 52px 0 -16px rgba(212, 221, 232, 0.92),
    0 78px 0 -24px rgba(202, 214, 228, 0.88);
  transform: perspective(700px) rotateX(58deg);
}

.detail-media.conveyor::before {
  inset: 16px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(0,0,0,0.12)),
    linear-gradient(135deg, #7a8da7, #546578);
  box-shadow: inset 0 -46px 0 rgba(19, 78, 176, 0.82);
}

.detail-media.liner::before {
  inset: 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(0,0,0,0.14)),
    linear-gradient(145deg, #607a96, #34495f);
  box-shadow:
    inset 0 0 0 10px rgba(255,255,255,0.08),
    inset 0 -54px 0 rgba(12, 37, 72, 0.34);
}

.detail-media.rod::before {
  left: 12%;
  right: 12%;
  top: 50%;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f7fb, #cfdced);
  transform: translateY(-50%);
  box-shadow:
    0 -56px 0 0 rgba(233, 240, 248, 0.96),
    0 56px 0 0 rgba(217, 227, 240, 0.92);
}

.detail-media.parts::before {
  inset: 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.32), rgba(255,255,255,0) 20%),
    linear-gradient(145deg, #dae6f5, #9fb4cd);
}

.detail-media.parts::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: 34px;
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.32);
  transform: rotate(18deg);
}

.detail-media.factory::before {
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 16px, transparent 16px 44px),
    linear-gradient(180deg, transparent 0 62%, rgba(255,255,255,0.12) 62% 66%, transparent 66% 100%),
    linear-gradient(135deg, #8ba1bc, #4f6173);
}

.detail-media.contact::before {
  inset: 0;
  background:
    radial-gradient(circle at 26% 34%, rgba(255,255,255,0.44), transparent 12%),
    linear-gradient(135deg, #edf2fb, #cfdcf0);
}

.spec-box {
  padding: 22px;
  border: 1px solid #d9e7fb;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
  box-shadow: var(--shadow);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mini-tile {
  min-height: 148px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, #edf1f7, #c8d4ea);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mini-tile.sheet::before,
.mini-tile.black::before,
.mini-tile.green::before,
.mini-tile.blue::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 10px;
}

.mini-tile.sheet::before {
  background: linear-gradient(180deg, #fff, #e7edf3);
  transform: perspective(600px) rotateX(60deg);
}

.mini-tile.black::before { background: linear-gradient(135deg, #16191f, #424a57); }
.mini-tile.green::before { background: linear-gradient(135deg, #0e8d67, #35c69e); }
.mini-tile.blue::before { background: linear-gradient(135deg, #1e57cc, #2f8bff); }

.mini-caption {
  margin-top: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.application-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.application-intro {
  max-width: 920px;
  padding: 8px 0 4px;
}

.application-intro h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 30px;
}

.application-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.app-thumb {
  min-height: 220px;
  padding: 18px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(11, 24, 45, 0.16), rgba(11, 24, 45, 0.76)),
    linear-gradient(135deg, #5072aa, #274d87);
  color: var(--white);
  display: flex;
  align-items: end;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.app-thumb-text {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #0c2f6f, #1a5fc8);
}

.app-thumb-text-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.98)),
    linear-gradient(145deg, #e5effd, #f6faff);
  color: var(--navy);
  border: 1px solid #d7e4f7;
}

.app-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.2), rgba(255,255,255,0) 38%);
  pointer-events: none;
}

.app-thumb.featured {
  background:
    linear-gradient(180deg, rgba(11, 24, 45, 0.12), rgba(11, 24, 45, 0.78)),
    linear-gradient(135deg, #1b5ac6, #0c2f6f);
  min-height: 240px;
  grid-column: span 2;
}

.application-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.scenario-card {
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.scenario-card:nth-child(2) {
  transform: translateY(18px);
}

.scenario-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 235, 248, 0.75) 0%, rgba(223, 235, 248, 0) 72%);
  pointer-events: none;
}

.scenario-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.scenario-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-strip {
  padding: 28px;
  background: linear-gradient(145deg, #f9fbff 0%, #eef5ff 100%);
  border: 1px solid #d8e5f6;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.solution-strip h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 28px;
}

.solution-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.solution-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.app-detail-layout {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 30px;
  align-items: start;
}

.product-hero-split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: stretch;
}

.product-hero-split-reverse {
  grid-template-columns: 0.98fr 1.02fr;
}

.product-signal-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signal-card {
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border: 1px solid #d8e5f6;
}

.signal-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.signal-card span {
  color: var(--muted);
  font-size: 14px;
}

.spec-table {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.spec-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #dbe6f4;
}

.spec-row strong {
  color: var(--navy);
}

.spec-row span {
  color: var(--muted);
}

.application-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.app-chip {
  padding: 16px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #f4f9ff);
  border: 1px solid #d9e6f7;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.metric-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric-chip {
  padding: 16px 14px;
  border-radius: 12px;
  background: #f7faff;
  border: 1px solid var(--line);
}

.metric-chip strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}

.mini-factory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-factory-shot {
  min-height: 280px;
  border-radius: 14px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 12px, transparent 12px 30px),
    linear-gradient(135deg, #8ba1bc, #4f6173);
  box-shadow: var(--shadow);
}

.mini-factory-shot-wide {
  grid-column: span 2;
  min-height: 320px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 30px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-step {
  padding: 22px 20px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.timeline-step::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 235, 248, 0.9) 0%, rgba(223, 235, 248, 0) 72%);
  pointer-events: none;
}

.timeline-step strong,
.post-layout h2,
.sidebar-card h3,
.contact-banner h2 {
  color: var(--navy);
}

.timeline-step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.timeline-step p,
.post-layout p,
.sidebar-card p,
.contact-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quality-band {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  gap: 30px;
  align-items: stretch;
}

.quality-highlight {
  padding: 28px;
  background: linear-gradient(135deg, var(--navy) 0%, #12366b 100%);
  color: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.quality-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,0.16), rgba(255,255,255,0) 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 12px, transparent 12px 40px);
  pointer-events: none;
}

.quality-highlight h2,
.quality-highlight p,
.quality-highlight li {
  color: var(--white);
}

.quality-highlight h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.quality-checklist {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.quality-checklist li {
  padding-left: 18px;
  position: relative;
}

.quality-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.quality-metrics {
  display: grid;
  gap: 16px;
}

.metric-tall {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-tall .stat-value {
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 10px;
}

.metric-tall .stat-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.factory-story {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: start;
}

.factory-story-copy {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.factory-panorama {
  min-height: 340px;
  border-radius: 22px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 14px, transparent 14px 36px),
    linear-gradient(180deg, transparent 0 60%, rgba(255,255,255,0.1) 60% 64%, transparent 64% 100%),
    linear-gradient(135deg, #8ba1bc, #4f6173);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.factory-panorama::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 180px;
  height: 120px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.18);
}

.factory-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.factory-kpi {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.factory-kpi strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 6px;
}

.post-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 34px;
  align-items: start;
}

.post-content {
  display: grid;
  gap: 20px;
}

.post-hero-card {
  min-height: 240px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.12)),
    linear-gradient(135deg, #8ba1bc, #4f6173);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  align-items: flex-end;
}

.post-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 14px, transparent 14px 42px),
    radial-gradient(circle at top right, rgba(255,255,255,0.22), rgba(255,255,255,0) 28%);
}

.post-hero-badge,
.post-hero-copy {
  position: relative;
  z-index: 1;
}

.post-hero-badge {
  position: absolute;
  left: 28px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-hero-copy {
  max-width: 520px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(8, 18, 32, 0.44);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.post-hero-copy strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
}

.post-hero-copy span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.sidebar-stack {
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 22px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border: 1px solid #d8e5f6;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-banner {
  padding: 32px;
  background: linear-gradient(135deg, #fff4e8 0%, #fff 100%);
  border: 1px solid #f3d6b8;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-banner::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0) 72%);
}

.contact-banner h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.contact-action-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-action-card {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid #d9e6f7;
  box-shadow: var(--shadow);
}

.contact-action-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
}

.contact-action-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.contact-action-note {
  color: var(--muted);
  font-size: 13px;
}

.brand-story {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: stretch;
}

.story-panel {
  padding: 32px;
  background: linear-gradient(180deg, #ffffff, #f6faff);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.story-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 232, 249, 0.78) 0%, rgba(217, 232, 249, 0) 72%);
  pointer-events: none;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid #d9e6fb;
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-panel h2 {
  margin: 14px 0 14px;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.05;
}

.story-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}

.story-visual {
  min-height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.2), rgba(255,255,255,0) 42%),
    linear-gradient(145deg, #102d54 0%, #20487a 48%, #6e87a2 100%);
  box-shadow: var(--shadow);
  position: relative;
  padding: 28px;
  display: flex;
  align-items: flex-end;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 40%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 14px, transparent 14px 38px);
}

.story-visual::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 24px;
  width: 160px;
  height: 160px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  transform: rotate(10deg);
}

.story-visual-card {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.story-visual-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-visual-card strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1.18;
}

.story-visual-card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

.story-visual-card-main {
  max-width: 360px;
  padding: 24px;
  background: rgba(8, 18, 32, 0.46);
}

.story-visual-card-accent {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 220px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.12);
}

.story-visual-card-accent strong {
  font-size: 18px;
  line-height: 1.3;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: rgba(255,255,255,0.72);
}

.ribbon-heading {
  max-width: 840px;
}

.value-ribbon {
  padding: 32px 32px 34px;
  background: linear-gradient(135deg, var(--navy) 0%, #163a70 100%);
  color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.value-ribbon::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.value-ribbon h2 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.06;
}

.value-ribbon p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
}

.value-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  padding: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}

.value-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}

.value-card p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.milestone-card {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.milestone-card:nth-child(2),
.milestone-card:nth-child(4) {
  transform: translateY(28px);
}

.milestone-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 232, 249, 0.55) 0%, rgba(217, 232, 249, 0) 72%);
  pointer-events: none;
}

.milestone-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.milestone-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.milestone-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.buyer-promise {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.buyer-promise-copy,
.buyer-promise-panel {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.buyer-promise-copy {
  padding: 32px;
  background: linear-gradient(180deg, #fffdf9, #fff4e8);
  border: 1px solid #f1dbc2;
}

.buyer-promise-copy h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.08;
}

.buyer-promise-copy p {
  margin: 0;
  color: var(--muted);
}

.promise-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.promise-list li {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(226, 202, 177, 0.7);
  color: var(--navy);
  font-weight: 600;
}

.buyer-promise-panel {
  padding: 28px;
  background: linear-gradient(160deg, #f8fbff 0%, #eaf3ff 100%);
  border: 1px solid #d8e5f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promise-mini-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buyer-promise-panel h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.14;
}

.buyer-promise-panel p {
  margin: 0 0 20px;
  color: var(--muted);
}

.faq-section {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.faq-section-header {
  max-width: 760px;
  margin-bottom: 18px;
}

.faq-section-header h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 28px;
}

.faq-section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.faq-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.editorial-intro {
  max-width: 920px;
}

.editorial-intro h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.08;
}

.editorial-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.news-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.news-media {
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.12)),
    linear-gradient(135deg, #8ba1bc, #4f6173);
  position: relative;
}

.news-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 12px, transparent 12px 30px),
    linear-gradient(180deg, transparent 0 62%, rgba(255,255,255,0.12) 62% 66%, transparent 66% 100%);
}

.news-body {
  padding: 22px;
}

.news-meta {
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-body h3 {
  margin: 10px 0;
  color: var(--navy);
  font-size: 20px;
}

.news-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.insight-ribbon {
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(140deg, #0f2d55 0%, #183f72 58%, #6f89a6 100%);
  color: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.insight-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.16), rgba(255,255,255,0) 26%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 12px, transparent 12px 38px);
  pointer-events: none;
}

.insight-ribbon-copy,
.insight-points {
  position: relative;
  z-index: 1;
}

.insight-ribbon-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 34px;
  line-height: 1.08;
}

.insight-ribbon-copy p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.insight-points {
  display: grid;
  gap: 14px;
}

.insight-point {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
}

.insight-point strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.insight-point span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.article-cta-band {
  padding: 26px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdf8, #fff2e2);
  border: 1px solid #f1dac0;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.article-cta-band h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 30px;
}

.article-cta-band p {
  margin: 0;
  color: var(--muted);
}

.visual-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.visual-story-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visual-story-media {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8da2bb, #4d6176);
  background-color: #edf3fb;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.visual-story-media::before,
.visual-story-media::after {
  content: "";
  position: absolute;
}

.visual-story-media-conveyor::before {
  inset: 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(0,0,0,0.14)),
    linear-gradient(145deg, #6c83a0, #40546a);
  box-shadow: inset 0 -52px 0 rgba(17, 63, 138, 0.7);
}

.visual-story-media-conveyor::after {
  left: 14%;
  right: 14%;
  top: 46%;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
}

.visual-story-media-maintenance::before {
  inset: 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 28% 30%, rgba(255,255,255,0.34), rgba(255,255,255,0) 18%),
    linear-gradient(145deg, #dfeaf6, #9eb5ce);
}

.visual-story-media-maintenance::after {
  right: 28px;
  bottom: 28px;
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(255,255,255,0.3);
  transform: rotate(16deg);
}

.visual-story-media-detail::before {
  left: 16%;
  right: 16%;
  top: 50%;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5f8fb, #d0dcec);
  transform: translateY(-50%);
  box-shadow:
    0 -44px 0 0 rgba(232, 239, 247, 0.96),
    0 44px 0 0 rgba(219, 228, 239, 0.92);
}

.visual-story-media-detail::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.08));
}

.visual-story-media-sheet-stack::before {
  left: 18%;
  top: 42px;
  width: 64%;
  height: 94px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #e7edf3);
  box-shadow:
    0 22px 0 -8px rgba(223, 231, 240, 0.96),
    0 44px 0 -16px rgba(210, 220, 232, 0.92),
    0 66px 0 -24px rgba(199, 211, 226, 0.88);
  transform: perspective(700px) rotateX(58deg);
}

.visual-story-media-cutting::before {
  inset: 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(0,0,0,0.14)),
    linear-gradient(135deg, #99b0c8, #5c7491);
}

.visual-story-media-cutting::after {
  left: 18%;
  right: 18%;
  top: 50%;
  height: 8px;
  background: rgba(255,255,255,0.84);
  transform: translateY(-50%) rotate(-18deg);
  border-radius: 999px;
}

.visual-story-media-application::before {
  inset: 18px;
  border-radius: 18px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 14px, transparent 14px 36px),
    linear-gradient(180deg, transparent 0 64%, rgba(255,255,255,0.12) 64% 68%, transparent 68% 100%),
    linear-gradient(145deg, #6e87a1, #4a5d71);
}

.visual-story-media-application::after {
  left: 12%;
  bottom: 28px;
  width: 44%;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
}

.visual-story-copy {
  padding: 18px 20px 20px;
}

.visual-story-copy strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.visual-story-copy span {
  color: var(--muted);
  font-size: 14px;
}

.visual-story-card-compact .visual-story-media {
  min-height: 180px;
}

.product-visual-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.product-visual-band-main,
.product-visual-band-side {
  display: grid;
  gap: 20px;
}

.product-visual-band-main {
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-visual-band-main .visual-story-media {
  min-height: 320px;
}

.product-visual-band-main .visual-story-copy {
  padding: 20px 22px 24px;
}

.editorial-visual-flow {
  display: grid;
  gap: 20px;
}

.editorial-visual-lead {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.editorial-visual-lead .visual-story-media {
  min-height: 280px;
}

.editorial-visual-lead .visual-story-copy {
  padding: 20px 22px 24px;
}

.editorial-visual-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.visual-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.visual-mosaic-main,
.visual-mosaic-side .visual-story-media {
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.visual-mosaic-main {
  min-height: 340px;
}

.visual-mosaic-side {
  display: grid;
  gap: 18px;
}

.visual-mosaic-side .visual-story-media {
  min-height: 161px;
}

.trust-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-note-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.trust-note-card::after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 234, 248, 0.8) 0%, rgba(222, 234, 248, 0) 72%);
  pointer-events: none;
}

.trust-note-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.trust-note-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-card,
.form-card,
.video-card,
.mini-factory-card {
  padding: 24px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-assurance {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.form-helper-band {
  margin: 18px 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-helper-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdf8, #fff2e2);
  border: 1px solid #f1dac0;
}

.form-helper-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-helper-item span {
  color: var(--muted);
  font-size: 14px;
}

.assurance-pill {
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border: 1px solid #d9e6f7;
}

.assurance-pill strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.assurance-pill span {
  color: var(--muted);
  font-size: 14px;
}

.contact-line {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  position: relative;
}

.contact-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.message-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-checklist {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fbff, #edf5ff);
  border: 1px solid #d8e5f6;
  box-shadow: var(--shadow);
}

.quote-checklist-copy {
  max-width: 760px;
}

.quote-checklist-copy h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 32px;
}

.quote-checklist-copy p {
  margin: 0;
  color: var(--muted);
}

.quote-checklist-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.response-timeline {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid #d8e5f6;
  box-shadow: var(--shadow);
}

.response-timeline-copy {
  max-width: 760px;
}

.response-timeline-copy h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 32px;
}

.response-timeline-copy p {
  margin: 0;
  color: var(--muted);
}

.response-step-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.response-step-card {
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.response-step-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 20px;
}

.response-step-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
}

.response-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.check-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.check-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 20px;
}

.check-card span {
  color: var(--navy);
  font-weight: 600;
}

.contact-visual-band {
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(145deg, #0f2d55 0%, #173e71 54%, #6e88a5 100%);
  color: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-visual-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,0.16), rgba(255,255,255,0) 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 12px, transparent 12px 40px);
  pointer-events: none;
}

.contact-visual-copy,
.contact-visual-panel {
  position: relative;
  z-index: 1;
}

.contact-visual-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 34px;
  line-height: 1.08;
}

.contact-visual-copy p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.contact-visual-panel {
  display: grid;
  gap: 14px;
}

.contact-visual-kpi {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
}

.contact-visual-kpi strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 24px;
}

.contact-visual-kpi span {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.message-form .full {
  grid-column: 1 / -1;
}

.message-form input,
.message-form select,
.message-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.message-form textarea {
  min-height: 126px;
  resize: vertical;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr 1.12fr;
  gap: 28px;
  padding: 34px 0 18px;
}

.footer-brand .brand-title,
.footer-links h4,
.footer-contact h4 {
  color: var(--white);
}

.footer-brand p,
.footer-links a,
.footer-contact p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-bottom {
  padding: 0 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

@media (max-width: 1120px) {
  .site-header-inner,
  .hero-inner,
  .trust-quote-layout,
  .bottom-split,
  .factory-layout,
  .footer-inner,
  .page-grid,
  .product-hero-split,
  .product-detail-layout,
  .app-detail-layout,
  .two-col,
  .contact-layout,
  .quality-band,
  .factory-story,
  .post-layout,
  .brand-story,
  .buyer-promise {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    display: grid;
    padding: 16px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .product-grid,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .application-banner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .factory-shot-wide,
  .mini-factory-shot-wide {
    grid-column: span 3;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-action-strip,
  .response-step-grid,
  .contact-visual-band {
    grid-template-columns: 1fr 1fr;
  }

  .visual-story-grid,
  .visual-mosaic {
    grid-template-columns: 1fr;
  }

  .product-visual-band,
  .editorial-visual-pair {
    grid-template-columns: 1fr;
  }

  .insight-ribbon,
  .quote-checklist-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-grid,
  .factory-kpis,
  .product-signal-grid,
  .application-chip-grid,
  .value-grid,
  .milestone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .top-strip-inner,
  .top-strip-left,
  .top-strip-right,
  .hero-actions,
  .hero-stats-grid,
  .stat-item,
  .footer-bottom {
    display: grid;
    gap: 10px;
  }

  .top-strip-inner {
    padding: 8px 0;
  }

  .hero-inner {
    min-height: auto;
    padding: 28px 0 34px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .feature-icons,
  .product-grid,
  .reason-grid,
  .commercial-grid,
  .flag-row,
  .quote-form,
  .trust-grid-3,
  .news-grid,
  .timeline-grid,
  .factory-kpis,
  .application-row,
  .factory-gallery,
  .certificate-row,
  .logo-row,
  .mini-gallery,
  .application-banner-grid,
  .mini-factory-grid,
  .visual-story-grid,
  .message-form,
  .metric-bar,
  .product-signal-grid,
  .application-chip-grid,
  .contact-action-strip,
  .form-helper-band,
  .response-step-grid,
  .quote-checklist-grid,
  .value-grid,
  .milestone-grid {
    grid-template-columns: 1fr;
  }

  .factory-shot-wide,
  .mini-factory-shot-wide {
    grid-column: auto;
  }

  .application-tile,
  .app-thumb,
  .factory-shot,
  .mini-factory-shot {
    min-height: 220px;
  }

  .app-thumb.featured {
    min-height: 240px;
  }

  .product-body h3,
  .quote-panel h2,
  .market-strip h3,
  .applications-panel h3,
  .factory-card h3,
  .logos-panel h3 {
    font-size: 22px;
  }

  .main-nav {
    display: none;
  }

  .story-panel,
  .value-ribbon,
  .insight-ribbon,
  .response-timeline,
  .contact-visual-band,
  .quote-checklist,
  .buyer-promise-copy,
  .buyer-promise-panel {
    padding: 24px;
  }

  .story-panel h2,
  .value-ribbon h2,
  .editorial-intro h2,
  .insight-ribbon-copy h2,
  .response-timeline-copy h2,
  .contact-visual-copy h2,
  .quote-checklist-copy h2,
  .article-cta-band h2,
  .buyer-promise-copy h2 {
    font-size: 28px;
  }

  .story-visual {
    min-height: 360px;
    padding: 22px;
  }

  .story-visual-card-main {
    max-width: 100%;
  }

  .story-visual-card-main strong {
    font-size: 22px;
  }

  .story-visual-card-accent {
    left: 22px;
    right: 22px;
    bottom: 22px;
    max-width: none;
  }

  .post-hero-card {
    min-height: 300px;
    padding: 22px;
  }

  .post-hero-badge {
    left: 22px;
    top: 20px;
  }

  .post-hero-copy {
    padding: 18px;
  }

  .post-hero-copy strong {
    font-size: 22px;
  }

  .insight-ribbon {
    grid-template-columns: 1fr;
  }

  .contact-visual-band {
    grid-template-columns: 1fr;
  }

  .visual-mosaic-main {
    min-height: 260px;
  }

  .product-visual-band-main .visual-story-media,
  .editorial-visual-lead .visual-story-media {
    min-height: 220px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .scenario-card:nth-child(2),
  .milestone-card:nth-child(2),
  .milestone-card:nth-child(4) {
    transform: none;
  }
}
