:root {
  --ink: #172033;
  --muted: #667085;
  --line: #e4e8ef;
  --paper: #fbfaf6;
  --warm: #fff3d7;
  --white: #ffffff;
  --green: #0f6b4f;
  --green-2: #084333;
  --red: #c9342c;
  --red-2: #96241f;
  --gold: #f2b84b;
  --gold-2: #ffe3a1;
  --blue: #244f87;
  --cream: #fffaf0;
  --blackgreen: #051f19;
  --shadow: 0 18px 45px rgba(23, 32, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(23,32,51,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,32,51,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.container.wide { width: min(1380px, calc(100% - 32px)); }

.topline {
  background: #061f19;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  letter-spacing: .01em;
}
.topline .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.topline .container span:last-child { text-align: right; overflow: hidden; text-overflow: ellipsis; }
.topline b { color: #fff; }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,250,240,.74);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(23,32,51,.07);
  box-shadow: 0 12px 34px rgba(23,32,51,.07);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  min-width: 250px;
  max-width: 310px;
  padding: 8px 0;
}
.brand img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(23,32,51,.08);
}
.brand span {
  display: block;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--green-2);
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 1px;
  max-width: 220px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 850;
  font-size: 13px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(23,32,51,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 24px rgba(23,32,51,.06);
}
.menu li,
.footer-col li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  color: #273247;
  padding: 10px 12px;
  border-radius: 999px;
  border-bottom: 0;
  line-height: 1;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.menu a.active,
.menu .current-menu-item > a,
.menu .current_page_item > a,
.menu .current-menu-ancestor > a,
.menu a:hover {
  color: var(--green-2);
  background: #fff4d5;
}
.menu a.active {
  color: var(--green-2);
  background: linear-gradient(180deg, #fff, #fff6dd);
  box-shadow: inset 0 -2px 0 var(--gold), 0 8px 18px rgba(8,67,51,.08);
}
.menu .current-menu-item > a,
.menu .current_page_item > a,
.menu .current-menu-ancestor > a {
  color: var(--green-2);
  background: linear-gradient(180deg, #fff, #fff6dd);
  box-shadow: inset 0 -2px 0 var(--gold), 0 8px 18px rgba(8,67,51,.08);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 900;
  color: var(--green-2);
  white-space: nowrap;
  line-height: 1.05;
}
.phone small { color: var(--muted); font-weight: 650; }
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--green-2);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(8,67,51,.18);
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--green);
}

@media (max-width: 1320px) {
  .nav { gap: 16px; }
  .brand {
    min-width: 220px;
    max-width: 250px;
  }
  .menu {
    font-size: 12px;
    gap: 2px;
  }
  .menu a { padding: 9px 9px; }
  .nav-actions { gap: 8px; }
  .phone { font-size: 14px; }
  .nav-cta {
    min-height: 40px;
    padding: 10px 13px;
    font-size: 12px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { color: #fff; background: var(--red); box-shadow: 0 10px 24px rgba(201,52,44,.2); }
.btn-red:hover { background: var(--red-2); }
.btn-green { color: #fff; background: var(--green); box-shadow: 0 10px 24px rgba(15,107,79,.18); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-dark-outline { border-color: #cdd4df; color: var(--green-2); background: #fff; }
.btn-gold { background: var(--gold); color: var(--green-2); box-shadow: 0 10px 24px rgba(242,184,75,.2); }

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(5,31,25,.98) 0%, rgba(8,67,51,.86) 49%, rgba(8,67,51,.34) 100%),
    url("warehouse.jpg") center/cover;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(242,184,75,.18) 0 1px, transparent 1px 34px),
    linear-gradient(45deg, rgba(255,255,255,.08) 0 1px, transparent 1px 42px);
  background-size: 34px 34px, 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}
.hero:after,
.page-hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--green) 0 92px, var(--gold) 92px 184px, var(--red) 184px 276px);
}
.hero .container {
  position: relative;
  z-index: 1;
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .55fr);
  gap: 46px;
  align-items: center;
  padding: 30px 0 36px;
}
.hero-copy {
  padding: 16px 0;
}
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #ffe8b0;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow.dark {
  color: var(--green-2);
  background: #fff4d5;
  border-color: #eed58f;
}
.hero h1,
.page-hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(38px, 4.7vw, 58px);
  line-height: .97;
  letter-spacing: -.04em;
  max-width: 860px;
}
.hero h1 mark {
  color: var(--gold-2);
  background: transparent;
  text-shadow: 0 0 26px rgba(242,184,75,.25);
}
.hero p {
  max-width: 710px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.quick-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.quick-tags span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 800;
}
.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
  max-width: 760px;
}
.metric {
  padding: 15px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  backdrop-filter: blur(14px);
}
.metric strong { display: block; font-size: 30px; line-height: 1; color: var(--gold); }
.metric span { display: block; margin-top: 8px; color: rgba(255,255,255,.78); font-size: 14px; }

.lead-card {
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.7);
  position: relative;
  overflow: hidden;
}
.lead-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}
.lead-card h2 { margin: 0 0 8px; font-size: 23px; line-height: 1.1; }
.lead-card p { color: var(--muted); font-size: 14px; margin: 0 0 12px; }
.lead-mini {
  display: grid;
  gap: 2px;
  padding: 12px;
  margin: 0 0 10px;
  border-radius: 8px;
  background: #fff7e3;
  border: 1px solid #f1d997;
}
.lead-mini b { color: var(--red); font-size: 14px; }
.lead-mini span { color: var(--muted); font-size: 12px; }
.lead-card input,
.lead-card textarea,
.lead-card select {
  width: 100%;
  min-height: 43px;
  margin: 6px 0;
  padding: 12px 13px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  font: inherit;
  background: #fff;
}
.lead-card textarea { min-height: 68px; resize: vertical; }
.lead-card .btn { width: 100%; margin-top: 8px; }
.lead-card .wpcf7 {
  position: relative;
  z-index: 1;
}
.lead-card .wpcf7 form,
.lead-card .wpcf7 p {
  margin: 0;
}
.lead-card .wpcf7 br {
  display: none;
}
.lead-card .wpcf7 label {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.lead-card .wpcf7-form-control-wrap {
  display: block;
  margin-top: 4px;
}
.lead-card .wpcf7-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  border: 0;
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(201,52,44,.2);
}
.lead-card .wpcf7-spinner {
  position: absolute;
  right: 12px;
  bottom: 12px;
  margin: 0;
}
.lead-card .wpcf7-not-valid-tip {
  margin: -2px 0 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}
.lead-card .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}
.note { color: var(--muted); font-size: 12px; margin-top: 10px; }

.section { padding: 86px 0; }
.section.white { background: #fff; }
.section.cream { background: var(--cream); }
.section.dark {
  background: var(--blackgreen);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section.dark:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.section.dark .container { position: relative; z-index: 1; }
.section.green { background: var(--green-2); color: #fff; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -.03em; max-width: 800px; }
.section-head p { margin: 0; max-width: 430px; color: var(--muted); }
.green .section-head p { color: rgba(255,255,255,.72); }
.dark .section-head p { color: rgba(255,255,255,.7); }
.kicker { color: var(--red); font-size: 13px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.green .kicker { color: var(--gold); }
.dark .kicker { color: var(--gold); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(23,32,51,.05);
}
.card:hover,
.tab:hover,
.persona:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(23,32,51,.12);
}
.card,
.tab,
.persona { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card.highlight {
  background: linear-gradient(145deg, #fff, #fff7e5);
  border-color: #f4d798;
}
.card.dark {
  background: var(--green-2);
  color: #fff;
  border-color: transparent;
}
.card.dark h3,
.card.dark p,
.card.dark li { color: rgba(255,255,255,.86); }
.card.dark h3 { color: #fff; }
.card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.15; color: var(--green-2); }
.card p { margin: 0; color: var(--muted); }
.card ul { padding: 0; margin: 18px 0 0; list-style: none; }
.card li { position: relative; padding-left: 22px; margin: 9px 0; color: #354056; }
.card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #eef7f3;
  color: var(--green);
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 900;
}
.trade-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr .85fr;
  gap: 16px;
}
.trade-card {
  min-height: 260px;
  border-radius: 10px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, #0b3a2e, #0f6b4f);
  position: relative;
  overflow: hidden;
}
.trade-card:after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.trade-card.red { background: linear-gradient(145deg, #84241f, #c9342c); }
.trade-card.gold { background: linear-gradient(145deg, #82570a, #d89a20); }
.trade-card.blue { background: linear-gradient(145deg, #13345b, #244f87); }
.trade-card h3 { margin: 0 0 12px; font-size: 28px; line-height: 1.03; }
.trade-card p { margin: 0; color: rgba(255,255,255,.78); }
.trade-card strong {
  display: block;
  margin-top: 34px;
  font-size: 48px;
  line-height: .9;
  letter-spacing: -.05em;
}
.market-map {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}
.route-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
}
.route-panel h3 { margin: 0 0 18px; font-size: 28px; line-height: 1.05; color: var(--green-2); }
.route-list { display: grid; gap: 10px; }
.route-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border-radius: 7px;
  background: #f7f9f5;
  border: 1px solid #e3eadb;
}
.route-list b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.route-list span { color: var(--muted); }
.battle-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.07);
}
.battle-table > div {
  padding: 22px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.battle-table > div:last-child { border-right: 0; }
.battle-table h3 { margin: 0 0 18px; color: #fff; font-size: 22px; }
.battle-table p { margin: 12px 0 0; color: rgba(255,255,255,.72); }
.battle-table b { color: var(--gold); }
.offer-ladder {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.offer-step {
  min-height: 210px;
  padding: 22px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offer-step b {
  font-size: 38px;
  line-height: 1;
  color: var(--red);
}
.offer-step h3 { margin: 0; color: var(--green-2); font-size: 20px; line-height: 1.05; }
.offer-step p { color: var(--muted); margin: 12px 0 0; font-size: 14px; }
.cockpit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cockpit-screen {
  border-radius: 10px;
  background: #081f1a;
  color: #fff;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(242,184,75,.08);
}
.cockpit-screen h3 { margin: 0 0 18px; font-size: 26px; }
.ticket {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  margin: 10px 0;
}
.ticket b { color: var(--gold); }
.ticket span { color: rgba(255,255,255,.7); font-size: 14px; }
.ticket em {
  font-style: normal;
  color: #fff;
  background: rgba(201,52,44,.8);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
}
.admin-board {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.admin-tile {
  border-radius: 9px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}
.admin-tile h3 { margin: 0 0 10px; color: var(--green-2); }
.admin-tile p { margin: 0; color: var(--muted); }
.impact {
  background:
    linear-gradient(135deg, #fff7de 0%, #fff 42%, #edf7f2 100%);
  position: relative;
  overflow: hidden;
}
.impact:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(201,52,44,.13), transparent 28%),
              radial-gradient(circle at 92% 10%, rgba(242,184,75,.28), transparent 30%);
  pointer-events: none;
}
.impact .container { position: relative; z-index: 1; }
.impact-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, .72fr);
  gap: 14px;
}
.impact-main,
.impact-card {
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(23,32,51,.1);
}
.impact-main {
  background: #fff;
  border: 1px solid #f0e2c2;
}
.impact-main h2 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--green-2);
}
.impact-main p { color: var(--muted); font-size: 18px; max-width: 650px; }
.impact-card {
  min-height: 270px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.impact-card:after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 24px solid rgba(255,255,255,.14);
}
.impact-card span { font-weight: 950; color: rgba(255,255,255,.7); }
.impact-card h3 { margin: 34px 0 10px; font-size: 28px; line-height: 1; }
.impact-card p { margin: 0; color: rgba(255,255,255,.78); }
.impact-card.red { background: linear-gradient(155deg, #b52d27, #ec513f); }
.impact-card.green { background: linear-gradient(155deg, #084333, #13a06f); }
.impact-card.gold { background: linear-gradient(155deg, #9d690a, #f2b84b); color: #241706; }
.impact-card.gold p,
.impact-card.gold span { color: rgba(36,23,6,.72); }
.final-cta {
  padding: 58px 0;
  background: var(--blackgreen);
  color: #fff;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04)),
    radial-gradient(circle at 80% 20%, rgba(242,184,75,.35), transparent 34%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 34px 80px rgba(0,0,0,.22);
}
.final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.045em;
}
.final-cta p { color: rgba(255,255,255,.74); margin: 0; max-width: 680px; font-size: 18px; }
.final-cta-actions {
  display: grid;
  gap: 12px;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.seo-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eadfc7;
  box-shadow: 0 14px 34px rgba(23,32,51,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.seo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(23,32,51,.12);
}
.seo-card span {
  align-self: flex-start;
  color: var(--green-2);
  background: #eaf5ef;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.seo-card h3 {
  margin: 24px 0 10px;
  color: var(--green-2);
  font-size: 23px;
  line-height: 1.06;
}
.seo-card p { color: var(--muted); margin: 0; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.faq-grid details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(23,32,51,.05);
}
.faq-grid summary {
  cursor: pointer;
  color: var(--green-2);
  font-weight: 950;
  font-size: 18px;
}
.faq-grid p { color: var(--muted); margin: 14px 0 0; }
.shop-commerce {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 24px;
  align-items: start;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-card {
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(23,32,51,.07);
}
.product-card small {
  display: inline-flex;
  color: var(--green-2);
  background: #eaf5ef;
  border-radius: 999px;
  padding: 6px 9px;
  font-weight: 950;
}
.product-card h3 {
  margin: 18px 0 8px;
  color: var(--green-2);
  font-size: 22px;
  line-height: 1.08;
}
.product-card p { color: var(--muted); margin: 0 0 16px; }
.product-card button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  min-height: 42px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}
.cart-panel {
  position: sticky;
  top: 110px;
  border-radius: 14px;
  padding: 24px;
  background: var(--blackgreen);
  color: #fff;
  box-shadow: 0 28px 64px rgba(5,31,25,.22);
}
.cart-panel h3 { margin: 0 0 10px; font-size: 26px; }
.cart-panel p { color: rgba(255,255,255,.7); }
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-2);
  font-weight: 950;
  margin-bottom: 14px;
}
.cart-items {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}
.cart-items div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.cart-total {
  display: block;
  color: var(--gold);
  font-weight: 950;
  margin-bottom: 16px;
}
.cart-actions {
  display: grid;
  gap: 10px;
}
.cart-actions .btn {
  width: 100%;
}
.cart-actions .btn:disabled {
  transform: none;
  cursor: not-allowed;
  opacity: .48;
  box-shadow: none;
}
.cart-clear {
  min-height: 38px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.cart-panel small {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.58);
}
.integration-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.integration-tile {
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #fff8e6);
  border: 1px solid #f1d99d;
}
.integration-tile h3 { margin: 0 0 10px; color: var(--green-2); }
.integration-tile p { margin: 0; color: var(--muted); }
.quick-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
}
.quick-chat__button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: auto;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #fff;
  box-shadow: 0 16px 34px rgba(8,67,51,.25);
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.quick-chat__button:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(242,184,75,.18);
}
.quick-chat__button span { font-weight: 950; }
.quick-chat__button b { font-size: 11px; opacity: .82; }
.quick-chat__panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(320px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(23,32,51,.22);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
}
.quick-chat.open .quick-chat__panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.quick-chat__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.quick-chat__head b { color: var(--green-2); }
.quick-chat__head button {
  border: 0;
  background: #f1f3f5;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}
.quick-chat__panel p { color: var(--muted); margin: 12px 0; }
.quick-chat__panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  background: #f7f9f5;
  color: var(--green-2);
  font-weight: 900;
  margin: 8px 0;
}
.quick-chat__panel small { color: var(--muted); display: block; margin-top: 10px; }
.modal-open { overflow: hidden; }
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.order-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,31,25,.68);
  backdrop-filter: blur(8px);
}
.order-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: 0 34px 90px rgba(5,31,25,.32);
}
.order-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f3f5;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}
.order-modal__intro span,
.order-success span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf5ef;
  color: var(--green-2);
  font-weight: 950;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.order-modal__intro h2,
.order-success h2 {
  margin: 12px 0 8px;
  color: var(--green-2);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}
.order-modal__intro p,
.order-success p {
  margin: 0;
  color: var(--muted);
}
.order-summary {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 16px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid #f1d99d;
}
.order-summary b {
  color: var(--green-2);
}
.order-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(15,107,79,.12);
}
.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.order-form label {
  display: grid;
  gap: 7px;
  color: var(--green-2);
  font-weight: 900;
}
.order-form label:nth-of-type(4),
.order-form .btn,
.order-form small {
  grid-column: 1 / -1;
}
.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.order-form textarea {
  resize: vertical;
}
.order-form small {
  color: var(--muted);
}
.order-success {
  padding-top: 12px;
}
.order-success .btn {
  margin-top: 20px;
}

.audience {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: stretch;
}
.audience-panel {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.audience-panel img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.tab {
  display: block;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.tab b { display: block; color: var(--green-2); font-size: 19px; margin-bottom: 6px; }
.tab span { color: var(--muted); font-size: 14px; }

.signal-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}
.promo-showcase {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(8,67,51,.94), rgba(15,107,79,.82)),
    radial-gradient(circle at 80% 20%, rgba(242,184,75,.35), transparent 34%);
  color: #fff;
  overflow: hidden;
}
.promo-cover {
  position: relative;
  transform: rotate(-2deg);
}
.promo-cover img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 65px rgba(0,0,0,.28);
  border: 8px solid #fff;
}
.promo-badge {
  position: absolute;
  right: -12px;
  top: 20px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 14px 16px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.promo-copy h2 { margin: 0 0 16px; font-size: clamp(32px, 4vw, 54px); line-height: 1; letter-spacing: -.035em; }
.promo-copy p { color: rgba(255,255,255,.8); font-size: 18px; }
.promo-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}
.promo-list span {
  padding: 12px 13px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  font-weight: 800;
}
.operator-board {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
}
.operator-score {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
}
.operator-score strong {
  display: block;
  font-size: clamp(52px, 8vw, 90px);
  line-height: .9;
  letter-spacing: -.06em;
  color: var(--red);
}
.operator-score span { display: block; margin-top: 10px; color: var(--muted); font-weight: 800; }
.pipeline { display: grid; gap: 12px; }
.pipeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.pipeline-item b { color: var(--green-2); font-size: 26px; }
.pipeline-item span { color: var(--muted); }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.persona {
  min-height: 240px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(150deg, #153c31, #0f6b4f);
}
.persona:nth-child(2) { background: linear-gradient(150deg, #8d231f, #c9342c); }
.persona:nth-child(3) { background: linear-gradient(150deg, #16385f, #244f87); }
.persona:nth-child(4) { background: linear-gradient(150deg, #5f3f08, #c48916); }
.persona h3 { margin: 0; font-size: 24px; line-height: 1.05; }
.persona p { margin: 18px 0 0; color: rgba(255,255,255,.78); }
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--line);
}
.proof-strip div { padding: 24px; background: #fff; }
.proof-strip b { display: block; color: var(--green-2); font-size: 28px; line-height: 1; margin-bottom: 8px; }
.proof-strip span { color: var(--muted); }
.quote-band {
  padding: 42px;
  border-radius: 10px;
  background: var(--warm);
  border: 1px solid #f1d89c;
}
.quote-band blockquote {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -.03em;
}
.quote-band p { margin: 18px 0 0; color: var(--muted); max-width: 820px; }

.catalog-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.category {
  min-height: 160px;
  border-radius: 8px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, var(--green), var(--green-2));
}
.category:nth-child(2n) { background: linear-gradient(145deg, var(--blue), #142f55); }
.category:nth-child(3n) { background: linear-gradient(145deg, var(--red), var(--red-2)); }
.category strong { font-size: 21px; line-height: 1.08; }
.category span { color: rgba(255,255,255,.75); font-size: 14px; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step {
  counter-increment: step;
  padding: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}
.step:before {
  content: "0" counter(step);
  display: inline-block;
  color: var(--gold);
  font-weight: 950;
  margin-bottom: 40px;
}
.step h3 { margin: 0 0 8px; font-size: 20px; }
.step p { margin: 0; color: rgba(255,255,255,.72); }

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,67,51,.94), rgba(8,67,51,.72)),
    url("contracts.jpg") center/cover;
  color: #fff;
}
.page-hero .container { position: relative; z-index: 1; padding: 88px 0; }
.page-hero p { max-width: 760px; font-size: 20px; color: rgba(255,255,255,.82); }

.legal-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5,31,25,.98), rgba(8,67,51,.92)),
    radial-gradient(circle at 78% 20%, rgba(242,184,75,.22), transparent 30%);
  color: #fff;
  border-bottom: 10px solid transparent;
  border-image: linear-gradient(90deg, var(--green), var(--gold), var(--red)) 1;
}
.legal-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}
.legal-hero .container {
  position: relative;
  z-index: 1;
  padding: 64px 0 58px;
}
.legal-hero h1 {
  max-width: 980px;
  margin: 18px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  letter-spacing: 0;
}
.legal-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
}
.legal-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(8,67,51,.09);
  color: var(--ink);
}
.legal-content > *:first-child { margin-top: 0; }
.legal-content > *:last-child { margin-bottom: 0; }
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  color: var(--green-2);
  line-height: 1.15;
  letter-spacing: 0;
}
.legal-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(26px, 3vw, 36px);
}
.legal-content h3 {
  margin: 28px 0 12px;
  font-size: 24px;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.legal-content p { margin: 0 0 18px; }
.legal-content ul,
.legal-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.legal-content li + li { margin-top: 8px; }
.legal-content a {
  color: var(--green-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 16px;
}
.legal-content th,
.legal-content td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.legal-content th {
  background: var(--cream);
  color: var(--green-2);
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: start;
}
.aside {
  background: var(--green-2);
  color: #fff;
  border-radius: 8px;
  padding: 28px;
  position: sticky;
  top: 104px;
}
.aside h2 { margin: 0 0 12px; font-size: 30px; line-height: 1.08; }
.aside p { color: rgba(255,255,255,.74); margin: 0 0 18px; }
.aside .btn { width: 100%; }

.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.contact-box {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--line);
}
.contact-box h3 { margin-top: 0; font-size: 26px; }
.contact-line {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contact-line b { display: block; color: var(--green-2); }
.contact-line span, .contact-line a { color: var(--muted); }

.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5,31,25,.98), rgba(8,67,51,.94)),
    radial-gradient(circle at 84% 0%, rgba(242,184,75,.22), transparent 34%);
  color: rgba(255,255,255,.76);
  padding: 82px 0 30px;
  border-top: 10px solid transparent;
  border-image: linear-gradient(90deg, var(--green), var(--gold), var(--red)) 1;
}
.footer:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 90%);
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) .7fr .7fr .8fr;
  gap: 34px;
  align-items: start;
  padding-bottom: 34px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.footer-brand img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  background: #fff;
}
.footer-brand span {
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .02em;
}
.footer-main h2 {
  margin: 0;
  max-width: 560px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.footer-col h3 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.footer-col a,
.footer-col span {
  display: block;
  color: rgba(255,255,255,.74);
  margin: 10px 0;
  font-weight: 750;
  line-height: 1.35;
}
.footer-col a:hover { color: #fff; }
.footer-contact a:first-of-type {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
}
.footer a { color: inherit; margin-left: 0; font-weight: inherit; }

@media (max-width: 980px) {
  .topline .container, .menu, .phone { display: none; }
  .nav { min-height: 68px; }
  .nav-actions { margin-left: auto; }
  .hero .container, .audience, .split, .contact-band, .signal-row, .promo-showcase, .operator-board, .trade-grid, .market-map, .cockpit, .impact-grid, .final-cta-grid, .shop-commerce { grid-template-columns: 1fr; }
  .hero .container { min-height: auto; }
  .grid-3, .grid-2, .catalog-row, .steps, .persona-grid, .proof-strip, .offer-ladder, .admin-board, .seo-grid, .faq-grid, .product-grid, .integration-strip { grid-template-columns: 1fr 1fr; }
  .battle-table { grid-template-columns: 1fr; }
  .battle-table > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .battle-table > div:last-child { border-bottom: 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand small { display: none; }
  .brand img { height: 40px; }
  .nav-cta { min-height: 38px; padding: 10px 12px; font-size: 12px; }
  .brand { min-width: auto; }
  .hero .container, .page-hero .container { padding: 42px 0; }
  .legal-hero .container { padding: 38px 0; }
  .hero h1, .page-hero h1 { font-size: 34px; }
  .legal-hero h1 { font-size: 32px; }
  .hero p, .page-hero p { font-size: 17px; }
  .legal-content { padding: 24px; }
  .legal-content p, .legal-content li { font-size: 16px; }
  .legal-content table { display: block; overflow-x: auto; }
  .hero .lead-card, .hero-strip, .quick-tags { display: none; }
  .hero-strip, .grid-3, .grid-2, .catalog-row, .steps, .tabs, .persona-grid, .proof-strip, .promo-list, .offer-ladder, .admin-board, .seo-grid, .faq-grid, .product-grid, .integration-strip { grid-template-columns: 1fr; }
  .seo-card { min-height: auto; }
  .promo-showcase, .quote-band { padding: 22px; }
  .promo-cover { transform: none; }
  .pipeline-item, .ticket { grid-template-columns: 1fr; }
  .trade-card, .offer-step { min-height: auto; }
  .section { padding: 54px 0; }
  .footer { padding-top: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 10px; }
  .footer-actions .btn { width: 100%; }
  .impact-main, .impact-card, .final-cta-grid { padding: 22px; }
  .impact-card { min-height: auto; }
  .final-cta { padding: 38px 0; }
  .cart-panel { position: static; }
  .quick-chat { right: 12px; bottom: 12px; }
  .quick-chat__button {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }
  .quick-chat__button b { display: none; }
  .quick-chat__panel {
    right: -2px;
    bottom: 50px;
    width: min(292px, calc(100vw - 24px));
  }
  .order-modal { padding: 12px; align-items: end; }
  .order-modal__dialog {
    max-height: calc(100vh - 24px);
    padding: 22px;
    border-radius: 14px;
  }
  .order-form { grid-template-columns: 1fr; }
  .order-form label:nth-of-type(4),
  .order-form .btn,
  .order-form small {
    grid-column: auto;
  }
}
