:root {
  --cta: #ff6600;
  --ctaHover: #e65c00;
  --text: #333333;
  --muted: rgba(51, 51, 51, 0.72);
  --border: rgba(51, 51, 51, 0.14);
  --panel: rgba(51, 51, 51, 0.03);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Inter, Roboto, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.headerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.brand {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  text-decoration: none;
}

.callLabel {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.65);
  font-weight: 800;
}

.callNumber {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(51, 51, 51, 0.98);
}

.main {
  padding: 20px 0 0;
}

.nav {
  display: flex;
  gap: 12px;
  padding: 0 16px 12px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  color: rgba(51, 51, 51, 0.82);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(51, 51, 51, 0.03);
}

.nav a:hover {
  background: rgba(51, 51, 51, 0.06);
  color: rgba(51, 51, 51, 1);
}

.nav .navCta {
  background: rgba(255, 102, 0, 0.14);
  color: rgba(51, 51, 51, 0.95);
}

.nav .navCta:hover {
  background: rgba(255, 102, 0, 0.2);
}

.hero {
  padding: 24px 0 10px;
}

h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

@media (min-width: 900px) {
  h1 {
    font-size: 52px;
  }
}

.lead {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 70ch;
}

.heroMeta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.capture {
  margin-top: 16px;
}

.captureGrid {
  display: grid;
  gap: 14px;
}

@media (min-width: 960px) {
  .captureGrid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 18px;
  }
}

.mediaCard {
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.heroImg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pill {
  font-size: 12px;
  font-weight: 900;
  color: rgba(51, 51, 51, 0.84);
  background: rgba(51, 51, 51, 0.035);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 10px;
}

.block {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
  margin-top: 16px;
}

.blockHead h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0 0;
}

h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.grid2 {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.grid3 {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

@media (min-width: 900px) {
  .grid2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.cardSoft {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  padding: 14px;
}

.formCard {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px;
}

.formHead h2 {
  margin: 6px 0 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.formKicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.6);
}

.field {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  margin-top: 12px;
}

input,
textarea {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
textarea:focus {
  border-color: rgba(51, 51, 51, 0.35);
}

.btn {
  margin-top: 12px;
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 900;
  background: var(--cta);
  color: #fff;
  cursor: pointer;
}

.btn:hover {
  background: var(--ctaHover);
}

.fine {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(51, 51, 51, 0.6);
  line-height: 1.5;
}

.guideCard {
  display: block;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  text-decoration: none;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.guideCard:hover {
  border-color: rgba(51, 51, 51, 0.22);
}

.guideKicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.55);
}

.guideTitle {
  margin-top: 8px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(51, 51, 51, 0.95);
}

.guideLink {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 102, 0, 0.92);
}

.stack {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.article {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  padding: 14px;
}

.faqGrid {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

@media (min-width: 900px) {
  .faqGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.faqCard {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  padding: 14px;
}

.faqQ {
  font-weight: 950;
  letter-spacing: -0.01em;
}

.faqA {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer {
  margin-top: 34px;
  border-top: 1px solid var(--border);
  padding: 22px 0 42px;
}

.footerTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.footerCta {
  flex: 0 0 auto;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
  background: rgba(255, 102, 0, 0.14);
}

.footerCta:hover {
  background: rgba(255, 102, 0, 0.22);
}

.footerGrid {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .footerGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.footerTitle {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -0.01em;
  margin: 0;
}

.linkGrid {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

@media (min-width: 900px) {
  .linkGrid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.linkGrid a {
  display: block;
  text-decoration: none;
  color: rgba(51, 51, 51, 0.78);
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(51, 51, 51, 0.02);
}

.linkGrid a:hover {
  background: rgba(51, 51, 51, 0.06);
  color: rgba(51, 51, 51, 1);
}

.copyright {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(51, 51, 51, 0.55);
}

.trust {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  padding: 14px;
}

.trustGrid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

@media (min-width: 900px) {
  .trustGrid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
}

.trustItem {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: rgba(51, 51, 51, 0.9);
  margin-top: 1px;
}

.trustText {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(51, 51, 51, 0.82);
  font-weight: 800;
}

.hubLink {
  display: inline-block;
  color: rgba(51, 51, 51, 0.82);
  text-decoration: none;
  font-weight: 900;
}

.hubLink:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
