:root {
  --orange: #ff4d08;
  --orange-dark: #d94a00;
  --blue: #004a92;
  --green: #058837;
  --black: #070a0f;
  --ink: #151821;
  --muted: #5d6470;
  --line: #e6e8ec;
  --soft: #f7f8fa;
  --dark: #081018;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(10, 18, 28, .12);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 130px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(188px, 16vw, 264px);
  height: auto;
}

.mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, #fff 0 25%, transparent 26%),
    radial-gradient(circle at 0 100%, #fff 0 25%, transparent 26%),
    var(--orange);
  position: relative;
  flex: 0 0 auto;
}

.mark:before,
.mark:after {
  content: "";
  position: absolute;
  background: #fff;
}

.mark:before {
  width: 100%;
  height: 8px;
  top: 17px;
  left: 0;
}

.mark:after {
  height: 100%;
  width: 8px;
  left: 17px;
  top: 0;
}

.brand strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .82;
}

.brand span {
  display: block;
  color: var(--orange);
  font-size: 9px;
  letter-spacing: 7px;
  margin-left: 3px;
  margin-top: 8px;
}

.menu {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 58px);
  font-weight: 700;
  color: #11141a;
}

.mobile-menu-head,
.mobile-menu-cta,
.menu-toggle,
.menu-backdrop {
  display: none;
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(12, 21, 32, .08);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-close {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 8, .1);
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
}

.menu a {
  padding: 30px 0;
  border-bottom: 3px solid transparent;
}

.menu a:hover,
.menu a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 77, 8, .22);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ee4300;
  border-color: #ee4300;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 77, 8, .35);
}

.btn.ghost {
  background: #fff;
  color: var(--orange);
  box-shadow: none;
}

.eyebrow {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: currentColor;
}

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

h1,
h2 {
  color: var(--black);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
font-size: clamp(32px, 6vw, 48px);
margin-bottom: 25px;
font-weight: 900;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  margin-bottom: 18px;
}

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

.accent {
  color: var(--orange);
}

.blue {
  color: var(--blue);
}

.green {
  color: var(--green);
}

.lead {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  max-width: 680px;
}

.hero {
  min-height: calc(100vh - 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 77, 8, 0.06), transparent 40%),
    linear-gradient(90deg, #fff 0 51%, transparent 51%),
    #f8fafc;
}

.hero-grid {
  width: 100%;
  height: calc(100vh - 88px);
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(320px, 50%) 1fr;
  align-items: stretch;
}

.hero-copy {
  padding: 15px 40px 15px max(24px, calc((100% - var(--max)) / 2));
  position: relative;
  z-index: 2;
  align-self: center;
}

.hero-copy h1 .accent {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 44px;
}

.iso-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 12px;
  max-width: 620px;
}

.mini-card {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--orange);
}

.mini-card:hover .line-icon {
  color: var(--orange);
  transform: scale(1.15);
}

.line-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  font-size: 38px;
  line-height: 1;
  flex: 0 0 auto;
  transition: color 0.3s ease, transform 0.3s ease;
}

.asset-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.value-card .asset-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
}

.hero-media {
  height: calc(100vh - 88px);
  min-height: 700px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--dark);
}

.hero-media > .visual-panel,
.hero-media > .site-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-shade {
  filter: saturate(.98) contrast(1.02);
}

.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 24, .34), rgba(8, 16, 24, .08) 46%, rgba(8, 16, 24, .26));
  pointer-events: none;
  z-index: 1;
}

.visual-panel {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), transparent 34%),
    linear-gradient(160deg, #102033, #071019 64%);
  isolation: isolate;
}

.visual-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .45;
  z-index: -1;
}

.visual-panel:after {
  content: "";
  position: absolute;
  width: 46%;
  height: 46%;
  right: -8%;
  top: -10%;
  border-radius: 50%;
  background: rgba(255, 77, 8, .18);
  filter: blur(2px);
  z-index: -1;
}

.person {
  position: absolute;
  bottom: 12%;
  width: 120px;
  height: 210px;
  border-radius: 60px 60px 18px 18px;
  background: linear-gradient(180deg, #f6f8fb 0 24%, #1c2a39 24% 100%);
  box-shadow: 0 22px 45px rgba(0, 0, 0, .28);
}

.person:before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  left: 33px;
  top: -24px;
  border-radius: 50%;
  background: #f1c6aa;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, .08);
}

.person:after {
  content: "";
  position: absolute;
  width: 96px;
  height: 48px;
  left: 12px;
  top: 58px;
  border-radius: 48px 48px 6px 6px;
  background: rgba(255, 255, 255, .18);
}

.p1 { left: 22%; transform: scale(1.05); }
.p2 { left: 42%; bottom: 9%; transform: scale(.9); opacity: .88; }
.p3 { left: 64%; bottom: 15%; transform: scale(.82); opacity: .82; }

.presentation-board,
.dashboard-card,
.factory-lines,
.plant-graphic,
.food-line,
.cert-stack {
  position: absolute;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.presentation-board {
  width: 260px;
  height: 210px;
  right: 12%;
  top: 16%;
  border-radius: var(--radius);
}

.presentation-board:before,
.dashboard-card:before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 46px;
  height: 12px;
  border-radius: 20px;
  background: var(--orange);
  box-shadow: 0 38px 0 rgba(0, 74, 146, .85), 0 76px 0 rgba(5, 136, 55, .8);
}

.presentation-board:after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 30px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 16px solid #0aaeea;
  border-left-color: #dfe8f2;
}

.table-shape {
  position: absolute;
  left: 13%;
  right: 10%;
  bottom: 4%;
  height: 120px;
  transform: skewX(-12deg);
  border-radius: 24px;
  background: linear-gradient(90deg, #27394d, #111923);
  box-shadow: 0 18px 30px rgba(0, 0, 0, .35);
}

.quality .dashboard-card {
  width: 56%;
  height: 54%;
  right: 9%;
  top: 12%;
  border-radius: var(--radius);
}

.quality .dashboard-card:after {
  content: "";
  position: absolute;
  right: 28px;
  top: 42px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 42%, #bed4eb 42% 67%, var(--orange) 67% 100%);
}

.quality .desk-report {
  position: absolute;
  left: 12%;
  bottom: 12%;
  width: 58%;
  height: 28%;
  transform: rotate(-6deg);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(0, 74, 146, .9) 12% 16%, transparent 16% 100%),
    repeating-linear-gradient(0deg, #fff 0 18px, #e8edf4 18px 19px);
  box-shadow: var(--shadow);
}

.safety {
  background:
    linear-gradient(135deg, rgba(255, 77, 8, .78), rgba(9, 15, 22, .92)),
    linear-gradient(160deg, #172334, #080d13);
}

.safety .person {
  background: linear-gradient(180deg, #f6f8fb 0 20%, var(--orange) 20% 58%, #17202d 58% 100%);
}

.helmet {
  position: absolute;
  width: 74px;
  height: 36px;
  left: calc(50% - 37px);
  top: -38px;
  border-radius: 48px 48px 8px 8px;
  background: #fff;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, .08);
}

.factory-lines {
  left: 8%;
  right: 8%;
  bottom: 12%;
  height: 110px;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .16) 0 2px, transparent 2px 52px),
    linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .04));
}

.environment {
  background:
    radial-gradient(circle at 18% 28%, rgba(110, 213, 126, .38), transparent 28%),
    linear-gradient(145deg, #0e2a1d, #07120c);
}

.plant-graphic {
  width: 58%;
  height: 70%;
  left: 20%;
  bottom: 8%;
  border-radius: 50% 50% 8px 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.plant-graphic:before {
  content: "";
  position: absolute;
  left: 48%;
  bottom: 0;
  width: 8px;
  height: 70%;
  border-radius: 99px;
  background: #72d37d;
}

.plant-graphic:after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 34%;
  width: 56%;
  height: 34%;
  border-radius: 80% 0 80% 0;
  background: linear-gradient(135deg, #d6ffd7, #1da54e);
  box-shadow: 84px -42px 0 -4px #6bda75, 48px 42px 0 -10px #218b42;
}

.food {
  background:
    linear-gradient(135deg, rgba(255, 77, 8, .16), transparent 38%),
    linear-gradient(160deg, #eef3f5, #dbe5e8);
}

.food:before {
  opacity: .28;
  background-image: linear-gradient(rgba(8, 16, 24, .08) 1px, transparent 1px);
}

.food-line {
  left: 8%;
  right: 8%;
  bottom: 16%;
  height: 100px;
  border-radius: 20px;
  background:
    repeating-linear-gradient(90deg, #e9f4ec 0 60px, #fff 60px 100px),
    linear-gradient(#fff, #f2f5f7);
}

.food-line:before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 40px;
  height: 8px;
  background: #7d99a8;
  box-shadow: 0 22px 0 #7d99a8;
}

.food-line:after {
  content: "";
  position: absolute;
  inset: 16px 30px auto;
  height: 26px;
  border-radius: 20px;
  background: repeating-linear-gradient(90deg, #86c255 0 30px, #f55b32 30px 42px, #f5d66b 42px 60px);
}

.cert-stack {
  width: 68%;
  height: 60%;
  left: 16%;
  top: 18%;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 77, 8, .14) 0 22%, transparent 22%),
    repeating-linear-gradient(0deg, #fff 0 34px, #edf1f5 34px 35px);
}

.cert-stack:before,
.cert-stack:after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 4px solid var(--orange);
  right: 10%;
  top: 20%;
}

.cert-stack:after {
  right: 20%;
  top: 52%;
  border-color: var(--blue);
}

.floating-card {
  position: absolute;
  right: 8%;
  bottom: 11%;
  z-index: 2;
  width: min(460px, 64%);
  min-height: 150px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  padding: 28px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: center;
  transition: transform 0.4s ease;
}

.floating-card:hover {
  transform: translateY(-8px);
}

.spark {
  width: 82px;
  height: 82px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c42 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 54px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(255, 77, 8, 0.3);
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
  overflow: hidden;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.side-tag {
  position: absolute;
  left: 30px;
  top: 90px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: .08em;
  font-size: 13px;
}

.about {
  position: relative;
}

.about-cards {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card,
.iso-card,
.benefit,
.step,
.contact-field {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.value-card {
  min-height: 192px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.value-card .line-icon {
  width: 58px;
  height: 58px;
  color: var(--orange);
  margin: 0 auto 18px;
}

.angled-media {
  display: grid;
  grid-template-columns: .9fr .62fr .74fr;
  gap: 18px;
  height: 640px;
  transform: skewX(-10deg);
}

.angled-media figure {
  margin: 0;
  overflow: hidden;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  box-shadow: var(--shadow);
  background: #ddd;
}

.angled-media figure:first-child {
  border-left-color: var(--orange);
  margin-top: 34px;
  margin-bottom: 42px;
}

.angled-media figure:nth-child(2) {
  margin-bottom: 10px;
}

.angled-media figure:nth-child(3) {
  margin-top: 62px;
}

.angled-media .visual-panel,
.angled-media .site-image {
  width: 125%;
  height: 100%;
  transform: skewX(10deg) translateX(-10%);
  border-radius: 0;
  object-fit: cover;
}

.normas-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.normas-head p {
  max-width: 700px;
  color: var(--muted);
}

.iso-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.iso-card {
  position: relative;
  min-height: 240px;
  padding: 36px 30px;
  box-shadow: 0 12px 28px rgba(10, 18, 28, 0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
  overflow: hidden;
  z-index: 1;
}

.iso-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: currentColor;
  transition: height 0.3s ease;
}

.iso-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(10, 18, 28, 0.08);
}

.iso-card:hover::before {
  height: 6px;
}

.iso-card > img,
.iso-card > i {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: color-mix(in srgb, currentColor 8%, #fff);
  color: currentColor;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 15%, transparent);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
  font-size: 30px;
}

.iso-card > img {
  padding: 14px;
  object-fit: contain;
}

.iso-card > i {
  display: grid;
  place-items: center;
}

.iso-card:hover > img,
.iso-card:hover > i {
  transform: scale(1.1) rotate(-4deg);
  background: color-mix(in srgb, currentColor 12%, #fff);
}

.iso-card div {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.iso-card strong {
  display: block;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
}

.iso-card span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
  flex: 1;
}

.iso-card a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: currentColor;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, currentColor 15%, transparent);
  transition: transform 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.iso-card:hover a {
  transform: translateX(6px);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.feature-item .bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
}

.photo-panel {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-panel > .visual-panel,
.photo-panel > .site-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.benefits-card {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 28px;
  background: #ffffffd6;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.benefits-card h3 {
  text-align: center;
  color: var(--blue);
  margin-bottom: 18px;
}

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

.benefit-item {
  padding: 14px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 18, 28, .06);
  background: #fff;
}

.benefit-item i {
  color: var(--blue);
  font-size: 16px;
  background: rgba(0, 74, 146, 0.08);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 2px;
}

.benefit-item span {
  color: var(--muted);
  font-size: 13px;
  display: block;
  line-height: 1.3;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.wide-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.wide-card > .visual-panel,
.wide-card > .site-image,
.standard-card > .visual-panel,
.standard-card > .site-image {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.wide-card .content,
.standard-card .content {
  padding: clamp(30px, 4vw, 52px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.metric {
  padding: 20px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 18, 28, .08);
  background: #fff;
}

.metric i {
  color: var(--blue);
  font-size: 20px;
  background: rgba(0, 74, 146, 0.08);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.metric strong {
  display: block;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 4px;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
  display: block;
  line-height: 1.4;
}

.standard-card {
  display: grid;
  grid-template-columns: .82fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.standard-card.vertical {
  grid-template-columns: 1fr;
}

.dark-band {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 77, 8, .16), transparent 28%),
    linear-gradient(110deg, #081018, #05080d 76%);
  color: #fff;
  padding: clamp(78px, 9vw, 118px) 0;
}

.dark-band h2,
.dark-band h3 {
  color: #fff;
}

.dark-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 50px;
  align-items: center;
}

.dark-layout > .visual-panel,
.dark-layout > .site-image {
  border-radius: var(--radius);
  min-height: 520px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

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

.dark-benefits .benefit {
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-top-color: rgba(255, 255, 255, .15);
  border-radius: 12px;
  color: rgba(255, 255, 255, .7);
  padding: 24px 20px;
  text-align: left;
  min-height: 130px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.4;
  font-size: 14px;
}

.dark-benefits .benefit i {
  color: var(--orange);
  font-size: 22px;
  margin-top: 2px;
  background: rgba(255, 77, 8, 0.15);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 77, 8, 0.2);
}

.dark-benefits .benefit:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 8, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 77, 8, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02));
}

.dark-benefits .benefit:hover i {
  background: rgba(255, 77, 8, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 77, 8, 0.4);
}

.dark-benefits .benefit strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.dark-benefits .benefit span {
  display: block;
}

.value-strip {
  margin-top: 32px;
  border: 1px solid rgba(255, 77, 8, 0.3);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(90deg, rgba(255, 77, 8, 0.12), rgba(255, 255, 255, 0.02) 90%);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.value-strip i {
  color: var(--orange);
  font-size: 26px;
  flex-shrink: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: .82fr repeat(5, 1fr);
  gap: 24px;
  align-items: start;
}

.process-copy {
  padding-top: 14px;
}

.step {
  min-height: 286px;
  padding: 36px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(10, 18, 28, .04);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  z-index: 1;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 18, 28, .08);
  border-color: rgba(255, 77, 8, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px #fff, 0 10px 20px rgba(255, 77, 8, 0.3);
}

.step:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 66px;
  width: calc(100% + 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 77, 8, 0.3) 0, rgba(255, 77, 8, 0.3) 6px, transparent 6px, transparent 12px);
  z-index: 1;
}

.step:last-child:before {
  display: none;
}

.contact {
  background:
    radial-gradient(circle at 14% 25%, rgba(255, 77, 8, .18), transparent 30%),
    linear-gradient(120deg, #071019, #0b141e 58%, #05080d);
  color: #fff;
  padding: clamp(72px, 8vw, 108px) 0 44px;
}

.contact h2,
.contact h3 {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr .55fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-copy {
  border-left: 0;
}

.contact-info {
  display: grid;
  gap: 36px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.info-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.info-row .line-icon {
  color: var(--orange);
  width: 46px;
  height: 46px;
}

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

.contact-field {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
  font: inherit;
}

textarea.contact-field,
select.contact-field {
  grid-column: 1 / -1;
}

textarea.contact-field {
  min-height: 118px;
  resize: vertical;
}

.contact-field::placeholder {
  color: rgba(255, 255, 255, .72);
}

.footer-strip {
  border-top: 1px solid rgba(255, 255, 255, .2);
  margin-top: 58px;
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr repeat(4, auto);
  gap: 28px;
  align-items: center;
  color: rgba(255, 255, 255, .82);
}

.footer-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.footer-item .line-icon {
  color: var(--orange);
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    width: 206px;
  }

  .menu {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .menu a {
    padding: 0 0 14px;
  }

  .hero-grid,
  .split,
  .feature,
  .wide-card,
  .dark-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .side-tag {
    display: none;
  }

  .hero,
  .hero-grid,
  .hero-media {
    height: auto;
    min-height: auto;
  }

  .hero-media {
    clip-path: none;
    height: 640px;
  }

  .hero-media > .visual-panel,
  .hero-media > .site-image {
    position: static;
  }

  .floating-card {
    width: min(480px, 88%);
  }

  .angled-media {
    height: 460px;
  }

  .iso-row,
  .metrics,
  .benefit-grid,
  .dark-benefits,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-copy {
    grid-column: 1 / -1;
  }

  .step:before {
    display: none;
  }

  .standard-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .topbar {
    position: sticky;
  }

  .nav {
    min-height: auto;
    grid-template-columns: 1fr auto;
    padding: 18px 0;
  }

  .brand-logo {
    width: 178px;
  }

  .brand strong {
    font-size: 28px;
  }

  .brand span {
    letter-spacing: 4px;
  }

  .nav > .btn {
    display: none;
  }

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

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: block;
    background: rgba(3, 8, 18, .56);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 70;
    width: min(340px, 88vw);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    grid-column: auto;
    order: initial;
    overflow-y: auto;
    padding: 18px;
    background: #fff;
    color: var(--black);
    box-shadow: -28px 0 70px rgba(3, 8, 18, .22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 0 18px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu-head img {
    width: 170px;
  }

  .menu a {
    padding: 18px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .menu a:hover,
  .menu a.active {
    border-bottom-color: var(--line);
  }

  .mobile-menu-cta {
    display: inline-flex;
    margin-top: 22px;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  body.nav-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-copy {
    padding: 32px 14px;
  }

  .section {
    padding: 56px 0;
  }

  .actions,
  .btn {
    width: 100%;
  }

  .hero-media {
    height: 420px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: calc(100% - 28px);
    margin: -110px auto 28px;
  }

  .iso-mini,
  .metrics,
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-cards,
  .iso-row,
  .cert-grid,
  .dark-benefits,
  .process-grid,
  .contact-form,
  .footer-strip {
    grid-template-columns: 1fr;
  }

  .angled-media {
    transform: none;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 12px;
  }

  .angled-media figure {
    height: 200px;
    margin: 0 !important;
    border: none;
    border-radius: 16px;
  }

  .angled-media figure:first-child {
    grid-column: 1 / -1;
    height: 280px;
    border-bottom: 4px solid var(--orange);
  }

  .angled-media .visual-panel,
  .angled-media .site-image {
    transform: none;
    width: 100%;
    border-radius: inherit;
  }

  .normas-head {
    display: block;
  }

  .iso-card {
    grid-template-columns: 52px 1fr;
  }

  .photo-panel > .visual-panel,
  .photo-panel > .site-image,
  .dark-layout > .visual-panel,
  .dark-layout > .site-image {
    min-height: 360px;
  }

  .benefits-card {
    position: static;
    margin: -70px 14px 18px;
  }

  .contact-info {
    padding-left: 0;
    border-left: 0;
  }
}
