:root {
  --brand-50: #f0fdf4;
  --brand-100: #dcfce7;
  --brand-500: #1f8f46;
  --brand-600: #17733a;
  --brand-700: #145c31;
  --brand-800: #0f4427;
  --brand-900: #082e1b;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #fff;
  --shadow-soft: 0 18px 50px rgba(8, 46, 27, 0.1);
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
}
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f8faf9;
  color: var(--slate-900);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.brand img {
  width: 236px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover,
.main-nav .active {
  color: var(--brand-700);
}
.mobile-menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--brand-800);
  font-size: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button svg {
  flex: 0 0 auto;
}
.button-primary {
  background: var(--brand-700);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.button-primary:hover {
  background: var(--brand-800);
}
.button-outline {
  border-color: var(--brand-700);
  color: var(--brand-800);
  background: var(--white);
}
.button-outline:hover {
  background: var(--brand-50);
}
.button-light {
  background: var(--white);
  color: var(--brand-800);
}
.button-outline-white {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.grid-background {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 143, 70, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 143, 70, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
}
.hero-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(220, 252, 231, 0.75),
    rgba(255, 255, 255, 0)
  );
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 88px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--brand-100);
  background: var(--brand-50);
  color: var(--brand-800);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 22px;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}
.hero h1 span {
  color: var(--brand-700);
}
.hero p {
  margin: 24px 0 0;
  max-width: 640px;
  color: var(--slate-600);
  font-size: 18px;
  line-height: 1.8;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-visual {
  position: relative;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: var(--radius-3xl);
  background: linear-gradient(90deg, var(--brand-100), #ecfdf5);
  filter: blur(28px);
}
.dashboard-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-3xl);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.dashboard-panel {
  border-radius: 24px;
  padding: 26px;
  background: linear-gradient(
    135deg,
    var(--slate-900),
    var(--brand-900),
    var(--slate-800)
  );
  color: var(--white);
}
.dashboard-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.dashboard-heading span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(52, 211, 153, 0.18);
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 900;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.metric-card,
.compliance-list {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px;
}
.metric-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}
.metric-card span,
.compliance-list span {
  color: #d1fae5;
  font-size: 14px;
}
.compliance-list {
  grid-column: 1/-1;
}
.compliance-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.compliance-list div:last-child {
  margin-bottom: 0;
}
.compliance-list svg {
  color: #86efac;
}
.trust-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  background: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border-right: 1px solid var(--slate-200);
  color: var(--slate-800);
  font-weight: 800;
  font-size: 14px;
}
.trust-item:last-child {
  border-right: 0;
}
.trust-item svg {
  color: var(--brand-700);
}
.section {
  padding: 76px 0;
}
.section-white {
  background: var(--white);
}
.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 900;
}
.section-heading p {
  margin: 16px auto 0;
  color: var(--slate-600);
  font-size: 17px;
  line-height: 1.7;
}
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  background: var(--white);
  padding: 30px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.card:hover,
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(8, 46, 27, 0.14);
  border-color: rgba(31, 143, 70, 0.35);
}
.card svg {
  color: var(--brand-700);
  margin-bottom: 20px;
}
.card h3 {
  margin: 0;
  color: var(--brand-800);
  font-size: 20px;
  font-weight: 900;
}
.service-card h3 {
  color: var(--slate-900);
}
.card p {
  margin: 12px 0 0;
  min-height: 84px;
  color: var(--slate-600);
  line-height: 1.75;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-700);
  font-weight: 900;
  margin-top: 20px;
}
.link-arrow svg {
  margin: 0;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  background: var(--white);
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.industry-card svg {
  color: var(--brand-700);
  margin-bottom: 12px;
}
.industry-card strong {
  display: block;
  color: var(--slate-800);
}
.methodology-section {
  padding: 76px 0;
  background: var(--brand-900);
  color: var(--white);
}
.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}
.section-heading.light p {
  color: #d1fae5;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.method-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
}
.method-card span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-800);
  font-weight: 900;
  margin-bottom: 18px;
}
.method-card h3 {
  margin: 0;
  font-size: 17px;
}
.cta-panel {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  align-items: center;
  gap: 34px;
  border-radius: var(--radius-3xl);
  padding: 46px;
  color: var(--white);
  background: linear-gradient(
    90deg,
    var(--brand-900),
    var(--brand-800),
    #15803d
  );
  box-shadow: var(--shadow-soft);
}
.cta-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}
.cta-panel p {
  margin: 16px 0 0;
  color: #dcfce7;
  font-size: 18px;
  line-height: 1.75;
}
.site-footer {
  border-top: 1px solid var(--slate-200);
  background: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 42px;
  padding: 50px 0;
}
.footer-logo {
  width: 220px;
}
.site-footer h3 {
  margin: 0 0 18px;
  color: var(--slate-900);
  font-size: 18px;
}
.site-footer p,
.site-footer li {
  color: var(--slate-600);
  line-height: 1.7;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer li {
  margin-bottom: 8px;
}
.copyright {
  border-top: 1px solid var(--slate-200);
  padding: 20px;
  text-align: center;
  color: var(--slate-500);
  font-size: 14px;
}
.admin-body {
  background: var(--slate-50);
}
.admin-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0;
}
.admin-hero {
  border-radius: var(--radius-3xl);
  background: var(--brand-900);
  color: var(--white);
  padding: 34px;
  margin-bottom: 26px;
}
.admin-hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
}
.admin-hero p {
  color: #d1fae5;
}
.admin-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.admin-actions input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
}
.admin-status {
  margin: 16px 0 0;
  color: #d1fae5;
  font-size: 14px;
}
.admin-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-3xl);
  background: var(--white);
  padding: 26px;
  margin-bottom: 22px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.admin-card h2 {
  margin: 0 0 18px;
  font-size: 22px;
}
.admin-card label {
  display: block;
  margin-bottom: 16px;
}
.admin-card label span {
  display: block;
  margin-bottom: 8px;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 900;
}
.admin-card input,
.admin-card textarea {
  width: 100%;
  border: 1px solid var(--slate-300);
  border-radius: 14px;
  padding: 13px 15px;
  font: inherit;
  outline: none;
}
.admin-card textarea {
  min-height: 116px;
  resize: vertical;
}
.admin-card input:focus,
.admin-card textarea:focus {
  border-color: var(--brand-600);
}
.admin-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.small-button {
  border: 0;
  border-radius: 12px;
  background: var(--brand-700);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}
.object-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  padding: 18px;
  margin-bottom: 16px;
}
.object-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.inline-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.inline-item {
  display: flex;
  gap: 10px;
}
.remove-button {
  border: 1px solid #fecaca;
  border-radius: 12px;
  background: #fff;
  color: #dc2626;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }
  .trust-grid,
  .services-grid,
  .card-grid.three,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .method-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 780px) {
  .container,
  .admin-shell {
    width: min(100% - 32px, 1180px);
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-left: auto;
    border: 2px solid var(--slate-900);
    border-radius: 6px;
    background: var(--white);
    color: var(--brand-900);
    font-size: 0;
    line-height: 1;
    position: relative;
    z-index: 120;
  }
  .mobile-menu-button::before,
  .mobile-menu-button::after {
    content: '';
    position: absolute;
    left: 13px;
    right: 13px;
    height: 3px;
    border-radius: 99px;
    background: var(--brand-900);
    transition: transform .2s ease, top .2s ease, box-shadow .2s ease;
  }
  .mobile-menu-button::before {
    top: 16px;
    box-shadow: 0 8px 0 var(--brand-900);
  }
  .mobile-menu-button::after {
    top: 32px;
  }
  .mobile-menu-button.active::before {
    top: 24px;
    transform: rotate(45deg);
    box-shadow: none;
  }
  .mobile-menu-button.active::after {
    top: 24px;
    transform: rotate(-45deg);
  }
  .mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(15, 23, 42, .45);
  }
  body.mobile-menu-open .mobile-menu-backdrop {
    display: block;
  }
  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 340px);
    height: 100vh;
    z-index: 100;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 96px 24px 24px;
    background: var(--white);
    border-left: 1px solid var(--slate-200);
    box-shadow: -18px 0 40px rgba(15, 23, 42, .18);
    transform: translateX(105%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .main-nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--slate-200);
    font-size: 16px;
  }
  .hero-grid {
    padding: 60px 0;
  }
  .brand img {
    width: 190px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .trust-grid,
  .services-grid,
  .card-grid.three,
  .industry-grid,
  .method-grid,
  .footer-grid,
  .admin-two-column,
  .inline-list {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--slate-200);
  }
  .admin-actions {
    flex-direction: column;
  }
}
