.fwh-localized {
  --fwh-ink: #18212f;
  --fwh-muted: #586779;
  --fwh-blue: #006edc;
  --fwh-blue-dark: #0054aa;
  --fwh-soft: #f3f8fe;
  --fwh-line: #dce6f1;
  color: var(--fwh-ink);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 1120px;
  padding: 18px 20px 64px;
}

.fwh-localized * { box-sizing: border-box; }
.fwh-localized a { text-underline-offset: 3px; }
.fwh-localized-page .entry-header { display: none; }
.fwh-localized-page .content-area { width: 100%; }
.fwh-localized-page .sidebar { display: none; }

.fwh-language-switcher,
.fwh-local-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  justify-content: center;
  margin: 0 auto 14px;
}

.fwh-floating-languages {
  background: #fff;
  border: 1px solid #dce6f1;
  border-radius: 14px;
  bottom: 18px;
  box-shadow: 0 12px 40px rgba(23, 38, 58, .18);
  max-width: min(560px, calc(100vw - 28px));
  padding: 10px 14px;
  position: fixed;
  right: 18px;
  z-index: 999;
}

.fwh-floating-languages > summary {
  color: #0054aa;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.fwh-floating-languages .fwh-language-switcher {
  border: 0;
  justify-content: flex-start;
  margin: 10px 0 0;
  max-height: 230px;
  overflow: auto;
  padding: 8px 0 0;
}

.fwh-language-switcher {
  border-bottom: 1px solid var(--fwh-line);
  color: var(--fwh-muted);
  font-size: 13px;
  padding-bottom: 14px;
}

.fwh-language-switcher a,
.fwh-local-nav a {
  color: var(--fwh-muted);
  text-decoration: none;
}

.fwh-language-switcher a[aria-current="page"],
.fwh-local-nav a[aria-current="page"] {
  color: var(--fwh-blue-dark);
  font-weight: 700;
}

.fwh-local-nav {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 28px;
}

.fwh-hero {
  background: radial-gradient(circle at 85% 15%, #d8ebff, transparent 32%), linear-gradient(135deg, #f8fbff, #edf6ff);
  border: 1px solid var(--fwh-line);
  border-radius: 24px;
  padding: clamp(30px, 6vw, 72px);
  text-align: center;
}

.fwh-eyebrow {
  color: var(--fwh-blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.fwh-hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0 auto 20px;
  max-width: 900px;
}

.fwh-lead {
  color: var(--fwh-muted);
  font-size: clamp(18px, 2.3vw, 22px);
  margin: 0 auto;
  max-width: 820px;
}

.fwh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.fwh-button {
  border-radius: 999px;
  display: inline-block;
  font-weight: 750;
  padding: 12px 22px;
  text-decoration: none !important;
}

.fwh-button-primary { background: var(--fwh-blue); color: #fff !important; }
.fwh-button-primary:hover { background: var(--fwh-blue-dark); }
.fwh-button-secondary { background: #fff; border: 1px solid var(--fwh-line); color: var(--fwh-blue-dark) !important; }

.fwh-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}
.fwh-trust li::before { color: #1b9a59; content: "✓"; font-weight: 900; margin-inline-end: 7px; }

.fwh-main { margin-top: 54px; }
.fwh-section { margin: 0 auto 54px; max-width: 900px; }
.fwh-section h2 { font-size: clamp(27px, 4vw, 38px); line-height: 1.2; margin: 0 0 18px; }
.fwh-section h3 { font-size: 20px; line-height: 1.35; margin: 0 0 8px; }
.fwh-section p { color: var(--fwh-muted); margin: 0 0 14px; }

.fwh-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.fwh-card {
  background: #fff;
  border: 1px solid var(--fwh-line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(32, 75, 120, .06);
  padding: 24px;
}

.fwh-steps { counter-reset: fwh-step; list-style: none; padding: 0; }
.fwh-steps li { border-inline-start: 3px solid var(--fwh-blue); margin: 0 0 20px; padding: 2px 0 3px 20px; }
[dir="rtl"] .fwh-steps li { padding: 2px 20px 3px 0; }

.fwh-checklist { list-style: none; padding: 0; }
.fwh-checklist li { border-bottom: 1px solid var(--fwh-line); padding: 10px 0; }
.fwh-checklist li::before { color: #1b9a59; content: "✓"; font-weight: 900; margin-inline-end: 9px; }

.fwh-faq details { border-bottom: 1px solid var(--fwh-line); padding: 16px 2px; }
.fwh-faq summary { cursor: pointer; font-size: 18px; font-weight: 700; }
.fwh-faq details p { margin: 12px 0 0; }

.fwh-cta {
  background: #17263a;
  border-radius: 22px;
  color: #fff;
  margin: 64px auto 0;
  max-width: 900px;
  padding: 42px;
  text-align: center;
}
.fwh-cta h2 { color: #fff; margin-top: 0; }
.fwh-cta p { color: #d8e3ef; margin: 0 auto 22px; max-width: 680px; }

[dir="rtl"] .fwh-localized { text-align: right; }
[dir="rtl"] .fwh-hero, [dir="rtl"] .fwh-cta { text-align: center; }

@media (max-width: 720px) {
  .fwh-localized { font-size: 16px; padding-inline: 14px; }
  .fwh-grid { grid-template-columns: 1fr; }
  .fwh-hero { border-radius: 16px; padding: 32px 18px; }
  .fwh-cta { border-radius: 16px; padding: 30px 18px; }
}
