:root {
  --forest: #062f22;
  --forest-2: #0b4934;
  --green: #0b7a4b;
  --mint: #e8f4ee;
  --mint-2: #f3faf6;
  --red: #b4070e;
  --gold: #c59a33;
  --gold-soft: #f4ead0;
  --ice: #eef7fb;
  --rose: #fff0f0;
  --ink: #121a17;
  --text: #26332e;
  --muted: #66746e;
  --line: #dce6e0;
  --paper: #ffffff;
  --surface: #f6f8f7;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(7, 47, 34, .16);
  --shadow-soft: 0 18px 46px rgba(8, 48, 35, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
p { margin: 0; }
h1, h2, h3, p, a, button, label, span { overflow-wrap: break-word; letter-spacing: 0; }
h1, h2, h3 { overflow-wrap: normal; word-break: normal; }

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

.narrow { max-width: 840px; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 30;
  padding: 10px 12px;
  color: white;
  background: var(--forest);
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: white;
  background: rgba(6, 47, 34, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  min-width: 178px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border: 1px solid rgba(197, 154, 51, .34);
  border-radius: 8px;
  background: white;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  color: white;
  font-size: 18px;
}

.brand-text small {
  margin-top: 5px;
  color: #f3cf76;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, .82);
  border-radius: 7px;
  white-space: nowrap;
}

.nav a:hover {
  color: white;
  background: rgba(255, 255, 255, .09);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--forest);
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
}

.messages { padding-top: 16px; }

.message {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 38px;
  color: white;
  background:
    radial-gradient(circle at 76% 18%, rgba(197, 154, 51, .34), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(180, 7, 14, .24), transparent 24%),
    linear-gradient(118deg, #041f18 0%, #073d2b 46%, #10221b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .10;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 20px;
  width: 420px;
  height: 420px;
  opacity: .08;
  background: url("../img/alga-logo.jpeg") center / contain no-repeat;
  filter: saturate(1.1);
  pointer-events: none;
}

.hero-grid,
.split,
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 790px;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-kicker span,
.trust-row span,
.tag {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero-kicker span {
  color: #fff6df;
  background: rgba(197, 154, 51, .16);
  border: 1px solid rgba(197, 154, 51, .36);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: white;
  font-size: 66px;
  line-height: .96;
  font-weight: 900;
}

h2 {
  margin: 0;
  color: var(--forest);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
}

h3 {
  margin: 0;
  color: var(--forest);
  font-size: 21px;
  line-height: 1.22;
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  color: var(--forest);
  background: var(--gold);
}

.btn-secondary {
  color: white;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .24);
}

.btn-ghost {
  color: var(--forest);
  background: white;
  border-color: var(--line);
}

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

.trust-row span {
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.panel-head img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--radius);
  background: white;
}

.panel-head h2 {
  margin-top: 8px;
  color: white;
  font-size: 28px;
}

.hero-portfolio {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 10px;
  margin-top: 18px;
}

.hero-inline-portfolio {
  display: none;
}

.hero-portfolio img,
.hero-inline-portfolio img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(245, 250, 247, .9));
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.hero-portfolio img:first-child {
  height: 246px;
  grid-row: span 2;
}

.tag {
  color: var(--forest);
  background: var(--mint);
}

.tag-dark {
  color: #fff4d8;
  background: rgba(197, 154, 51, .16);
  border: 1px solid rgba(197, 154, 51, .35);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  overflow: hidden;
}

.signal-grid div {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  background: rgba(4, 36, 26, .68);
}

.signal-grid strong {
  color: #f4d484;
  font-size: 22px;
}

.signal-grid span {
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
}

.system-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.system-strip span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .14);
}

.hero-metrics div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, .07);
}

.hero-metrics strong {
  color: white;
  font-size: 24px;
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

.section {
  padding: 66px 0;
  background:
    linear-gradient(180deg, rgba(246, 248, 247, .42), rgba(255, 255, 255, 0) 240px),
    var(--paper);
}

.section-muted {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-head h2 {
  max-width: 840px;
}

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

.service-card,
.person-card,
.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.service-card,
.person-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.service-card {
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover,
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(8, 48, 35, .14);
  border-color: rgba(197, 154, 51, .48);
}

.service-card.tall { min-height: 330px; }

.service-card p,
.person-card p,
.case-card p {
  color: var(--muted);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--forest);
  border-radius: var(--radius);
  font-weight: 900;
}

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

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div,
.contact-cards div {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.proof-list strong,
.contact-cards strong {
  color: var(--forest);
}

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

.case-card {
  display: grid;
  grid-template-columns: minmax(230px, .9fr) repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 244, 238, .66), rgba(255, 255, 255, 1) 42%),
    white;
  box-shadow: 0 12px 34px rgba(8, 48, 35, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.case-card h3,
.case-card h2 {
  margin-top: 12px;
}

.case-card p {
  margin: 0;
  font-size: 15px;
}

.case-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.case-intro {
  display: grid;
  align-content: start;
  gap: 12px;
}

.case-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(197, 154, 51, .18), transparent 30%),
    linear-gradient(145deg, #ffffff, #f0f6f3);
  border: 1px solid rgba(11, 73, 52, .12);
  border-radius: 8px;
}

.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-hero {
  padding: 64px 0 46px;
  color: white;
  background: linear-gradient(115deg, var(--forest) 0%, var(--forest-2) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.page-hero h2 {
  color: white;
}

.page-hero .lead {
  color: rgba(255, 255, 255, .78);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.timeline-item > span,
.avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--forest);
  border-radius: var(--radius);
  font-weight: 900;
}

.person-card {
  min-height: 260px;
}

.contact-band {
  position: relative;
  padding: 66px 0;
  color: white;
  background: linear-gradient(115deg, #082a20, #0a4933);
}

.contact-band h2,
.contact-band .eyebrow,
.contact-band .muted {
  color: white;
}

.contact-band .muted {
  color: rgba(255, 255, 255, .76);
}

.contact-points {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.contact-points span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.input,
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdfc;
  border: 1px solid #cad8d1;
  border-radius: 7px;
  font: inherit;
}

.input:focus,
.lead-form input[type="text"]:focus,
.lead-form input[type="email"]:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(197, 154, 51, .24);
  border-color: var(--gold);
}

.lead-form textarea { resize: vertical; }

.check-row,
.toggle-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-weight: 400;
}

.check-row input,
.toggle-row input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: var(--green);
}

.check-row a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
}

.form-submit { width: 100%; }

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.form-errors,
.errorlist {
  margin: 0;
  padding: 10px 12px;
  color: #7a0004;
  background: #fff1f1;
  border-radius: 6px;
  list-style-position: inside;
}

.site-footer {
  padding: 48px 0;
  color: white;
  background: #0f1713;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(150px, 1fr));
  gap: 30px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 16px;
}

.footer-grid a,
.link-button {
  display: block;
  margin: 8px 0;
  color: #dfe9e4;
}

.footer-brand .brand-text strong,
.footer-brand .brand-text small { color: white; }

.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
}

.legal-text {
  max-width: 860px;
  font-size: 18px;
}

.requisites dl {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 10px 20px;
  max-width: 760px;
}

.requisites dt {
  color: var(--muted);
  font-weight: 900;
}

.requisites dd { margin: 0; }

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

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: end center;
  padding: 18px;
  background: rgba(11, 20, 16, .42);
}

.cookie-panel[hidden] { display: none; }

.cookie-card {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  color: var(--text);
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-card h2 {
  color: var(--forest);
  font-size: 24px;
}

.cookie-actions {
  align-items: center;
  justify-content: flex-end;
}

.cookie-actions .btn {
  width: auto;
  min-width: 132px;
}

.cookie-card .btn-secondary {
  color: var(--forest);
  background: var(--mint);
  border-color: var(--line);
}

@media (max-width: 1080px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .header-cta { margin-left: auto; }

  .hero-grid,
  .split,
  .contact-grid,
  .cookie-card {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 52px; }

  .hero-panel {
    max-width: 760px;
  }

  .hero-metrics,
  .card-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .site-header { position: static; }
  .brand { min-width: 0; }
  .brand-logo { width: 48px; height: 48px; }
  .header-cta { width: 100%; }
  .hero { padding: 40px 0 24px; }
  .hero-grid { gap: 26px; }
  .section, .contact-band { padding: 44px 0; }
  h1 { font-size: 35px; line-height: 1.04; }
  h2 { font-size: 28px; }
  .lead { font-size: 18px; }
  .hero-actions,
  .cookie-actions {
    display: grid;
  }
  .btn { width: 100%; }
  .card-grid,
  .contact-cards,
  .footer-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }
  .signal-grid,
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .hero-panel {
    padding: 18px;
  }
  .hero-portfolio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-portfolio img,
  .hero-portfolio img:first-child {
    height: 86px;
    grid-row: auto;
    padding: 10px;
  }
  .hero-inline-portfolio {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }
  .hero-inline-portfolio img {
    height: 74px;
    padding: 9px;
  }
  .panel-head {
    padding-bottom: 14px;
  }
  .panel-head img {
    width: 58px;
    height: 58px;
  }
  .panel-head h2 {
    font-size: 23px;
  }
  .hero-metrics div,
  .signal-grid div {
    min-height: 82px;
    padding: 14px;
  }
  .hero-metrics {
    margin-top: 24px;
  }
  .hero-metrics strong {
    font-size: 20px;
  }
  .hero-metrics span,
  .signal-grid span {
    font-size: 13px;
  }
  .panel-head {
    align-items: flex-start;
  }
  .requisites dl { grid-template-columns: 1fr; }
  .hero-metrics {
    display: none;
  }
  .signal-grid,
  .system-strip {
    display: none;
  }
  .case-card {
    padding: 14px;
  }
  .case-thumb {
    aspect-ratio: 16 / 9;
    padding: 12px;
  }
}

/* Full redesign pass: cleaner B2B layout, stronger media, fewer decorative cards. */
:root {
  --page-bg: #f8fbf9;
  --deep: #06271d;
  --deep-2: #0b3f2d;
  --accent: #c59a33;
  --danger: #b4070e;
  --soft-green: #edf7f1;
  --soft-gold: #fbf5e5;
}

body {
  background: var(--page-bg);
}

.site-header {
  color: var(--deep);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(6, 47, 34, .11);
  box-shadow: 0 12px 40px rgba(6, 47, 34, .07);
}

.brand-text strong,
.footer-brand .brand-text strong {
  color: var(--deep);
}

.brand-text small {
  color: var(--danger);
  font-size: 11px;
}

.nav a {
  color: rgba(6, 47, 34, .76);
}

.nav a:hover {
  color: var(--deep);
  background: var(--soft-green);
}

.header-cta {
  color: white;
  background: var(--deep);
  box-shadow: 0 14px 28px rgba(6, 47, 34, .18);
}

.hero {
  padding: 86px 0 72px;
  color: var(--deep);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 45%, rgba(237, 247, 241, .78) 100%),
    radial-gradient(circle at 84% 22%, rgba(197, 154, 51, .18), transparent 32%),
    var(--page-bg);
  border-bottom: 1px solid rgba(6, 47, 34, .10);
}

.hero::before {
  opacity: .32;
  background-image:
    linear-gradient(rgba(6, 47, 34, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 47, 34, .06) 1px, transparent 1px);
  background-size: 86px 86px;
}

.hero::after {
  right: -110px;
  top: 64px;
  opacity: .05;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
  gap: 48px;
}

.hero-copy h1,
.hero h1 {
  max-width: 760px;
  color: var(--deep);
  font-size: clamp(46px, 4.7vw, 60px);
  letter-spacing: 0;
}

.hero .lead {
  max-width: 690px;
  color: #42534c;
  font-size: 21px;
}

.btn-primary {
  color: white;
  background: var(--deep);
  box-shadow: 0 18px 36px rgba(6, 47, 34, .18);
}

.hero .btn-secondary {
  color: var(--deep);
  background: white;
  border-color: rgba(6, 47, 34, .14);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--deep);
  background: white;
  border: 1px solid rgba(6, 47, 34, .12);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(6, 47, 34, .06);
}

.hero-workspace {
  position: relative;
  z-index: 1;
  padding: 22px;
  background: linear-gradient(145deg, #0b3527, #071d16);
  border: 1px solid rgba(6, 47, 34, .18);
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(6, 47, 34, .22);
  overflow: hidden;
}

.hero-workspace::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .25;
  pointer-events: none;
}

.workspace-top,
.workflow-map,
.portfolio-strip {
  position: relative;
  z-index: 1;
}

.workspace-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.workspace-top img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
}

.workspace-top strong {
  display: block;
  color: white;
  font-size: 24px;
  line-height: 1.1;
}

.workspace-top span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
}

.workflow-map {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.workflow-map div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 14px;
  align-items: start;
  padding: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.workflow-map span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #f4d484;
  background: rgba(197, 154, 51, .14);
  border: 1px solid rgba(197, 154, 51, .32);
  border-radius: 8px;
  font-weight: 900;
}

.workflow-map strong {
  color: white;
  font-size: 17px;
}

.workflow-map p {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .8fr);
  gap: 10px;
  margin-top: 18px;
}

.portfolio-strip img {
  width: 100%;
  height: 106px;
  object-fit: contain;
  padding: 12px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

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

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 940px;
  color: var(--deep);
  font-size: 40px;
}

.eyebrow {
  color: var(--danger);
}

.service-rail {
  display: grid;
  gap: 12px;
}

.service-rail .service-card {
  min-height: auto;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 28px;
  background: white;
  border: 1px solid rgba(6, 47, 34, .10);
  border-left: 5px solid var(--accent);
  box-shadow: 0 18px 44px rgba(6, 47, 34, .07);
}

.service-rail .card-icon {
  width: 54px;
  height: 54px;
  color: var(--deep);
  background: var(--soft-gold);
}

.process-band {
  background: white;
  border-top: 1px solid rgba(6, 47, 34, .08);
  border-bottom: 1px solid rgba(6, 47, 34, .08);
}

.proof-list div {
  border-left-color: var(--deep);
  box-shadow: 0 12px 30px rgba(6, 47, 34, .06);
}

.case-section {
  color: white;
  background: linear-gradient(145deg, #071d16, #0a3527);
}

.section-head-invert h2 {
  color: white;
}

.case-section .eyebrow {
  color: #f4d484;
}

.case-section .case-card {
  color: white;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: none;
}

.case-section .case-card h2,
.case-section .case-card h3,
.case-section .case-card strong {
  color: white;
}

.case-section .case-card p {
  color: rgba(255, 255, 255, .68);
}

.case-section .tag {
  color: var(--deep);
  background: #f4d484;
}

.case-section .case-thumb {
  background: white;
}

.tender-section {
  background: white;
}

.tender-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 42px;
  align-items: center;
}

.tender-grid h2 {
  color: var(--deep);
}

.tender-links {
  display: grid;
  gap: 12px;
}

.tender-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 18px;
  color: var(--deep);
  background: var(--soft-green);
  border: 1px solid rgba(6, 47, 34, .12);
  border-radius: 8px;
  font-weight: 900;
}

.tender-links a::after {
  content: ">";
  color: var(--danger);
  font-weight: 900;
}

.contact-band {
  background: linear-gradient(145deg, #06271d, #0a4230);
}

.site-footer {
  background: #07130f;
}

.site-footer .brand-text strong,
.site-footer .brand-text small {
  color: white;
}

@media (max-width: 1080px) {
  .hero-grid,
  .tender-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1,
  .hero h1 {
    font-size: 54px;
  }
  .hero-workspace {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }
  .hero {
    padding: 42px 0 34px;
  }
  .hero-copy h1,
  .hero h1 {
    font-size: 38px;
    line-height: 1.03;
  }
  .hero .lead {
    font-size: 18px;
  }
  .hero-actions {
    display: grid;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-workspace {
    padding: 16px;
  }
  .workspace-top {
    align-items: flex-start;
  }
  .workspace-top strong {
    font-size: 20px;
  }
  .workflow-map div {
    grid-template-columns: 44px 1fr;
    padding: 13px;
  }
  .portfolio-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portfolio-strip img {
    height: 86px;
  }
  .service-rail .service-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .section-head h2 {
    font-size: 29px;
  }
  .case-card {
    grid-template-columns: 1fr;
  }
  .tender-links a {
    min-height: 56px;
  }
}

/* Full-site visual rebuild: client-facing pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 58px;
  color: var(--deep);
  background:
    linear-gradient(90deg, rgba(232, 246, 239, .92), rgba(255, 255, 255, .98) 52%, rgba(249, 241, 218, .82)),
    #f7faf7;
  border-bottom: 1px solid rgba(6, 47, 34, .08);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 47, 34, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 47, 34, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .55;
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .48fr);
  gap: 44px;
  align-items: center;
}

.page-hero h1 {
  max-width: 820px;
  color: var(--deep);
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.page-hero .lead {
  max-width: 760px;
  color: #43574e;
  font-size: 20px;
}

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

.page-hero .btn-primary {
  color: white;
  background: var(--deep);
}

.page-hero .btn-secondary {
  color: var(--deep);
  background: white;
  border-color: rgba(6, 47, 34, .14);
}

.page-visual {
  display: grid;
  gap: 12px;
  padding: 22px;
  color: white;
  background: linear-gradient(145deg, #08291f, #0a4632);
  border: 1px solid rgba(6, 47, 34, .18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(6, 47, 34, .18);
}

.page-visual strong {
  color: #f4d484;
  font-size: 20px;
}

.page-visual span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.page-visual span::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 99px;
  box-shadow: 0 0 0 4px rgba(184, 16, 20, .18);
}

.page-visual.compact {
  align-self: stretch;
  align-content: center;
}

.service-rail .service-card h2 {
  color: var(--deep);
  font-size: 25px;
}

.service-rail .service-card p + p {
  margin-top: 8px;
}

.timeline {
  counter-reset: step;
}

.timeline-item {
  border-left: 5px solid var(--accent);
  box-shadow: 0 16px 42px rgba(6, 47, 34, .06);
}

.timeline-item h2 {
  font-size: 26px;
}

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

.check-list li {
  position: relative;
  padding: 15px 16px 15px 42px;
  color: var(--deep);
  background: white;
  border: 1px solid rgba(6, 47, 34, .10);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 47, 34, .05);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 21px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 99px;
}

.person-card,
.service-card.tall {
  box-shadow: 0 16px 42px rgba(6, 47, 34, .06);
}

.contact-cards div {
  min-height: 118px;
}

.contact-cards span {
  color: #445750;
}

.legal-text {
  padding: 28px;
  background: white;
  border: 1px solid rgba(6, 47, 34, .10);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 47, 34, .06);
}

@media (max-width: 1080px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .page-visual {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 42px 0 34px;
  }
  .page-hero h1 {
    font-size: 34px;
    line-height: 1.06;
  }
  .page-hero .lead {
    font-size: 18px;
  }
  .page-actions {
    display: grid;
  }
  .page-visual {
    padding: 16px;
  }
  .page-visual span {
    min-height: 42px;
  }
  .timeline-item {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }
  .timeline-item > span {
    width: 46px;
    height: 46px;
  }
  .timeline-item h2 {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    width: 100%;
    min-height: 44px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 12px;
    background: white;
    border: 1px solid rgba(6, 47, 34, .10);
  }
}

/* Stronger hero concept: product-like laptop and mobile automation mockups. */
.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 72px 0 56px;
}

.hero-grid {
  grid-template-columns: minmax(0, .86fr) minmax(560px, 1.08fr);
  gap: 58px;
}

.hero-copy h1,
.hero h1 {
  max-width: 700px;
  font-size: clamp(48px, 4.6vw, 68px);
  line-height: .98;
}

.hero .lead {
  max-width: 650px;
}

.device-stage {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.device-stage::before {
  content: "";
  position: absolute;
  inset: 30px 10px 20px 64px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(6, 39, 29, .08), rgba(197, 154, 51, .12)),
    rgba(237, 247, 241, .72);
  border: 1px solid rgba(6, 47, 34, .08);
  border-radius: 8px;
  transform: skewY(-2deg);
}

.laptop-mockup {
  position: absolute;
  left: 0;
  top: 30px;
  width: min(680px, 100%);
  padding: 12px 12px 0;
  background: #08261d;
  border: 1px solid rgba(6, 47, 34, .22);
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 34px 90px rgba(6, 47, 34, .26);
}

.laptop-topbar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.laptop-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: #c59a33;
}

.laptop-topbar span:nth-child(2) {
  background: #b4070e;
}

.laptop-topbar span:nth-child(3) {
  background: #dfe9e4;
}

.laptop-topbar strong {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 800;
}

.crm-screen {
  display: grid;
  grid-template-columns: 116px 1fr;
  min-height: 376px;
  overflow: hidden;
  background: #f8fbf9;
  border-radius: 7px 7px 0 0;
}

.crm-screen aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 14px;
  color: rgba(255, 255, 255, .82);
  background: linear-gradient(180deg, #06271d, #0a3c2b);
}

.crm-screen aside img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 3px;
  background: white;
  border-radius: 8px;
}

.crm-screen aside span {
  min-height: 31px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.crm-screen main {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.screen-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.screen-head strong {
  display: block;
  color: var(--deep);
  font-size: 22px;
  line-height: 1.1;
}

.screen-head small {
  display: block;
  margin-top: 5px;
  color: #5a6d65;
  font-size: 13px;
}

.screen-head > span {
  padding: 7px 10px;
  color: var(--deep);
  background: var(--soft-gold);
  border: 1px solid rgba(197, 154, 51, .24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-row div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  background: white;
  border: 1px solid rgba(6, 47, 34, .09);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 47, 34, .05);
}

.metric-row strong {
  color: var(--deep);
  font-size: 28px;
  line-height: 1;
}

.metric-row span {
  color: #5b6e66;
  font-size: 13px;
  font-weight: 800;
}

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

.kanban section {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 162px;
  padding: 12px;
  background: #eef7f2;
  border: 1px solid rgba(6, 47, 34, .08);
  border-radius: 8px;
}

.kanban h3 {
  color: var(--deep);
  font-size: 14px;
}

.kanban p {
  padding: 10px;
  color: #2b3f37;
  background: white;
  border: 1px solid rgba(6, 47, 34, .08);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.laptop-base {
  height: 18px;
  margin: 0 -44px;
  background: linear-gradient(180deg, #d6e2dc, #aebfba);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 16px 28px rgba(6, 47, 34, .18);
}

.phone-mockup {
  position: absolute;
  right: 4px;
  bottom: 40px;
  width: 188px;
  padding: 12px;
  background: #071812;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 26px;
  box-shadow: 0 28px 60px rgba(6, 47, 34, .32);
}

.phone-speaker {
  width: 48px;
  height: 5px;
  margin: 0 auto 10px;
  background: rgba(255, 255, 255, .24);
  border-radius: 999px;
}

.phone-screen {
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: 14px 12px;
  background:
    linear-gradient(180deg, rgba(237, 247, 241, .96), rgba(255, 255, 255, .98));
  border-radius: 18px;
}

.phone-screen > strong {
  color: var(--deep);
  font-size: 16px;
}

.phone-screen div {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 9px;
  align-items: start;
  padding: 10px;
  background: white;
  border: 1px solid rgba(6, 47, 34, .08);
  border-radius: 8px;
}

.phone-screen div > span {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  background: var(--danger);
  border-radius: 99px;
}

.phone-screen p {
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.phone-screen small {
  display: block;
  margin-top: 4px;
  color: #6c7e76;
  font-size: 11px;
  font-weight: 700;
}

.hero-portfolio-card {
  position: absolute;
  left: 38px;
  bottom: 28px;
  display: grid;
  grid-template-columns: auto repeat(3, 72px);
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(6, 47, 34, .10);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(6, 47, 34, .14);
}

.hero-portfolio-card span {
  padding: 0 6px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.hero-portfolio-card img {
  width: 72px;
  height: 54px;
  object-fit: contain;
  padding: 7px;
  background: #f8fbf9;
  border: 1px solid rgba(6, 47, 34, .08);
  border-radius: 7px;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: 600px;
  }

  .laptop-mockup {
    width: calc(100% - 52px);
  }

  .phone-mockup {
    right: 0;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 42px 0 38px;
  }

  .hero-copy h1,
  .hero h1 {
    font-size: 37px;
    line-height: 1.03;
  }

  .hero-proof {
    display: none;
  }

  .device-stage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .device-stage::before {
    display: none;
  }

  .laptop-mockup,
  .phone-mockup,
  .hero-portfolio-card {
    position: relative;
    inset: auto;
    width: auto;
  }

  .laptop-mockup {
    padding: 10px 10px 0;
  }

  .crm-screen {
    grid-template-columns: 1fr;
  }

  .crm-screen aside {
    grid-template-columns: 42px repeat(4, auto);
    align-items: center;
    overflow-x: auto;
  }

  .metric-row,
  .kanban {
    grid-template-columns: 1fr;
  }

  .kanban section {
    min-height: auto;
  }

  .laptop-base {
    margin: 0 -16px;
  }

  .phone-mockup {
    border-radius: 18px;
  }

  .phone-screen {
    min-height: auto;
  }

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

  .hero-portfolio-card span {
    grid-column: 1 / -1;
  }

  .hero-portfolio-card img {
    width: 100%;
  }
}

/* Inner page product-style dashboards */
.inner-dashboard {
  display: grid;
  gap: 16px;
  padding: 22px;
  color: white;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    linear-gradient(145deg, #08291f, #0a4632);
  border: 1px solid rgba(6, 47, 34, .18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(6, 47, 34, .20);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.dash-top strong {
  color: white;
  font-size: 23px;
  line-height: 1.1;
}

.dash-top span {
  max-width: 190px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  text-align: right;
}

.service-modules {
  display: grid;
  gap: 10px;
}

.service-modules article,
.doc-stack div,
.status-list div,
.contact-preview div,
.message-preview {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
}

.service-modules article {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.service-modules b,
.doc-stack b,
.status-list b,
.contact-preview b,
.message-preview span {
  color: white;
}

.service-modules span,
.status-list small,
.contact-preview span,
.message-preview p {
  color: rgba(255, 255, 255, .67);
}

.mini-flow {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  gap: 8px;
  align-items: center;
  padding: 12px;
  background: rgba(197, 154, 51, .10);
  border: 1px solid rgba(197, 154, 51, .26);
  border-radius: 8px;
}

.mini-flow span {
  display: grid;
  place-items: center;
  min-height: 38px;
  color: var(--deep);
  background: #f4d484;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
}

.mini-flow i {
  height: 2px;
  background: rgba(244, 212, 132, .7);
}

.doc-stack {
  display: grid;
  gap: 10px;
}

.doc-stack div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
}

.doc-stack b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #f4d484;
  background: rgba(197, 154, 51, .14);
  border: 1px solid rgba(197, 154, 51, .32);
  border-radius: 8px;
}

.doc-stack span {
  color: rgba(255, 255, 255, .84);
  font-weight: 800;
}

.dashboard-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 14px;
  color: var(--deep);
  background: white;
  border-radius: 8px;
  font-weight: 900;
}

.dashboard-link::after {
  content: ">";
  color: var(--danger);
}

.tender-requisites,
.contact-page-grid,
.accreditation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 28px;
  align-items: start;
}

.procurement-note {
  display: grid;
  gap: 8px;
  padding: 24px;
  color: var(--deep);
  background:
    linear-gradient(135deg, rgba(237, 247, 241, .92), rgba(255, 255, 255, .96));
  border: 1px solid rgba(6, 47, 34, .10);
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 47, 34, .06);
}

.procurement-note strong {
  font-size: 22px;
}

.procurement-note p {
  color: #445750;
}

.bank-details {
  display: grid;
  grid-template-columns: minmax(120px, .72fr) minmax(0, 1fr);
  gap: 9px 14px;
  margin: 4px 0 0;
}

.bank-details dt {
  color: #5d6f67;
  font-weight: 900;
}

.bank-details dd {
  margin: 0;
  color: var(--deep);
  overflow-wrap: anywhere;
}

.status-list {
  display: grid;
  gap: 10px;
}

.status-list div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 2px 12px;
  align-items: start;
  padding: 14px;
}

.status-list div > span {
  grid-row: span 2;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  background: #f4d484;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(197, 154, 51, .16);
}

.contact-preview {
  display: grid;
  gap: 10px;
}

.contact-preview div {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.contact-preview span {
  overflow-wrap: anywhere;
}

.message-preview {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(197, 154, 51, .12);
  border-color: rgba(197, 154, 51, .30);
}

.message-preview span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form-paused {
  align-content: center;
}

.lead-paused-message {
  margin-top: 6px;
  padding: 16px;
  color: #163523;
  background: rgba(244, 212, 132, .22);
  border: 1px solid rgba(197, 154, 51, .36);
  border-radius: 8px;
}

.lead-paused-message:focus {
  outline: 2px solid rgba(197, 154, 51, .72);
  outline-offset: 3px;
}

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

@media (max-width: 1080px) {
  .tender-requisites,
  .contact-page-grid,
  .accreditation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .inner-dashboard {
    padding: 16px;
  }

  .dash-top {
    display: grid;
  }

  .dash-top span {
    max-width: none;
    text-align: left;
  }

  .mini-flow {
    grid-template-columns: 1fr;
  }

  .mini-flow i {
    width: 2px;
    height: 16px;
    margin: 0 auto;
  }

  .bank-details {
    grid-template-columns: 1fr;
  }
}
