:root {
  --green-900: #173b2a;
  --green-800: #215338;
  --green-700: #2f754c;
  --green-100: #eaf4ed;
  --ink: #202722;
  --muted: #657069;
  --line: #dde6df;
  --white: #ffffff;
  --cream: #f7f4ec;
  --gold: #d9a333;
  --blue: #356f9d;
  --shadow: 0 22px 60px rgba(20, 37, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 18px rgba(23, 59, 42, 0.11);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-900);
  background: var(--white);
  font-size: 14px;
}

.site-header.is-scrolled .brand-mark {
  color: var(--white);
  background: var(--green-800);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 15px;
  font-weight: 650;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 56px;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 35, 25, 0.9), rgba(15, 35, 25, 0.62) 42%, rgba(15, 35, 25, 0.12) 68%, rgba(15, 35, 25, 0.03)),
    url("assets/hero-saas-agriculture.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-bottom: clamp(24px, 6vh, 84px);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bfe8c8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 880px;
  font-size: clamp(44px, 7vw, 86px);
}

h2 {
  color: var(--green-900);
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  color: var(--green-900);
  font-size: 20px;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.1vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green-700);
}

.button.primary:hover {
  background: var(--green-800);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.hero-preview {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 36px;
  z-index: 1;
  width: min(460px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.preview-top,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.preview-top span {
  color: rgba(255, 255, 255, 0.76);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.status-grid div {
  min-width: 0;
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.status-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1;
}

.status-grid small {
  color: rgba(255, 255, 255, 0.74);
}

.status-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status-dot.wait {
  background: var(--gold);
}

.status-dot.done {
  background: #85d49c;
}

.section {
  padding: clamp(70px, 10vw, 126px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.management p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.problem-list,
.benefit-grid,
.showcase-grid {
  display: grid;
  gap: 18px;
}

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

.problem-list article,
.benefit-grid article,
.desktop-mock,
.phone-mock,
.contact-form,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(33, 83, 56, 0.07);
}

.problem-list article {
  padding: 28px;
}

.problem-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 8px;
  color: var(--green-800);
  background: var(--green-100);
}

.problem-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.problem-list p,
.benefit-grid p,
.mock-content p,
.faq p {
  color: var(--muted);
}

.flow-section {
  background: var(--green-100);
}

.practice-example {
  max-width: 920px;
  margin: 30px auto 0;
  border: 1px solid rgba(47, 117, 76, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(23, 59, 42, 0.07);
  text-align: left;
}

.practice-example strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green-900);
  font-size: 18px;
}

.practice-example ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: practice-step;
}

.practice-example li {
  position: relative;
  min-height: 116px;
  border-radius: 8px;
  padding: 46px 14px 14px;
  color: var(--muted);
  background: #f7fbf8;
  counter-increment: practice-step;
}

.practice-example li::before {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-700);
  content: counter(practice-step);
  font-size: 13px;
  font-weight: 900;
}

.process-infographic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 112px minmax(250px, 0.9fr) 78px minmax(250px, 1fr);
  gap: 14px;
  max-width: 1210px;
  margin: 0 auto;
  border: 1px solid rgba(47, 117, 76, 0.18);
  border-radius: 8px;
  padding: 30px 30px 118px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.95), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4faf5 100%);
  box-shadow: 0 24px 70px rgba(23, 59, 42, 0.14);
}

.process-panel {
  position: relative;
  min-width: 0;
}

.process-title {
  margin-bottom: 18px;
  text-align: center;
}

.process-title span {
  display: block;
  color: var(--green-700);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.desktop-panel .process-title span {
  color: var(--blue);
}

.process-title strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
}

.desktop-screen {
  position: relative;
  min-height: 258px;
  border: 10px solid #23322b;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(23, 59, 42, 0.14);
}

.desktop-screen::after {
  position: absolute;
  right: 31%;
  bottom: -38px;
  width: 38%;
  height: 38px;
  border-radius: 0 0 8px 8px;
  background: #23322b;
  content: "";
}

.screen-bar {
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.screen-body {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 12px;
  padding: 16px;
}

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

.work-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--green-900);
  background: #f9fbf8;
  font-weight: 800;
}

.field-map {
  display: grid;
  min-height: 158px;
  grid-template-rows: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: #d7eac4;
}

.field-map span {
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--green-900);
  background: linear-gradient(135deg, rgba(47, 117, 76, 0.12), rgba(217, 163, 51, 0.16));
  font-size: 13px;
  font-weight: 900;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.role-badge::before {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 34%, #fff 0 13%, transparent 14%),
    radial-gradient(circle at 50% 74%, #fff 0 23%, transparent 24%),
    var(--green-700);
  content: "";
}

.process-arrow {
  display: grid;
  align-self: center;
  justify-self: stretch;
  min-width: 0;
}

.primary-arrow {
  position: relative;
  height: 82px;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  clip-path: polygon(0 18%, 68% 18%, 68% 0, 100% 50%, 68% 100%, 68% 82%, 0 82%);
  filter: drop-shadow(0 14px 20px rgba(47, 117, 76, 0.18));
}

.primary-arrow span {
  max-width: 82px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.phone-panel {
  display: grid;
  justify-items: center;
}

.phone-process {
  width: min(265px, 100%);
  border: 10px solid #1f2d27;
  border-radius: 28px;
  padding: 12px;
  background: #f8fbf7;
  box-shadow: 0 20px 44px rgba(23, 59, 42, 0.2);
}

.phone-app-bar {
  margin: -2px -2px 14px;
  border-radius: 16px 16px 8px 8px;
  padding: 12px;
  color: var(--white);
  background: var(--green-700);
  text-align: center;
  font-weight: 900;
}

.phone-flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(23, 59, 42, 0.08);
}

.phone-flow-item + .phone-flow-item {
  margin-top: 20px;
}

.phone-flow-item + .phone-flow-item::before {
  position: absolute;
  top: -18px;
  left: 28px;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--green-700);
  border-bottom: 3px solid var(--green-700);
  content: "";
  transform: rotate(45deg);
}

.phone-flow-item.highlight {
  border-color: rgba(47, 117, 76, 0.36);
  background: #eef8f0;
}

.circle-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-700);
  font-size: 13px;
  font-weight: 900;
}

.phone-flow-item strong,
.phone-flow-item em {
  display: block;
  grid-column: 2;
}

.phone-flow-item strong {
  color: var(--green-900);
  font-size: 14px;
  line-height: 1.2;
}

.phone-flow-item em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.dotted-arrow {
  position: relative;
  height: 2px;
  align-self: center;
  border-top: 4px dotted var(--green-700);
}

.dotted-arrow::after {
  position: absolute;
  top: -10px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-top: 4px solid var(--green-700);
  border-right: 4px solid var(--green-700);
  content: "";
  transform: rotate(45deg);
}

.field-scene {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: #eaf6fb;
  box-shadow:
    0 18px 36px rgba(23, 59, 42, 0.1),
    inset 0 0 0 1px rgba(47, 117, 76, 0.08);
}

.field-scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evidence-loop {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: grid;
  place-items: center;
}

.loop-line {
  position: absolute;
  right: 10%;
  bottom: 26px;
  left: 10%;
  height: 64px;
  border-right: 5px solid var(--blue);
  border-bottom: 5px solid var(--blue);
  border-left: 5px solid var(--blue);
  border-radius: 0 0 22px 22px;
}

.loop-line::before {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-bottom: 18px solid var(--blue);
  border-left: 12px solid transparent;
  content: "";
}

.evidence-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(560px, 92%);
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  border: 2px solid rgba(53, 111, 157, 0.38);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(23, 59, 42, 0.11);
}

.evidence-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
}

.evidence-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.evidence-card strong {
  color: var(--blue);
}

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

.role-benefits {
  background: #fbfcfa;
}

.role-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.role-benefit-grid article {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background:
    linear-gradient(150deg, rgba(234, 244, 237, 0.84), rgba(255, 255, 255, 0.92) 46%),
    var(--white);
  box-shadow: 0 16px 42px rgba(23, 59, 42, 0.08);
}

.role-benefit-grid article::after {
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  background: rgba(47, 117, 76, 0.08);
  content: "";
}

.role-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 12px 24px rgba(47, 117, 76, 0.18);
}

.role-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.role-benefit-grid h3 {
  margin-bottom: 18px;
  font-size: 23px;
}

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

.role-benefit-grid li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.role-benefit-grid li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-700);
  content: "";
}

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

.benefit-grid article {
  min-height: 210px;
  padding: 26px;
}

.benefit-grid article::before {
  display: block;
  width: 42px;
  height: 8px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--green-700);
  content: "";
}

.compare {
  background: #f4f7f2;
}

.comparison-table {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.table-row > div {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}

.table-row > div + div {
  border-left: 1px solid var(--line);
}

.table-row:last-child > div {
  border-bottom: 0;
}

.table-head {
  color: var(--white);
  background: var(--green-900);
  font-weight: 900;
}

.showcase-grid {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
}

.desktop-mock {
  overflow: hidden;
}

.mock-toolbar {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  background: var(--green-900);
}

.mock-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #dce8de;
}

.mock-content {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 24px;
  padding: 28px;
}

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

.task-board div {
  min-height: 270px;
  border-radius: 8px;
  padding: 18px;
  background: #f4f7f2;
}

.task-board div:first-child {
  border-top: 5px solid var(--gold);
}

.task-board div:last-child {
  border-top: 5px solid var(--green-700);
}

.task-board strong,
.task-board span {
  display: block;
}

.task-board strong {
  margin-bottom: 16px;
  color: var(--green-800);
  font-size: 18px;
}

.task-board span {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
}

.phone-mock {
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at top left, rgba(217, 163, 51, 0.18), transparent 34%),
    var(--green-100);
}

.phone-screen {
  width: min(290px, 100%);
  min-height: 500px;
  border: 10px solid #1c2721;
  border-radius: 28px;
  padding: 18px;
  background: #f8faf7;
  box-shadow: 0 18px 40px rgba(23, 59, 42, 0.22);
}

.phone-header {
  margin-bottom: 22px;
  color: var(--green-900);
  font-size: 21px;
  font-weight: 900;
}

.phone-task {
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(23, 59, 42, 0.08);
}

.phone-task + .phone-task {
  margin-top: 14px;
}

.phone-task span,
.phone-task small,
.phone-task strong {
  display: block;
}

.phone-task span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-task strong {
  margin-top: 8px;
  color: var(--green-900);
}

.phone-task small {
  margin-top: 8px;
  color: var(--muted);
}

.phone-task button {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 8px;
  padding: 13px;
  color: var(--white);
  background: var(--green-700);
  font-weight: 900;
}

.phone-task.muted {
  opacity: 0.7;
}

.management {
  background: var(--green-900);
}

.management-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--white);
}

.management h2,
.management .eyebrow {
  color: var(--white);
}

.management p {
  color: rgba(255, 255, 255, 0.78);
}

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

.management li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--cream);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--green-700);
  outline: 3px solid rgba(47, 117, 76, 0.16);
}

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

.form-note.is-success {
  color: var(--green-700);
}

.form-note.is-error {
  color: #a5291f;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  color: var(--green-900);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin-bottom: 0;
}

.faq ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.faq li {
  position: relative;
  padding-left: 24px;
}

.faq li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-700);
  content: "";
}

.footer {
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #111915;
  font-size: 14px;
}

.footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 860px;
    align-items: start;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-preview {
    right: 20px;
    bottom: 28px;
    left: 20px;
    width: auto;
  }

  .problem-list,
  .benefit-grid,
  .role-benefit-grid,
  .showcase-grid,
  .mock-content,
  .management-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .process-infographic {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 18px 28px;
  }

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

  .process-arrow {
    justify-self: center;
  }

  .primary-arrow {
    width: 86px;
    height: 96px;
    clip-path: polygon(18% 0, 82% 0, 82% 62%, 100% 62%, 50% 100%, 0 62%, 18% 62%);
  }

  .primary-arrow span {
    max-width: 58px;
    font-size: 12px;
  }

  .dotted-arrow {
    width: 2px;
    height: 54px;
    border-top: 0;
    border-left: 4px dotted var(--green-700);
  }

  .dotted-arrow::after {
    top: auto;
    right: auto;
    bottom: -2px;
    left: -9px;
    transform: rotate(135deg);
  }

  .field-scene {
    min-height: 250px;
  }

  .evidence-loop {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 6px;
  }

  .loop-line {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: 880px;
    padding: 104px 20px 42px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .status-grid,
  .table-row {
    grid-template-columns: 1fr;
  }

  .task-board {
    grid-template-columns: 1fr;
  }

  .process-infographic {
    padding: 20px 14px 24px;
  }

  .process-title span {
    font-size: 20px;
  }

  .practice-example {
    padding: 18px;
  }

  .practice-example ol {
    grid-template-columns: 1fr;
  }

  .practice-example li {
    min-height: 0;
  }

  .desktop-screen {
    border-width: 7px;
  }

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

  .field-map {
    min-height: 128px;
  }

  .phone-process {
    width: min(280px, 100%);
  }

  .evidence-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .evidence-icon {
    margin: 0 auto;
  }

  .table-row > div + div {
    border-left: 0;
  }

  .table-head {
    display: none;
  }

  .table-row {
    border-bottom: 1px solid var(--line);
  }

  .table-row:last-child {
    border-bottom: 0;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
