
:root {
  --ink: #1f2933;
  --muted: #64748b;
  --line: #d7dee8;
  --soft: #f5f7fb;
  --brand: #1e3a5f;
  --accent: #4f7cac;
  --white: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #eef2f7;
  line-height: 1.6;
}
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
}
.logo small {
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav-links a:hover { color: var(--accent); }
.page {
  max-width: 1180px;
  margin: 32px auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.page-label {
  padding: 12px 24px;
  background: #007DBF;
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}
section { padding: 56px 42px; }
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f2f6fb 100%);
}
.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.15;
  color: var(--brand);
}
h1 { font-size: clamp(2.25rem, 5vw, 4.2rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 18px; color: var(--muted); }
.lead { font-size: 1.08rem; color: #475569; max-width: 760px; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  text-decoration: none;
  font-weight: 700;
}
.btn-primary { background: var(--brand); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--brand); }
.image-placeholder {
  min-height: 300px;
  border: 2px dashed #a9b7c9;
  background: repeating-linear-gradient(45deg, #f8fafc, #f8fafc 12px, #edf2f7 12px, #edf2f7 24px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #64748b;
  font-weight: 700;
  padding: 28px;
}
.stats-strip, .process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-row { grid-template-columns: repeat(4, 1fr); margin-top: 28px; }
.stat-card, .card, .tool-card, .process-step, .contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 24px;
}
.stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--brand);
  margin-bottom: 4px;
}
.grid-2, .contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}
.reset-word { display: grid; gap: 14px; margin-top: 24px; }
.reset-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.reset-letter {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.35rem;
}
.section-intro { max-width: 780px; margin-bottom: 32px; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tool-card { min-height: 170px; background: #fbfdff; }
.tool-card span {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 12px;
}
.process-step { background: var(--soft); }
.process-step strong { display: block; color: var(--brand); margin-bottom: 8px; }
.contact-card { background: var(--soft); }
form { display: grid; gap: 16px; }
label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--brand);
}
input, textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #ffffff;
}
textarea { min-height: 150px; resize: vertical; }
.footer-note {
  text-align: center;
  padding: 26px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fbfdff;
}
@media (max-width: 900px) {
  .hero, .grid-2, .contact-layout, .stats-strip, .process-row { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 42px 24px; }
}
@media (max-width: 620px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { gap: 12px; }
  .tools-grid { grid-template-columns: 1fr; }
}


/* Responsive hero image: preserves full image without cropping */
.hero {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.35fr);
  gap: clamp(28px, 4vw, 54px);
}
.image-placeholder {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1672 / 941;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 1.2vw, 14px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
}
.image-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .image-placeholder { aspect-ratio: auto; padding: 8px; }
  .image-placeholder img { height: auto; }
}
