:root {
  --ink: #071936;
  --muted: #516071;
  --line: #dfe8eb;
  --mint: #24a58c;
  --mint-dark: #137c6a;
  --paper: #f7faf9;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 25, 54, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  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; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.08rem;
}

.brand span span { color: var(--mint); }

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  color: var(--mint);
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: .94rem;
}

nav a:hover { color: var(--ink); }

.nav-cta {
  padding: 9px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  align-items: stretch;
  background: var(--paper);
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
  transform: scale(1.16);
  transform-origin: 50% 70%;
  background: #eef5f3;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}

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

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

h1 {
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.2vw, 5.9rem);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 4rem);
}

h3 { font-size: 1.15rem; }

.hero-copy p:not(.eyebrow),
.page-hero p,
.prose p,
.bot-section p,
.final-cta p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 7px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary { background: var(--ink); color: var(--white); }
.button.secondary { background: var(--white); border-color: var(--line); }
.button.light { background: var(--white); color: var(--ink); }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.hero-metrics dt {
  color: var(--ink);
  font-weight: 900;
  font-size: 1rem;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.proof-bar span {
  padding: 22px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.proof-bar span:last-child { border-right: 0; }

.section {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 64px);
}

.live-proof {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(360px, 1.22fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  background: #ffffff;
}

.live-proof-copy {
  position: sticky;
  top: 112px;
}

.live-proof-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.proof-grid span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--white);
  background: var(--mint-dark);
  font-weight: 900;
}

.proof-grid h3 {
  align-self: end;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
}

.prose p:first-child { margin-top: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.card-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-grid img.image-focus-top {
  object-position: 50% 18%;
}

.card-grid img.image-focus-face {
  object-position: 50% 14%;
}

.card-grid img.image-focus-menta {
  object-position: 50% 26%;
}

.card-grid h3,
.card-grid p { padding-inline: 22px; }

.card-grid h3 { padding-top: 20px; }
.card-grid p { color: var(--muted); padding-bottom: 22px; }

.use-cases {
  display: grid;
  grid-template-columns: minmax(240px, .82fr) minmax(320px, 1.18fr);
  gap: clamp(30px, 6vw, 76px);
  background: var(--paper);
}

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

.case-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.case-list span {
  color: var(--mint-dark);
  font-weight: 900;
  font-size: .82rem;
  text-transform: uppercase;
}

.case-list h3 { margin-top: 10px; }
.case-list p { color: var(--muted); }

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

.band p { color: #d5e2ea; max-width: 760px; }
.band .eyebrow { color: #79d8c8; }

.page-hero {
  padding: clamp(70px, 10vw, 138px) clamp(18px, 5vw, 64px);
  background: linear-gradient(180deg, var(--paper), #fff);
}

.page-hero h1 {
  font-size: clamp(2.45rem, 5vw, 5rem);
}

.service-list,
.timeline {
  display: grid;
  gap: 18px;
}

.service-list article,
.timeline article,
.contact-panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-list span,
.timeline span {
  color: var(--mint-dark);
  font-weight: 900;
}

.service-list h2,
.timeline h2 {
  margin-top: 10px;
  font-family: inherit;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.service-list p,
.timeline p,
.contact-panel p { color: var(--muted); }

.quote-panel,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: center;
}

.quote-panel img,
.contact-panel img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel.soft { background: var(--paper); }

.bot-section {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.bot-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.bot-log {
  min-height: 140px;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
}

.bot-log p { margin: 0 0 10px; color: var(--muted); }
.bot-log p:last-child { margin-bottom: 0; }

.bot-options {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.bot-options button {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.bot-options button:hover {
  border-color: var(--mint);
  color: var(--mint-dark);
}

.faq {
  background: var(--paper);
}

.faq details {
  max-width: 920px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.08rem;
}

.faq details p { color: var(--muted); }

.final-cta {
  text-align: center;
}

.final-cta p,
.final-cta h2 {
  margin-inline: auto;
}

.final-cta a:not(.button) {
  color: var(--mint-dark);
  font-weight: 900;
}

.check-list {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong { color: var(--ink); }

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .quote-panel,
  .contact-grid,
  .live-proof,
  .use-cases,
  .bot-section {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .hero-media {
    display: none;
  }
  .live-proof-copy { position: static; }
  .proof-bar { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .case-list { grid-template-columns: 1fr; }
  .band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .brand { font-size: 1rem; }
  .site-header { padding-inline: 16px; }
  nav {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 10px 14px;
    font-size: .88rem;
  }
  .nav-cta { padding: 7px 11px; }
  h1 { font-size: clamp(2.15rem, 13vw, 3.2rem); }
  h2 { font-size: clamp(1.8rem, 10vw, 2.55rem); }
  .hero-copy { padding: 32px 18px; }
  .hero-copy .actions { margin-bottom: 64px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .proof-bar { grid-template-columns: 1fr; }
  .proof-bar span { border-right: 0; border-bottom: 1px solid var(--line); }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-copy .actions .button { width: calc(100% - 126px); }
  .proof-grid article {
    grid-template-columns: 1fr;
  }
  .proof-grid span {
    grid-row: auto;
  }
  footer { flex-direction: column; }
}

.menta-widget {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  font-family: inherit;
}

.menta-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(7, 25, 54, .24);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menta-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(36, 165, 140, .18);
}

.menta-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: none;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 25, 54, .22);
}

.menta-widget.is-open .menta-panel { display: block; }

.menta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
}

.menta-head strong { display: block; line-height: 1.15; }

.menta-head span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
}

.menta-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.menta-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 300px;
  padding: 16px;
  overflow-y: auto;
  background: var(--paper);
}

.menta-message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .95rem;
}

.menta-message.user {
  align-self: flex-end;
  color: var(--white);
  background: var(--mint-dark);
  border-color: var(--mint-dark);
}

.menta-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
  background: var(--paper);
}

.menta-choices button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
}

.menta-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.menta-form input {
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
}

.menta-form button {
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menta-form button:disabled,
.menta-form input:disabled { opacity: .62; }

.inline-menta {
  display: grid;
  gap: 16px;
}

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

@media (max-width: 560px) {
  .menta-panel {
    right: -8px;
    bottom: 68px;
  }

  .menta-log { height: 280px; }
}
