:root {
  --bg: #0c1110;
  --bg-soft: #111816;
  --panel: #ffffff;
  --panel-soft: #f5f7f6;
  --text: #151918;
  --muted: #62716d;
  --muted-dark: #a5b0ad;
  --brand: #2B7A6E;
  --brand-dark: #1f5e55;
  --border: #dce4e1;
  --shadow: 0 20px 60px rgba(12, 17, 16, 0.12);
  --radius: 22px;
  --radius-small: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

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

img, svg {
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--brand);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 228, 225, 0.8);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), #173f3a);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 10px 28px rgba(43, 122, 110, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #32413d;
  font-size: 0.96rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width .2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(43, 122, 110, 0.22);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
  box-shadow: 0 16px 34px rgba(43, 122, 110, 0.28);
}

.button.secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--panel-soft);
}

.button.dark {
  background: #111816;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  color: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(43,122,110,.23), transparent 34%),
    linear-gradient(135deg, #0c1110 0%, #111816 54%, #183f39 100%);
  color: #fff;
  padding: 96px 0 74px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c8e8e3;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .88rem;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #59d1c0;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(89,209,192,.7);
}

h1, h2, h3 {
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #d6e3df;
  max-width: 720px;
  margin: 24px 0 0;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}

.hero-card-inner {
  background: rgba(255,255,255,.92);
  color: var(--text);
  border-radius: 18px;
  padding: 24px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.metric {
  padding: 18px;
  border-radius: 16px;
  background: var(--panel-soft);
  border: 1px solid var(--border);
}

.metric strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
  color: var(--brand);
}

.metric span {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.logo-strip {
  background: var(--panel-soft);
  border-bottom: 1px solid var(--border);
}

.strip-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 1px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.strip-item {
  padding: 22px;
  min-height: 86px;
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.strip-item:first-child {
  color: var(--text);
}

.section {
  padding: 88px 0;
}

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

.section.dark {
  background: #0c1110;
  color: #fff;
}

.section.dark .section-intro p,
.section.dark .card p,
.section.dark .list-check li,
.section.dark .muted {
  color: var(--muted-dark);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 18px 0 0;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(12,17,16,.03);
}

.dark .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}

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

.icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(43,122,110,.11);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-weight: 900;
}

.dark .icon {
  background: rgba(89,209,192,.12);
  color: #85eadc;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.panel-image {
  min-height: 520px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(43,122,110,.86), rgba(12,17,16,.94)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.32), transparent 28%);
  padding: 26px;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.panel-image::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,.08);
}

.dashboard-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 18px;
}

.dashboard-line {
  height: 10px;
  border-radius: 99px;
  background: rgba(255,255,255,.22);
  overflow: hidden;
  margin: 14px 0;
}

.dashboard-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: rgba(255,255,255,.75);
}

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

.list-check li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-weight: 650;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43,122,110,.12);
  color: var(--brand);
  font-weight: 900;
  font-size: .8rem;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #101816;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
}

.cta {
  background:
    radial-gradient(circle at 20% 0%, rgba(89,209,192,.26), transparent 30%),
    linear-gradient(135deg, #0c1110, #173f3a);
  color: #fff;
  border-radius: 34px;
  padding: 54px;
  overflow: hidden;
  position: relative;
}

.cta p {
  color: #d7e2df;
  max-width: 720px;
  margin: 18px 0 0;
}

.page-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at top left, rgba(43,122,110,.18), transparent 32%),
    linear-gradient(135deg, #0c1110, #14201d);
  color: #fff;
}

.page-hero p {
  color: #d6e3df;
  max-width: 720px;
  font-size: 1.12rem;
}

.breadcrumb {
  color: #b4c5c1;
  margin-bottom: 16px;
  font-weight: 700;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

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

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

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
  font-size: .92rem;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(43,122,110,.16);
  border-color: var(--brand);
}

.portal-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  gap: 30px;
  align-items: start;
}

.login-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.login-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.lock {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(43,122,110,.12);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.notice {
  background: #eff8f6;
  border: 1px solid #cce7e2;
  color: #27544f;
  border-radius: 16px;
  padding: 14px;
  font-weight: 700;
  margin: 18px 0;
}

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

.small {
  font-size: .92rem;
}

.site-footer {
  background: #0c1110;
  color: #fff;
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .7fr);
  gap: 28px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted-dark);
}

.footer-grid h4 {
  margin: 0 0 12px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 38px;
  padding-top: 22px;
  color: var(--muted-dark);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43,122,110,.1);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .88rem;
}

.dark .badge {
  background: rgba(255,255,255,.09);
  color: #c7eee8;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 18px 20px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split,
  .portal-shell,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .strip-grid {
    border: 0;
  }

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

  .cta {
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .hero {
    padding: 54px 0;
  }

  .section {
    padding: 62px 0;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .panel-image {
    min-height: 420px;
  }
}

/* Kolek trade supplier update */
.logo span:not(.logo-mark) { line-height: 1; }
.logo-subtitle { display:block; font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-top:5px; font-weight:800; }
.site-footer .logo-subtitle { color: var(--muted-dark); }
.legal-line { max-width: 1000px; font-size: .9rem; }
