:root {
  --ink: #17211d;
  --muted: #5b6863;
  --paper: #f7f4ee;
  --white: #ffffff;
  --line: #d8ddd5;
  --green: #0d5c46;
  --green-dark: #073d31;
  --gold: #c9942d;
  --blue: #245d7a;
  --coral: #b95d42;
  --shadow: 0 22px 60px rgba(23, 33, 29, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 238, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-size: 0.82rem;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(13, 92, 70, 0.22);
}

.button:hover {
  background: var(--green-dark);
}

.button-small {
  min-height: 40px;
  color: var(--white) !important;
  padding-inline: 0.9rem;
}

.button-secondary {
  color: var(--green);
  background: transparent;
  border: 1px solid rgba(13, 92, 70, 0.35);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--white);
}

.button-light {
  color: var(--green-dark);
  background: var(--white);
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 130px);
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3.2rem 0 2.3rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 3rem;
}

.hero-media {
  align-self: stretch;
  min-height: 500px;
  display: grid;
  place-items: center;
  background: #dfe9df;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-content {
  padding: 2rem 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead,
.page-hero p,
.section-heading p {
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 2rem 0 0;
}

.trust-strip div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-strip dt {
  font-size: 1.5rem;
  font-weight: 850;
  color: var(--green);
}

.trust-strip dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.page-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-tight {
  padding-top: 2.8rem;
}

.page-hero {
  padding-top: 5.5rem;
  padding-bottom: 3rem;
}

.page-hero p {
  max-width: 760px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

.item-grid,
.pricing-grid,
.review-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.item-card,
.price-card,
.review-card,
.team-card,
.contact-card,
.calculator {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.3rem;
}

.item-card p,
.price-card p,
.review-card p,
.contact-card p {
  color: var(--muted);
}

.item-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  font-size: 0.85rem;
}

.band {
  width: 100%;
  max-width: none;
  background: #e4ebe1;
  border-block: 1px solid var(--line);
}

.band > * {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.split,
.contact-layout,
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.process-panel {
  display: grid;
  gap: 0.9rem;
}

.process-panel div {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-panel span,
.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.process-panel strong,
.process-panel p {
  grid-column: 2;
}

.process-panel strong {
  align-self: end;
}

.process-panel p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--green);
  font-weight: 800;
}

.calculator {
  max-width: 620px;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c7d0c8;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

.amount-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.6rem;
  max-width: 310px;
}

.amount-row span {
  font-size: 1.5rem;
  font-weight: 850;
}

.fee-output {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
}

.fee-output strong {
  font-size: 1.8rem;
}

.cta-band {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  background: var(--green-dark);
  padding-inline: max(16px, calc((100% - 1160px) / 2));
}

.cta-band p,
.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0.6rem 1.2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline h2,
.timeline p {
  grid-column: 2;
}

.timeline h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
}

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

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.price {
  margin: 0.3rem 0 0.6rem;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.94), rgba(247, 244, 238, 0.58)),
    url("verification-desk.svg") right center / contain no-repeat;
}

.panel-image {
  width: 100%;
  border-radius: 8px;
  background: #dfe9df;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.team-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #e1e9e0;
}

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

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

.review-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.review-card strong {
  margin-top: auto;
}

.review-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
  font-size: 1.1rem;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.contact-card {
  position: sticky;
  top: 100px;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--green);
  font-weight: 750;
}

.message-preview {
  padding: 1rem;
  background: #eef3ee;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.message-preview pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2.4rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--green);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 880px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-weight: 750;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero,
  .split,
  .contact-layout,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 1.4rem;
  }

  .hero-media {
    min-height: 300px;
    order: 2;
  }

  .item-grid,
  .pricing-grid,
  .review-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    position: static;
  }

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

@media (max-width: 620px) {
  .brand span:last-child {
    max-width: 190px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .trust-strip,
  .item-grid,
  .pricing-grid,
  .review-grid,
  .team-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding-block: 3.2rem;
  }

  .timeline article,
  .process-panel div {
    grid-template-columns: 1fr;
  }

  .timeline h2,
  .timeline p,
  .process-panel strong,
  .process-panel p {
    grid-column: 1;
  }
}
