:root {
  --ink: #10231b;
  --muted: #5f6862;
  --paper: #f4f7f1;
  --surface: #ffffff;
  --line: #d6dfd3;
  --gold: #b57935;
  --green: #204f3a;
  --green-deep: #0f2f24;
  --blue: #245f78;
  --coral: #b85d45;
  --shadow: 0 18px 46px rgba(21, 43, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

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

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  width: min(250px, 54vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.nav-link {
  padding: 10px 14px;
  border-radius: 4px;
  color: #1f2f28;
  font-size: 0.96rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.has-dropdown:hover .nav-link,
.has-dropdown:focus-within .nav-link {
  background: #e7efe6;
  color: var(--green);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  display: none;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(21, 43, 33, 0.16);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  display: grid;
  gap: 4px;
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 5vw, 68px) clamp(18px, 4vw, 56px) clamp(34px, 5vw, 62px);
  background: var(--green-deep);
  color: white;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  font-weight: 500;
}

.hero-line {
  margin: 12px 0 0;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  color: #dce9df;
}

.hero-text {
  max-width: 640px;
  margin: 16px 0 0;
  color: #c7d8cf;
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero .button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.64);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-highlights span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #edf5ef;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-mark {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #f9fbf6;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.hero-mark img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.section {
  padding: clamp(34px, 5vw, 58px) clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.section-heading h2 {
  max-width: 680px;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  font-weight: 500;
}

.intro > p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  background: #ffffff;
}

.about-copy {
  display: grid;
  gap: 14px;
  max-width: 820px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-copy p {
  margin: 0;
}

.offerings {
  background: #edf4eb;
  min-height: calc(100vh - 120px);
  padding-top: 56px;
  padding-bottom: 120px;
  scroll-margin-top: 80px;
}

.offering-grid,
.sales-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.offering-card,
.sales-card,
.contact-panel {
  min-height: 100%;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.offering-card {
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.offering-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--green);
}

.offering-card.it::before {
  background: var(--blue);
}

.offering-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(21, 43, 33, 0.16);
}

.card-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #dcecdf;
  color: var(--green);
  font-weight: 800;
}

.it .card-icon {
  background: #dbeef4;
  color: var(--blue);
}

.offering-card h3,
.sales-card h2,
.contact-panel h2,
.fit-list h3 {
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
}

.offering-card p,
.sales-card p,
.contact-panel p,
.fit-list p {
  color: var(--muted);
}

.offering-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.offering-card li::marker {
  color: var(--gold);
}

.offer-link {
  margin-top: 18px;
}

.service-hero {
  background: linear-gradient(120deg, #ffffff 0%, #f2f8f1 100%);
}

.it-hero {
  background: linear-gradient(120deg, #ffffff 0%, #eef7fa 100%);
}

.service-detail {
  background: #ffffff;
}

.capability-grid,
.process-steps,
.showcase-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

.capability-card,
.process-steps > div {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
}

.capability-card h3,
.process-steps h3,
.showcase-copy h3 {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

.capability-card p,
.process-steps p,
.showcase-copy li {
  color: var(--muted);
}

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

.process-steps span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
}

.dashboard-showcase {
  background: #edf4eb;
}

.product-flow {
  background: #ffffff;
}

.data-selector-showcase {
  background: #edf4eb;
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.selector-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 800;
}

.selector-card.checked {
  border-color: rgba(32, 79, 58, 0.35);
  background: #f7fbf4;
  color: var(--green);
}

.selector-card.checked::before {
  content: "Selected";
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selector-note {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
}

.service-bundles {
  background: #ffffff;
}

.service-bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.service-bundle-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
  box-shadow: var(--shadow);
}

.service-bundle-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-bundle-grid h3 {
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
}

.service-bundle-grid p {
  margin: 0;
  color: var(--muted);
}

.service-bundle-grid strong {
  color: var(--green);
  font-size: 0.95rem;
}

.success-hero {
  background: #f7fbf4;
}

.confidentiality-note {
  padding-top: 22px;
  padding-bottom: 22px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.confidentiality-note p {
  max-width: 1120px;
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: #fbf7ef;
  color: var(--muted);
}

.story-section {
  scroll-margin-top: 90px;
}

.it-story-section {
  background: #eef7fa;
}

.agro-story-section {
  background: #edf4eb;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.story-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.story-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
}

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

.story-card strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
}

.featured-story {
  border-top: 6px solid var(--blue);
}

.featured-story.agro-accent {
  border-top-color: var(--green);
}

.showcase-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  align-items: center;
}

.dashboard-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.dashboard-frame img {
  width: 100%;
  height: auto;
}

.showcase-copy {
  padding: clamp(20px, 3vw, 32px);
  border-left: 4px solid var(--blue);
  background: #ffffff;
}

.showcase-copy ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.showcase-copy li::marker {
  color: var(--gold);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--blue);
  color: white;
}

.contact-band h2 {
  max-width: 760px;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 500;
}

.contact-band .eyebrow,
.contact-band p {
  color: #d7c8b2;
}

.contact-band .button.primary {
  background: white;
  color: var(--blue);
  border-color: white;
}

.contact-band .button.secondary {
  color: white;
  border-color: #cbbba4;
}

.page-hero {
  padding: clamp(30px, 5vw, 56px) clamp(18px, 4vw, 56px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.sales-hero {
  background: #eef6f7;
}

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

.contact-panel a,
.detail-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.contact-panel a + a {
  margin-left: 14px;
}

.form-section {
  background: #edf4eb;
}

.contact-form {
  display: grid;
  max-width: 680px;
  gap: 12px;
  margin-top: 22px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #37332e;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #fbfdf9;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(36, 95, 120, 0.16);
  border-color: var(--blue);
}

.phone-fields {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 10px;
}

.field-note {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.contact-form.was-submitted textarea:invalid,
.contact-form.was-submitted input:invalid,
.contact-form.was-submitted select:invalid {
  border-color: #b57461;
}

.hidden-field {
  display: none;
}

.compact-hero {
  min-height: calc(100vh - 190px);
}

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

.service-fit {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.fit-list > div {
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: #f3f8ef;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr);
  gap: 22px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: #0d1f18;
  color: white;
}

.site-footer p {
  margin: 8px 0 0;
  color: #c9c1b7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  color: #d7c8b2;
}

.social-link {
  line-height: 1;
}

.social-mark {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.linkedin-mark {
  background: #0a66c2;
}

.instagram-mark {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
}

.x-mark {
  background: #111;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

@media (max-width: 880px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 12px 10px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    min-height: auto;
    padding: 12px 10px;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 4px 14px;
    padding: 4px 0 4px 10px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .hero,
  .intro,
  .about-content,
  .contact-band,
  .contact-layout,
  .sales-grid,
  .fit-list,
  .capability-grid,
  .process-steps,
  .showcase-grid,
  .selector-grid,
  .service-bundle-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-mark img {
    min-height: 190px;
  }

  .contact-band {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding-inline: 14px;
  }

  .brand {
    width: min(210px, 66vw);
  }

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

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .contact-panel a + a {
    display: block;
    margin-left: 0;
  }

  .phone-fields {
    grid-template-columns: 1fr;
  }
}
