:root {
  --green: #139447;
  --green-dark: #087137;
  --green-soft: #eaf8ef;
  --red: #ed1c24;
  --navy: #10253d;
  --ink: #142337;
  --muted: #5d6c7c;
  --line: #dce5eb;
  --cloud: #f5f8fa;
  --white: #ffffff;
  --shadow: 0 24px 64px rgba(16, 37, 61, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 999;
  background: var(--navy); color: white; padding: 12px 18px; border-radius: 10px;
}
.skip-link:focus { top: 12px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px;
  color: var(--green-dark); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--red); }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { font-size: clamp(2.35rem, 4.7vw, 4.5rem); line-height: 1.02; letter-spacing: -.05em; margin-bottom: 24px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.1; letter-spacing: -.035em; margin-bottom: 20px; }
h3 { font-size: 1.08rem; line-height: 1.3; }
.lead { max-width: 690px; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.22rem); line-height: 1.75; }
.section { padding: 110px 0; }
.section-sm { padding: 76px 0; }
.section-soft { background: var(--cloud); }
.section-dark { background: var(--navy); color: white; }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head p { color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.section-dark .section-head p { color: #bed0df; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,229,235,.8); backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 148px; display: flex; align-items: center; gap: 30px; }
.brand { width: 300px; height: 140px; flex: 0 0 auto; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 100%; height: auto; flex: 0 0 auto; }
.nav-links { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.nav-links a { color: #344456; font-size: .82rem; font-weight: 650; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green-dark); }
.nav-links a.main-site-button {
  padding: 10px 14px;
  border: 1px solid var(--green);
  border-radius: 12px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-weight: 800;
  white-space: nowrap;
}
.nav-links a.main-site-button:hover { color: white; background: var(--green-dark); }
.nav-actions { display: flex; gap: 10px; margin-left: 8px; }
.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line);
  border-radius: 12px; background: white; color: var(--navy); cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; border-radius: 2px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px;
  border: 1px solid transparent; border-radius: 13px; font-weight: 800; line-height: 1; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--green), var(--green-dark)); box-shadow: 0 12px 26px rgba(19,148,71,.22); }
.btn-secondary { color: var(--navy); background: white; border-color: var(--line); }
.btn-red { color: white; background: linear-gradient(135deg, #ff343b, #c90810); box-shadow: 0 12px 26px rgba(237,28,36,.2); }
.btn-sm { min-height: 41px; padding-inline: 15px; font-size: .82rem; white-space: nowrap; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero { position: relative; overflow: hidden; padding: 92px 0 112px; background: linear-gradient(135deg, #fff 0%, #f8fbf9 48%, #edf8f1 100%); }
.hero::before {
  content: ""; position: absolute; width: 560px; height: 560px; right: -240px; top: -210px;
  border: 110px solid rgba(19,148,71,.07); border-radius: 50%;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 72px; }
.hero h1 span { color: var(--green); }
.hero .lead { font-size: 1.2rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; color: #3f5060; font-size: .91rem; font-weight: 650; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; color: white; background: var(--green); font-size: .75rem; }

.product-window { position: relative; border: 1px solid #d8e5dc; border-radius: 26px; background: #fff; box-shadow: var(--shadow); overflow: hidden; transform: none; }
.window-bar { height: 46px; display: flex; align-items: center; gap: 7px; padding: 0 16px; background: #f5f7f8; border-bottom: 1px solid var(--line); }
.window-bar i { width: 9px; height: 9px; border-radius: 50%; background: #cbd4da; }
.window-bar i:first-child { background: var(--red); }
.window-bar i:nth-child(2) { background: #f5b942; }
.window-bar i:nth-child(3) { background: var(--green); }
.app-shell { display: grid; grid-template-columns: 110px 1fr; min-height: 455px; }
.app-side { padding: 22px 14px; background: var(--navy); }
.app-side .app-mark { width: 52px; height: 52px; margin: 0 auto 24px; border-radius: 15px; display: grid; place-items: center; color: white; background: var(--green); font-weight: 900; }
.app-side span { display: block; height: 9px; margin: 16px 4px; border-radius: 99px; background: rgba(255,255,255,.16); }
.app-side span.active { background: var(--green); }
.app-main { padding: 26px; background: #f7faf8; }
.app-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.app-heading b { font-size: 1.05rem; }
.app-heading em { padding: 7px 10px; border-radius: 10px; color: var(--green-dark); background: var(--green-soft); font-size: .72rem; font-style: normal; font-weight: 800; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.stat { padding: 15px; border: 1px solid #e3ebe6; border-radius: 13px; background: white; }
.stat strong { display: block; margin-top: 8px; font-size: 1.55rem; color: var(--navy); }
.stat small { color: var(--muted); }
.chart { position: relative; height: 154px; margin-top: 14px; border: 1px solid #e3ebe6; border-radius: 15px; background: repeating-linear-gradient(to bottom,#fff 0,#fff 37px,#edf1ef 38px); overflow: hidden; }
.chart::before { content: ""; position: absolute; inset: 50px 15px 26px; border-left: 4px solid var(--green); border-bottom: 4px solid var(--green); transform: skewY(-12deg); border-radius: 0 0 0 8px; }
.action-list { display: grid; gap: 9px; margin-top: 14px; }
.action-list div { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border-radius: 11px; background: white; border: 1px solid #e3ebe6; font-size: .76rem; }
.action-list b { color: var(--green-dark); }

.logo-strip { padding: 25px 0; border-block: 1px solid var(--line); background: white; }
.logo-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #687889; }
.logo-strip strong { color: var(--navy); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.industries-inline { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.industries-inline span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 99px; font-size: .82rem; background: var(--cloud); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card, .industry-card, .price-card, .contact-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 35px rgba(16,37,61,.05);
}
.feature-card { padding: 30px; }
.feature-card .icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: white; background: var(--green); font-size: 1.15rem; font-weight: 900; }
.feature-card:nth-child(3n+2) .icon { background: var(--navy); }
.feature-card:nth-child(3n+3) .icon { background: var(--red); }
.feature-card h3 { margin: 22px 0 10px; }
.feature-card p, .industry-card p { color: var(--muted); line-height: 1.68; margin-bottom: 0; }

.workflow { display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: center; }
.workflow-list { display: grid; gap: 14px; counter-reset: steps; }
.workflow-item { counter-increment: steps; display: grid; grid-template-columns: 54px 1fr; gap: 17px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.workflow-item::before { content: counter(steps); width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: white; background: var(--navy); font-weight: 900; }
.workflow-item h3 { margin: 2px 0 6px; }
.workflow-item p { color: var(--muted); line-height: 1.55; margin: 0; }

.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.metric { padding: 28px; border-left: 1px solid rgba(255,255,255,.16); }
.metric:first-child { border-left: 0; }
.metric strong { display: block; margin-bottom: 8px; color: #69d98d; font-size: clamp(2rem,4vw,3.4rem); letter-spacing: -.05em; }
.metric span { color: #ccdae6; line-height: 1.5; }

.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 52px; border-radius: 28px; color: white; background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.cta-panel::after { content: ""; position: absolute; width: 260px; height: 260px; right: -120px; top: -150px; border: 60px solid rgba(255,255,255,.1); border-radius: 50%; }
.cta-panel h2 { max-width: 680px; margin-bottom: 12px; }
.cta-panel p { max-width: 650px; margin-bottom: 0; color: #def4e6; line-height: 1.7; }
.cta-panel .button-row { position: relative; z-index: 1; margin: 0; }

.page-hero { padding: 84px 0 70px; background: linear-gradient(135deg, #f7fbf8, #eef7f1); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; font-size: clamp(2.15rem,3.6vw,3.35rem); }
.page-hero .lead { margin-bottom: 0; }
.industry-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.industry-card { padding: 32px; }
.industry-card h3 { display: flex; align-items: center; gap: 12px; font-size: 1.3rem; }
.industry-card h3::before { content: ""; width: 12px; height: 12px; border-radius: 4px; background: var(--red); }

.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 28px; }
.price-card.featured { border: 2px solid var(--green); transform: translateY(-12px); box-shadow: 0 24px 55px rgba(19,148,71,.16); }
.price-card .badge { position: absolute; right: 18px; top: 18px; padding: 6px 9px; border-radius: 99px; color: white; background: var(--green); font-size: .68rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.price { margin: 18px 0 2px; font-size: 2.45rem; font-weight: 900; letter-spacing: -.05em; }
.price small { font-size: .85rem; color: var(--muted); letter-spacing: 0; }
.price-card > p { color: var(--muted); min-height: 54px; line-height: 1.55; }
.check-list { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 11px; }
.check-list li { display: flex; gap: 9px; color: #425364; font-size: .92rem; line-height: 1.45; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 900; }
.price-card .btn { margin-top: auto; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; }
.contact-card { padding: 34px; }
.contact-card h2 { font-size: 1.8rem !important; }
.contact-list { display: grid; gap: 22px; margin-top: 30px; }
.contact-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.contact-item b { display: block; margin-bottom: 4px; }
.contact-item span, .contact-item a { color: var(--muted); line-height: 1.55; }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: white; background: var(--green); font-weight: 900; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: #fbfcfd; outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(19,148,71,.1); }
.field textarea { min-height: 145px; resize: vertical; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }

.site-footer { color: #dbe5ed; background: #0c1d30; }
.footer-top { display: grid; grid-template-columns: 1.2fr .75fr .75fr 1fr; gap: 46px; padding: 70px 0 54px; }
.footer-logo { width: 320px; max-width: 100%; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(255,255,255,.1)); background: white; border-radius: 12px; padding: 7px; }
.footer-about p { max-width: 360px; color: #aebdca; line-height: 1.7; }
.site-footer h4 { margin-bottom: 18px; color: white; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { color: #b9c7d3; font-size: .9rem; }
.footer-links a:hover { color: white; }
.footer-links .download-software-link {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 9px;
  color: white;
  background: var(--green);
  font-weight: 800;
}
.footer-links .download-software-link:hover { background: var(--green-dark); }
.footer-contact { display: grid; gap: 10px; color: #b9c7d3; font-size: .9rem; line-height: 1.5; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: #8fa1b0; font-size: .82rem; }
.footer-bottom a { color: #b9c7d3; }
.footer-policy-links { display: inline-flex; align-items: center; justify-content: center; gap: 12px; }
.footer-policy-links a { padding: 9px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; color: #dbe5ed; background: rgba(255,255,255,.04); font-size: .82rem; font-weight: 700; }
.footer-policy-links a:hover { color: white; border-color: rgba(255,255,255,.32); }
.footer-policy-bar { display: flex; justify-content: flex-end; gap: 12px; padding: 0 0 24px; }
.footer-policy-bar a { padding: 9px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; color: #dbe5ed; background: rgba(255,255,255,.04); font-size: .82rem; font-weight: 700; }
.footer-policy-bar a:hover { color: white; border-color: rgba(255,255,255,.32); }

@media (max-width: 1050px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .88rem; }
  .hero-grid { gap: 38px; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .price-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 1100px) {
  .container { width: min(100% - 30px, 680px); }
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 106px; }
  .brand { width: 205px; height: 100px; }
  .nav-toggle { display: block; }
  .nav-links, .nav-actions {
    display: none; position: absolute; left: 15px; right: 15px; top: 105px; margin: 0; padding: 14px;
    border: 1px solid var(--line); background: white; box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; gap: 0; border-radius: 16px 16px 0 0; border-bottom: 0; }
  .nav-links.open a { padding: 8px 10px; }
  .nav-actions.open { display: grid; grid-template-columns: 1fr 1fr; top: 345px; border-radius: 0 0 16px 16px; }
  .site-header:has(.nav-links.open) { padding-bottom: 320px; }
  .hero { padding: 68px 0 82px; }
  .hero-grid, .workflow, .contact-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .product-window { transform: none; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .metric:nth-child(3) { border-left: 0; }
  .cta-panel { grid-template-columns: 1fr; padding: 38px; }
  .cta-panel .button-row { margin-top: 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-about, .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .nav-wrap { min-height: 116px; gap: 10px; }
  .brand { width: min(260px, calc(100vw - 105px)); height: 110px; }
  .nav-links, .nav-actions { top: 132px; }
  .nav-actions.open { top: 372px; }
  .site-header:has(.nav-links.open) { padding-bottom: 347px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .lead, .hero .lead { font-size: 1rem; line-height: 1.65; }
  .button-row .btn { width: 100%; }
  .trust-row { display: grid; gap: 12px; }
  .logo-strip .container { display: grid; }
  .industries-inline { justify-content: flex-start; }
  .card-grid, .industry-grid, .pricing-grid, .form-grid { grid-template-columns: 1fr; }
  .app-shell { grid-template-columns: 70px 1fr; min-height: 390px; }
  .app-side { padding-inline: 9px; }
  .app-side .app-mark { width: 42px; height: 42px; }
  .app-main { padding: 17px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat:nth-child(n+2) { display: none; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .metric:first-child { border-top: 0; }
  .workflow-item { grid-template-columns: 44px 1fr; padding: 18px; }
  .workflow-item::before { width: 42px; height: 42px; }
  .cta-panel { padding: 30px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-top: 52px; }
  .footer-about, .footer-contact { grid-column: auto; }
  .footer-bottom { display: grid; }
  .footer-policy-links { justify-content: flex-start; flex-wrap: wrap; }
  .footer-policy-bar { justify-content: flex-start; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
