:root {
  --ink: #17211f;
  --muted: #5f6965;
  --paper: #f7f3ea;
  --white: #ffffff;
  --line: rgba(23, 33, 31, 0.13);
  --teal: #1f7a72;
  --teal-dark: #11544f;
  --coral: #d9614c;
  --gold: #c89a3d;
  --mint: #dff3ec;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 243, 234, 0.93);
  box-shadow: 0 10px 34px rgba(23, 33, 31, 0.09);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(31, 122, 114, 0.25);
}

.brand-text {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select,
.nav-cta {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .language-select,
.site-header.is-scrolled .nav-cta {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.language-select {
  width: 72px;
  padding: 0 14px;
  cursor: pointer;
}

.language-select option {
  color: var(--ink);
  background: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 112px clamp(18px, 5vw, 72px) 76px;
  color: var(--white);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.97) contrast(1.02);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(12, 22, 19, 0.84) 0%, rgba(12, 22, 19, 0.62) 37%, rgba(12, 22, 19, 0.2) 67%, rgba(12, 22, 19, 0.1) 100%),
    linear-gradient(0deg, rgba(12, 22, 19, 0.24), rgba(12, 22, 19, 0.06));
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

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

.hero .eyebrow {
  color: #9be2d7;
}

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

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.5rem, 8.2vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.1rem, 4.7vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

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

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 16px 36px rgba(217, 97, 76, 0.32);
}

.button-primary:hover {
  background: #c9503d;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(600px, 100%);
  margin: 46px 0 0;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  font-size: 1.8rem;
  font-weight: 900;
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero-metrics div:nth-child(3) dt {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 84px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  font-weight: 900;
  color: var(--ink);
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf6;
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 66px);
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.service-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(23, 33, 31, 0.07);
}

.service-card {
  min-height: 430px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  width: 68px;
  height: 4px;
  margin-bottom: 26px;
  border-radius: 99px;
  background: var(--teal);
}

.service-card.accent-gold::before {
  background: var(--gold);
}

.service-card.accent-coral::before {
  background: var(--coral);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 7px;
  color: var(--teal-dark);
  background: var(--mint);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  font-weight: 750;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #213b35;
}

.proof-band .eyebrow {
  color: #f6c466;
}

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

.proof-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

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

.proof-list strong {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.proof-list span {
  color: rgba(255, 255, 255, 0.74);
}

.process-section {
  background: #fbfaf6;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-list li {
  min-height: 280px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.pricing-section {
  background: var(--paper);
}

.price-card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
}

.price-card.featured {
  border-color: rgba(31, 122, 114, 0.38);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  margin: 22px 0 12px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  font-weight: 950;
  line-height: 0.95;
}

.price-card p:last-child {
  color: var(--muted);
}

.use-case-section {
  background: #fbfaf6;
}

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

.use-case-grid article,
.security-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.use-case-grid h3,
.security-grid h3 {
  max-width: 16ch;
}

.use-case-grid p,
.security-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.faq-section {
  background: var(--white);
}

.security-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(980px, 100%);
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(74px, 9vw, 136px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.contact-copy h2 {
  font-size: clamp(2.1rem, 4.3vw, 4.2rem);
}

.contact-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 750;
}

.contact-note svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

label span {
  font-size: 0.93rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 33, 31, 0.18);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

textarea {
  resize: vertical;
}

.field-help {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 122, 114, 0.13);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.submit-button {
  width: 100%;
  min-height: 54px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 850;
}

.form-status.is-error {
  color: #a43e30;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
}

.legal-page {
  background: var(--white);
}

.legal-header {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 16px clamp(18px, 5vw, 72px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.legal-main {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 18px;
}

.legal-main h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.legal-main h2 {
  max-width: none;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.legal-main section {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-main ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-updated {
  color: var(--teal-dark);
  font-weight: 850;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .section-heading,
  .proof-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .use-case-grid,
  .security-grid,
  .pricing-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .use-case-grid article,
  .security-grid article,
  .process-list li {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand-text {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-cta {
    display: none;
  }

  .language-select {
    width: 66px;
  }

  .hero {
    min-height: 88vh;
    padding: 96px 18px 42px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(12, 22, 19, 0.9) 0%, rgba(12, 22, 19, 0.72) 64%, rgba(12, 22, 19, 0.42) 100%),
      linear-gradient(0deg, rgba(12, 22, 19, 0.28), rgba(12, 22, 19, 0.08));
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

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

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

  .legal-main h1 {
    max-width: 10ch;
  }
}
