:root {
  --ink: #17211d;
  --muted: #627069;
  --line: #dbe4de;
  --paper: #f7faf6;
  --white: #ffffff;
  --sage: #d9e9dc;
  --green: #245f42;
  --green-dark: #143a2a;
  --sun: #f0c86a;
  --shadow: 0 24px 80px rgba(28, 55, 41, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.trust-row,
.logo-strip,
.board-header,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.header-action,
.button,
.price-card button {
  border-radius: 8px;
  font-weight: 800;
}

.header-action {
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 44px;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 72px 0 56px;
  align-items: center;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-text,
.split-section p,
.pricing p,
.feature-grid p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 590px;
  font-size: 1.14rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

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

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.trust-row {
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.trust-row div {
  min-width: 112px;
}

.trust-row dt {
  font-size: 1.4rem;
  font-weight: 800;
}

.trust-row dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.profile-panel {
  padding: 32px;
  border: 1px solid rgba(36, 95, 66, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(240, 200, 106, 0.22), transparent 34%),
    var(--white);
  box-shadow: var(--shadow);
}

.hero-logo {
  display: block;
  width: min(100%, 420px);
  margin: 0 auto 24px;
  border-radius: 8px;
}

.profile-panel h2 {
  max-width: 520px;
  margin-bottom: 28px;
}

.panel-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--sage);
  font-size: 0.82rem;
  font-weight: 800;
}

.highlight-list {
  display: grid;
  gap: 14px;
}

.highlight-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.highlight-list strong,
.highlight-list span {
  display: block;
}

.highlight-list strong {
  margin-bottom: 7px;
  font-size: 1.04rem;
}

.highlight-list span {
  color: var(--muted);
  line-height: 1.55;
}

.product-shell {
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(36, 95, 66, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(240, 200, 106, 0.22), transparent 34%),
    var(--white);
  box-shadow: var(--shadow);
}

.product-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.product-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
}

.product-topbar strong {
  margin-left: auto;
  font-size: 0.86rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 448px;
}

.product-sidebar {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  background: rgba(217, 233, 220, 0.35);
}

.product-sidebar p {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-sidebar button {
  width: 100%;
  margin-bottom: 10px;
  padding: 11px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.product-sidebar .active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(28, 55, 41, 0.1);
}

.board {
  padding: 28px;
}

.board-header {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.board-header p,
.board-header h2 {
  margin: 0;
}

.board-header p,
.task-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.board-header h2 {
  margin-top: 5px;
  font-size: 2rem;
}

.board-header > span {
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--sage);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.lane-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.task-card {
  min-height: 168px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.task-card.priority {
  color: var(--white);
  background: var(--green);
}

.task-card.priority span,
.task-card.priority p {
  color: rgba(255, 255, 255, 0.72);
}

.task-card h3 {
  margin: 28px 0 12px;
  font-size: 1.28rem;
}

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

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.timeline span {
  display: block;
  height: 14px;
  width: var(--size);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), var(--sage));
}

.logo-strip {
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip span {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 800;
}

.section,
.split-section,
.availability,
.pricing {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.feature-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.service-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.feature-grid article,
.service-grid article {
  padding: 24px;
}

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

.feature-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
}

.split-section,
.availability,
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: 48px;
  align-items: center;
}

.availability {
  padding-top: 30px;
  padding-bottom: 54px;
}

.availability p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.language-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(28, 55, 41, 0.08);
}

.language-card > span {
  color: var(--green);
  font-weight: 800;
}

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

.language-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.language-card strong {
  font-size: 0.95rem;
}

.language-card li span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(28, 55, 41, 0.08);
}

.steps strong {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.steps span {
  color: var(--muted);
  font-weight: 700;
}

.tools-section {
  padding-top: 44px;
}

.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tool-list span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(28, 55, 41, 0.07);
}

.help-section {
  padding-bottom: 32px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.help-grid span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 24px rgba(28, 55, 41, 0.07);
}

.why-section {
  padding-top: 28px;
  padding-bottom: 46px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.why-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 24px rgba(28, 55, 41, 0.07);
}

.why-grid h3 {
  font-size: 1rem;
}

.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.pricing {
  padding-top: 40px;
}

.price-card {
  padding: 26px;
  box-shadow: var(--shadow);
}

.price-card span {
  color: var(--green);
  font-weight: 800;
}

.price-card strong {
  display: block;
  margin-top: 18px;
  font-size: 4.2rem;
  line-height: 1;
}

.price-card button {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  color: var(--white);
  background: var(--green);
  cursor: pointer;
  font: inherit;
}

.copy-status {
  margin: 12px 0 0;
  color: var(--green-dark) !important;
  font-weight: 800;
}

.contact-form {
  display: none;
  gap: 12px;
  margin-top: 16px;
}

.contact-form.open {
  display: grid;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 600;
}

.contact-form textarea {
  resize: vertical;
}

.availability-note {
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark) !important;
  font-weight: 800;
}

footer {
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

footer p {
  margin: 0;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  transform: translateY(20px);
  opacity: 0;
  padding: 13px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 16px 40px rgba(20, 58, 42, 0.24);
  transition: 180ms ease;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 880px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split-section,
  .availability,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .product-shell {
    min-height: 420px;
  }

  .feature-grid,
  .service-grid,
  .help-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .logo-strip,
  .section,
  .split-section,
  .availability,
  .pricing,
  footer {
    width: min(100% - 24px, 1120px);
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

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

  .product-sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-sidebar p {
    display: none;
  }

  .product-sidebar button {
    min-width: max-content;
    margin-bottom: 0;
  }

  .board {
    padding: 20px;
  }

  .board-header {
    align-items: flex-start;
  }

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

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