/* Shared chrome for the pages that are not the homepage. The homepage keeps
   its styles inline, exactly as the design expressed them; these three only
   need the same font, palette and header so a visitor never crosses a seam. */
body { margin: 0; background: #FFFFFF; -webkit-font-smoothing: antialiased;
       font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif; color: #0D1B14; }
* { box-sizing: border-box; }
a { color: #14713A; text-decoration: none; }
a:hover { color: #1B9247; }
:focus-visible { outline: 2px solid #1B9247; outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.bar { height: 74px; display: flex; align-items: center; gap: 24px; }
.bar img { height: 28px; width: auto; display: block; }
.pill { background: #1B9247; color: #FFFFFF; font-size: 14.5px; font-weight: 500;
        padding: 11px 20px; border-radius: 999px; white-space: nowrap;
        box-shadow: 0 8px 20px rgba(27,146,71,0.22); }
.pill:hover { background: #14713A; color: #FFFFFF; }
.quiet { background: #F3F7F5; color: #0D1B14; font-size: 16.5px; font-weight: 500;
         padding: 16px 30px; border-radius: 999px; display: inline-block; }
.quiet:hover { background: #E9F1ED; color: #0D1B14; }
.solid { background: #1B9247; color: #FFFFFF; font-size: 16.5px; font-weight: 500;
         padding: 16px 30px; border-radius: 999px; display: inline-block;
         box-shadow: 0 12px 28px rgba(27,146,71,0.26); }
.solid:hover { background: #14713A; color: #FFFFFF; }

h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05; letter-spacing: -0.036em;
     font-weight: 600; margin: 0; }
h2 { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin: 0; }
.lede { font-size: 18.5px; line-height: 1.6; color: #5C6F68; margin: 22px 0 0; max-width: 620px; }
.kick { display: inline-flex; align-items: center; gap: 9px; background: #F3F7F5;
        border: 1px solid #E3EDE7; color: #3F5A4E; font-size: 13.5px; padding: 8px 15px;
        border-radius: 999px; margin-bottom: 24px; }
.kick span { width: 6px; height: 6px; border-radius: 50%; background: #1B9247; display: block; }

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card { background: #FFFFFF; border: 1px solid #E7EEEB; border-radius: 18px; padding: 28px;
        box-shadow: 0 2px 6px rgba(13,27,20,0.03); display: flex; flex-direction: column; }
.card p { font-size: 15.5px; line-height: 1.6; color: #5C6F68; margin: 10px 0 0; }
.go { margin-top: auto; padding-top: 20px; font-size: 15.5px; font-weight: 500; color: #14713A; }
.go:hover { color: #1B9247; }

.step { display: flex; gap: 18px; background: #FFFFFF; border: 1px solid #E7EEEB;
        border-radius: 18px; padding: 26px; }
.num { flex-shrink: 0; width: 30px; height: 30px; border-radius: 999px; background: #EAF6EE;
       color: #14713A; font-size: 14.5px; font-weight: 600; display: flex;
       align-items: center; justify-content: center; }
.step p { font-size: 15px; line-height: 1.55; color: #5C6F68; margin: 6px 0 0; }

footer { padding: 32px; border-top: 1px solid #EDF2F0; margin-top: 40px; }
.foot { max-width: 1120px; margin: 0 auto; display: flex; align-items: center;
        justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 14.5px;
        color: #8AA096; }
.foot a { color: #5C6F68; }

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .grid { grid-template-columns: 1fr; }
  .foot { justify-content: center; text-align: center; }
  /* The footer links are 19px of text on a line: a miss on either side of the
     word. Padding gives each its own 44px, and the gap comes down by the same
     amount so the row still fits a phone. */
  .foot a { display: inline-block; padding: 12px 8px; }
  .foot > div:last-child { gap: 6px !important; }
  /* Same for the one link in the header bar, which the pill does not cover. */
  .bar a:not(.pill) { padding: 12px 0; }
}


/* The contact form. Inputs get the page's own font and radius rather than the
   browser's, because a form built out of system widgets is the one place a
   careful site suddenly looks like a different one. */
.formwrap { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
            gap: 44px; align-items: start; }
.field { margin-top: 22px; }
.field:first-child { margin-top: 0; }
.field label { display: block; font-size: 14.5px; font-weight: 500; margin-bottom: 8px; }
.field .hint { font-weight: 400; color: #8AA096; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; line-height: 1.5; color: #0D1B14;
  background: #FFFFFF; border: 1px solid #DCE7E2; border-radius: 12px; padding: 13px 15px; }
.field textarea { min-height: 200px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #A9BBB3; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #1B9247; outline: 2px solid rgba(27,146,71,0.35); outline-offset: 0; }
/* The native arrow is drawn in the OS's own grey, so the select supplies its
   own in the palette's. appearance:none removes the arrow, not the menu. */
.field select { appearance: none; -webkit-appearance: none; padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%235C6F68' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
/* Off-screen rather than display:none: a bot reading the markup fills in what
   it can see there, and a screen reader is told to skip it. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.send { border: 0; cursor: pointer; margin-top: 28px; font-family: inherit; }
.send[disabled] { opacity: 0.6; cursor: default; box-shadow: none; }
.status { margin: 22px 0 0; font-size: 15.5px; line-height: 1.55; padding: 14px 18px;
          border-radius: 14px; display: none; }
.status.on { display: block; }
.status.good { background: #EAF6EE; color: #14713A; }
.status.bad { background: #FDF0EE; color: #9C3524; }
.aside { background: #F7FAF9; border-radius: 18px; padding: 26px 28px; }
.aside h2 + p, .aside p { font-size: 15px; line-height: 1.6; color: #5C6F68; margin: 10px 0 0; }
.aside ul { margin: 12px 0 0; padding-left: 20px; }
.aside li { font-size: 15px; line-height: 1.6; color: #5C6F68; margin-top: 8px; }

@media (max-width: 860px) {
  .formwrap { grid-template-columns: 1fr; gap: 32px; }
}
