:root {
  --blue: #0d62ff;
  --blue-deep: #073eb5;
  --green: #72c72b;
  --green-deep: #2f9c28;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5eaf2;
  --soft: #f6f9fd;
  --white: #ffffff;
  --shadow: 0 20px 58px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 14px 38px rgba(15, 23, 42, 0.055);
  --glow-blue: rgba(13, 98, 255, 0.12);
  --glow-green: rgba(114, 199, 43, 0.14);
  --radial-border: conic-gradient(
    from 145deg at 50% 50%,
    rgba(114, 199, 43, 0.28),
    rgba(13, 98, 255, 0.24),
    rgba(229, 234, 242, 0.72),
    rgba(114, 199, 43, 0.18),
    rgba(13, 98, 255, 0.22),
    rgba(114, 199, 43, 0.28)
  );
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(calc(100% - 32px), var(--container));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(229, 234, 242, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.065);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(13, 98, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 620;
}

.brand img {
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(13, 98, 255, 0.12);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #334155;
  font-size: 0.92rem;
  font-weight: 520;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(13, 98, 255, 0.08), rgba(114, 199, 43, 0.08));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: #f1f5f9;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 220ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

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

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

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

.hero-slider {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  background: #07111f;
}

.hero-slider::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 16vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 88%);
  content: "";
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 150px 0 128px;
  opacity: 0;
  transition: opacity 900ms ease, transform 900ms ease;
  pointer-events: none;
}

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

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06) translateX(0);
  transition: transform 6800ms ease;
}

.hero-slide.is-active img {
  transform: scale(1.15) translateX(-2.4%);
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 9, 18, 0.78) 0%, rgba(3, 9, 18, 0.56) 42%, rgba(3, 9, 18, 0.18) 100%),
    radial-gradient(circle at 18% 28%, rgba(13, 98, 255, 0.28), transparent 26%),
    radial-gradient(circle at 70% 80%, rgba(114, 199, 43, 0.22), transparent 30%);
  content: "";
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  transform: translateY(18px);
  transition: transform 900ms ease, opacity 900ms ease;
}

.hero-slide.is-active .hero-slide-content {
  transform: translateY(0);
}

.hero-slide-content h1,
.hero-slide-content h2 {
  max-width: 880px;
  margin: 0;
  color: #ffffff;
  font-size: 4.9rem;
  line-height: 0.96;
  font-weight: 640;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.hero-slide-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
}

.hero-slide-content .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.hero-slide-content .eyebrow::before {
  background: var(--green);
  box-shadow: 0 0 28px rgba(114, 199, 43, 0.8);
}

.btn-glass {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-slider-ui {
  position: absolute;
  right: 0;
  bottom: 56px;
  left: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.hero-slider-count {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-slider-count span:first-child {
  font-weight: 620;
}

.hero-slider-count span:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.hero-slider-count span + span::before {
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.4);
  content: "/";
}

.hero-slider-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-slider-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.hero-slider-dots button.is-active {
  width: 56px;
  background: linear-gradient(90deg, #ffffff, var(--green));
}

.hero {
  display: grid;
  min-height: 94vh;
  grid-template-columns: 1fr 0.86fr;
  gap: 70px;
  align-items: center;
  padding: 150px 0 72px;
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.split-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 4.8rem;
  line-height: 0.97;
  font-weight: 680;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.page-hero-copy p,
.intro-text p,
.contact-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 620;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 620;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #1c72ff, #0a4bd4);
  box-shadow: 0 14px 30px rgba(13, 98, 255, 0.2);
}

.btn-ghost {
  border-color: var(--line);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--radial-border) border-box;
  border-color: transparent;
}

.hero-stage {
  position: relative;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 32% 26%, rgba(114, 199, 43, 0.13), transparent 25%),
    radial-gradient(circle at 72% 38%, rgba(13, 98, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-hero {
  display: grid;
  min-height: 72vh;
  grid-template-columns: 1fr 0.68fr;
  gap: 72px;
  align-items: center;
  padding: 150px 0 74px;
}

.page-hero-copy h1 {
  max-width: 880px;
  font-size: 4.35rem;
}

.page-visual {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 34% 32%, rgba(114, 199, 43, 0.13), transparent 28%),
    radial-gradient(circle at 70% 64%, rgba(13, 98, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-visual::before {
  position: absolute;
  inset: 62px;
  border: 1px solid rgba(13, 98, 255, 0.16);
  border-radius: 999px;
  content: "";
}

.page-visual img {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(13, 98, 255, 0.12);
}

.page-visual-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  width: min(270px, calc(100% - 48px));
  padding: 17px;
  border: 1px solid rgba(229, 234, 242, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.page-visual-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 580;
  text-transform: uppercase;
}

.page-visual-card strong {
  display: block;
  margin-top: 6px;
  line-height: 1.2;
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  border: 1px solid rgba(13, 98, 255, 0.18);
  border-radius: 999px;
  content: "";
}

.hero-stage::before {
  inset: 80px 54px 106px;
}

.hero-stage::after {
  inset: 132px 105px 160px;
  border-color: rgba(114, 199, 43, 0.22);
}

.brand-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 250px;
  height: 250px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 26px 70px rgba(13, 98, 255, 0.13),
    0 18px 58px rgba(114, 199, 43, 0.09);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
  animation: breathe 4.8s ease-in-out infinite;
}

.brand-orbit img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
}

.floating-panel,
.metric-strip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(229, 234, 242, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.floating-panel {
  width: 220px;
  padding: 16px;
}

.floating-panel span,
.metric-strip span,
.product-card p,
.work-item span,
.news-card time {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 560;
  text-transform: uppercase;
}

.floating-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
}

.panel-one {
  top: 54px;
  left: 36px;
}

.panel-two {
  right: 34px;
  bottom: 150px;
}

.metric-strip {
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 10px;
}

.metric-strip div {
  padding: 12px;
}

.metric-strip strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1.35rem;
  font-weight: 620;
}

.intro-grid,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 62px;
  align-items: start;
  padding: 112px 0;
}

.section-heading h2,
.split-heading h2,
.contact-copy h2 {
  max-width: 760px;
  font-size: 3rem;
  line-height: 1.06;
}

.intro-text {
  padding-top: 40px;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.values span {
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #334155;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--radial-border) border-box;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
  font-weight: 520;
}

.soft-band {
  padding: 104px 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(114, 199, 43, 0.08), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(13, 98, 255, 0.08), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.page-section {
  padding: 104px 0;
}

.centered {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.service-grid,
.unit-grid,
.product-grid,
.works-grid,
.news-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.service-card,
.unit-card,
.business-block,
.detail-card,
.product-card,
.work-item,
.news-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--radial-border) border-box;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 24px;
}

.unit-card,
.business-block {
  overflow: hidden;
}

.unit-card img,
.business-block img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid rgba(229, 234, 242, 0.88);
}

.unit-card > div {
  padding: 22px;
}

.unit-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: stretch;
}

.unit-card-wide img {
  height: 100%;
  min-height: 280px;
  border-right: 1px solid rgba(229, 234, 242, 0.88);
  border-bottom: 0;
}

.unit-card h3,
.business-block h3 {
  margin: 18px 0 10px;
  font-size: 1.28rem;
  line-height: 1.18;
  font-weight: 620;
}

.unit-card p,
.business-block p {
  margin: 0;
  color: var(--muted);
}

.business-list {
  display: grid;
  gap: 18px;
}

.business-block {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: stretch;
}

.business-block img {
  height: 100%;
  min-height: 250px;
  border-right: 1px solid rgba(229, 234, 242, 0.88);
  border-bottom: 0;
}

.business-block > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

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

.detail-card {
  padding: 24px;
}

.detail-card h3 {
  margin: 20px 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
  font-weight: 620;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
}

.icon-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 12px 30px rgba(13, 98, 255, 0.16);
  font-weight: 620;
}

.service-card h3,
.product-card h3,
.work-item h3,
.news-card h3 {
  margin: 20px 0 10px;
  font-size: 1.1rem;
  line-height: 1.22;
  font-weight: 620;
}

.service-card p,
.work-item p,
.news-card p {
  margin: 0;
  color: var(--muted);
}

.split-heading {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #334155;
  background: var(--white);
  font-weight: 560;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--blue-deep);
  border-color: transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--radial-border) border-box;
}

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

.product-card {
  padding: 14px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-visual {
  min-height: 260px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
    #eaf2ff;
  position: relative;
  overflow: hidden;
}

.product-visual::before {
  position: absolute;
  inset: 54px 70px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.86), 0 20px 54px rgba(15, 23, 42, 0.08);
  content: "";
}

.product-visual::after {
  position: absolute;
  right: 52px;
  bottom: 54px;
  width: 120px;
  height: 26px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.11);
  content: "";
}

.product-visual.blue {
  background: linear-gradient(135deg, #d9e8ff, #ffffff 52%, #cfe1ff);
}

.product-visual.green {
  background: linear-gradient(135deg, #e6f8d8, #ffffff 54%, #d5f5c6);
}

.product-visual.mixed {
  background: linear-gradient(135deg, #dbeafe, #ffffff 48%, #e6f8d8);
}

.product-card p,
.product-card h3,
.product-card span {
  margin-left: 6px;
  margin-right: 6px;
}

.product-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-weight: 560;
}

.works {
  padding: 108px 0;
}

.works-grid {
  grid-template-columns: 1fr;
  margin-top: 34px;
}

.work-item {
  display: grid;
  grid-template-columns: 70px 0.46fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 26px;
}

.work-item.has-image {
  grid-template-columns: minmax(190px, 0.34fr) 58px 0.42fr 1fr;
  gap: 22px;
}

.work-item.has-detail {
  grid-template-columns: 58px 1fr;
}

.work-item.has-detail.has-image {
  grid-template-columns: minmax(190px, 0.34fr) 58px 1fr;
}

.work-media {
  align-self: stretch;
  min-height: 178px;
  margin: -10px 0 -10px -10px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  background: rgba(229, 234, 242, 0.6);
}

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

.work-item span {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 560;
}

.work-item h3 {
  margin: 0;
}

.work-body small {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 620;
  text-transform: uppercase;
}

.work-body h3 {
  margin-bottom: 10px;
}

.work-body .text-link {
  display: inline-flex;
  margin-top: 16px;
}

.text-link {
  color: var(--blue-deep);
  font-weight: 560;
}

.work-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: 56px;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 74px;
}

.work-detail-copy h1 {
  max-width: 820px;
  margin: 18px 0;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.96;
  font-weight: 520;
}

.work-detail-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.72;
}

.work-detail-image {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: rgba(229, 234, 242, 0.7);
}

.work-detail-image img,
.work-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.work-facts div,
.work-detail-aside {
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--radial-border) border-box;
  box-shadow: var(--shadow-soft);
}

.work-facts div {
  padding: 16px;
}

.work-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.work-facts strong {
  color: var(--ink);
  font-weight: 620;
}

.work-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.34fr);
  gap: 46px;
  align-items: start;
  padding-top: 42px;
}

.work-detail-main {
  display: grid;
  gap: 22px;
}

.work-detail-block {
  padding: 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--radial-border) border-box;
  box-shadow: var(--shadow-soft);
}

.rich-text {
  display: grid;
  gap: 18px;
}

.rich-text p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.84;
}

.work-detail-aside {
  position: sticky;
  top: 104px;
  padding: 30px;
}

.work-detail-aside h2 {
  margin: 14px 0 10px;
  font-size: 1.45rem;
  font-weight: 560;
}

.work-detail-aside p {
  color: var(--muted);
  line-height: 1.72;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.work-gallery figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: rgba(229, 234, 242, 0.7);
}

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

.news-card {
  min-height: 230px;
  overflow: hidden;
}

.news-card-body {
  padding: 24px;
}

.news-media {
  display: block;
  height: 210px;
  overflow: hidden;
  border-bottom: 1px solid rgba(229, 234, 242, 0.88);
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-media img {
  transform: scale(1.04);
}

.news-card-body > span {
  display: inline-block;
  margin-left: 10px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 620;
  text-transform: uppercase;
}

.news-card .text-link {
  display: inline-flex;
  margin-top: 16px;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.74fr);
  gap: 56px;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 70px;
}

.article-copy h1 {
  max-width: 860px;
  margin: 18px 0;
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  line-height: 0.98;
  font-weight: 520;
}

.article-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.72;
}

.article-copy time,
.news-card time {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 620;
}

.article-image {
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: rgba(229, 234, 242, 0.7);
}

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

.article-image.is-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(114, 199, 43, 0.14), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(13, 98, 255, 0.14), transparent 34%),
    #fff;
}

.article-image.is-placeholder img {
  width: min(46%, 210px);
  height: auto;
  object-fit: contain;
}

.article-content {
  max-width: 980px;
  padding-top: 34px;
}

.article-body {
  max-width: 820px;
}

.article-content aside,
.article-cta {
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--radial-border) border-box;
  box-shadow: var(--shadow-soft);
}

.article-content aside {
  max-width: 820px;
  margin: 38px 0;
  padding: 30px;
}

.article-content aside strong {
  display: block;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.45;
  font-weight: 540;
}

.article-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin-top: 50px;
  padding: 30px;
}

.article-cta h2 {
  margin: 8px 0 0;
  font-size: 1.6rem;
  font-weight: 560;
}

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

.stat-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--radial-border) border-box;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  color: var(--blue-deep);
  font-size: 3rem;
  line-height: 1;
  font-weight: 620;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 520;
}

.cta-band {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 20%, rgba(114, 199, 43, 0.11), transparent 25%),
    radial-gradient(circle at 84% 82%, rgba(13, 98, 255, 0.11), transparent 28%),
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--radial-border) border-box;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.05;
  font-weight: 620;
}

.contact-copy {
  position: sticky;
  top: 116px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  color: #334155;
  font-weight: 520;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 520;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(#fbfdff, #fbfdff) padding-box,
    linear-gradient(135deg, rgba(13, 98, 255, 0.13), rgba(114, 199, 43, 0.13)) border-box;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(13, 98, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(13, 98, 255, 0.08);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 14px 36px rgba(47, 156, 40, 0.22);
  font-weight: 620;
  transition: transform 180ms ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.site-footer {
  display: grid;
  gap: 34px;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto 24px;
  padding-top: 88px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 20%, rgba(13, 98, 255, 0.09), transparent 24%),
    radial-gradient(circle at 88% 80%, rgba(114, 199, 43, 0.1), transparent 26%),
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--radial-border) border-box;
  box-shadow: var(--shadow);
}

.footer-cta h2 {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1.06;
  font-weight: 620;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 32px;
  padding: 24px 0 30px;
}

.footer-brand {
  display: flex;
  max-width: 420px;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand img {
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(13, 98, 255, 0.16);
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 580;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.95rem;
}

.footer-grid a {
  display: table;
  margin-top: 8px;
  color: #475569;
  font-weight: 500;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--blue-deep);
}

.footer-grid .footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(13, 98, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(114, 199, 43, 0.42), rgba(13, 98, 255, 0.3)) border-box;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.footer-whatsapp svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  filter: drop-shadow(0 10px 18px rgba(13, 98, 255, 0.14));
}

.footer-whatsapp span {
  font-size: 0.92rem;
  font-weight: 620;
}

.footer-grid .footer-whatsapp:hover {
  color: var(--blue-deep);
  box-shadow: 0 18px 38px rgba(13, 98, 255, 0.14);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom a {
  color: #475569;
  font-weight: 520;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.035);
  }
}

@media (max-width: 1040px) {
  .hero,
  .page-hero,
  .intro-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    gap: 44px;
    padding-top: 132px;
  }

  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: 4rem;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: 790px;
    font-size: 4rem;
  }

  .hero-stage {
    min-height: 520px;
  }

  .service-grid,
  .detail-grid,
  .product-grid,
  .news-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 62px;
  }

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

  .main-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
    backdrop-filter: blur(18px);
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 46px;
    padding: 12px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: 3.15rem;
  }

  .hero-slider-ui {
    bottom: 34px;
  }

  .page-hero-copy h1 {
    font-size: 3rem;
  }

  .section-heading h2,
  .split-heading h2,
  .contact-copy h2,
  .footer-cta h2,
  .cta-band h2 {
    font-size: 2.35rem;
  }

  .split-heading,
  .footer-cta,
  .cta-band {
    display: grid;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .business-block,
  .unit-card-wide {
    grid-template-columns: 1fr;
  }

  .business-block img,
  .unit-card-wide img {
    height: 260px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(229, 234, 242, 0.88);
  }

  .catalog-controls {
    justify-content: flex-start;
  }

  .work-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .work-item.has-image {
    grid-template-columns: 1fr;
  }

  .work-item.has-detail,
  .work-item.has-detail.has-image,
  .work-detail-hero,
  .work-detail-grid,
  .article-hero {
    grid-template-columns: 1fr;
  }

  .work-media {
    min-height: 220px;
    margin: -10px -10px 8px;
  }

  .work-detail-hero {
    padding-top: 126px;
    padding-bottom: 44px;
  }

  .work-detail-image {
    min-height: 320px;
  }

  .article-hero {
    padding-top: 126px;
    padding-bottom: 44px;
  }

  .article-image {
    min-height: 300px;
  }

  .work-facts,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .work-detail-aside {
    position: static;
  }

  .article-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand span {
    max-width: 150px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  .hero-slider {
    min-height: 88vh;
  }

  .hero-slide {
    padding: 122px 0 116px;
  }

  .page-hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: 2.55rem;
  }

  .hero-slide-content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-slide::before {
    background:
      linear-gradient(90deg, rgba(3, 9, 18, 0.82) 0%, rgba(3, 9, 18, 0.6) 68%, rgba(3, 9, 18, 0.34) 100%),
      radial-gradient(circle at 18% 28%, rgba(13, 98, 255, 0.22), transparent 28%),
      radial-gradient(circle at 70% 80%, rgba(114, 199, 43, 0.18), transparent 30%);
  }

  .hero-slider-ui {
    display: grid;
    gap: 12px;
    justify-items: start;
  }

  .hero-slider-dots {
    max-width: 100%;
  }

  .hero-slider-dots button {
    width: 26px;
  }

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

  .page-hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-copy p:not(.eyebrow),
  .page-hero-copy p,
  .intro-text p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-form .btn,
  .footer-cta .btn,
  .cta-band .btn {
    width: 100%;
  }

  .hero-stage {
    min-height: 460px;
  }

  .page-visual {
    min-height: 360px;
  }

  .brand-orbit {
    width: 190px;
    height: 190px;
  }

  .brand-orbit img {
    width: 148px;
    height: 148px;
  }

  .floating-panel {
    width: 178px;
    padding: 13px;
  }

  .panel-one {
    top: 24px;
    left: 18px;
  }

  .panel-two {
    right: 18px;
    bottom: 124px;
  }

  .metric-strip {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .metric-strip div {
    padding: 9px 7px;
  }

  .metric-strip strong {
    font-size: 1.05rem;
  }

  .intro-grid,
  .works,
  .contact-section,
  .soft-band,
  .page-section {
    padding: 76px 0;
  }

  .service-grid,
  .unit-grid,
  .detail-grid,
  .product-grid,
  .news-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 220px;
  }

  .site-footer {
    display: grid;
    gap: 24px;
    padding-top: 58px;
  }

  .footer-cta,
  .cta-band {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
