:root {
  --bg: #f5f7fb;
  --text: #1f2937;
  --muted: #64748b;
  --primary: #0f766e;
  --primary-dark: #115e59;
  --card: #ffffff;
  --border: #dbe1ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.narrow {
  max-width: 760px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 6px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.brand-text {
  font-size: 17px;
  line-height: 1;
}

.top-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

.hero {
  padding: 40px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  align-items: start;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 6px;
}

h1, h2, h3 {
  line-height: 1.35;
  margin-top: 0;
}

h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  border: none;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
  padding: 12px 18px;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.image-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.media-16x9 {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.media-4x3 {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.caption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 36px 0;
}

.section-alt {
  background: #eef4ff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  overflow: hidden;
}

.card img {
  margin-bottom: 10px;
}

.steps {
  margin: 0;
  padding-left: 20px;
}

.steps li {
  margin-bottom: 8px;
}

.form-note {
  color: var(--muted);
}

.lead-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 8px;
}

label {
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  padding: 11px;
  font: inherit;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
}

.consent input {
  width: auto;
  margin-top: 4px;
}

.contact-list {
  padding-left: 20px;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-bottom: 14px;
}

.article-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 12px 0 18px;
  background: #fff;
  object-fit: cover;
}

.article-cta {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.trust-image {
  max-width: 620px;
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.site-footer {
  margin-top: 24px;
  background: #0b1324;
  color: #dbe7ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 16px;
}

.footer-grid h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 6px;
}

.footer-grid a {
  color: #c6dbff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #223353;
  font-size: 13px;
  color: #9cb4dc;
  padding-top: 10px;
  padding-bottom: 18px;
}

.footer-address {
  border-top: 1px solid #223353;
  color: #c8daf8;
  font-size: 14px;
  padding: 12px 16px 4px;
}

@media (max-width: 880px) {
  .header-inner {
    align-items: center;
    min-height: auto;
    padding: 8px 0;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .brand-text {
    font-size: 16px;
  }

  .top-nav {
    width: 100%;
    gap: 8px 10px;
  }

  .hero-grid,
  .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }
}
