:root {
  --green: #123f2a;
  --green-2: #1d5b3c;
  --ink: #17211b;
  --black: #1f1f1f;
  --muted: #667268;
  --line: #d9e1d9;
  --paper: #f7f9f5;
  --soft: #edf3ec;
  --white: #ffffff;
  --accent: #9ab38f;
  --yellow: #ffc328;
  --pale-blue: #c8e4e9;
  --pale-tan: #dcc3a8;
  --pale-green: #c1d4bd;
  --shadow: 0 24px 70px rgba(15, 45, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 249, 245, 0.9);
  border-bottom: 1px solid rgba(18, 63, 42, 0.12);
  backdrop-filter: blur(16px);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  opacity: 0.8;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav a:hover {
  opacity: 1;
}

.nav a.is-current {
  color: var(--green);
  opacity: 1;
}

.nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 29, 19, 0.78) 0%, rgba(8, 29, 19, 0.48) 42%, rgba(8, 29, 19, 0.05) 100%),
    linear-gradient(0deg, rgba(8, 29, 19, 0.28), rgba(8, 29, 19, 0.04));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 104px);
  padding: 80px 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--green);
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 21px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.hero .button.primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--green);
}

.button.ghost {
  color: var(--white);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin: 42px 0 0;
}

.hero-facts div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

section {
  scroll-margin-top: 92px;
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--white);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 44px;
}

.section-heading.compact {
  max-width: 760px;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(26px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
}

.lead {
  color: var(--green);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.35;
}

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

.value-list article,
.comparison-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.value-list span,
.timeline span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
}

.value-list p,
.comparison-grid p,
.scene p,
.timeline p,
.system-copy p,
.cta p,
.site-footer p {
  color: var(--muted);
}

.system-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.system-copy p {
  max-width: 660px;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(154, 179, 143, 0.18);
}

.system-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.system-card img {
  width: 100%;
  height: min(720px, 72vh);
  object-fit: cover;
}

.system-note {
  display: grid;
  gap: 4px;
  padding: 18px 20px 20px;
}

.system-note strong {
  color: var(--green);
}

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

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.scene {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.scene.large {
  grid-column: span 2;
}

.scene img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.scene.large img {
  height: 420px;
}

.scene div {
  padding: 20px;
}

.comparison-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 22px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
}

.service-layout > img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-layout > img[src$="process.jpg"],
.split-hero img[src$="process.jpg"] {
  min-height: 0;
  padding: 12px;
  background: #fff;
  object-fit: contain;
}

.audience {
  text-align: center;
}

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

.audience-grid span {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  font-size: 18px;
  font-weight: 850;
}

.cta {
  max-width: 1180px;
  margin: 0 auto clamp(72px, 9vw, 116px);
  padding: clamp(32px, 6vw, 70px);
  justify-content: space-between;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta div {
  max-width: 760px;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.cta .button.primary {
  flex: 0 0 auto;
  background: var(--white);
  border-color: var(--white);
  color: var(--green);
}

.site-footer {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 44px 18px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: var(--white);
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

/* Reference-style home page */
.home-header {
  position: sticky;
  min-height: 92px;
  padding: 18px clamp(24px, 7vw, 150px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.04);
}

.home-header .brand img {
  width: 172px;
}

.home-header .nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: clamp(18px, 2.4vw, 42px);
  color: #222;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #222;
  font-size: 15px;
  font-weight: 600;
}

.compact-tools {
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(18, 63, 42, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-switch button {
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.lang-switch button.is-active {
  background: var(--green);
  color: var(--white);
}

body.is-en .nav {
  gap: clamp(12px, 2vw, 30px);
  font-size: 13px;
}

body.is-en .home-header .nav {
  gap: clamp(12px, 1.8vw, 28px);
  font-size: 14px;
}

body.is-en h1,
body.is-en h2 {
  max-width: 980px;
}

.phone-icon,
.search-icon {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
}

.phone-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 13px;
  height: 20px;
  border: 4px solid #050505;
  border-left-width: 6px;
  border-radius: 11px 11px 12px 12px;
  transform: rotate(-35deg);
}

.search-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 11px;
  height: 11px;
  border: 3px solid #050505;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 17px;
  width: 9px;
  height: 3px;
  background: #050505;
  transform: rotate(45deg);
  transform-origin: left center;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(18, 63, 42, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-nav-open .mobile-menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

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

.site-header.is-nav-open .mobile-menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.ref-hero {
  min-height: 780px;
  background: #ecebe6;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-track {
  overflow: hidden;
}

.hero-slide {
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 720ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ref-hero .hero-image {
  opacity: 0.78;
  object-position: center;
  filter: saturate(0.94) contrast(0.96);
}

.hero-slide:first-child .hero-image,
.hero-slide:nth-child(2) .hero-image {
  object-position: center center;
}

.ref-hero .hero-overlay {
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.15)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08));
}

.ref-hero .hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 210px;
  color: var(--black);
  text-align: center;
}

.hero-en {
  margin: 0 0 -8px;
  color: #000;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.ref-hero h1 {
  max-width: 1160px;
  margin: 0 auto 28px;
  color: #000;
  font-size: clamp(44px, 5.7vw, 78px);
  font-weight: 500;
  line-height: 1.12;
}

.hero-badge {
  display: inline-block;
  margin: 0;
  padding: 4px 8px 6px;
  background: var(--yellow);
  color: #000;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.15;
}

.delivery-slide {
  background: #f5f1ea;
}

.delivery-slide .hero-image {
  object-fit: contain;
  padding: clamp(18px, 3vw, 44px);
  opacity: 1;
  filter: none;
}

.delivery-slide .hero-overlay {
  background:
    linear-gradient(90deg, rgba(245, 241, 234, 0.82) 0%, rgba(245, 241, 234, 0.4) 34%, rgba(245, 241, 234, 0.02) 74%),
    linear-gradient(0deg, rgba(18, 63, 42, 0.1), rgba(18, 63, 42, 0));
}

.delivery-slide .hero-content {
  width: min(520px, calc(100% - 64px));
  margin-left: clamp(24px, 5vw, 86px);
  padding: 28px;
  border: 1px solid rgba(18, 63, 42, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(15, 45, 29, 0.12);
  text-align: left;
  backdrop-filter: blur(14px);
}

.delivery-slide .hero-en {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delivery-slide h1 {
  margin: 0 0 16px;
  color: var(--green);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
}

.delivery-slide .hero-badge {
  background: var(--green);
  color: var(--white);
  font-size: clamp(16px, 1.4vw, 20px);
}

.hero-arrow {
  position: absolute;
  top: 58%;
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.36);
  transform: translateY(-1px);
}

.hero-arrow::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-top: 3px solid rgba(255, 255, 255, 0.9);
  border-right: 3px solid rgba(255, 255, 255, 0.9);
}

.hero-arrow-left {
  left: 28px;
}

.hero-arrow-left::before {
  transform: rotate(-135deg);
}

.hero-arrow-right {
  right: 28px;
}

.hero-arrow-right::before {
  transform: rotate(45deg);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 54px;
  background: var(--yellow);
}

.quick-form {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr 1fr 1fr 0.9fr;
  gap: 22px;
  align-items: center;
  width: min(1920px, calc(100% - 82px));
  margin: -86px auto 0;
  padding: 34px clamp(26px, 3vw, 56px);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.quick-title {
  max-width: 240px;
  color: #111;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.45;
}

.quick-form label {
  display: grid;
  gap: 10px;
}

.quick-form label span {
  color: #555;
  font-size: 14px;
}

.quick-form b {
  color: #e23220;
}

.quick-form input,
.quick-form select {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  border: 0;
  background: #f7f7f7;
  color: #777;
  font: inherit;
}

.quick-submit {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  align-self: end;
  border: 0;
  background: #2d2b2a;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.quick-submit:disabled,
.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-error {
  color: #b42318;
}

.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2.7vw, 52px);
  padding: 104px clamp(24px, 4vw, 80px) 62px;
  background: #fff;
}

.promo-card {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  padding: 70px 56px;
  color: #fff;
}

.promo-blue {
  background: var(--pale-blue);
}

.promo-tan {
  background: var(--pale-tan);
}

.promo-green {
  background: var(--pale-green);
}

.promo-card span,
.promo-card strong,
.promo-card em {
  position: relative;
  z-index: 2;
}

.promo-card span {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 800;
}

.promo-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.2;
}

.promo-card em {
  display: block;
  width: 128px;
  height: 2px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.promo-card img {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 58%;
  height: 118%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  opacity: 0.62;
}

.update-section {
  padding: 18px clamp(24px, 4vw, 80px) 76px;
  background: #fff;
  text-align: center;
}

.tiny-title {
  margin-bottom: 12px;
  color: #2b2b2b;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.tiny-copy {
  color: #a0a0a0;
  font-size: 15px;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 76px);
  margin-top: 56px;
}

.icon-row a {
  display: grid;
  gap: 24px;
  justify-items: center;
  color: #222;
  font-size: 16px;
  font-weight: 700;
}

.line-icon {
  display: grid;
  width: 136px;
  height: 136px;
  place-items: center;
  border-radius: 50%;
  background: #f7f7f7;
  color: #858585;
  font-size: 32px;
  font-weight: 400;
  border: 1px solid #f3f3f3;
}

.line-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-row a:hover .line-icon {
  background: var(--soft);
  color: var(--green);
  border-color: rgba(18, 63, 42, 0.12);
}

.ref-about {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  min-height: 560px;
  padding: 0;
  background: #fff;
}

.about-photo {
  align-self: stretch;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.about-copy {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr auto;
  gap: 52px;
  align-items: center;
  padding: clamp(48px, 6vw, 92px);
  border-top: 5px solid var(--yellow);
}

.about-copy h2 {
  margin-bottom: 20px;
  color: #161616;
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 500;
}

.about-copy h2::after {
  content: "";
  display: inline-block;
  width: 160px;
  height: 2px;
  margin-left: 18px;
  vertical-align: middle;
  background: #111;
}

.about-copy p {
  color: #555;
  font-size: 16px;
  line-height: 2;
}

.about-copy > div p {
  color: #222;
  font-weight: 700;
  line-height: 1.8;
}

.about-copy a {
  min-width: 164px;
  padding: 14px 22px;
  background: #2b2928;
  color: #fff;
  text-align: center;
  font-weight: 800;
}

.ref-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  overflow: hidden;
  padding: clamp(80px, 8vw, 130px) 0 clamp(140px, 12vw, 220px);
  background: #fff;
}

.showcase-image {
  position: relative;
  margin-left: clamp(0px, 4vw, 80px);
  overflow: hidden;
  border-top-right-radius: 54%;
  border-bottom-right-radius: 54%;
}

.showcase-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.showcase-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.showcase-copy {
  max-width: 720px;
  padding-right: clamp(24px, 6vw, 120px);
}

.showcase-copy h2 {
  color: #2c2c2c;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
}

.showcase-copy p {
  padding-bottom: 34px;
  border-bottom: 1px solid #e6e6e6;
  color: #777;
  line-height: 2;
}

.giant-word {
  position: absolute;
  left: 0;
  bottom: -54px;
  color: var(--yellow);
  font-size: clamp(120px, 21vw, 370px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.news-section {
  padding: clamp(80px, 8vw, 130px) clamp(24px, 4vw, 80px);
  background: #fff;
}

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

.news-grid a {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: #fff;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.news-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.news-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news-grid strong {
  color: #333;
  font-size: 17px;
}

.news-grid span,
.news-grid p {
  color: #888;
  font-size: 14px;
}

.news-grid p {
  margin-bottom: 0;
}

.page-hero {
  max-width: 1220px;
  margin: 0 auto;
  padding-top: clamp(64px, 8vw, 112px);
}

.page-hero h1 {
  max-width: 920px;
  color: var(--green);
  font-size: clamp(42px, 6vw, 78px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-hero img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-grid img,
.case-card-grid img,
.news-grid img,
.scene img {
  background: #eef1ea;
}

.narrative-grid,
.position-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

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

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

.position-grid div {
  padding: 26px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
}

.product-grid,
.case-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.product-grid article,
.case-card-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-grid img,
.case-card-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-grid h3,
.product-grid p,
.case-card-grid h3,
.case-card-grid p,
.case-card-grid ul {
  margin-left: 20px;
  margin-right: 20px;
}

.product-grid h3,
.case-card-grid h3 {
  margin-top: 20px;
}

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

.case-card-grid ul {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  padding-left: 18px;
}

.pricing-model {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.pricing-compare article,
.quote-steps article,
.pricing-system-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pricing-compare article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 18px;
  align-items: start;
  padding: 28px;
}

.pricing-compare span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 4px;
  background: #111;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.pricing-compare h3 {
  margin-bottom: 4px;
}

.pricing-compare p {
  grid-column: 2;
  color: var(--muted);
}

.pricing-yes {
  box-shadow: var(--shadow);
}

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

.quote-steps article {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.quote-steps em {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-style: normal;
  font-weight: 900;
}

.quote-steps p,
.pricing-system-grid p,
.pricing-reference p {
  color: var(--muted);
}

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

.pricing-system-grid article {
  padding: 24px;
  background: var(--paper);
}

.pricing-reference {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
}

.pricing-reference h2,
.pricing-reference .eyebrow {
  color: var(--white);
}

.pricing-reference p {
  color: rgba(255, 255, 255, 0.78);
}

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

.price-sheets a {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.price-sheets img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: left top;
}

.price-sheets span {
  display: block;
  padding: 14px 16px 16px;
  font-weight: 900;
}

.module-section {
  max-width: 1180px;
  margin: 0 auto;
}

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

.module-grid div {
  display: grid;
  gap: 6px;
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.module-grid strong {
  color: var(--green);
  font-size: 19px;
}

.module-grid span {
  color: var(--muted);
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.craft > div,
.craft > img {
  max-width: 620px;
}

.craft > div {
  justify-self: end;
}

.craft > img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-hero {
  text-align: center;
}

.case-hero h1,
.case-hero p {
  margin-left: auto;
  margin-right: auto;
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.case-tabs a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.case-wall-section {
  padding-top: clamp(56px, 7vw, 96px);
}

.case-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.case-wall-card {
  position: relative;
  display: block;
  min-height: 310px;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe5dc;
  box-shadow: 0 16px 42px rgba(15, 45, 29, 0.08);
  transform: translateZ(0);
}

.case-wall-card.wide {
  grid-column: span 2;
}

.case-wall-card.tall {
  grid-row: span 2;
  min-height: 636px;
}

.case-wall-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.case-wall-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 27, 18, 0.76), rgba(10, 27, 18, 0.08) 58%, rgba(10, 27, 18, 0));
  opacity: 0.92;
  transition: opacity 320ms ease;
}

.case-wall-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: var(--white);
  transform: translateY(6px);
  transition: transform 320ms ease;
}

.case-wall-card strong {
  font-size: 22px;
  line-height: 1.2;
}

.case-wall-card em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 14px;
}

.case-wall-card:hover {
  box-shadow: 0 26px 70px rgba(15, 45, 29, 0.18);
}

.case-wall-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.03);
}

.case-wall-card:hover::after {
  opacity: 1;
}

.case-wall-card:hover span {
  transform: translateY(0);
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.case-feature.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
}

.case-feature.reverse img {
  order: 2;
}

.case-feature > img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-feature > div {
  max-width: 650px;
}

.case-summary {
  color: var(--muted);
  font-size: 18px;
}

.case-detail-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.case-detail-grid div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.case-detail-grid strong {
  color: var(--green);
}

.case-detail-grid span {
  color: var(--muted);
}

.full-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.full-timeline li {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 22px 18px;
  background: var(--paper);
}

.full-timeline strong {
  color: var(--green);
  font-size: 18px;
}

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

.install-rules {
  max-width: 1220px;
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
}

.contact-hero h1,
.contact-hero p {
  margin-left: auto;
  margin-right: auto;
}

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

.contact-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-card.dark {
  background: var(--green);
  color: var(--white);
}

.contact-card.dark h2,
.contact-card.dark p {
  color: var(--white);
}

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

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

.partner-list span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.contact-form-section {
  max-width: 980px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form b {
  color: #e24a35;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f5f0;
  color: var(--ink);
  font: inherit;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px;
}

.contact-form .wide,
.contact-form .button,
.contact-form .form-status {
  grid-column: 1 / -1;
}

.brief-box {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.brief-box p {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 650;
}

.brief-box h3 {
  margin-bottom: 16px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .home-header .nav {
    position: static;
    transform: none;
    gap: 24px;
  }

  .header-tools {
    width: 100%;
    justify-content: flex-end;
  }

  .header-tools > span {
    display: none;
  }

  .compact-tools {
    width: auto;
    margin-left: auto;
  }

  .ref-hero {
    min-height: 680px;
  }

  .ref-hero .hero-content {
    padding: 110px 0 180px;
  }

  .delivery-slide .hero-image {
    padding: 18px;
  }

  .delivery-slide .hero-content {
    width: min(520px, calc(100% - 48px));
    padding: 24px;
  }

  .quick-form {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 36px);
    margin-top: -72px;
    gap: 18px;
  }

  .quick-title,
  .quick-submit {
    grid-column: span 2;
    max-width: none;
  }

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

  .ref-about,
  .ref-showcase {
    grid-template-columns: 1fr;
  }

  .about-copy {
    grid-template-columns: 1fr;
  }

  .showcase-image {
    margin-left: 0;
    border-radius: 0;
  }

  .showcase-copy {
    padding: 0 24px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 120px;
  }

  .hero-facts,
  .intro-grid,
  .system-section,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .scene-grid,
  .comparison-grid,
  .audience-grid,
  .timeline,
  .split-hero,
  .narrative-grid,
  .position-grid,
  .product-grid,
  .module-grid,
  .craft,
  .case-feature,
  .case-feature.reverse,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-hero,
  .narrative-grid,
  .craft,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .case-feature,
  .case-feature.reverse {
    grid-template-columns: 1fr;
  }

  .case-feature.reverse img {
    order: 0;
  }

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

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

  .pricing-system-grid,
  .pricing-reference {
    grid-template-columns: 1fr;
  }

  .scene.large {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  section {
    scroll-margin-top: 136px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: 800px;
  }

  .home-header {
    min-height: 118px;
    padding: 14px 18px;
  }

  .home-header .brand img {
    width: 142px;
  }

  .home-header .nav {
    gap: 18px;
    font-size: 14px;
  }

  body.is-en .home-header .nav,
  body.is-en .nav {
    gap: 16px;
    font-size: 13px;
  }

  .lang-switch button {
    min-width: 34px;
    height: 28px;
    padding: 0 8px;
  }

  .ref-hero {
    min-height: 640px;
  }

  .ref-hero .hero-content {
    padding: 72px 0 150px;
  }

  .delivery-slide {
    align-items: end;
  }

  .delivery-slide .hero-image {
    padding: 12px;
    object-position: center top;
  }

  .delivery-slide .hero-overlay {
    background:
      linear-gradient(0deg, rgba(245, 241, 234, 0.96) 0%, rgba(245, 241, 234, 0.58) 42%, rgba(245, 241, 234, 0.08) 100%);
  }

  .delivery-slide .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto 54px;
    padding: 18px;
  }

  .delivery-slide .hero-en {
    font-size: 13px;
  }

  .delivery-slide h1 {
    font-size: 28px;
  }

  .delivery-slide .hero-badge {
    font-size: 14px;
  }

  .hero-en {
    margin-bottom: 8px;
    font-size: 34px;
  }

  .ref-hero h1 {
    font-size: 36px;
  }

  .hero-badge {
    max-width: 92%;
    font-size: 19px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 18px;
  }

  .hero-dots button {
    width: 24px;
  }

  .hero-dots button.is-active {
    width: 40px;
  }

  .quick-form {
    grid-template-columns: 1fr;
    margin-top: -88px;
    padding: 24px;
  }

  .quick-title,
  .quick-submit {
    grid-column: span 1;
  }

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

  .contact-form .wide,
  .contact-form .button,
  .contact-form .form-status {
    grid-column: auto;
  }

  .promo-strip,
  .icon-row,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .case-wall {
    grid-template-columns: 1fr;
  }

  .case-wall-card,
  .case-wall-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .case-wall-card.wide {
    grid-column: auto;
  }

  .promo-strip {
    padding-top: 72px;
  }

  .promo-card {
    min-height: 220px;
    padding: 46px 34px;
  }

  .line-icon {
    width: 112px;
    height: 112px;
  }

  .about-photo img,
  .showcase-image img {
    min-height: 0;
    height: 320px;
  }

  .about-copy {
    padding: 42px 24px;
  }

  .about-copy h2::after {
    display: none;
  }

  .ref-showcase {
    padding-bottom: 110px;
  }

  .giant-word {
    bottom: -18px;
    font-size: 82px;
    letter-spacing: -0.03em;
  }

  .news-grid img {
    height: 230px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 29, 19, 0.78), rgba(8, 29, 19, 0.38));
  }

  .ref-hero .hero-overlay {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.2)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.36));
  }

  .hero-facts,
  .scene-grid,
  .comparison-grid,
  .audience-grid,
  .timeline,
  .position-grid,
  .product-grid,
  .pricing-compare,
  .quote-steps,
  .pricing-system-grid,
  .price-sheets,
  .module-grid,
  .full-timeline,
  .partner-list {
    grid-template-columns: 1fr;
  }

  .pricing-compare article {
    grid-template-columns: 1fr;
  }

  .pricing-compare p {
    grid-column: auto;
  }

  .pricing-reference {
    padding: 26px 20px;
  }

  .price-sheets img {
    height: 220px;
  }

  .scene.large {
    grid-column: span 1;
  }

  .scene img,
  .scene.large img {
    height: 270px;
  }

  .system-card img,
  .service-layout > img,
  .split-hero img,
  .craft > img,
  .case-feature > img {
    min-height: 0;
    height: auto;
  }

  .cta {
    margin-left: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    overflow-x: hidden;
    background: #fff;
  }

  .site-header,
  .home-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    min-height: 68px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.98);
  }

  .brand img,
  .home-header .brand img {
    width: 126px;
  }

  .brand {
    order: 1;
  }

  .mobile-menu-toggle {
    order: 2;
    display: inline-flex;
    justify-self: end;
  }

  .header-tools,
  .compact-tools {
    order: 3;
    width: auto;
    margin: 0;
    justify-content: end;
    gap: 8px;
  }

  .header-tools > span:not(.phone-icon) {
    display: none;
  }

  .phone-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(18, 63, 42, 0.16);
    border-radius: 999px;
    background: var(--soft);
  }

  .phone-icon::before {
    left: 10px;
    top: 8px;
    width: 9px;
    height: 15px;
    border-width: 3px;
    border-left-width: 4px;
  }

  .lang-switch {
    padding: 2px;
  }

  .lang-switch button {
    min-width: 32px;
    height: 28px;
    padding: 0 7px;
    font-size: 12px;
  }

  .nav,
  .home-header .nav,
  body.is-en .nav,
  body.is-en .home-header .nav {
    position: static;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
    order: 4;
  }

  .site-header.is-nav-open .nav {
    max-height: 360px;
    padding: 8px 0 2px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid rgba(18, 63, 42, 0.1);
    border-radius: 8px;
    background: var(--soft);
    font-size: 14px;
    opacity: 1;
  }

  .nav a.is-current {
    background: var(--green);
    color: var(--white);
  }

  .nav a.is-current::after {
    display: none;
  }

  section {
    scroll-margin-top: 86px;
    padding: 54px 18px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  p {
    font-size: 15px;
  }

  .ref-hero {
    min-height: calc(100svh - 68px);
    height: 620px;
  }

  .ref-hero .hero-image {
    opacity: 0.72;
    object-position: center top;
  }

  .ref-hero .hero-overlay {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.2) 52%, rgba(255, 255, 255, 0.04)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.3));
  }

  .ref-hero .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 92px 0 126px;
    text-align: left;
  }

  .hero-en {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .ref-hero h1 {
    max-width: 10em;
    margin: 0 0 18px;
    font-size: clamp(36px, 11vw, 48px);
    font-weight: 800;
  }

  .hero-badge {
    max-width: 100%;
    padding: 7px 9px;
    font-size: 15px;
    line-height: 1.35;
  }

  .delivery-slide .hero-image {
    object-fit: cover;
    object-position: center top;
    padding: 0;
  }

  .delivery-slide .hero-content {
    width: calc(100% - 32px);
    margin: auto 16px 74px;
    padding: 18px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    left: 16px;
    bottom: 18px;
    transform: none;
  }

  .hero-dots button {
    width: 24px;
    height: 4px;
  }

  .hero-dots button.is-active {
    width: 42px;
  }

  .quick-form {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin: -54px auto 0;
    padding: 18px;
    gap: 13px;
    border-radius: 12px;
  }

  .quick-title,
  .quick-submit {
    grid-column: auto;
  }

  .quick-title {
    max-width: none;
    padding-bottom: 4px;
    font-size: 22px;
    line-height: 1.35;
  }

  .quick-form label {
    gap: 6px;
  }

  .quick-form input,
  .quick-form select,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .quick-submit {
    height: 50px;
    border-radius: 8px;
  }

  .promo-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 48px 14px 34px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .promo-card {
    flex: 0 0 82vw;
    min-height: 180px;
    padding: 34px 28px;
    border-radius: 10px;
    scroll-snap-align: start;
  }

  .promo-card strong {
    font-size: 24px;
  }

  .update-section {
    padding: 40px 16px 46px;
  }

  .tiny-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .tiny-copy {
    max-width: 18em;
    margin-left: auto;
    margin-right: auto;
  }

  .icon-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-top: 28px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .icon-row a {
    flex: 0 0 92px;
    gap: 10px;
    font-size: 14px;
    scroll-snap-align: start;
  }

  .line-icon {
    width: 78px;
    height: 78px;
  }

  .line-icon svg {
    width: 34px;
    height: 34px;
  }

  .section-heading,
  .section-heading.compact {
    margin-bottom: 28px;
    text-align: left;
  }

  .intro-grid,
  .system-section,
  .ref-about,
  .ref-showcase,
  .service-layout,
  .split-hero,
  .narrative-grid,
  .craft,
  .contact-layout,
  .pricing-reference,
  .case-feature,
  .case-feature.reverse {
    grid-template-columns: 1fr;
  }

  .lead {
    font-size: 22px;
  }

  .value-list article,
  .comparison-grid article,
  .pricing-compare article,
  .quote-steps article,
  .pricing-system-grid article,
  .module-grid div,
  .contact-card {
    padding: 20px;
  }

  .about-photo img,
  .showcase-image img,
  .system-card img,
  .service-layout > img,
  .split-hero img,
  .craft > img,
  .case-feature > img {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .about-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 18px 42px;
  }

  .about-copy h2::after {
    display: none;
  }

  .showcase-image {
    margin: 0;
    border-radius: 0 0 28px 0;
  }

  .showcase-copy {
    padding: 0 18px;
  }

  .giant-word {
    display: none;
  }

  .scene-grid,
  .comparison-grid,
  .audience-grid,
  .timeline,
  .news-grid,
  .product-grid,
  .case-card-grid,
  .pricing-compare,
  .quote-steps,
  .pricing-system-grid,
  .price-sheets,
  .module-grid,
  .full-timeline,
  .partner-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .scene.large,
  .case-wall-card.wide {
    grid-column: auto;
  }

  .scene img,
  .scene.large img,
  .product-grid img,
  .case-card-grid img,
  .news-grid img,
  .price-sheets img {
    height: 230px;
  }

  .news-grid a {
    padding: 0 0 18px;
    border-bottom: 1px solid var(--line);
  }

  .page-hero {
    padding: 54px 18px 36px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .case-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    margin-left: -4px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .case-tabs a {
    flex: 0 0 auto;
  }

  .case-wall {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .case-wall-card,
  .case-wall-card.tall {
    flex: 0 0 84vw;
    min-height: 420px;
    scroll-snap-align: center;
  }

  .case-wall-card:hover img,
  .case-wall-card:focus-visible img {
    transform: scale(1.04);
  }

  .case-feature.reverse img {
    order: 0;
  }

  .full-timeline {
    border: 0;
    gap: 12px;
    background: transparent;
  }

  .full-timeline li {
    min-height: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .pricing-reference {
    padding: 28px 18px;
  }

  .price-sheets {
    gap: 12px;
  }

  .contact-form {
    padding: 20px;
    box-shadow: 0 16px 38px rgba(15, 45, 29, 0.1);
  }

  .contact-form .wide,
  .contact-form .button,
  .contact-form .form-status {
    grid-column: auto;
  }

  .button,
  .cta .button.primary {
    width: 100%;
  }

  .cta {
    display: grid;
    gap: 20px;
    margin: 0 14px 54px;
    padding: 28px 20px;
    border-radius: 12px;
  }

  .site-footer {
    padding: 34px 18px 42px;
  }
}
