﻿:root {
  --bg: #101816;
  --bg-soft: #f4f6f5;
  --surface: #ffffff;
  --white: #ffffff;
  --text: #1d2624;
  --text-soft: #5f6b67;
  --line: rgba(29, 38, 36, 0.12);
  --line-strong: rgba(29, 38, 36, 0.22);
  --accent: #2d6b5d;
  --accent-dark: #234f45;
  --accent-soft: rgba(45, 107, 93, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible {
  outline: 3px solid rgba(45, 107, 93, 0.28);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29, 38, 36, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 0;
  padding: 2px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.brand-logo {
  width: 54px;
  height: auto;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid transparent;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-link::before {
  content: none;
}

.lang-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid transparent;
  background: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-select {
  min-height: 42px;
  padding: 0 28px 0 8px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-select:focus {
  outline: none;
}

.main-nav .lang-select-wrap:hover,
.main-nav .lang-select-wrap:focus-within {
  background: var(--accent-soft);
  border-color: rgba(45, 107, 93, 0.18);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: none;
}

.main-nav .lang-select-wrap:hover .lang-select,
.main-nav .lang-select-wrap:focus-within .lang-select {
  color: var(--accent);
}

.lang-select option {
  color: var(--text);
}

.footer-links a {
  transition: color 0.2s ease;
}

.nav-link.active {
  color: var(--text);
  font-weight: 600;
}

.main-nav a:hover,
.footer-links a:hover,
.blog-link:hover strong,
.page-link-item:hover strong,
.contact-mail:hover {
  color: var(--accent);
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(45, 107, 93, 0.18);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: none;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible:hover {
  background: var(--accent-soft);
  border-color: rgba(45, 107, 93, 0.18);
}

.main-nav .nav-link:active {
  background: rgba(35, 79, 69, 0.12);
  border-color: rgba(35, 79, 69, 0.24);
  color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 680px;
  background: #000000;
  overflow: hidden;
}

.page-hero {
  padding: 120px 0 54px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 860px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease;
  will-change: transform;
}

.hero:hover .hero-image {
  transform: scale(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 24, 22, 0.8) 0%, rgba(16, 24, 22, 0.58) 36%, rgba(16, 24, 22, 0.22) 68%, rgba(16, 24, 22, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 12, 11, 0.1) 0%, rgba(8, 12, 11, 0.22) 38%, rgba(8, 12, 11, 0.56) 100%),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 22%, rgba(255, 255, 255, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 680px;
  padding: 120px 0;
  color: var(--white);
}

.hero-content > * {
  max-width: 900px;
}

.eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c7d2ce;
  white-space: nowrap;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.page-title {
  margin: 10px 0 0;
  max-width: 24ch;
  font-size: clamp(1.28rem, 1.9vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 62ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-shell:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 15, 0.68);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 28px 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(29, 38, 36, 0.1);
  box-shadow: 0 24px 60px rgba(10, 16, 15, 0.24);
}

.contact-form-page {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-form-card {
  padding: 34px 36px 30px;
  background: #ffffff;
  border: 1px solid rgba(29, 38, 36, 0.1);
  box-shadow: 0 24px 60px rgba(10, 16, 15, 0.12);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.modal-eyebrow {
  color: var(--accent);
}

.modal-title {
  margin: 8px 0 0;
  max-width: 22ch;
  font-size: clamp(1.22rem, 1.8vw, 1.56rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  color: var(--text-soft);
  border: 1px solid var(--line);
}

.modal-copy,
.form-note {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.form-note[data-state="pending"] {
  color: #8c6b1f;
}

.form-note[data-state="success"] {
  color: #1f6b47;
}

.form-note[data-state="error"] {
  color: #9b3b2c;
}

.inquiry-form {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}

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

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

.form-field span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.field-hint {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(29, 38, 36, 0.12);
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(45, 107, 93, 0.1);
}

.phone-field {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 10px;
}

.form-field textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.page-text {
  max-width: 60ch;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

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

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.button-outline {
  border-color: rgba(29, 38, 36, 0.18);
  color: var(--text);
  background: transparent;
}

.button-outline:hover {
  border-color: rgba(29, 38, 36, 0.3);
  color: var(--accent);
  background: var(--accent-soft);
}

.section {
  padding: 80px 0;
}

body:has(.contact-form-page) .section {
  padding-top: 56px;
}

.section-ash {
  background: var(--bg-soft);
}

.home-middle {
  position: relative;
  margin-top: -46px;
  padding: 0 0 86px;
  background:
    linear-gradient(180deg, rgba(238, 242, 240, 0.96) 0%, #f5f7f6 180px, #ffffff 100%);
  z-index: 2;
}

.home-middle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.72) 52%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.home-middle > .container {
  position: relative;
  z-index: 1;
}

.home-middle .section {
  padding: 58px 0;
}

.section-about-feature {
  padding-top: 0 !important;
}

.section-kicker {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2,
.feature-card__content h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.58rem, 2.8vw, 2.38rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.section-head p,
.feature-card__content p,
.site-map-card p,
.covers-row__body p,
.home-service-card p,
.home-value-card p,
.home-cta-card__content p {
  margin: 0;
  color: var(--text-soft);
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  gap: 38px;
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow:
    0 28px 64px rgba(10, 16, 15, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}

.feature-card-cut::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  background: #f3f6f4;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.feature-card__media,
.feature-card__content {
  min-width: 0;
}

.feature-card__content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 10px 4px 10px 0;
}

.feature-card__actions {
  margin-top: 8px;
}

.polygon-media {
  position: relative;
  height: 418px;
  overflow: hidden;
  background: #dbe2df;
  clip-path: polygon(9% 0, 100% 0, 100% 80%, 86% 100%, 0 100%, 0 15%);
}

.polygon-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  clip-path: inherit;
}

.polygon-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.88) contrast(1.04) brightness(0.92);
}

.section-home-services {
  padding-top: 52px;
}

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

.home-service-card {
  position: relative;
  grid-column: span 3;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 214px;
  padding: 24px 22px 22px;
  background: #ffffff;
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 16px 36px rgba(10, 16, 15, 0.06);
}

.home-service-card--primary {
  grid-column: span 6;
  min-height: 232px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9f7 100%);
  box-shadow: 0 20px 40px rgba(10, 16, 15, 0.07);
}

.home-service-card:nth-child(4),
.home-service-card:nth-child(5) {
  grid-column: span 6;
}

.home-service-card--primary::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  background: #f1f5f3;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.home-service-card__no,
.home-value-card__no,
.covers-row__no {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-service-card h3,
.home-value-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
}

.home-service-card .button {
  justify-self: start;
  margin-top: auto;
}

.section-home-values {
  position: relative;
  padding-bottom: 18px !important;
}

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

.home-value-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 188px;
  padding: 22px 20px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 14px 32px rgba(10, 16, 15, 0.045);
}

.section-home-cta {
  padding-bottom: 88px !important;
}

.home-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 30px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 18px 38px rgba(10, 16, 15, 0.05);
}

.home-cta-card__content {
  max-width: 760px;
}

.home-cta-card__content h2 {
  margin: 0;
  max-width: 28ch;
  color: var(--text);
  font-size: clamp(1.42rem, 2.4vw, 2rem);
  line-height: 1.16;
}

.home-cta-card__actions {
  display: flex;
  align-items: center;
}

.section-title-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-strong);
}

.section-title-row h2 {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(1.16rem, 1.55vw, 1.42rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title-row-single {
  grid-template-columns: 1fr;
  gap: 0;
}

.section-title-row-single h2 {
  max-width: none;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.section-title-single {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-strong);
}

.section-title-single h2 {
  margin: 0;
  font-size: clamp(1.22rem, 1.8vw, 1.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-title-single-large h2 {
  font-size: clamp(1.32rem, 2vw, 1.78rem);
}

.section-title-compact {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-strong);
}

.section-title-compact .eyebrow {
  color: var(--accent);
}

.section-title-compact h2 {
  margin: 10px 0 0;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.partner-section-title h2 {
  font-size: clamp(1.72rem, 3vw, 2.5rem);
}

.homepage-section-title h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.line-group,
.blog-nav-grid,
.brand-grid,
.content-columns,
.page-link-grid,
.partner-grid,
.contact-layout {
  margin-top: 18px;
}

.section-media {
  padding-bottom: 0;
}

.line-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.line-number,
.blog-link span,
.brand-kicker {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.line-content h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.line-content {
  max-width: 760px;
}

.line-content p,
.content-columns p,
.brand-block p,
.contact-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

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

.product-detail-intro {
  margin-bottom: 8px;
}

.customization-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.image-zoom-frame {
  overflow: hidden;
}

.image-zoom-frame img {
  transform: scale(1);
  transition: transform 0.45s ease;
  will-change: transform;
}

.image-zoom-frame:hover img {
  transform: scale(1.05);
}

.customization-panel-image img {
  width: 100%;
  height: clamp(260px, 28vw, 360px);
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.customization-panel-content {
  display: grid;
  gap: 12px;
}

.customization-panel-content p {
  margin: 0;
}

.blog-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  align-items: stretch;
}

.section-partners {
  background:
    linear-gradient(180deg, #0c1211 0%, #101816 52%, #121d1a 100%);
}

.section-partners .section-title-single {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.section-partners .partner-section-title h2 {
  color: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 18px;
}

.about-intro-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  max-width: 640px;
}

.about-intro-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.about-intro-copy .button {
  justify-self: start;
  margin-top: 4px;
}

.about-intro-media {
  min-height: 320px;
  border: 1px dashed rgba(29, 38, 36, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.partner-logo-card {
  flex: 0 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 166px;
  margin: 0;
  padding: 18px 12px 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.partner-logo-card:hover,
.partner-logo-card:focus-within {
  transform: translateY(-2px);
}

.partner-logo-card img {
  width: 100%;
  max-width: 250px;
  max-height: 108px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transform: scale(1);
  transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.partner-logo-card--bhp img {
  filter: none;
  opacity: 1;
}

.section-partners .partner-logo-card img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.partner-logo-card:hover img,
.partner-logo-card:focus-within img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

.partner-logo-card--bhp:hover img,
.partner-logo-card--bhp:focus-within img {
  filter: none;
}

.partner-logo-name {
  display: block;
  width: 100%;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #000000;
  text-align: center;
  line-height: 1.4;
}

.section-partners .partner-logo-name {
  color: #ffffff;
}


.image-band {
  margin: 0 0 18px;
}

.image-band .image-zoom-frame img {
  width: 100%;
  height: clamp(240px, 34vw, 420px);
  object-fit: cover;
}

.image-band-product-list .image-zoom-frame img {
  height: clamp(260px, 30vw, 360px);
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.image-band-product-detail .image-zoom-frame img {
  width: min(100%, 760px);
  height: auto;
  max-height: 420px;
  margin: 0 auto;
  object-fit: contain;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.image-band-product-detail .product-detail-image-product2 {
  width: min(100%, 680px);
  max-height: 380px;
  padding: 18px;
}

.image-band-product-detail .product-detail-image-product3 {
  width: min(100%, 680px);
  max-height: 380px;
  padding: 18px;
}

.image-placeholder {
  width: min(100%, 760px);
  height: clamp(280px, 34vw, 420px);
  margin: 0 auto;
  border: 1px dashed rgba(29, 38, 36, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.image-caption {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.blog-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 136px;
  padding: 18px 18px 16px 0;
  border-right: 1px solid var(--line);
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.page-link-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 136px;
  padding: 18px 18px 16px 0;
  border-right: 1px solid var(--line);
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

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

.product-card-feature {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
}

.product-card-image-frame {
  overflow: hidden;
}
.site-footer {
  margin-top: 0;
  padding: 0;
  background: linear-gradient(90deg, #050505 0%, #050505 70%, #fbfbfb 70%, #fbfbfb 100%);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.footer-inner {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 0;
  align-items: stretch;
  min-height: 228px;
}
.footer-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 72px 40px 0;
  min-width: 0;
  background: #050505;
}
.site-footer strong {
  display: inline-block;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.footer-main > p:not(.footer-copy) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 24px;
  max-width: 620px;
  margin: 26px 0 0;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
}
.footer-links a {
  color: inherit;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease, background-color 0.22s ease;
}
.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: #ffffff;
}
.site-footer .footer-links a:hover::after,
.site-footer .footer-links a:focus-visible::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.58);
}
.footer-copy {
  margin: 22px 0 0;
  padding-top: 18px;
  max-width: 520px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 56px;
  min-width: 0;
  border-left: 1px solid rgba(29, 38, 36, 0.08);
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 56px 0 40px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.footer-social-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 34px;
}

.footer-social-logo {
  display: block;
  width: 66px;
  height: auto;
  opacity: 0.9;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(29, 38, 36, 0.12);
  color: var(--text);
  background: #fdfdfd;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link svg {
  width: 19px;
  height: 19px;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(45, 107, 93, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(45, 107, 93, 0.12);
}

@media (max-width: 1100px) {
  .home-services-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .home-service-card {
    grid-column: span 3;
  }

  .home-service-card--primary {
    grid-column: span 6;
  }

  .home-service-card:nth-child(4),
  .home-service-card:nth-child(5) {
    grid-column: span 3;
  }

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

@media (max-width: 900px) {
  .home-middle {
    margin-top: -30px;
    padding-bottom: 70px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .feature-card__content {
    padding: 0;
  }

  .polygon-media {
    height: 300px;
  }

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

  .home-service-card,
  .home-service-card--primary {
    grid-column: auto;
    min-height: 0;
  }

  .home-service-card:nth-child(4),
  .home-service-card:nth-child(5) {
    grid-column: auto;
  }

  .home-cta-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .home-middle {
    margin-top: -18px;
    padding-bottom: 58px;
  }

  .home-middle .section {
    padding: 40px 0;
  }

  .feature-card {
    padding: 22px;
  }

  .feature-card-cut::after {
    width: 30px;
    height: 30px;
  }

  .polygon-media {
    height: 240px;
    clip-path: polygon(6% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 11%);
  }

  .home-services-grid,
  .home-values-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .home-value-card {
    min-height: 0;
  }

  .home-cta-card {
    padding: 22px;
  }

  .section-home-cta {
    padding-bottom: 68px !important;
  }
}

@media (max-width: 768px) {
  .site-footer {
    background: linear-gradient(180deg, #050505 0%, #050505 68%, #fbfbfb 68%, #fbfbfb 100%);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .footer-main {
    padding: 0 0 28px;
  }

  .footer-right {
    width: 100%;
    padding: 22px 0 30px;
    justify-content: flex-start;
    border-left: 0;
    border-top: 1px solid rgba(29, 38, 36, 0.08);
  }

  .footer-social {
    width: 100%;
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
  }

  .footer-social-brand {
    justify-content: flex-start;
    margin-bottom: 22px;
  }

  .footer-main > p:not(.footer-copy),
  .footer-links,
  .footer-copy {
    margin-left: 0;
  }

  .footer-social-icons {
    justify-content: flex-start;
    max-width: none;
    gap: 12px;
    flex-wrap: wrap;
  }
}



.about-page {
  background: #ffffff;
}

.about-page .about-main-page {
  position: relative;
  overflow: hidden;
}

.about-page .about-banner {
  position: relative;
  min-height: 520px;
  background: #0f1715;
  overflow: hidden;
}

.about-page .about-banner__media,
.about-page .about-banner__overlay {
  position: absolute;
  inset: 0;
}

.about-page .about-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.92) brightness(0.7) contrast(1.02);
  opacity: 0;
  transform: translateY(36px) scale(1.02);
  animation: aboutBannerImageRise 1.2s ease-out forwards;
}

.about-page .about-banner__overlay {
  background:
    linear-gradient(90deg, rgba(10, 16, 15, 0.72) 0%, rgba(10, 16, 15, 0.54) 38%, rgba(10, 16, 15, 0.24) 72%, rgba(10, 16, 15, 0.10) 100%),
    linear-gradient(180deg, rgba(7, 11, 10, 0.14) 0%, rgba(7, 11, 10, 0.38) 100%);
}

.about-page .about-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 520px;
  padding-top: 140px;
  padding-bottom: 88px;
  color: #ffffff;
}

.about-page .about-banner__inner .eyebrow {
  color: rgba(255, 255, 255, 0.76);
  opacity: 0;
  transform: translateY(18px);
  animation: aboutBannerTextRise 0.9s ease-out 0.2s forwards;
}

.about-page .about-banner__inner .page-title {
  margin: 0;
  max-width: 11ch;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.2vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(18px);
  animation: aboutBannerTextRise 0.9s ease-out 0.4s forwards;
}

.about-page .about-banner__inner .page-text {
  max-width: 62ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  opacity: 0;
  transform: translateY(18px);
  animation: aboutBannerTextRise 0.9s ease-out 0.6s forwards;
}

.about-page .about-content-shell {
  position: relative;
  margin-top: -56px;
  padding: 0 0 96px;
  background:
    linear-gradient(180deg, rgba(239, 243, 241, 0.96) 0%, #f7f9f8 200px, #ffffff 100%);
}

.about-page .about-content-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.74) 58%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.about-page .about-content-shell > .container {
  position: relative;
  z-index: 1;
}

.about-page .about-section {
  padding: 56px 0;
}

.about-page .about-animate-section {
  --about-reveal-distance: 32px;
}

.about-page .about-animate-section .about-section-head,
.about-page .about-animate-section .about-feature-card,
.about-page .about-animate-section .about-process-panel,
.about-page .about-animate-section .about-value-card,
.about-page .about-animate-section .about-audience-card {
  opacity: 0;
  transform: translateY(var(--about-reveal-distance));
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
  will-change: transform, opacity;
}

.about-page .about-animate-section.is-visible .about-section-head,
.about-page .about-animate-section.is-visible .about-feature-card,
.about-page .about-animate-section.is-visible .about-process-panel,
.about-page .about-animate-section.is-visible .about-value-card,
.about-page .about-animate-section.is-visible .about-audience-card {
  opacity: 1;
  transform: translateY(0);
}

.about-page .about-animate-section .about-section-head {
  transition-delay: 0.04s;
}

.about-page .about-section-feature {
  padding-top: 0;
}

.about-page .about-kicker {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-page .about-section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.about-page .about-section-capabilities .about-section-head,
.about-page .about-section-process .about-section-head,
.about-page .about-section-value .about-section-head,
.about-page .about-section-audience .about-section-head {
  max-width: 700px;
}

.about-page .about-section-head h2,
.about-page .about-feature-card h2,
.about-page .about-value-card h2,
.about-page .about-audience-card h2,
.about-page .about-cta-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.42rem, 2.4vw, 2.08rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.about-page .about-section-head p,
.about-page .about-feature-card p,
.about-page .about-capability-card p,
.about-page .about-process-step p,
.about-page .about-value-item p,
.about-page .about-audience-note {
  margin: 0;
  color: var(--text-soft);
}

.about-page .about-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.92fr);
  gap: 38px;
  padding: 42px;
  background: #ffffff;
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 22px 54px rgba(10, 16, 15, 0.08), 0 1px 0 rgba(255, 255, 255, 0.86) inset;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.about-page .about-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.24) 46%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.78s ease, opacity 0.4s ease;
}

.about-page .about-cut-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
  background: #f2f5f3;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.about-page .about-feature-card__content,
.about-page .about-feature-card__media {
  min-width: 0;
}

.about-page .about-feature-card__content {
  display: grid;
  align-content: center;
  gap: 16px;
}

.about-page .about-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 107, 93, 0.12);
  box-shadow: 0 24px 46px rgba(10, 16, 15, 0.09), 0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.about-page .about-feature-card:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.about-page .about-role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.about-page .about-role-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(29, 38, 36, 0.08);
  background: #f5f7f6;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.about-page .about-role-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 107, 93, 0.15);
  background: #f9fcfa;
}

.about-page .about-feature-card__actions {
  margin-top: 10px;
}

.about-page .about-polygon-media {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #dce3e0;
  clip-path: polygon(8% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 14%);
}

.about-page .about-polygon-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  clip-path: inherit;
  pointer-events: none;
}

.about-page .about-polygon-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.9) contrast(1.04) brightness(0.95);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.about-page .about-feature-card:hover .about-polygon-media img {
  transform: scale(1.035);
  filter: saturate(0.96) contrast(1.05) brightness(0.98);
}

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

.about-page .about-capability-card {
  position: relative;
  min-height: 260px;
  perspective: 1200px;
  opacity: 0;
  transform: translateY(28px);
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .about-card-number,
.about-page .about-process-step__no {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-page .about-process-step__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding-top: 0;
  border: 1px solid rgba(45, 107, 93, 0.14);
  background: #f5f8f6;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about-page .about-capability-card h3,
.about-page .about-process-step__body h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
}

.about-page .about-process-step__body {
  max-width: 720px;
}

.about-page .about-process-step:hover .about-process-step__no {
  transform: translateY(-1px);
  background: rgba(45, 107, 93, 0.12);
  border-color: rgba(45, 107, 93, 0.24);
}

.about-page .about-capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.about-page .about-capability-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(29, 38, 36, 0.08);
  background: #f6f8f7;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}

.about-page .about-capability-card__inner {
  position: relative;
  width: 100%;
  min-height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .about-capability-card.is-flipped .about-capability-card__inner,
.about-page .about-capability-card:focus-within .about-capability-card__inner {
  transform: rotateY(180deg);
}

.about-page .about-capability-card__face {
  position: absolute;
  inset: 0;
  display: grid;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid rgba(29, 38, 36, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(10, 16, 15, 0.04);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-page .about-capability-card__face--front {
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%);
}

.about-page .about-capability-card__face--back {
  align-content: start;
  gap: 12px;
  padding: 24px 22px;
  transform: rotateY(180deg);
}

.about-page .about-capability-logo {
  width: min(46%, 150px);
  height: auto;
  opacity: 0.92;
  transition: transform 0.4s ease, opacity 0.35s ease;
}

.about-page .about-section-capabilities .about-capability-grid {
  margin-top: 2px;
}

.about-page .about-section-capabilities.is-visible .about-capability-card {
  opacity: 1;
  transform: translateY(0);
}

.about-page .about-section-capabilities.is-visible .about-capability-card:nth-child(1) { transition-delay: 0.08s; }
.about-page .about-section-capabilities.is-visible .about-capability-card:nth-child(2) { transition-delay: 0.14s; }
.about-page .about-section-capabilities.is-visible .about-capability-card:nth-child(3) { transition-delay: 0.2s; }
.about-page .about-section-capabilities.is-visible .about-capability-card:nth-child(4) { transition-delay: 0.26s; }

.about-page .about-capability-card:hover .about-capability-card__face {
  border-color: rgba(45, 107, 93, 0.14);
  box-shadow: 0 18px 34px rgba(10, 16, 15, 0.06);
}

.about-page .about-capability-card:hover .about-capability-logo {
  transform: scale(1.04);
  opacity: 1;
}

.about-page .about-section-process {
  position: relative;
  padding-top: 64px;
}

.about-page .about-process-panel {
  position: relative;
  padding: 10px 30px;
  background: #ffffff;
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 14px 30px rgba(10, 16, 15, 0.04);
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.about-page .about-process-panel::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 65px;
  width: 1px;
  background: linear-gradient(180deg, rgba(45, 107, 93, 0.20) 0%, rgba(45, 107, 93, 0.06) 100%);
}

.about-page .about-process-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.24) 46%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.78s ease, opacity 0.42s ease;
}

.about-page .about-process-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(29, 38, 36, 0.08);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.about-page .about-process-step:last-child {
  border-bottom: 0;
}

.about-page .about-process-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 107, 93, 0.12);
  box-shadow: 0 20px 38px rgba(10, 16, 15, 0.06);
}

.about-page .about-process-panel:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.about-page .about-section-process.is-visible .about-process-step {
  opacity: 1;
  transform: translateY(0);
}

.about-page .about-section-process.is-visible .about-process-step:nth-child(1) { transition-delay: 0.08s; }
.about-page .about-section-process.is-visible .about-process-step:nth-child(2) { transition-delay: 0.14s; }
.about-page .about-section-process.is-visible .about-process-step:nth-child(3) { transition-delay: 0.2s; }
.about-page .about-section-process.is-visible .about-process-step:nth-child(4) { transition-delay: 0.26s; }

.about-page .about-process-step:hover {
  transform: translateX(6px);
  border-color: rgba(45, 107, 93, 0.12);
}

.about-page .about-section-value {
  padding-top: 68px;
}

.about-page .about-value-card,
.about-page .about-audience-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 12px 28px rgba(10, 16, 15, 0.04);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.about-page .about-value-card {
  padding: 32px;
}

.about-page .about-value-card--full {
  width: 100%;
}

.about-page .about-value-card::before,
.about-page .about-audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 46%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.78s ease, opacity 0.4s ease;
}

.about-page .about-value-card:hover,
.about-page .about-audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 107, 93, 0.12);
  box-shadow: 0 20px 38px rgba(10, 16, 15, 0.06);
}

.about-page .about-value-card:hover::before,
.about-page .about-audience-card:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

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

.about-page .about-value-item {
  padding-top: 16px;
  border-top: 1px solid rgba(29, 38, 36, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.about-page .about-section-value.is-visible .about-value-item {
  opacity: 1;
  transform: translateY(0);
}

.about-page .about-section-value.is-visible .about-value-item:nth-child(1) { transition-delay: 0.08s; }
.about-page .about-section-value.is-visible .about-value-item:nth-child(2) { transition-delay: 0.14s; }
.about-page .about-section-value.is-visible .about-value-item:nth-child(3) { transition-delay: 0.2s; }
.about-page .about-section-value.is-visible .about-value-item:nth-child(4) { transition-delay: 0.26s; }

.about-page .about-value-item:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 107, 93, 0.14);
}

.about-page .about-value-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.98rem;
}

.about-page .about-audience-card {
  padding: 28px 26px;
}

.about-page .about-audience-card--wide {
  display: grid;
  gap: 0;
  background: #f8faf9;
  box-shadow: none;
}

.about-page .about-audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-page .about-audience-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  background: #f4f7f5;
  border: 1px solid rgba(29, 38, 36, 0.08);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.about-page .about-audience-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 38, 36, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.about-page .about-audience-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 107, 93, 0.16);
  background: #fcfefd;
  box-shadow: 0 10px 18px rgba(10, 16, 15, 0.04);
}

.about-page .about-section-audience.is-visible .about-audience-tags span,
.about-page .about-section-audience.is-visible .about-audience-note {
  opacity: 1;
  transform: translateY(0);
}

.about-page .about-section-audience.is-visible .about-audience-tags span:nth-child(1) { transition-delay: 0.08s; }
.about-page .about-section-audience.is-visible .about-audience-tags span:nth-child(2) { transition-delay: 0.12s; }
.about-page .about-section-audience.is-visible .about-audience-tags span:nth-child(3) { transition-delay: 0.16s; }
.about-page .about-section-audience.is-visible .about-audience-tags span:nth-child(4) { transition-delay: 0.2s; }
.about-page .about-section-audience.is-visible .about-audience-tags span:nth-child(5) { transition-delay: 0.24s; }
.about-page .about-section-audience.is-visible .about-audience-tags span:nth-child(6) { transition-delay: 0.28s; }
.about-page .about-section-audience.is-visible .about-audience-note { transition-delay: 0.34s; }

.about-page .about-section-cta {
  padding-bottom: 0;
  padding-top: 46px;
}

.about-page .about-cta-panel {
  padding: 28px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfa 100%);
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 8px 18px rgba(10, 16, 15, 0.03);
}

.about-page .about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .about-page .about-animate-section .about-section-head,
  .about-page .about-animate-section .about-feature-card,
  .about-page .about-animate-section .about-process-panel,
  .about-page .about-animate-section .about-value-card,
  .about-page .about-animate-section .about-audience-card,
  .about-page .about-capability-card,
  .about-page .about-process-step,
  .about-page .about-value-item,
  .about-page .about-audience-tags span,
  .about-page .about-audience-note {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-page .about-feature-card::before,
  .about-page .about-process-panel::after,
  .about-page .about-value-card::before,
  .about-page .about-audience-card::before {
    display: none;
  }
}

@keyframes aboutBannerImageRise {
  from {
    opacity: 0;
    transform: translateY(36px) scale(1.02);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aboutBannerTextRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-page .about-cta-panel h2 {
  max-width: 30ch;
  font-size: clamp(1.24rem, 2vw, 1.56rem);
}

@media (max-width: 1100px) {
  .about-page .about-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-page .about-banner {
    min-height: 460px;
  }

  .about-page .about-banner__inner {
    min-height: 460px;
    padding-bottom: 72px;
  }

  .about-page .about-content-shell {
    margin-top: -28px;
    padding-bottom: 72px;
  }

  .about-page .about-section {
    padding: 46px 0;
  }

  .about-page .about-section-process,
  .about-page .about-section-value {
    padding-top: 52px;
  }

  .about-page .about-feature-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .about-page .about-polygon-media {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .about-page .about-banner {
    min-height: 410px;
  }

  .about-page .about-banner__inner {
    min-height: 410px;
    padding-top: 124px;
    padding-bottom: 54px;
  }

  .about-page .about-banner__inner .page-title {
    max-width: none;
    font-size: clamp(1.75rem, 8vw, 2.6rem);
  }

  .about-page .about-banner__inner .page-text {
    font-size: 0.94rem;
  }

  .about-page .about-content-shell {
    margin-top: -16px;
    padding-bottom: 58px;
  }

  .about-page .about-section {
    padding: 40px 0;
  }

  .about-page .about-feature-card,
  .about-page .about-value-card,
  .about-page .about-audience-card,
  .about-page .about-cta-panel {
    padding: 22px;
  }

  .about-page .about-cut-card::after {
    width: 32px;
    height: 32px;
  }

  .about-page .about-polygon-media {
    height: 240px;
    clip-path: polygon(6% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 10%);
  }

  .about-page .about-capability-grid,
  .about-page .about-value-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-process-panel {
    padding: 4px 18px;
  }

  .about-page .about-process-step {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 0;
  }

  .about-page .about-process-step__no {
    width: 36px;
    height: 36px;
  }

  .about-page .about-process-panel::before {
    left: 44px;
    top: 20px;
    bottom: 20px;
  }

.about-page .about-audience-tags span {
    min-height: 34px;
    font-size: 0.82rem;
  }

  .about-page .about-role-list span {
    min-height: 34px;
    font-size: 0.8rem;
  }
}

.service-page .services-overview-section {
  padding-top: 46px;
}

.service-page .service-page-hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 88px;
  background: #0d1413;
  border-bottom: 0;
  isolation: isolate;
}

.service-page .service-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.service-page .service-hero-copy {
  max-width: 720px;
}

.service-page .service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 12, 12, 0.78) 0%, rgba(8, 12, 12, 0.52) 38%, rgba(8, 12, 12, 0.24) 68%, rgba(8, 12, 12, 0.3) 100%),
    url("https://img.yazenco.com/sbanner.png");
  background-size: cover;
  background-position: center center;
  transform: scale(1.08);
  animation: serviceHeroBgIn 0.7s ease-out forwards, serviceHeroBgDriftOnce 1.1s ease-out 0.7s forwards;
}

.service-page .service-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 16, 15, 0.2) 0%, rgba(10, 16, 15, 0.3) 100%);
  z-index: 0;
}

.service-page .service-page-hero .eyebrow,
.service-page .service-page-hero .page-title,
.service-page .service-page-hero .page-text {
  color: var(--white);
}

.service-page .service-page-hero .eyebrow,
.service-page .service-page-hero .page-title,
.service-page .service-page-hero .page-text {
  opacity: 0;
  transform: translateY(20px);
  animation: serviceHeroTextIn 0.55s ease-out forwards;
}

.service-page .service-page-hero .page-title {
  animation-delay: 0.08s;
}

.service-page .service-page-hero .page-text {
  animation-delay: 0.16s;
}

@keyframes serviceHeroBgIn {
  0% {
    opacity: 0;
    transform: scale(1.12);
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes serviceHeroTextIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceHeroBgDriftOnce {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.06) translate3d(0, -8px, 0);
  }
}

.service-page .services-overview-shell {
  padding: 30px 32px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%);
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 18px 42px rgba(10, 16, 15, 0.05);
}

.service-page .services-overview-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: end;
}

.service-page .services-overview-intro {
  max-width: 760px;
}

.service-page .services-overview-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.42rem, 2.5vw, 2.12rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.service-page .services-overview-copy {
  max-width: 64ch;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.service-page .services-overview-media {
  margin: 0;
}

.service-page .services-overview-media__shape {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #dce3e0;
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 14%);
}

.service-page .services-overview-media__shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.88) contrast(1.02) brightness(0.92);
}

.service-page .services-overview-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.service-page .services-overview-card {
  grid-column: span 4;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 182px;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 10px 24px rgba(10, 16, 15, 0.035);
}

.service-page .services-overview-card-primary {
  position: relative;
  min-height: 198px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
  box-shadow: 0 14px 30px rgba(10, 16, 15, 0.045);
}

.service-page .services-overview-card-primary::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 28px;
  background: #f1f5f2;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.service-page .services-overview-card:nth-child(4),
.service-page .services-overview-card:nth-child(5) {
  grid-column: span 6;
}

.service-page .services-overview-card__no {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-page .services-overview-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.28;
}

.service-page .services-overview-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

@media (max-width: 1000px) {
  .service-page .services-overview-head {
    grid-template-columns: 1fr;
  }

  .service-page .services-overview-media__shape {
    height: 220px;
  }

  .service-page .services-overview-card,
  .service-page .services-overview-card:nth-child(4),
  .service-page .services-overview-card:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .service-page .services-overview-shell {
    padding: 22px;
  }

  .service-page .services-overview-grid {
    grid-template-columns: 1fr;
  }

  .service-page .services-overview-media__shape {
    height: 180px;
  }

  .service-page .services-overview-card,
  .service-page .services-overview-card:nth-child(4),
  .service-page .services-overview-card:nth-child(5) {
    grid-column: auto;
    min-height: 0;
  }
}

.service-page .service-detail-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.service-page .service-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 32px;
  align-items: center;
}

.service-page .service-detail-card--reverse {
  grid-template-columns: minmax(300px, 0.98fr) minmax(0, 1.02fr);
}

.service-page .service-detail-card--reverse .service-detail-card__content {
  order: 2;
}

.service-page .service-detail-card--reverse .service-detail-card__media {
  order: 1;
}

.service-page .service-detail-card__content {
  min-width: 0;
}

.service-page .service-detail-card__header,
.service-page .service-detail-structure-card__head {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.service-page .service-detail-card__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 107, 93, 0.14);
  background: #f5f8f6;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-page .service-detail-card__header h2,
.service-page .service-detail-structure-card__head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.36rem, 2.35vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.service-page .service-detail-card__lead,
.service-page .service-detail-card__intro,
.service-page .service-detail-structure-item p {
  margin: 0;
  color: var(--text-soft);
}

.service-page .service-detail-card__lead {
  margin-top: 18px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.service-page .service-detail-card__intro {
  margin-top: 14px;
  max-width: 62ch;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-page .service-detail-card__list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-page .service-detail-card__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.service-page .service-detail-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 1px;
  background: rgba(45, 107, 93, 0.36);
}

.service-page .service-detail-card__value {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(29, 38, 36, 0.08);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-page .service-detail-card__media {
  min-width: 0;
}

.service-page .service-detail-card__media--compact {
  max-width: 520px;
}

.service-page .service-detail-card__shape {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #dce3e0;
  clip-path: polygon(8% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 14%);
}

.service-page .service-detail-card__shape--soft {
  clip-path: polygon(6% 0, 100% 0, 100% 88%, 92% 100%, 0 100%, 0 10%);
}

.service-page .service-detail-card__shape--technical {
  clip-path: polygon(0 0, 100% 0, 100% 84%, 90% 100%, 0 100%);
}

.service-page .service-detail-card__shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.service-page .service-detail-card__shape .service-detail-card__supply-photo {
  object-fit: contain;
  object-position: center;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.service-page .service-detail-card__shape .service-detail-card__parts-photo,
.service-page .service-detail-card__shape .service-detail-card__operations-photo {
  object-fit: contain;
  object-position: center;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.service-page .service-detail-card__shape--technical img {
  object-fit: contain;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.service-page .service-detail-card__shape--technical .service-detail-card__technical-photo {
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.service-page .service-detail-structure-card {
  padding: 34px 34px 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%);
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 16px 34px rgba(10, 16, 15, 0.05);
}

.service-page .service-detail-structure-card__head {
  margin-bottom: 18px;
}

.service-page .service-detail-structure-media {
  position: relative;
  height: 280px;
  margin-top: 20px;
  overflow: hidden;
  background: #dce3e0;
  clip-path: polygon(6% 0, 100% 0, 100% 86%, 92% 100%, 0 100%, 0 12%);
}

.service-page .service-detail-structure-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.service-page .service-detail-structure-media .service-detail-structure-photo {
  object-fit: contain;
  object-position: center;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.service-page .service-detail-structure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.service-page .service-detail-structure-item {
  padding: 18px 0 0;
  border-top: 1px solid rgba(29, 38, 36, 0.08);
}

.service-page .service-detail-structure-item h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.28;
}

.service-page .service-detail-card--technical .service-detail-card__content {
  padding-right: 8px;
}

.service-page .services-delivery-section {
  padding-top: 40px;
  padding-bottom: 72px;
}

.service-page .services-delivery-shell {
  padding: 30px 32px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%);
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 16px 36px rgba(10, 16, 15, 0.045);
}

.service-page .services-delivery-head {
  max-width: 760px;
}

.service-page .services-delivery-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.34rem, 2.3vw, 1.96rem);
  line-height: 1.14;
}

.service-page .services-delivery-copy {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-page .services-delivery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.service-page .services-delivery-item {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 18px 20px;
  min-height: 190px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(29, 38, 36, 0.08);
}

.service-page .services-delivery-item__no {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.service-page .services-delivery-item h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.3;
}

.service-page .services-delivery-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-page .services-cta-section {
  padding-top: 0;
  padding-bottom: 72px;
}

.service-page .services-cta-panel {
  padding: 28px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  border: 1px solid rgba(29, 38, 36, 0.08);
  box-shadow: 0 14px 30px rgba(10, 16, 15, 0.04);
}

.service-page .services-cta-panel h2 {
  margin: 0;
  max-width: 34ch;
  color: var(--text);
  font-size: clamp(1.22rem, 2vw, 1.58rem);
  line-height: 1.18;
}

.service-page .services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 1000px) {
  .service-page .service-hero-inner {
    max-width: 700px;
  }

  .service-page .service-detail-card,
  .service-page .service-detail-card--reverse {
    grid-template-columns: 1fr;
  }

  .service-page .service-detail-card--reverse .service-detail-card__content,
  .service-page .service-detail-card--reverse .service-detail-card__media {
    order: initial;
  }

  .service-page .service-detail-card__shape {
    height: 300px;
  }

  .service-page .service-detail-structure-media {
    height: 240px;
  }

  .service-page .service-detail-structure-grid {
    grid-template-columns: 1fr;
  }

  .service-page .services-delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-page .service-page-hero {
    padding: 124px 0 68px;
  }

  .service-page .service-detail-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .service-page .service-detail-card__header,
  .service-page .service-detail-structure-card__head {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
  }

  .service-page .service-detail-card__no {
    width: 36px;
    height: 36px;
  }

  .service-page .service-detail-card__shape {
    height: 240px;
  }

  .service-page .service-detail-structure-media {
    height: 220px;
  }

  .service-page .service-detail-structure-card {
    padding: 22px;
  }

  .service-page .services-delivery-section {
    padding-top: 18px;
    padding-bottom: 46px;
  }

  .service-page .services-delivery-shell {
    padding: 22px;
  }

  .service-page .services-delivery-grid {
    grid-template-columns: 1fr;
  }

  .service-page .services-delivery-item {
    min-height: 0;
    padding: 16px 16px 18px;
  }

  .service-page .services-cta-section {
    padding-bottom: 46px;
  }

  .service-page .services-cta-panel {
    padding: 22px;
  }
}
/* ...existing code... */

/* Products page card style refresh (only product cards) */
.product-card-grid {
  gap: 24px;
}

.product-card-grid .product-card-feature {
  position: relative;
  background: #f3f3f3;              /* 浅灰底，接近示例 */
  border: 1px solid #e3e3e3;
  padding: 22px 22px 22px 40px;     /* 给左侧竖条留空间 */
  overflow: hidden;
  box-shadow: none;
}

/* 左侧绿色竖条（由红改绿） */
.product-card-grid .product-card-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: #2f7d4f;              /* 绿色 */
}

/* 右下角切角视觉（保持示例风格） */
.product-card-grid .product-card-feature::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 26px 26px;
  border-color: transparent transparent #ffffff transparent;
  pointer-events: none;
}

.product-card-grid .product-card-image-frame {
  background: transparent;
  border: 0;
  margin-bottom: 16px;
}

.product-card-grid .product-card-image {
  display: block;
  width: 100%;
  height: clamp(220px, 24vw, 260px);
  object-fit: contain;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
}

.product-card-grid .product-card-image-product2 {
  padding: 14px 18px;
}

.product-card-grid .product-card-image-product3 {
  padding: 14px 18px;
}

.product-card-grid .product-card-body {
  padding: 0;
}

.product-card-grid .product-card-placeholder {
  min-height: 100%;
}

.product-card-placeholder__media {
  height: 220px;
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(233, 238, 235, 0.9) 100%);
  border: 1px solid rgba(47, 125, 79, 0.08);
}

.product-card-placeholder__body {
  display: grid;
  gap: 12px;
}

.product-card-placeholder__line {
  display: block;
  height: 14px;
  background: rgba(47, 125, 79, 0.08);
}

.product-card-placeholder__line--sm {
  width: 54px;
}

.product-card-placeholder__line--lg {
  width: 72%;
  height: 22px;
}

.product-card-placeholder__line--btn {
  width: 132px;
  height: 40px;
  margin-top: 10px;
}

/* 移动端保持比例 */
@media (max-width: 900px) {
  .product-card-grid .product-card-feature {
    padding: 18px 16px 18px 30px;
  }

  .product-card-grid .product-card-feature::before {
    width: 8px;
  }
}

/* ...existing code... */
