:root {
  color-scheme: light;
  --ink: #15201c;
  --muted: #5d6965;
  --line: #dce5df;
  --paper: #f7faf7;
  --white: #ffffff;
  --green: #1d6b4f;
  --green-dark: #0f4434;
  --teal: #0b7b83;
  --water: #087a9d;
  --gold: #c69a45;
  --shadow: 0 22px 55px rgba(21, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 229, 223, 0.8);
  background: rgba(248, 252, 249, 0.94);
  box-shadow: 0 12px 30px rgba(19, 45, 36, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  color: var(--green-dark);
  line-height: 1.1;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  color: var(--green);
  border-color: rgba(23, 111, 76, 0.18);
  background: rgba(29, 122, 83, 0.08);
}

.main-nav .nav-download {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(23, 111, 76, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(19, 45, 36, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 1180px) and (min-width: 901px) {
  .site-header {
    gap: 14px;
    padding-inline: clamp(18px, 3vw, 42px);
  }

  .brand {
    gap: 10px;
    font-size: 19px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    gap: 4px;
    font-size: 13px;
  }

  .main-nav a {
    min-height: 36px;
    padding-inline: 8px;
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: calc(100vh - 79px);
  background: var(--white);
}

.hero-media {
  min-height: 520px;
  background: #e9f0eb;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shrimp-hero .hero-media img {
  object-position: center;
}

.shrimp-hero .eyebrow {
  color: var(--water);
}

.hero-content {
  align-self: center;
  padding: clamp(44px, 7vw, 96px);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 8vw, 108px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.3;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  min-height: calc(92vh - 79px);
}

.home-hero .hero-content {
  padding: clamp(40px, 5vw, 72px);
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.12;
}

.home-hero .hero-copy {
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-emphasis {
  margin: 24px 0 0;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.hero-note {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--green);
  border-radius: 6px;
  font-weight: 800;
}

.primary-btn {
  color: var(--white);
  background: var(--green);
}

.secondary-btn {
  color: var(--green);
  background: transparent;
}

.intro,
.contact-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 7vw, 96px);
}

.intro p:last-child,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy strong {
  display: block;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 18px;
}

.home-values,
.home-audiences,
.home-cooperation {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 7vw, 96px);
}

.home-values,
.home-cooperation {
  background: var(--white);
}

.home-section-heading {
  margin-bottom: 48px;
}

.home-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}

.home-value-grid article {
  padding-top: 24px;
  border-top: 3px solid var(--green);
}

.home-value-grid article > span,
.home-process-grid li > span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 900;
}

.home-value-grid p,
.home-audience-grid p,
.home-process-grid p,
.section-intro {
  color: var(--muted);
}

.solutions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.solution-card {
  min-height: 320px;
  padding: clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.solution-card:last-child {
  border-right: 0;
}

.solution-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-weight: 900;
}

.solution-card p,
.product-grid p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
}

.feature-image {
  height: 100%;
  min-height: 560px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-text {
  padding: clamp(48px, 7vw, 92px);
}

.feature-text p {
  color: rgba(255, 255, 255, 0.78);
}

.home-method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.home-method-list div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.home-method-list strong,
.home-method-list span {
  display: block;
}

.home-method-list span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.light-btn {
  border-color: var(--white);
  color: var(--green-dark);
  background: var(--white);
}

.light-outline-btn {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

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

.home-audience-grid .detail-card {
  box-shadow: none;
}

.home-cooperation > div {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.home-cooperation .section-intro {
  font-size: 18px;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px clamp(24px, 4vw, 52px);
  margin: 48px 0 40px;
  padding: 0;
  list-style: none;
}

.home-process-grid li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.home-process-grid li > span {
  margin: 2px 0 0;
}

.home-process-grid h3 {
  font-size: 19px;
}

.home-process-grid p {
  margin-bottom: 0;
}

.home-results {
  background: #eef5f1;
}

.home-results .media-panel img {
  object-position: center;
}

.home-contact .contact-actions {
  margin-top: 28px;
}

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

.stats div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.stats strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 7vw, 96px);
}

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

.product-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 24px;
  background: #eef5f1;
}

.aqua-grid article:not(:last-child) img {
  object-fit: cover;
  padding: 0;
}

.aqua-grid article:last-child img {
  object-fit: contain;
  padding: 20px;
}

.product-grid h3,
.product-grid p {
  padding: 0 24px;
}

.product-grid h3 {
  margin-top: 22px;
}

.product-grid p {
  margin-bottom: 26px;
}

.contact-section {
  color: var(--white);
  background: linear-gradient(120deg, var(--green-dark), var(--water));
}

.contact-section .section-label,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

address {
  display: grid;
  gap: 14px;
  align-content: center;
  font-style: normal;
}

address a,
address span {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.site-footer {
  padding: clamp(44px, 6vw, 76px) clamp(20px, 5vw, 72px) clamp(28px, 4vw, 40px);
  background:
    linear-gradient(180deg, rgba(28, 68, 55, 0.78), rgba(16, 24, 21, 0.96)),
    #101815;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(150px, 0.72fr) minmax(170px, 0.78fr) minmax(230px, 0.92fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.footer-brand-block {
  max-width: 520px;
}

.footer-brand,
.footer-brand-block strong {
  display: block;
  color: var(--white);
  font-weight: 900;
}

.footer-brand {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.15;
}

.footer-brand-block p,
.footer-contact p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.78;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.footer-links h2,
.footer-contact h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.3;
}

.footer-links a,
.footer-contact a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  min-height: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  line-height: 1.45;
  text-wrap: balance;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-note {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  min-height: 0;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
}

.page-hero-content {
  max-width: 920px;
  padding: 0;
}

.page-hero-content h1 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.16;
}

.page-hero-content p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.page-hero-image {
  overflow: hidden;
  height: 300px;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e9f0eb;
  box-shadow: 0 12px 28px rgba(21, 32, 28, 0.08);
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 7vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: 36px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

.detail-card,
.list-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(21, 32, 28, 0.08);
}

.detail-card {
  padding: 28px;
}

.detail-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.detail-card p,
.list-panel li,
.faq-item p {
  color: var(--muted);
}

.media-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 7vw, 96px);
  background: var(--white);
}

.media-section.reverse {
  background: #eef5f1;
}

.media-section.reverse .media-copy {
  order: 2;
}

.media-section.reverse .media-panel {
  order: 1;
}

.media-panel {
  overflow: hidden;
  border-radius: 8px;
  background: #e5eee8;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-copy p {
  color: var(--muted);
  font-size: 18px;
}

.list-panel {
  padding: 28px;
}

.list-panel ul,
.list-panel ol {
  margin: 0;
  padding-left: 22px;
}

.list-panel li + li {
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px 28px;
}

.faq-item h3 {
  font-size: 20px;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(40px, 6vw, 76px);
  padding: 24px clamp(20px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.cta-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-strip h2 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.5vw, 32px);
}

.cta-strip .section-label {
  margin-bottom: 8px;
}

.cta-strip .primary-btn,
.cta-strip .secondary-btn {
  min-height: 44px;
}

.text-link {
  color: var(--green);
  font-weight: 900;
}

.rich-section {
  display: grid;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 76px) clamp(20px, 7vw, 96px);
  background: var(--paper);
}

.rich-section:nth-of-type(even) {
  background: var(--white);
}

.rich-block {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.rich-block:first-child {
  padding-top: 0;
}

.rich-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.rich-block h2 {
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.25;
}

.rich-copy {
  color: var(--muted);
  font-size: 17px;
}

.rich-copy p {
  margin-bottom: 18px;
}

.rich-copy ul,
.rich-copy ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.rich-copy li + li {
  margin-top: 10px;
}

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

.content-figure {
  overflow: hidden;
  margin: 22px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.content-gallery .content-figure {
  margin-top: 0;
}

.content-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e5eee8;
}

.content-figure figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.info-table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.info-table th,
.info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.info-table th {
  width: 32%;
  color: var(--green-dark);
  background: #edf4ef;
  font-weight: 900;
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

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

.product-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.product-item h3 {
  font-size: 20px;
}

.product-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.shrimp-method-hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 560px;
}

.shrimp-method-hero .page-hero-content > p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.shrimp-method-hero .page-hero-image {
  height: 420px;
}

.shrimp-method-hero .page-hero-image img {
  object-position: center;
}

.shrimp-principle,
.shrimp-cores,
.shrimp-benefits,
.shrimp-process {
  background: var(--white);
}

.shrimp-definition,
.shrimp-audiences,
.shrimp-faq {
  background: var(--paper);
}

.shrimp-definition .section-heading > div:last-child p {
  color: var(--muted);
  font-size: 18px;
}

.shrimp-highlight {
  margin-top: 26px;
  padding: 20px 0 0;
  border-top: 2px solid var(--green);
  color: var(--green-dark) !important;
  font-size: 19px !important;
  font-weight: 900;
}

.shrimp-wide-figure {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.shrimp-wide-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.shrimp-core-grid .detail-card,
.shrimp-audience-grid .detail-card {
  box-shadow: none;
}

.shrimp-comparison {
  background: #eef5f1;
}

.shrimp-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
}

.shrimp-comparison-grid article {
  padding-top: 26px;
  border-top: 4px solid #9aa8a1;
}

.shrimp-comparison-grid article.is-nsbio {
  border-color: var(--green);
}

.shrimp-comparison-grid article > span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.shrimp-comparison-grid .is-nsbio > span {
  color: var(--green);
}

.shrimp-comparison-grid p {
  color: var(--muted);
  font-size: 17px;
}

.media-section.reverse.shrimp-benefits {
  background: var(--white);
}

.shrimp-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 28px 0 0;
  padding-left: 20px;
}

.shrimp-benefit-list li {
  color: var(--green-dark);
  font-weight: 800;
}

.shrimp-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px clamp(28px, 5vw, 72px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.shrimp-process-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.shrimp-process-list li > span {
  color: var(--gold);
  font-weight: 900;
}

.shrimp-process-list h3 {
  font-size: 20px;
}

.shrimp-process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.shrimp-faq .faq-list {
  max-width: 960px;
  margin-left: auto;
}

.shrimp-final-cta {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.shrimp-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.cooperation-hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 620px;
}

.cooperation-hero .page-hero-content > p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
}

.cooperation-hero .page-hero-image {
  height: 440px;
}

.cooperation-policy {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--green);
  color: var(--green-dark) !important;
  background: #edf4ef;
  font-weight: 900;
}

.cooperation-intro,
.cooperation-responsibilities,
.cooperation-process,
.cooperation-assessment {
  background: var(--white);
}

.cooperation-standard,
.cooperation-flexible,
.cooperation-partner,
.cooperation-audiences,
.cooperation-faq {
  background: var(--paper);
}

.cooperation-section-copy p {
  color: var(--muted);
  font-size: 18px;
}

.cooperation-highlight {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--green);
  color: var(--green-dark) !important;
  font-size: 19px !important;
  font-weight: 900;
}

.cooperation-suitable {
  max-width: 920px;
  margin-left: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.cooperation-suitable ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
  padding-left: 20px;
  color: var(--muted);
}

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

.cooperation-project-grid .detail-card,
.cooperation-audience-grid .detail-card {
  box-shadow: none;
}

.cooperation-role-list,
.cooperation-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px clamp(28px, 5vw, 72px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.cooperation-role-list li,
.cooperation-process-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cooperation-role-list li > span,
.cooperation-process-list li > span {
  color: var(--gold);
  font-weight: 900;
}

.cooperation-role-list h3,
.cooperation-process-list h3 {
  font-size: 20px;
}

.cooperation-role-list p,
.cooperation-process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.media-section.reverse.cooperation-assessment {
  background: var(--white);
}

.cooperation-assessment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin-top: 26px;
  padding-left: 20px;
}

.cooperation-assessment-list li {
  color: var(--green-dark);
  font-weight: 800;
}

.cooperation-faq .faq-list {
  max-width: 960px;
  margin-left: auto;
}

.cooperation-final-cta {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.cooperation-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.results-hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 600px;
}

.results-hero .page-hero-content > p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
}

.results-hero .page-hero-image {
  height: 440px;
}

.results-principles,
.results-case,
.results-overview,
.results-data {
  background: var(--white);
}

.results-evaluation,
.results-timeline,
.results-faq {
  background: var(--paper);
}

.results-section-copy p {
  color: var(--muted);
  font-size: 18px;
}

.results-disclosure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin-left: auto;
}

.results-disclosure-grid span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: #fbfdfb;
  font-weight: 800;
  text-align: center;
}

.results-highlight {
  max-width: 920px;
  margin: 30px 0 0 auto;
  padding-top: 20px;
  border-top: 2px solid var(--green);
  color: var(--green-dark);
  font-size: 19px;
  font-weight: 900;
}

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

.results-evaluation-grid article {
  padding-top: 22px;
  border-top: 3px solid var(--green);
}

.results-evaluation-grid article > span,
.results-timeline-grid article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.results-evaluation-grid h3 {
  font-size: 19px;
}

.results-evaluation-grid p,
.results-public-grid p,
.results-timeline-grid li {
  color: var(--muted);
}

.results-case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 28px 0;
}

.results-case-facts div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.results-case-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.results-case-facts dd {
  margin: 5px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.results-case .primary-btn {
  margin-top: 4px;
}

.results-public-grid,
.results-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.results-public-grid article,
.results-timeline-grid article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.results-public-grid article > span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.results-note {
  margin-top: 36px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
  background: #fbfdfb;
}

.results-timeline-grid ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.results-timeline-grid li + li {
  margin-top: 8px;
}

.results-data-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 36px;
  max-width: 920px;
  margin: 0 0 34px auto;
  padding-left: 20px;
}

.results-data-list li {
  color: var(--muted);
}

.results-data > .primary-btn {
  display: flex;
  width: fit-content;
  margin-left: auto;
}

.results-faq .faq-list {
  max-width: 960px;
  margin-left: auto;
}

.results-final-cta {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.results-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.contact-hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 600px;
}

.contact-hero .page-hero-content > p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
}

.contact-hero .page-hero-image {
  height: 430px;
}

.contact-hero-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--green);
  color: var(--green-dark) !important;
  background: #edf4ef;
  font-weight: 900;
}

.contact-prep,
.contact-audiences,
.contact-faq {
  background: var(--white);
}

.contact-form-section,
.contact-info-section {
  background: var(--paper);
}

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

.contact-prep-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: #fbfdfb;
  font-weight: 800;
  text-align: center;
}

.contact-audience-grid .detail-card {
  box-shadow: none;
}

.assessment-form {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(21, 32, 28, 0.08);
}

.form-step-control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-tabs {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 104px;
}

.contact-form-tabs label,
.form-next {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: #fbfdfb;
  font-weight: 900;
  cursor: pointer;
}

.form-next {
  width: fit-content;
  margin-top: 24px;
  color: var(--white);
  background: var(--green);
}

#step-basic:checked ~ .contact-form-tabs label[for="step-basic"],
#step-pond:checked ~ .contact-form-tabs label[for="step-pond"],
#step-history:checked ~ .contact-form-tabs label[for="step-history"],
#step-needs:checked ~ .contact-form-tabs label[for="step-needs"],
#step-note:checked ~ .contact-form-tabs label[for="step-note"] {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.contact-form-step {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

#step-basic:checked ~ .step-basic,
#step-pond:checked ~ .step-pond,
#step-history:checked ~ .step-history,
#step-needs:checked ~ .step-needs,
#step-note:checked ~ .step-note {
  display: block;
}

.contact-form-step legend {
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.25;
  font-weight: 900;
}

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

.form-grid label,
.form-full {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 900;
}

.form-grid input,
.form-grid select,
.form-full textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
}

.form-full textarea {
  resize: vertical;
}

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

.form-choice-group p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.form-choice-group label {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 700;
}

.form-choice-group input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--green);
}

.form-upload-group {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6faf7;
}

.form-upload-group h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 20px;
}

.form-upload-group p {
  margin: 0;
  color: var(--muted);
}

.form-upload-group label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 900;
}

.form-upload-group input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px dashed #b7c8bd;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.form-upload-alert {
  color: #9b2f1e !important;
  font-weight: 800;
}

.step-note .primary-btn {
  margin-top: 22px;
  cursor: pointer;
}

.form-submit-note,
.form-static-note,
.contact-line-note {
  margin-top: 20px;
  color: var(--muted);
}

.form-static-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.contact-info-card {
  display: grid;
  gap: 20px;
}

.contact-line-note {
  margin-bottom: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: #fbfdfb;
}

.contact-faq .faq-list {
  max-width: 960px;
  margin-left: auto;
}

.contact-final-cta {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.contact-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.company-hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 620px;
}

.company-hero .page-hero-content > p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
}

.company-hero .page-hero-image {
  height: 440px;
}

.company-identity,
.company-focus,
.company-philosophy,
.company-direction,
.company-faq {
  background: var(--white);
}

.company-origin,
.company-nsbio,
.company-audiences {
  background: var(--paper);
}

.company-section-copy p {
  color: var(--muted);
  font-size: 18px;
}

.company-highlight,
.company-grid-highlight {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--green);
  color: var(--green-dark) !important;
  font-size: 19px !important;
  font-weight: 900;
}

.company-grid-highlight {
  max-width: 920px;
  margin-left: auto;
}

.company-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin-left: auto;
}

.company-core-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: #fbfdfb;
  font-weight: 800;
  text-align: center;
}

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

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

.company-philosophy-grid .detail-card,
.company-audience-grid .detail-card {
  box-shadow: none;
}

.company-direction-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin-top: 24px;
  padding-left: 20px;
}

.company-direction-list li {
  color: var(--green-dark);
  font-weight: 800;
}

.company-faq .faq-list {
  max-width: 960px;
  margin-left: auto;
}

.company-final-cta {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.company-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.product-hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 600px;
}

.product-hero .page-hero-content > p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
}

.product-hero .page-hero-image {
  height: 430px;
}

.product-position,
.product-agri,
.product-core-service,
.product-final-cta {
  background: var(--white);
}

.product-aqua-extension,
.product-environment,
.product-faq {
  background: var(--paper);
}

.product-section-copy p {
  color: var(--muted);
  font-size: 18px;
}

.product-highlight,
.product-grid-note,
.product-note {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  color: var(--green-dark) !important;
  background: #edf4ef;
  font-weight: 900;
}

.product-note {
  border-left-color: var(--gold);
  color: var(--muted) !important;
  background: #fbfdfb;
}

.product-application-grid,
.product-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin-left: auto;
}

.product-application-grid span,
.product-core-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: #fbfdfb;
  font-weight: 800;
  text-align: center;
}

.product-direction-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin-top: 18px;
  padding-left: 20px;
}

.product-direction-list li {
  color: var(--green-dark);
  font-weight: 800;
}

.product-core-actions {
  justify-content: flex-end;
  max-width: 920px;
  margin-left: auto;
}

.product-faq .faq-list {
  max-width: 960px;
  margin-left: auto;
}

.product-final-cta {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.product-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.technology-hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 600px;
}

.technology-hero .page-hero-content > p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
}

.technology-hero .page-hero-image {
  height: 430px;
}

.technology-system,
.technology-materials,
.technology-process,
.technology-faq {
  background: var(--white);
}

.technology-core,
.technology-aspects,
.technology-audiences {
  background: var(--paper);
}

.technology-section-copy p {
  color: var(--muted);
  font-size: 18px;
}

.technology-highlight,
.technology-grid-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--green);
  color: var(--green-dark) !important;
  font-size: 19px !important;
  font-weight: 900;
}

.technology-grid-note {
  max-width: 920px;
  margin-left: auto;
}

.technology-point-list,
.technology-material-grid,
.technology-aspect-grid,
.technology-audience-grid {
  display: grid;
  gap: 18px;
}

.technology-point-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
  padding-left: 20px;
}

.technology-point-list li {
  color: var(--green-dark);
  font-weight: 800;
}

.technology-material-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1100px;
  margin-left: auto;
}

.technology-material-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: #fbfdfb;
  font-weight: 800;
  text-align: center;
}

.technology-aspect-grid,
.technology-audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.technology-aspect-grid .detail-card,
.technology-audience-grid .detail-card {
  box-shadow: none;
}

.technology-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px clamp(28px, 5vw, 72px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-process-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.technology-process-list li > span {
  color: var(--gold);
  font-weight: 900;
}

.technology-process-list h3 {
  font-size: 20px;
}

.technology-process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.technology-faq .faq-list {
  max-width: 960px;
  margin-left: auto;
}

.technology-final-cta {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.technology-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding-block: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    overflow: hidden;
    padding: 14px 0 2px;
    border-top: 1px solid var(--line);
    color: var(--ink);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav .nav-home {
    order: 1;
  }

  .main-nav .nav-method {
    order: 2;
  }

  .main-nav .nav-partnership {
    order: 3;
  }

  .main-nav .nav-results {
    order: 4;
  }

  .main-nav .nav-contact {
    order: 5;
  }

  .main-nav .nav-technology {
    order: 6;
  }

  .main-nav .nav-products {
    order: 7;
  }

  .main-nav .nav-about {
    order: 8;
  }

  .main-nav .nav-download {
    display: flex;
    order: 9;
    grid-column: 1 / -1;
  }

  .main-nav a {
    display: flex;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(220, 229, 223, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .main-nav a:last-child {
    border-bottom: 1px solid rgba(220, 229, 223, 0.9);
  }

  .hero,
  .page-hero,
  .intro,
  .feature-band,
  .contact-section,
  .section-heading,
  .rich-block,
  .media-section,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .feature-image {
    min-height: 360px;
  }

  .page-hero-image {
    height: 320px;
    min-height: 0;
  }

  .solutions,
  .product-grid,
  .stats,
  .detail-grid,
  .content-gallery,
  .product-list,
  .home-value-grid,
  .home-method-list,
  .home-audience-grid,
  .home-process-grid,
  .home-cooperation > div,
  .shrimp-core-grid,
  .shrimp-audience-grid,
  .shrimp-comparison-grid,
  .shrimp-process-list,
  .shrimp-benefit-list,
  .cooperation-suitable ul,
  .cooperation-project-grid,
  .cooperation-audience-grid,
  .cooperation-role-list,
  .cooperation-process-list,
  .cooperation-assessment-list,
  .results-disclosure-grid,
  .results-evaluation-grid,
  .results-case-facts,
  .results-public-grid,
  .results-timeline-grid,
  .results-data-list,
  .contact-prep-grid,
  .contact-audience-grid,
  .assessment-form,
  .form-grid,
  .form-choice-group,
  .company-core-grid,
  .company-philosophy-grid,
  .company-audience-grid,
  .company-direction-list,
  .product-application-grid,
  .product-core-grid,
  .product-direction-list,
  .technology-point-list,
  .technology-material-grid,
  .technology-aspect-grid,
  .technology-audience-grid,
  .technology-process-list {
    grid-template-columns: 1fr;
  }

  .contact-form-tabs {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-section.reverse .media-copy,
  .media-section.reverse .media-panel {
    order: initial;
  }

  .solution-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-card span {
    margin-bottom: 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer {
    padding: 38px 18px 30px;
  }

  .footer-brand-block {
    max-width: none;
  }

  .footer-brand {
    margin-bottom: 12px;
    font-size: 25px;
  }

  .footer-brand-block p,
  .footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.72;
  }

  .footer-brand-block strong {
    font-size: 15px;
    line-height: 1.55;
  }

  .footer-links,
  .footer-contact {
    gap: 6px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-links h2,
  .footer-contact h2 {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .footer-links a,
  .footer-contact a {
    width: 100%;
    min-height: 38px;
    padding: 4px 0;
  }

  .footer-links a:hover,
  .footer-contact a:hover {
    transform: none;
  }

  .footer-note {
    margin-top: 8px;
    padding-top: 12px;
  }

  .brand span {
    font-size: 18px;
  }

  h1 {
    font-size: 54px;
  }

  .page-hero-content h1 {
    font-size: 34px;
  }

  .page-hero-image {
    height: 260px;
  }

  .hero-content,
  .feature-text {
    padding: 42px 20px;
  }

  .hero-actions a {
    width: 100%;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .section-actions a,
  .contact-actions a,
  .shrimp-cta-actions a,
  .cooperation-cta-actions a,
  .results-cta-actions a,
  .contact-cta-actions a,
  .company-cta-actions a,
  .product-cta-actions a,
  .technology-cta-actions a,
  .form-next,
  .step-note .primary-btn {
    width: 100%;
  }

  .contact-form-tabs {
    grid-template-columns: 1fr;
  }

  .assessment-form {
    padding: 20px;
  }
}
